Support Board
Date/Time: Fri, 29 Nov 2024 12:53:27 +0000
Post From: How do I call a study in a seperate studies dll
[2023-02-11 06:21:06] |
User305536 - Posts: 52 |
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 |