Cross-platform threading, sockets updates, and control stream implementation, and various other fixes

This commit is contained in:
Cameron Gutman
2014-01-18 18:53:50 -05:00
parent f02e916f6c
commit 103c052729
11 changed files with 443 additions and 8 deletions
+4 -4
View File
@@ -5,10 +5,10 @@
typedef struct _BYTE_BUFFER {
char* buffer;
int offset;
int length;
int position;
int byteOrder;
unsigned int offset;
unsigned int length;
unsigned int position;
unsigned int byteOrder;
} BYTE_BUFFER, *PBYTE_BUFFER;
void BbInitializeWrappedBuffer(PBYTE_BUFFER buff, char* data, int offset, int length, int byteOrder);