dep: Add discord-rpc

This commit is contained in:
Connor McLaughlin
2020-05-01 01:01:42 +10:00
parent efa2af7772
commit 6e7c58de43
22 changed files with 2459 additions and 0 deletions

View File

@ -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);
};