mirror of
https://github.com/libretro/bsnes-libretro.git
synced 2024-11-23 08:59:40 +00:00
14 lines
319 B
C++
Executable File
14 lines
319 B
C++
Executable File
#pragma once
|
|
|
|
#include <nall/memory.hpp>
|
|
#include <nall/string.hpp>
|
|
|
|
#if defined(API_POSIX) && !defined(PLATFORM_HORIZON)
|
|
#include <nall/posix/shared-memory.hpp>
|
|
#endif
|
|
|
|
// For Horizon we re-use the Windows stub
|
|
#if defined(API_WINDOWS) || defined(PLATFORM_HORIZON)
|
|
#include <nall/windows/shared-memory.hpp>
|
|
#endif
|