Chang Dll Version
C / C++ / MFC
3
Posts
2
Posters
0
Views
1
Watching
-
There is a WIN32 function GetFileVersionInfo to get file version information. Is there a "SetFileVersionInfo" or similiar WIN32 function to change the version information?
-
Up to my knowledge, this information is stored in the DLL as a resource! So you can change it at design time from within your compiler! What do you mean changing the value at runtime? In memory only or do you want the chage to be permenant?! :((
I know UpdateResource can be used to make the change. Do you know if there is an example showing how to change version information permanently using this function? In MSDN, there are some links about how to change dialog resource and string table resource using the function. But I didn't find anything about version. Thanks.