Merged revision(s) 63983 #1db96371a5 from trunk:

FpDebug: fix stdcall
........

git-svn-id: branches/fixes_2_0@63984 -
This commit is contained in:
martin 2020-10-09 14:21:04 +00:00
parent d7ef338ff6
commit 99021f5b35

View File

@ -189,7 +189,7 @@ end;
{ TDbgFileLoader }
{$ifdef USE_WIN_FILE_MAPPING}
function CreateFileW(lpFileName:LPCWSTR; dwDesiredAccess:DWORD; dwShareMode:DWORD; lpSecurityAttributes:LPSECURITY_ATTRIBUTES; dwCreationDisposition:DWORD;dwFlagsAndAttributes:DWORD; hTemplateFile:HANDLE):HANDLE; external 'kernel32' name 'CreateFileW';
function CreateFileW(lpFileName:LPCWSTR; dwDesiredAccess:DWORD; dwShareMode:DWORD; lpSecurityAttributes:LPSECURITY_ATTRIBUTES; dwCreationDisposition:DWORD;dwFlagsAndAttributes:DWORD; hTemplateFile:HANDLE):HANDLE; stdcall; external 'kernel32' name 'CreateFileW';
{$ENDIF}
constructor TDbgFileLoader.Create(AFileName: String);