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

  1. #include "SubSystemInfo.h"
  2.  
  3.  
  4. bool SubSystemInfo::initialized=false;
  5.  
  6. bool SubSystemInfo::init(){
  7.     initialized=true;
  8.  
  9.     return true;
  10. }
  11.  
  12. bool SubSystemInfo::shutdown(){
  13.     initialized=false;
  14.  
  15.     return true;
  16. }
  17.  
  18. bool SubSystemInfo::wasInit(){
  19.     return initialized;
  20. }
  21.  
  22.