Re: What is better, cdecl or stdcall?

new topic     » goto parent     » topic index » view thread      » older message » newer message
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 important thing is to export a C API for euphoria to use. Using a C++ DLL from anything but C++ (and the same compiler!) is a nightmare. Basically, this means writing your functions inside of an extern "C" block:

extern "C"{ 
 
    /* functions here */ 
 
} 

Matt

new topic     » goto parent     » topic index » view thread      » older message » newer message

Search



Quick Links

User menu

Not signed in.

Misc Menu