mirror of
https://github.com/scummvm/scummvm.git
synced 2026-05-21 05:40:43 +00:00
3fd6465203
Uninstall the backend after installing it. Also start the backend to initialize date. Don't try to initialize the CD manager.
13 lines
266 B
C++
13 lines
266 B
C++
#ifndef TEST_NULL_OSYSTEM
|
|
#define TEST_NULL_OSYSTEM 1
|
|
namespace Common {
|
|
#if defined(POSIX) || defined(WIN32)
|
|
void install_null_g_system();
|
|
void uninstall_null_g_system();
|
|
#define NULL_OSYSTEM_IS_AVAILABLE 1
|
|
#else
|
|
#define NULL_OSYSTEM_IS_AVAILABLE 0
|
|
#endif
|
|
}
|
|
#endif
|