scummvm/test/null_osystem.h
Vladimir Serbinenko cd8270f039 TEST: Third attempt to fix the tests
Some tests unnecessarily referred to null osystem. Tested with PSP target
2020-11-16 01:51:14 +01:00

12 lines
234 B
C++

#ifndef TEST_NULL_OSYSTEM
#define TEST_NULL_OSYSTEM 1
namespace Common {
#if defined(POSIX) || defined(WIN32)
void install_null_g_system();
#define NULL_OSYSTEM_IS_AVAILABLE 1
#else
#define NULL_OSYSTEM_IS_AVAILABLE 0
#endif
}
#endif