This repository has been archived by the owner on May 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #105 from registreerocks/feat-more-enclave-messages
feat(rtc_types): more enclave message work for set_access_key
- Loading branch information
Showing
11 changed files
with
145 additions
and
123 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,35 @@ | ||
# cbindgen config for the enclave bindings.h files | ||
# | ||
# These binding files should include all the types referenced by | ||
# the functions declared in our EDL files. | ||
# | ||
# Docs: <https://github.com/eqrion/cbindgen/blob/master/docs.md#cbindgentoml> | ||
|
||
language = "C" | ||
|
||
# No C standard imports for enclaves. | ||
no_includes = true | ||
|
||
[export] | ||
|
||
# Don't generate items for functions (sgx_edger8r will). | ||
item_types = [ | ||
"constants", | ||
"globals", | ||
"enums", | ||
"structs", | ||
"unions", | ||
"typedefs", | ||
"opaque", | ||
# "functions", | ||
] | ||
|
||
[enum] | ||
# Use qualified enum variant names: some of our enum types conflict, otherwise. | ||
rename_variants = "QualifiedScreamingSnakeCase" | ||
|
||
# Also generate items for our local enclaves libraries. | ||
[parse] | ||
parse_deps = true | ||
include = ["rtc_types", "rtc_tenclave"] | ||
extra_bindings = ["rtc_types", "rtc_tenclave"] |
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
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
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
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
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
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
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
Oops, something went wrong.