I understand the first argument must be the result of GetFileVersionInfo().
The third and forth are target buffer and size
What is the second argument, lpSubBlock?
Thanks In Advance
|
1
|
|
|
|
|
|
When you view the version info through the resource editor you might notice that there is an initial section with FILEVERSION, PRODUCTVERISON etc. and then one or more blocks which contain language specific settings.
To get a VS_FIXEDFILEINFO with the non language specific detail use
To find out what languages are supported use
To get the language specific version detail then use
|
||
|
|
|
|
It must be a string whose format you can find here: There is another example of usage (in VB, easy to read): You can also check out this whole CodeProject article for a working example in C++: Another article on the subject of retrieving version information: |
||
|
|