-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0030d1c
commit 1108047
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// Copyright 2022 Stellar Development Foundation and contributors. Licensed | ||
// under the Apache License, Version 2.0. See the COPYING file at the root | ||
// of this distribution or at http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
// The contract spec XDR is highly experimental, incomplete, and still being | ||
// iterated on. Breaking changes expected. | ||
|
||
% #include "xdr/Stellar-types.h" | ||
namespace stellar | ||
{ | ||
|
||
enum SCEnvMetaKind | ||
{ | ||
SC_ENV_META_KIND_INTERFACE_VERSION = 0 | ||
}; | ||
|
||
union SCEnvMetaEntry switch (SCEnvMetaKind kind) | ||
{ | ||
case SC_ENV_META_KIND_INTERFACE_VERSION: | ||
uint64 interfaceVersion; | ||
}; | ||
|
||
} |