Files
redAcore/LogCore.h
Charl Wentzel eb0ab67499 Minor Update:
- Complete LogCore functions
- Implement ShowOutput() in Port and Socket functions
2016-05-17 11:23:57 +02:00

33 lines
644 B
C

/*
* LogCore.h
*
* Created on: 17 May 2016
* Author: wentzelc
*/
#ifndef LOGCORE_H_
#define LOGCORE_H_
// redA Libraries
/* none */
// Standard C/C++ Libraries
/* none */
//---------------------------------------------------------------------------
// Debug options
const short
OUT_NORMAL = 1,
OUT_HEX = 2,
OUT_CRLF = 4,
OUT_ASIS = 8;
//---------------------------------------------------------------------------
bool ShowOutput( const char * Heading, const short Show, const char * Buffer, int Len = -1 );
//---------------------------------------------------------------------------
#endif /* LOGCORE_H_ */