mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 17:28:14 +02:00
23 lines
375 B
ObjectPascal
23 lines
375 B
ObjectPascal
{ %TARGET=win32,linux,wince,haiku }
|
|
{ %needlibrary }
|
|
{ %NORUN }
|
|
|
|
{ Old file: tbs0263.pp }
|
|
{ export directive is not necessary in delphi anymore OK 0.99.13 (PFV) }
|
|
|
|
library tb0225;
|
|
|
|
{
|
|
The export directive is not necessary anymore in delphi, it's a leftover
|
|
from the 16bit model, just like near and far.
|
|
}
|
|
|
|
procedure testp;
|
|
begin
|
|
end;
|
|
|
|
exports
|
|
testp name 'testp';
|
|
|
|
end.
|