Get path to dll loaded using LoadLibrary("MyDll.dll")

3.1k Views Asked by At

I'm loading a dll by using it's name like this:

HANDLE hlib = LoadLibrary("Winfax.dll");

Now I want to know from which path the dll was loaded. Is there a way to get the full path and file name for a dll handle?

1

There are 1 best solutions below

0
On BEST ANSWER

Check out GetModuleFileName: GetModuleFileName Function using hlib as the HMODULE.