Add namespace to DEBUG variable, add missing UINT64 type to compat.

This commit is contained in:
Michael Jumper 2013-12-11 22:27:35 -08:00
parent 478235be70
commit c38b687ab6
2 changed files with 8 additions and 7 deletions

View File

@ -43,6 +43,7 @@ typedef uint8 BYTE;
typedef uint8 UINT8;
typedef uint16 UINT16;
typedef uint32 UINT32;
typedef uint64 UINT64;
typedef boolean BOOL;
#define TRUE true

View File

@ -40,15 +40,15 @@
#include <stdio.h>
/* Ensure DEBUG is defined to a constant */
#ifndef DEBUG
#define DEBUG 0
/* Ensure GUAC_RDP_DEBUG_LEVEL is defined to a constant */
#ifndef GUAC_RDP_DEBUG_LEVEL
#define GUAC_RDP_DEBUG_LEVEL 0
#endif
/**
* Prints a message to STDERR using the given printf format string and
* arguments. This will only do anything if the DEBUG macro is defined
* and greater than the given log level.
* arguments. This will only do anything if the GUAC_RDP_DEBUG_LEVEL
* macro is defined and greater than the given log level.
*
* @param level The desired log level (an integer).
* @param fmt The format to use when printing.
@ -57,7 +57,7 @@
*/
#define GUAC_RDP_DEBUG(level, fmt, ...) \
do { \
if (DEBUG >= level) \
if (GUAC_RDP_DEBUG_LEVEL >= level) \
fprintf(stderr, "%s:%d: %s(): " fmt "\n", \
__FILE__, __LINE__, __func__, __VA_ARGS__); \
} while (0);