Tanner Gooding
Tanner Gooding
Will take a look in a bit. `bool` is generally tricky to handle due to it working completely differently between C/C++ and C#. Bitfields are apparently a scenario where I'm...
This has already been fixed locally to now print something closer to `__AnonymousEnum_avfilter_L503_C5`. A new package should be published here later today
Can someone provide an isolated repro?
I'm, unfortunately, still not able to reproduce the issue. There are even tests validating that C and C++ code have anonymous unions/structs/enums handled correctly with a valid name emitted. I've...
By default ClangSharp resolves down to the root type. This allows things like operators to work, avoids ABI issues, perf issues, etc. There are command line switches such as `--remap`...
ClangSharp only handles a subset of very well-defined and common types, not all C/C++ defined types. There are many cases, like `FILE`, where the type is defined by the spec...
You can write effectively the same code, just needing to change a couple minor things where python has defined its own extension points. You have two options. You can either...
You're probably hitting a known limitation with NuGet. You can resolve the issue by adding the following to your csproj: ```xml $(NETCoreSdkRuntimeIdentifier) ``` 
> I have successfully run this tool, but it seemed clang can only parse function with standard return type? Sorry, I missed this last response. If I remember correctly, then...
This shouldn't be happening. If you can provide a small repro header and the command line options used, I'll get this resolved.