]> git.tdb.fi Git - libs/core.git/blob - source/core/unix/process_platform.h
Add a Process class for running and interfacing with other programs
[libs/core.git] / source / core / unix / process_platform.h
1 #ifndef MSP_CORE_PROCESS_PLATFORM_H_
2 #define MSP_CORE_PROCESS_PLATFORM_H_
3
4 #include <sys/types.h>
5
6 namespace Msp {
7
8 struct PlatformProcessInformation
9 {
10         pid_t pid;
11 };
12
13 } // namespace Msp
14
15 #endif