Repository URL to install this package:
|
Version:
3.2.0 ▾
|
{ %norun }
{ if the compiler is still buggy and consumed the "calling stdcall" while
parsing the forward definition of test, it will complain about a calling
convention mismatch when parsing the actual definition
}
{$calling cdecl}
function test(l1,l2: longint): longint; forward;
{$calling stdcall}
function test(l1,l2: longint): longint; cdecl;
begin
end;
begin
end.