Re: What is better, cdecl or stdcall?
- Posted by Insolor Jun 28, 2013
- 1092 views
TheresNoTime said...
I need to write a DLL in C++. It will be linked to Euphoria project. What better use for exporting functions from C++ DLL to Euphoria script?
The most common practice is using stdcall unless you need functions with a variable count of arguments like WinAPI function wsprintf() etc. Anyway you can call a function with a fixed count of arguments from Euphoria (ie. you can import wsprintf() with define_c_proc(user32,"+wsprintfA",repeat(C_INT,10)) to use it with exactly 10 arguments).