Pregunta

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.

¿Fue útil?

Solución

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

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top