Platform_NULL_OS.cpp
Go to the documentation of this file.00001 //*** Platform_NULL_OS *** 00002 00003 #include "Platform_NULL_OS.h" 00004 00005 00006 //*** Constructor *** 00007 00008 Platform_NULL_OS::Platform_NULL_OS() 00009 { 00010 } 00011 00012 //*** OsYield *** 00013 00014 void Platform_NULL_OS::OsYield() 00015 { 00016 Platform::SendEvent_OsYield(); 00017 } 00018 00019 00020 //*** SetApplicationName *** 00021 00022 void Platform_NULL_OS::SetApplicationName(const char* applicationName) 00023 { 00024 } 00025 00026 00027 //*** GetCommandLineString *** 00028 00029 const char* Platform_NULL_OS::GetCommandLineString() 00030 { 00031 return ""; 00032 } 00033 00034 00035 //*** GetExecutablePath *** 00036 00037 const char* Platform_NULL_OS::GetExecutablePath() 00038 { 00039 return ""; 00040 } 00041 00042 00043 //*** HasFocus *** 00044 00045 bool Platform_NULL_OS::HasFocus() 00046 { 00047 return true; 00048 } 00049 00050 00051 //*** ExitRequested *** 00052 00053 bool Platform_NULL_OS::ExitRequested() 00054 { 00055 return false; 00056 } 00057 00058 00059 //*** DisplayAssertMessage *** 00060 00061 void Platform_NULL_OS::DisplayAssertMessage(const char* expression, const char* message, const char* file, int line) 00062 { 00063 } 00064 00065 00066 //*** OutputDebugText *** 00067 00068 void Platform_NULL_OS::OutputDebugText(const char * formatstr, ...) 00069 { 00070 } 00071 00072 00073 //*** ReportFatalError *** 00074 00075 void Platform_NULL_OS::ReportFatalError(const char* message, const char* file, int line) 00076 { 00077 }
Reproduction/republishing of any material on this site without permission is strictly prohibited.
