mirror of
https://github.com/debauchee/barrier.git
synced 2026-02-11 06:05:08 +08:00
19 lines
274 B
C
19 lines
274 B
C
#ifndef CPLATFORM_H
|
|
#define CPLATFORM_H
|
|
|
|
#include "common.h"
|
|
|
|
#if defined(CONFIG_PLATFORM_WIN32)
|
|
|
|
#include "CWin32Platform.h"
|
|
typedef CWin32Platform CPlatform;
|
|
|
|
#elif defined(CONFIG_PLATFORM_UNIX)
|
|
|
|
#include "CUnixPlatform.h"
|
|
typedef CUnixPlatform CPlatform;
|
|
|
|
#endif
|
|
|
|
#endif
|