to DragonPC_???:
你说的那个例子的UABOUT中的146行出错,代码是
if VerQueryValue(VData,@ItemName[1],VVers,Len) then
if Len > 0 then begin
if Len > 255 then
//-- "Truncate" any long strings
Len := 255;
Move(VVers, Result, SizeOf(Len));
第一行就是源码中的146行
错误信息如下:
[Error] uabout.pas(146): Types of actual and formal var parameters must be identical
为什么?