DLL Help

  • Thread starter Thread starter Abhishek
  • Start date Start date
A

Abhishek

I need to know if there is a there is a way to find out which exe or dll
called a certain dll.
I need to find out the exe's name (xyz.exe).

any links would be helpful.

regards
Abhishek
 
Abhishek said:
I need to know if there is a there is a way to find out which exe or dll
called a certain dll.
I need to find out the exe's name (xyz.exe).

any links would be helpful.

regards
Abhishek

If you want to find out what processes currently hold a certain DLL, you may
look at sysinternals ListDLL tool [1]. If you want to find out if a DLL or
EXE file depends on a certain DLL, you can use depends.exe.

Marcus

[1] http://www.sysinternals.com/Utilities/ListDlls.html
 
Actually i needed to know if a exe has called my dll, which exe that is.
and was able to find out using the GetModulefilename.

So Porblem solved :)

Thanks for helping..

Marcus Heege said:
Abhishek said:
I need to know if there is a there is a way to find out which exe or dll
called a certain dll.
I need to find out the exe's name (xyz.exe).

any links would be helpful.

regards
Abhishek

If you want to find out what processes currently hold a certain DLL, you
may look at sysinternals ListDLL tool [1]. If you want to find out if a
DLL or EXE file depends on a certain DLL, you can use depends.exe.

Marcus

[1] http://www.sysinternals.com/Utilities/ListDlls.html
 
Back
Top