diff options
Diffstat (limited to 'src/ipc_state.h')
-rw-r--r-- | src/ipc_state.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/ipc_state.h b/src/ipc_state.h new file mode 100644 index 0000000..be71673 --- /dev/null +++ b/src/ipc_state.h | |||
@@ -0,0 +1,20 @@ | |||
1 | #ifndef IPC_STATE_H_6B3B0958 | ||
2 | #define IPC_STATE_H_6B3B0958 | ||
3 | |||
4 | #include <optional> | ||
5 | #include <string> | ||
6 | #include <tuple> | ||
7 | |||
8 | class TrackerFrame; | ||
9 | |||
10 | void IPC_Start(TrackerFrame* tracker_frame); | ||
11 | |||
12 | std::optional<std::string> IPC_GetStatusMessage(); | ||
13 | |||
14 | void IPC_SetTrackerSlot(std::string server, std::string user); | ||
15 | |||
16 | bool IPC_IsConnected(); | ||
17 | |||
18 | std::optional<std::tuple<int, int>> IPC_GetPlayerPosition(); | ||
19 | |||
20 | #endif /* end of include guard: IPC_STATE_H_6B3B0958 */ | ||