function GetLongPathName(const ShortName : string) : string;
var
pcBuffer: PChar;
iHandle, iLen : Integer;
GetLongPathName: function (ShortPathName: PChar; LongPathName: PChar;
cchBuffer: Integer): Integer stdcall;
소스을 분석 하고 있는데 다른 부분은 알겟지만 GetLongPathName: function 이부분을 어덯게 해석을 해야 하는지요?
|