wip what layer some things should be in, mostly async now

This commit is contained in:
Chris Marsh
2017-07-17 14:49:31 -07:00
parent 9dc93f64b8
commit 0f10ebff43
5 changed files with 211 additions and 54 deletions

View File

@@ -11,5 +11,5 @@ struct BaseConnection {
bool Open();
bool Close();
bool Write(const void* data, size_t length);
bool Read(void* data, size_t& length);
bool Read(void* data, size_t length);
};