Link to home
Start Free TrialLog in
Avatar of wfb
wfb

asked on

Obtaining DLL version information

Under WIN32 I would like to have an "About" box that will show the version numbers of all the DLLs that the currently-executing program is using. It appears that the "GetFileVersionInfo" API will return this information IF I KNOW THE FULL PATHNAME OF EACH DLL THAT THE PROGRAM IS USING. Unfortunately, I don't know how to GET those pathnames from the executing program. Alternatively,  could I use 'EnumResourceNames' (or one of the other 'Enum' functions) to get the version information from all of the DLLs that are being using by the currently executing program?

The questions:

1. Is there any way to obtain (from within an executing program) what DLLs are being used by that program? If so, is there any way to get the full pathnames associated with each such DLL?

2. Can one of the 'Enum' functions be used to search the currently-executing EXE file ALONG WITH ALL THE DLLs THAT IT IS USING to obtain the version information associated with the EXE file and with each of the DLLs?

If either of these approaches can be used, an outline of the required 'C' code would be most useful! (I can't find any reasonable example of using the 'Enum' functions.)

Many thanks,

Wayne
ASKER CERTIFIED SOLUTION
Avatar of NickRepin
NickRepin

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of wfb
wfb

ASKER

Nick,

My only complaint with your approach is that I would really prefer a more "generic" approach that would not require me to specify the names of all the DLLs that the program is using. For system DLLs, I suppose I could just keep calling 'GetModuleHandle' with all the normal names (KERNEL32, etc.) However, this would require me to keep updating a list as MS comes out with DLLs having different names (MSVCRTnn.DLL, for example).

If you can think of any  way that the names of all "in use" DLLs for a program can be obtained, I would certainly like to hear about it!

Many thanks,

Wayne