add some UUID support

This commit is contained in:
Dustin J. Mitchell
2022-01-23 19:45:39 +00:00
parent e590dc7c98
commit 46e08bc040
8 changed files with 136 additions and 1 deletions

View File

@@ -10,6 +10,16 @@ fn main() {
.with_language(Language::C)
.with_config(Config {
cpp_compat: true,
export: ExportConfig {
item_types: vec![
ItemType::Structs,
ItemType::Globals,
ItemType::Functions,
ItemType::Constants,
ItemType::OpaqueItems,
],
..Default::default()
},
..Default::default()
})
.generate()