Registriert seit: 23. Sep 2002
Ort: Frankfurt am Main (in der Nähe)
1.840 Beiträge
Delphi 10 Seattle Enterprise
|
Einige Fragen zu Delphi 8 (vordefinierten Symbole)
19. Apr 2004, 12:55
Stichwörter: conditional symbol
Hallo.
Wo gibt es denn eine Liste der vordefinierten Symbole bei Delphi 8 ?
Delphi 8 => Kein Win32
Delphi 8 => VER160
Delphi 8 => CLR
Delphi-Quellcode:
{$IFDEF WIN32}
Label1.Caption := ' Win32';
{$ELSE}
Label1.Caption := ' kein Win32';
{$ENDIF}
{$IFDEF VER160}
Label2.caption := ' VER160';
{$ELSE}
Label2.caption := ' kein VER160';
{$ENDIF}
{$ifdef CLR} // The common language runtime symbol is only defined for the .NET platform.
Label3.caption := ' CLR';
{$ELSE}
Label3.caption := ' kein CLR';
{$ENDIF}
|