mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-28 23:16:15 -04:00
23 lines
265 B
C
23 lines
265 B
C
#ifndef BASE_EVENT_H
|
|
#define BASE_EVENT_H
|
|
|
|
#ifdef WIN32
|
|
|
|
#include "win32/Event.h"
|
|
|
|
#elif linux
|
|
|
|
#include "linux/Event.h"
|
|
|
|
#elif sparc
|
|
|
|
#include "solaris/Event.h"
|
|
|
|
#else
|
|
|
|
#error /Base/Event.h: Undefine platform type
|
|
|
|
#endif
|
|
|
|
#endif // BASE_EVENT_H
|