mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 09:58:27 +02:00
11 lines
365 B
ObjectPascal
11 lines
365 B
ObjectPascal
{ Old file: tbs0232.pp }
|
|
{ const. procedure variables need a special syntax if they use calling specification modifiers }
|
|
|
|
const
|
|
p1 : procedure;stdcall=nil; { <----- this doesn't what you expect !!!!}
|
|
p2 : procedure stdcall=nil; { so delphi supports also this way of }
|
|
{ declaration }
|
|
|
|
begin
|
|
end.
|