home *** CD-ROM | disk | FTP | other *** search
/ Enter 2005 March / ENTER.ISO / files / fwp-0.0.6-win32-installer.exe / SubSystemInfo.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-12-06  |  329 b   |  19 lines

  1. #ifndef __SubSystemInfo_h__
  2. #define __SubSystemInfo_h__
  3.  
  4.  
  5. class SubSystemInfo{
  6. public:
  7.     static bool init();
  8.     static bool shutdown();
  9.     static bool wasInit();
  10.  
  11.     static bool registerCVarsAndCCmds();
  12.     static bool unregisterCVarsAndCCmds();
  13.  
  14. protected:
  15.     static bool initialized;
  16. };
  17.  
  18. #endif    /* __SubSystemInfo_h__ */
  19.