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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
2004-12-06
|
280 b
|
22 lines
#include "SubSystemInfo.h"
bool SubSystemInfo::initialized=false;
bool SubSystemInfo::init(){
initialized=true;
return true;
}
bool SubSystemInfo::shutdown(){
initialized=false;
return true;
}
bool SubSystemInfo::wasInit(){
return initialized;
}