-2

I want to load the following libraries.

librariesmozcrt19.dll
nspr4.dll
plc4.dll
plds4.dll
mozsqlite3.dll
nssutil3.dll
softokn3.dll
nss3.dll

I know the single library can be loaded as

HMODULE hDLL=LoadLibrary(pDLLName);

But I'm not getting how load multiple libraries.

  • You could also consider using a load-time linking: http://msdn.microsoft.com/en-us/library/windows/desktop/ms684184%28v=vs.85%29.aspx – KonstantinL Mar 07 '14 at 10:17

1 Answers1

5

Call LoadLibrary for each library in turn. There is no "bulk load" API.

Richard
  • 106,783
  • 21
  • 203
  • 265