mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 19:08:18 +02:00

expressions in case of TP/Mac-style procvar modes (mantis #21073) git-svn-id: trunk@20062 -
27 lines
752 B
ObjectPascal
27 lines
752 B
ObjectPascal
{ %norun }
|
|
|
|
{$mode delphi}
|
|
|
|
program gpabugtest;
|
|
|
|
TYPE TGetCurrentProcess = function : THandle; stdcall;
|
|
TGetProcAddress = function(const hModule : THandle; const lpProcName : PAnsiChar) : Pointer; stdcall;
|
|
|
|
function GetProcAddress(const hModule : THandle;const lpProcName : PAnsiChar) : Pointer; stdcall;
|
|
begin
|
|
result:=nil;
|
|
end;
|
|
|
|
function GetModuleHandle(const lpModuleName : PWideChar) : THandle; stdcall;
|
|
begin
|
|
result:=thandle(-1);
|
|
end;
|
|
|
|
var proc_GetCurrentProcess : TGetCurrentProcess;
|
|
proc_GetProcAddress : TGetProcAddress;
|
|
|
|
begin
|
|
{no error} proc_GetCurrentProcess:=GetProcAddress(GetModuleHandle('Kernel32'),'GetCurrentProcess');
|
|
{error ??} proc_GetProcAddress:= GetProcAddress(GetModuleHandle('Kernel32'),'GetProcAddress');
|
|
end.
|