Set EXE VersionInfo



通过VerQueryValue获取的版本exe文件信息。是否有一个逆函数(WinApi或Delphi)可以注册(建立或更改)这样的信息?例如,这里有一个程序可以做到这一点。它是如何工作的(http://www.angusj.com/resourcehacker)?

版本信息通过资源存储;要编辑它,您只需要编辑该资源。这里是我发现的一个单元,可以克隆现有文件的版本信息,并将其附加到另一个文件。从这段代码开始做你想做的事情非常容易(它是由我的一个朋友编写的,是公开的):

unit cloneinfo;
interface
uses Windows, SysUtils;
type
 LANGANDCODEPAGE = record
  wLanguage: Word;
  wCodePage: Word;
 end;
procedure clone(sFile,output:string);
implementation
procedure clone(sFile,output:string);
var
  dwHandle, cbTranslate: cardinal;
  sizeVers: DWord;
  lpData, langData: Pointer;
  lpTranslate: ^LANGANDCODEPAGE;
  hRes : THandle;
begin
 sizeVers := GetFileVersionInfoSize(PChar(sFile), dwHandle);
 If sizeVers = 0 then
 exit;
 GetMem(lpData, sizeVers);
 try
  ZeroMemory(lpData, sizeVers);
  GetFileVersionInfo (PChar(sFile), 0, sizeVers, lpData);
  If not VerQueryValue (lpData, 'VarFileInfoTranslation', langData, cbTranslate) then
  exit;
  hRes := BeginUpdateResource(pchar(output), FALSE);
  //For i := 0 to (cbTranslate div sizeof(LANGANDCODEPAGE)) do
  //begin
  lpTranslate := Pointer(Integer(langData) + sizeof(LANGANDCODEPAGE));
  UpdateResource(hRes, RT_VERSION, MAKEINTRESOURCE(VS_VERSION_INFO), lpTranslate^.wLanguage,lpData, sizeVers);
  //end;
  EndUpdateResource(hRes, FALSE);
 finally
  FreeMem(lpData);
 end;
end;

end.

最新更新