mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-11 12:25:59 +02:00
compiler: add comment for all application types
git-svn-id: trunk@23602 -
This commit is contained in:
parent
8db6118965
commit
f9277d2043
@ -316,7 +316,8 @@ interface
|
|||||||
{ parameter switches }
|
{ parameter switches }
|
||||||
debugstop : boolean;
|
debugstop : boolean;
|
||||||
{$EndIf EXTDEBUG}
|
{$EndIf EXTDEBUG}
|
||||||
{ windows / OS/2 application type }
|
{ Application type (platform specific)
|
||||||
|
see globtype.pas for description }
|
||||||
apptype : tapptype;
|
apptype : tapptype;
|
||||||
|
|
||||||
features : tfeatures;
|
features : tfeatures;
|
||||||
|
@ -373,16 +373,16 @@ interface
|
|||||||
alllanguagemodes = [m_fpc,m_objfpc,m_delphi,m_tp7,m_mac,m_iso];
|
alllanguagemodes = [m_fpc,m_objfpc,m_delphi,m_tp7,m_mac,m_iso];
|
||||||
|
|
||||||
type
|
type
|
||||||
{ Win32, OS/2 & MacOS application types }
|
{ Application types (platform specific) }
|
||||||
tapptype = (
|
tapptype = (
|
||||||
app_none,
|
app_none,
|
||||||
app_native,
|
app_native, { native for Windows and NativeNT targets }
|
||||||
app_gui, { graphic user-interface application}
|
app_gui, { graphic user-interface application }
|
||||||
app_cui, { console application}
|
app_cui, { console application }
|
||||||
app_fs, { full-screen type application (OS/2 and EMX only) }
|
app_fs, { full-screen type application (OS/2 and EMX only) }
|
||||||
app_tool, { tool application, (MPW tool for MacOS, MacOS only)}
|
app_tool, { tool application, (MPW tool for MacOS, MacOS only) }
|
||||||
app_arm7,
|
app_arm7, { for Nintendo DS target }
|
||||||
app_arm9,
|
app_arm9, { for Nintendo DS target }
|
||||||
app_bundle { dynamically loadable bundle, Darwin only }
|
app_bundle { dynamically loadable bundle, Darwin only }
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user