Getting Information from a DLL: Difference between revisions

From OS2World.Com Wiki
Jump to navigation Jump to search
Created page with " lxlite -c:exemap NLS.DLL ==Links== * [http://www.edm2.com/index.php/Extracting_information_from_LIB_files Extracting_information_from_LIB_files]"
 
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
Sometimes you want to know more about what is inside a DLL file, like the functions that it has internally that are called by different programs.
==lxlite==
I had used [[LxLite]] to try get more more information about DLLs, for example I want to know which functions does it offers.


  lxlite -c:exemap NLS.DLL
  lxlite -c:exemap NLS.DLL


 
==LXDump/2==
Also some information can be extracted from DLLs by using [http://hobbes.nmsu.edu/download/pub/os2/dev/util/lx2v103.zip lx2dump] ([[LXDump/2]]).


==Links==
==Links==
* [http://www.edm2.com/index.php/Extracting_information_from_LIB_files Extracting_information_from_LIB_files]
* [http://www.edm2.com/index.php/Extracting_information_from_LIB_files Extracting_information_from_LIB_files]
[[Category:How To]]

Latest revision as of 16:25, 22 December 2024

Sometimes you want to know more about what is inside a DLL file, like the functions that it has internally that are called by different programs.

lxlite

I had used LxLite to try get more more information about DLLs, for example I want to know which functions does it offers.

lxlite -c:exemap NLS.DLL

LXDump/2

Also some information can be extracted from DLLs by using lx2dump (LXDump/2).

Links