Cemu/src/Common/platform.h

18 lines
374 B
C
Raw Normal View History

2022-08-22 22:21:23 +02:00
#pragma once
#include <boost/predef/os.h>
2022-08-22 22:21:23 +02:00
#include <cstdint>
#if BOOST_OS_WINDOWS
#include "Common/windows/platform.h"
#elif BOOST_OS_LINUX
2022-08-26 04:03:26 +02:00
#include <byteswap.h>
#include <X11/Xlib.h>
#include <X11/extensions/Xrender.h>
#include <X11/Xutil.h>
#include "Common/unix/platform.h"
2022-08-22 22:21:23 +02:00
#elif BOOST_OS_MACOS
2022-08-26 04:03:26 +02:00
#include <libkern/OSByteOrder.h>
#include "Common/unix/platform.h"
#endif