[Mono-list] Mono/.NET delegate incompatibility

J. Perkins jason@379.com
19 Dec 2002 08:38:10 -0500


Okay, I can change my code no problem, but won't this prevent Mono from
calling functions in the windows system DLLs? Those must all use
__stdcall. I am totally swamped right now (trying to get a release out
before the holidays) but if I get a chance I will try to access some
win32 api functions and see what happens.

Jason
379


On Wed, 2002-12-18 at 19:41, Miguel de Icaza wrote:
> __stdcall is a Microsoft-C feature, so it is really a feature of your
> compiler.  There are some macros around that you can use to make your C
> code portable (not really Mono's domain), like STDCALL that get defined
> to nothing on Unix.