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