about summary refs log tree commit diff stats
path: root/src/ipc_state.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ipc_state.h')
-rw-r--r--src/ipc_state.h20
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
8class TrackerFrame;
9
10void IPC_Start(TrackerFrame* tracker_frame);
11
12std::optional<std::string> IPC_GetStatusMessage();
13
14void IPC_SetTrackerSlot(std::string server, std::string user);
15
16bool IPC_IsConnected();
17
18std::optional<std::tuple<int, int>> IPC_GetPlayerPosition();
19
20#endif /* end of include guard: IPC_STATE_H_6B3B0958 */