--- sourceforge.net/trunk/rdesktop/rdesktop.h 2002/09/24 07:33:17 190 +++ sourceforge.net/trunk/rdesktop/rdesktop.h 2003/03/06 15:36:28 341 @@ -1,7 +1,7 @@ /* rdesktop: A Remote Desktop Protocol client. Master include file - Copyright (C) Matthew Chapman 1999-2000 + Copyright (C) Matthew Chapman 1999-2002 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -22,7 +22,7 @@ #include #include -#define VERSION "1.1.0" +#define VERSION "1.2.0" #ifdef WITH_DEBUG #define DEBUG(args) printf args; @@ -36,6 +36,12 @@ #define DEBUG_KBD(args) #endif +#ifdef WITH_DEBUG_RDP5 +#define DEBUG_RDP5(args) printf args; +#else +#define DEBUG_RDP5(args) +#endif + #define STRNCPY(dst,src,n) { strncpy(dst,src,n-1); dst[n-1] = 0; } #include "constants.h"