Question

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.

Was it helpful?

Solution

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top