mirror of
https://github.com/DerKoun/bsnes-hd.git
synced 2025-04-02 10:52:49 -04:00
12 lines
277 B
C++
12 lines
277 B
C++
#pragma once
|
|
|
|
#include <nall/memory.hpp>
|
|
#include <nall/string.hpp>
|
|
|
|
#if defined(API_POSIX) && !defined(PLATFORM_HORIZON)
|
|
#include <nall/posix/shared-memory.hpp>
|
|
#endif
|
|
|
|
#if defined(API_WINDOWS) || defined(PLATFORM_HORIZON)
|
|
#include <nall/windows/shared-memory.hpp>
|
|
#endif
|