Nebula
Loading...
Searching...
No Matches
process.h
Go to the documentation of this file.
1#pragma once
2//------------------------------------------------------------------------------
12#if __WIN32__
13#include "win32/win32process.h"
14namespace System
15{
16typedef Win32::Win32Process Process;
17}
18#elif __linux__
19#include "posix/posixprocess.h"
20namespace System
21{
22typedef Posix::PosixProcess Process;
23}
24#else
25#error "System::Process not implemented on this platform!"
26#endif
27//------------------------------------------------------------------------------
28
Definition posixprocess.h:19
Definition win32process.h:21
Definition osxsysfunc.h:15