-
Notifications
You must be signed in to change notification settings - Fork 584
Description
Suggestion
When creating a single bindings file within another crate, I'd like to use windows-bindgen with the default options, i.e.:
- Without
cfg, because the fact that this file is part of the crate shouldn't leak to users of the crate; - Without
package, because it's not a new package but a single file containing bindings to a subset of the Windows API specified via--filter; - Without
flatten, so that namespaces are preserved.
Would it be possible to create a mode like that? Right now the default with this example bindings.txt:
--out src/platform/windows_wgi/Windows.rs
--filter
Windows.Gaming.Input
Generates non-compiling code because some functions depend on types outside of the Windows.Gaming.Input namespace.
A workaround would be to include namespaces for the missing types, but they have dependencies as well and this quickly spirals out of control (as in: I end up listing most of the Windows API under --filter) to the point where using the windows crate directly makes more sense, both from a size as well as maintenance standpoint.
Perhaps this should go into a separate issue, but when running with flatten (which seems to automatically pull in all dependencies), a bunch of definitions are duplicated, causing a failed compile as well:
--out src/platform/windows_wgi/Windows.rs
--filter
Windows.Gaming.Input
--config flatten