livespi wrote:
I'm trying to make a DLL for Windows w/ TinyCC (using -shared compiler
option) and I'd like the functions to use stdcall convention instead of
the default cdecl.
The tcc-doc says I can do this w/ __attribute__, but doesn't elaborate.
So if I have --->
#define DLL_EXPORT __declspec(dllexport)
DLL_EXPORT BOOL func(HANDLE h, UCHAR c) {
  ...
}
<--
Can someone show me how to define this to use stdcall?

See win32/examples/dll.c for an example and win32/include/_mingw.h for
more background info how __declspec works.

--- grischka


_______________________________________________
Tinycc-devel mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/tinycc-devel

Reply via email to