genotrance / nimgen

Nimgen is a helper for c2nim to simplify and automate the wrapping of C libraries
MIT License
114 stars 11 forks source link

Change to stdcall only on Windows #41

Open genotrance opened 5 years ago

genotrance commented 5 years ago

Change the calling convention of nimgen to cdecl by default, maybe with a


when defined(vcc): {.push callingConvention: stdcall.} else: {.push callingConvention: cdecl.}```