]> git.mxchange.org Git - simgear.git/blobdiff - simgear/debug/debug_types.h
Add project.* to MSVC project files
[simgear.git] / simgear / debug / debug_types.h
index d260cba0d906a3fe67962c2f9171147e071d46b8..e0013e2bf1259cd0ae1ee7d78e78ecb66a74dbbe 100644 (file)
@@ -24,7 +24,10 @@ typedef enum {
     SG_CLIPPER   = 0x00002000,
     SG_NETWORK   = 0x00004000,
     SG_ATC       = 0x00008000,
-    SG_UNDEFD    = 0x00010000, // For range checking
+    SG_NASAL     = 0x00010000,
+    SG_INSTR     = 0x00020000,
+    SG_SYSTEMS   = 0x00040000,
+    SG_UNDEFD    = 0x00080000, // For range checking
 
     SG_ALL     = 0xFFFFFFFF
 } sgDebugClass;
@@ -34,11 +37,12 @@ typedef enum {
  * Define the possible logging priorities (and their order).
  */
 typedef enum {
-    SG_BULK,       // For frequent messages
-    SG_DEBUG,      // Less frequent debug type messages
-    SG_INFO,        // Informatory messages
-    SG_WARN,       // Possible impending problem
-    SG_ALERT       // Very possible impending problem
+    SG_BULK = 1,       // For frequent messages
+    SG_DEBUG,          // Less frequent debug type messages
+    SG_INFO,           // Informatory messages
+    SG_WARN,           // Possible impending problem
+    SG_ALERT           // Very possible impending problem
     // SG_EXIT,        // Problem (no core)
     // SG_ABORT        // Abandon ship (core)
 } sgDebugPriority;
+