You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pEpEngine/src/platform.h

19 lines
239 B
C

// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#ifdef WIN32
#include "platform_windows.h"
#else
#include "platform_unix.h"
#endif
#ifdef __cplusplus
}
#endif