mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-15 00:08:07 -04:00
24 lines
266 B
C
Executable File
24 lines
266 B
C
Executable File
#ifndef BASE_MUTEX_H
|
|
#define BASE_MUTEX_H
|
|
|
|
#ifdef WIN32
|
|
|
|
#include "win32/Mutex.h"
|
|
|
|
#elif linux
|
|
|
|
#include "linux/Mutex.h"
|
|
|
|
#elif sparc
|
|
|
|
#include "solaris/Mutex.h"
|
|
|
|
#else
|
|
|
|
#error /Base/Mutex.h: Undefine platform type
|
|
|
|
#endif
|
|
|
|
#endif // BASE_MUTEX_H
|
|
|