Minor Update:

- Complete LogCore functions
- Implement ShowOutput() in Port and Socket functions
This commit is contained in:
Charl Wentzel
2016-05-17 11:23:57 +02:00
parent d7facce4de
commit eb0ab67499
4 changed files with 38 additions and 15 deletions

View File

@@ -17,12 +17,15 @@
//---------------------------------------------------------------------------
// Debug options
bool ShowOutBytes = true;
bool ShowOutHex = true;
const short
OUT_NORMAL = 1,
OUT_HEX = 2,
OUT_CRLF = 4,
OUT_ASIS = 8;
//---------------------------------------------------------------------------
void ShowOutput( const char * Name, const char * Buffer, const int Len, const long Duration );
bool ShowOutput( const char * Heading, const short Show, const char * Buffer, int Len = -1 );
//---------------------------------------------------------------------------