compiler: add comment for all application types

git-svn-id: trunk@23602 -
This commit is contained in:
paul 2013-02-13 02:05:07 +00:00
parent 8db6118965
commit f9277d2043
2 changed files with 9 additions and 8 deletions

View File

@ -316,7 +316,8 @@ interface
{ parameter switches }
debugstop : boolean;
{$EndIf EXTDEBUG}
{ windows / OS/2 application type }
{ Application type (platform specific)
see globtype.pas for description }
apptype : tapptype;
features : tfeatures;

View File

@ -373,16 +373,16 @@ interface
alllanguagemodes = [m_fpc,m_objfpc,m_delphi,m_tp7,m_mac,m_iso];
type
{ Win32, OS/2 & MacOS application types }
{ Application types (platform specific) }
tapptype = (
app_none,
app_native,
app_gui, { graphic user-interface application}
app_cui, { console application}
app_native, { native for Windows and NativeNT targets }
app_gui, { graphic user-interface application }
app_cui, { console application }
app_fs, { full-screen type application (OS/2 and EMX only) }
app_tool, { tool application, (MPW tool for MacOS, MacOS only)}
app_arm7,
app_arm9,
app_tool, { tool application, (MPW tool for MacOS, MacOS only) }
app_arm7, { for Nintendo DS target }
app_arm9, { for Nintendo DS target }
app_bundle { dynamically loadable bundle, Darwin only }
);