Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion csbindgen/src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ pub struct BindgenOptions {
pub csharp_use_nint_types: bool,
pub csharp_imported_namespaces: Vec<String>,
pub csharp_generate_const_filter: fn(const_name: &str) -> bool,
pub always_included_types: Vec<String>,
}

impl Default for Builder {
Expand All @@ -57,6 +58,7 @@ impl Default for Builder {
csharp_use_nint_types: true,
csharp_imported_namespaces: vec![],
csharp_generate_const_filter: |_| false,
always_included_types: vec![],
},
}
}
Expand Down Expand Up @@ -87,7 +89,14 @@ impl Builder {
self
}


/// Adds a list of types that will always be considered to be included in the
/// generated bindings, even if not part of any function signature
pub fn always_included_types<I, S>(mut self, always_included_types: I) -> Builder
where I: IntoIterator<Item = S>, S: ToString
{
self.options.always_included_types.extend(always_included_types.into_iter().map(|v| v.to_string()));
self
}

/// add original extern call type prefix to rust wrapper,
/// `return {rust_method_type_path}::foo()`
Expand Down
2 changes: 2 additions & 0 deletions csbindgen/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ pub(crate) fn generate(
}
}

using_types.extend(options.always_included_types.iter().cloned());

let structs = reduce_struct(&structs, &field_map, &using_types);
let enums = reduce_enum(&enums, &field_map, &using_types);

Expand Down