mirror of
https://github.com/debauchee/barrier.git
synced 2024-11-27 10:38:48 +03:00
23 lines
272 B
C
23 lines
272 B
C
#ifndef CPLATFORM_H
|
|
#define CPLATFORM_H
|
|
|
|
#include "common.h"
|
|
|
|
#if WINDOWS_LIKE
|
|
|
|
#include "CWin32Platform.h"
|
|
typedef CWin32Platform CPlatform;
|
|
|
|
#elif UNIX_LIKE
|
|
|
|
#include "CUnixPlatform.h"
|
|
typedef CUnixPlatform CPlatform;
|
|
|
|
#else
|
|
|
|
#error Unsupported platform
|
|
|
|
#endif
|
|
|
|
#endif
|