]> git.mxchange.org Git - flightgear.git/blobdiff - Main/fg_debug.h
Incorporated HUD changes and struct/typedef changes from Charlie Hotchkiss
[flightgear.git] / Main / fg_debug.h
index e341286536112d717d992e8a7ae5793458da3c6c..09943db0d6cf545d2a46169dcdb7fb7d9a10a84a 100644 (file)
@@ -28,7 +28,7 @@
 
 #include <stdio.h>
 
-/* NB:  To add a class, add it here, and add it to the structure
+/* NB:  To add a dbg_class, add it here, and add it to the structure
    in fg_debug.c
 */
 typedef enum {
@@ -44,6 +44,7 @@ typedef enum {
   FG_GENERAL = 0x00000080,
   FG_MATH    = 0x00000100,
   FG_EVENT   = 0x00000200,
+  FG_AIRCRAFT= 0x00000400,
 
   FG_ALL     = 0xFFFFFFFF
 } fgDebugClass;
@@ -81,16 +82,16 @@ void fgInitDebug( void );
    greater than or equal to fg_DebugPriority and in the current debug class 
    (fg_DebugClass) are printed.
 */
-int fgPrintf( fgDebugClass class, fgDebugPriority prio, char *fmt, ... ); 
+int fgPrintf( fgDebugClass dbg_class, fgDebugPriority prio, char *fmt, ... ); 
 
 
 /* fgSetDebugLevels()
 
    Expects:
-   class      Bitmask representing classes to display.
+   dbg_class      Bitmask representing classes to display.
    prio       Minimum priority of messages to display.
 */
-void fgSetDebugLevels( fgDebugClass class, fgDebugPriority prio );
+void fgSetDebugLevels( fgDebugClass dbg_class, fgDebugPriority prio );
 
 /* fgSetDebugOutput()