Top "Loadlibrary" questions

Load the same dll multiple times

I want to load the same dll e.g. Lib.dll multiple times! -> need creating a new process (…

c++ winapi dll process loadlibrary
C++ LoadLibrary ERROR_NOACCESS "Invalid access to memory location."

OK, so I have a situation in which I call LoadLibrary on a DLL that I wrote. This call to …

c++ windows dll loadlibrary
LoadLibrary is failing with module not found error -- possible dependency problems

I have been trying to load a 32-bit dll using C++ (from a 32-bit application, on windows 7 64-bit). LoadLibrary returns …

dll dependencies x86 64-bit loadlibrary
LoadLibrary fails: First chance exception 0xC0000139 (DLL Not Found) - How to debug?

I have a dll "mytest.dll" that when loaded via LoadLibrary(), returns NULL (and 127 as the GetLastError()). If I use …

c++ exception dll loadlibrary
Loadlibrary always return NULL

HINSTANCE hinstLib=LoadLibrary("C:\\mydll.dll"); I have no idea why I always get 0 in return after running that line …

c winapi visual-c++ loadlibrary
LoadLibrary fails with error code 193

I'm stuck as to why I can't load my dll "interfac" using LoadLibrary. It seems to be failing when loading …

c++ windows winapi dll loadlibrary
GetProcAddress() failing, error 127

Here's my DLL code: #include <Windows.h> #include <iostream> int sysLol(char *arg); int sysLol(char *…

c++ dll loadlibrary getprocaddress
How to Unload DLL from memory in C++?

How to unload DLL from memory. I used FreeLibrary but it is still loaded HINSTANCE hGetProcIDDLL = LoadLibrary("path.dll"); f_…

c++ memory dll loadlibrary
Loading a dll from a dll?

What's the best way for loading a dll from a dll ? My problem is I can't load a dll on …

c++ multithreading loadlibrary dll
Java JNI call to load library

Does it impact memory if I have two Java classes that have native calls to compiled C code and I …

java loadlibrary java-native-interface