aboutsummaryrefslogtreecommitdiff
path: root/externals/discord-rpc/src/connection.h
diff options
context:
space:
mode:
Diffstat (limited to 'externals/discord-rpc/src/connection.h')
-rw-r--r--externals/discord-rpc/src/connection.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/externals/discord-rpc/src/connection.h b/externals/discord-rpc/src/connection.h
new file mode 100644
index 0000000000..a8f99b9f10
--- /dev/null
+++ b/externals/discord-rpc/src/connection.h
@@ -0,0 +1,19 @@
+#pragma once
+
+// This is to wrap the platform specific kinds of connect/read/write.
+
+#include <stdint.h>
+#include <stdlib.h>
+
+// not really connectiony, but need per-platform
+int GetProcessId();
+
+struct BaseConnection {
+ static BaseConnection* Create();
+ static void Destroy(BaseConnection*&);
+ bool isOpen{false};
+ bool Open();
+ bool Close();
+ bool Write(const void* data, size_t length);
+ bool Read(void* data, size_t length);
+};