Browse Source

compiler: add comment for all application types

git-svn-id: trunk@23602 -
paul 12 years ago
parent
commit
f9277d2043
2 changed files with 9 additions and 8 deletions
  1. 2 1
      compiler/globals.pas
  2. 7 7
      compiler/globtype.pas

+ 2 - 1
compiler/globals.pas

@@ -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;

+ 7 - 7
compiler/globtype.pas

@@ -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 }
        );