mirror of https://github.com/bsnes-emu/bsnes.git
17 lines
297 B
C++
17 lines
297 B
C++
#ifndef NALL_SERVICE_HPP
|
|
#define NALL_SERVICE_HPP
|
|
|
|
//service model template built on top of shared-memory
|
|
|
|
#include <nall/shared-memory.hpp>
|
|
|
|
#if defined(PLATFORM_POSIX)
|
|
#include <nall/posix/service.hpp>
|
|
#endif
|
|
|
|
#if defined(PLATFORM_WINDOWS)
|
|
#include <nall/windows/service.hpp>
|
|
#endif
|
|
|
|
#endif
|