AaronRobinsonMSFT / DNNE

Prototype native exports for a .NET Assembly.
MIT License
397 stars 41 forks source link

fixed type name exception on unsupported method signature types #121

Closed mwetzko closed 2 years ago

mwetzko commented 2 years ago

i had a 'bool' in my signature, so the gen tool had thrown an exception Method 'DrvQueryDriverInfo' has non-exportable type 'typeCode'. With this fix, it now prints Method 'DrvQueryDriverInfo' has non-exportable type 'Boolean'

AaronRobinsonMSFT commented 2 years ago

Thanks @mwetzko. Appreciate the contribution.