mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 07:58:04 +02:00
25 lines
530 B
ObjectPascal
25 lines
530 B
ObjectPascal
{ Old file: tbs0270.pp }
|
|
{ unexpected eof in tp mode with (* and directives OK 0.99.13 (PFV) }
|
|
|
|
unit tb0230;
|
|
|
|
{$mode tp}
|
|
|
|
interface
|
|
|
|
const
|
|
s='df';
|
|
|
|
{$IFDEF VDE}
|
|
SFilterOpen = ' (*.nnn)|*.nnn' + '|' + 'Alle Files (*.*)|*.*';
|
|
SFilterSave = ' (*.nnn)|*.nnn';
|
|
SFilterOpen2 = ' (*.vvv)|*.vvv' + '|' + 'All Files (*.*)|*.*';
|
|
SFilterSave2 = ' (*.vvv)|*.vvv';
|
|
SFilterOpen3 = ' (*.eee)|*.eee' + '|' + 'All Files (*.*)|*.*';
|
|
SFilterSave3 = ' (*.eee)|*.eee';
|
|
{$ENDIF}
|
|
|
|
implementation
|
|
|
|
end.
|