I have COM function that returns BOOL
-- which is simply a typedef for int
-- and I'm generating a .Net wrapper using Visual Studio. Is there a way I can have the wrapper automatically convert the BOOL
to the C# bool
type and return that?
I have COM function that returns BOOL
-- which is simply a typedef for int
-- and I'm generating a .Net wrapper using Visual Studio. Is there a way I can have the wrapper automatically convert the BOOL
to the C# bool
type and return that?