Can anyone post an example of a C/C++ DLL that can be called from EasyLanguage?

snackly

Junior member
Messages
14
Likes
0
I am looking for the c/c++ code for even a simple function to show how the signature is setup. I have tried many different calling conventions and can't get EasyLanguage to find the function in the DLL.
 
I am looking for the c/c++ code for even a simple function to show how the signature is setup. I have tried many different calling conventions and can't get EasyLanguage to find the function in the DLL.

Contrary to the other links I included in your other thread this link to TS is available to all

https://www.tradestation.com/support/books/pdf/easylanguage_extension_sdk.pdf

I don't know if this may help, because I haven't made use of it myself, but it includes informaton on dll calling. Hope it might prove useful

Charlton
 
You need to make sure that you are building a def file along with your C++ DLL in order to let TS find your functions. You also have to use the __stdcall convention
 
Top