mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 23:28:28 +02:00
Avoid range check error for Win64 by correcting type of parameters for GetModuleFileNameA WinAPI function
git-svn-id: trunk@34148 -
This commit is contained in:
parent
d1a610a2fc
commit
d4945f4fd0
@ -9,7 +9,7 @@
|
||||
}
|
||||
library testdll;
|
||||
|
||||
function GetModuleFileName(hModule:longint;lpszPath:pchar;cchPath:longint):longint;
|
||||
function GetModuleFileName(hModule:HModule;lpszPath:pchar;cchPath:dword):dword;
|
||||
stdcall; external 'kernel32' name 'GetModuleFileNameA';
|
||||
procedure beep(ID:longint);
|
||||
stdcall; external 'user32' name 'MessageBeep';
|
||||
|
Loading…
Reference in New Issue
Block a user