Mail Archives: djgpp/1997/10/20/02:11:11
Perhaps I should post to the GCC's mailing list, but I don't know
its exact address.
I use rsxntdj to develop Win32 programming and encountered
the following function prototype definition in a header file:
PASCAL void *func(PASCAL void *(void));
I have tried:
__attribute__(stdcall) void *func(
__attribute__(stdcall) void *(void));
__attribute__(stdcall) void *func(
void *(void) __attribute__(stdcall));
But gcc don't compile it, how to convert this definition to a form
gcc likes?
- Raw text -