G
G
Gibbon Cho2014-10-08 15:41:25
DLL
Gibbon Cho, 2014-10-08 15:41:25

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;
  }

And I would like to make sure that the dll is on the server, and I load it like this:
HMODULE hDLL = LoadLibrary("http://example.com/test.dll");
  if (!hDLL) {
    ShowMessage("Невозможно загрузить test.dll");
  return;
  }

The second scheme does not work =( What are the options?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
V
Vit, 2014-10-08
@fornit1917

1. Download dll from the server.
2. Repeat Method 1 for the downloaded file.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question