How to retrieve at runtime the version info stored in a Windows exe/dll? This info is manually set using a resource file.
|
1
|
|||||
|
|
|
Here is a C++ way of doing it, using the standard Windows API functions:
Note that the catch part is purely educational - in a real situation you would properly cleanup after the memory allocation and actually use the error code! |
|||
|
|
|
Valentin's answer is correct, but note commenter plinth's warning about the possibility of a memory leak. I'm also not sure why you'd use ::HeapAlloc in this day and age. Here is a snippet that uses new and boost::shared_array to do the same thing in what IMHO is a safer and cleaner way.
|
||
|
|
|
|
Here's a Delphi 7 version:
|
||
|
|
