Support Board
Date/Time: Sun, 08 Jun 2025 04:01:45 +0000
Post From: How do I call a study in a seperate studies dll
[2023-02-11 06:21:06] |
User305536 - Posts: 60 |
Hello, I have created a main DLL lets call it my loader, and I am attempting to LoadLibrary and GetProcAddress for the study contained in a seperate DLL. So far I can successfully LoadLibrary and GetProcAddress of a particular study, BUT I have no idea about how to run the EXTERNAL STUDY. Is this possible? or is it only possible for external FUNCTIONS? I am loading the DLL like this... HMyCustomDll = LoadLibrary("API\\MyCustomStudies_64.dll"); and referencing the study like this... ProcAdd = (MYPROC) GetProcAddress(HMyCustomDll, "scsf_numberflow"); but now I have no idea about how to make the study run. Maybe someone has done this before, I dont know. Allan |