Answer the question
In order to leave comments, you need to log in
Is it possible to load the DLL from the server?
I load dll when I need it in software like this:
HMODULE hDLL = LoadLibrary("test.dll");
if (!hDLL) {
ShowMessage("Невозможно загрузить test.dll");
return;
}
HMODULE hDLL = LoadLibrary("http://example.com/test.dll");
if (!hDLL) {
ShowMessage("Невозможно загрузить test.dll");
return;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question