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.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/ipc_state.h b/src/ipc_state.h new file mode 100644 index 0000000..0e6fa51 --- /dev/null +++ b/src/ipc_state.h
@@ -0,0 +1,23 @@
1#ifndef IPC_STATE_H_6B3B0958
2#define IPC_STATE_H_6B3B0958
3
4#include <optional>
5#include <set>
6#include <string>
7#include <tuple>
8
9class TrackerFrame;
10
11void IPC_SetTrackerFrame(TrackerFrame* tracker_frame);
12
13void IPC_Connect(std::string address);
14
15std::optional<std::string> IPC_GetStatusMessage();
16
17void IPC_SetTrackerSlot(std::string server, std::string user);
18
19bool IPC_IsConnected();
20
21std::optional<std::tuple<int, int>> IPC_GetPlayerPosition();
22
23#endif /* end of include guard: IPC_STATE_H_6B3B0958 */