Login Page - Create Account

Support Board


Date/Time: Thu, 28 Nov 2024 06:31:19 +0000



Post From: DLL

[2023-06-02 14:49:00]
User909252 - Posts: 20
Do you have any links to information on how to import a custom DLL library
into a study?
I've tried with a simple sample:

extern "C" {
__declspec(dllimport) void init();
__declspec(dllimport) void sendCandleData(double open, double high,
double low, double close);
}

and just get errors like undefined reference to `__imp_init' and
`__imp_sendCandleData'

Thanks.