mirror of
https://git.zaroz.cloud/nintendo-back-up/cemu/Cemu.git
synced 2026-05-09 06:50:46 -07:00
16 lines
No EOL
302 B
C++
16 lines
No EOL
302 B
C++
#pragma once
|
|
|
|
#include "boost/predef/os.h"
|
|
#include <cstdint>
|
|
|
|
#if BOOST_OS_WINDOWS
|
|
#include "Common/windows/platform.h"
|
|
#elif BOOST_OS_LINUX
|
|
#include "byteswap.h"
|
|
//#include <boost/core/enable_if.hpp>
|
|
// #include <boost/type_traits.hpp>
|
|
#include "Common/linux/platform.h"
|
|
|
|
#elif BOOST_OS_MACOS
|
|
|
|
#endif |