2 rdesktop: A Remote Desktop Protocol client.
4 Copyright (C) Matthew Chapman 1999-2004
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 #define VERSION "1.3.1"
28 #define WITH_DEBUG_RDP5 1
31 #define DEBUG(args) printf args;
37 #define DEBUG_KBD(args) printf args;
39 #define DEBUG_KBD(args)
42 #ifdef WITH_DEBUG_RDP5
43 #define DEBUG_RDP5(args) printf args;
45 #define DEBUG_RDP5(args)
48 #ifdef WITH_DEBUG_CLIPBOARD
49 #define DEBUG_CLIPBOARD(args) printf args;
51 #define DEBUG_CLIPBOARD(args)
54 #define STRNCPY(dst,src,n) { strncpy(dst,src,n-1); dst[n-1] = 0; }
56 #define MIN(x,y) (((x) < (y)) ? (x) : (y))
59 #define MAX(x,y) (((x) > (y)) ? (x) : (y))
63 #include "constants.h"