]> git.sesse.net Git - rdpsrv/blob - rdesktop.h
Accept ISO CR.
[rdpsrv] / rdesktop.h
1 /*
2    rdesktop: A Remote Desktop Protocol client.
3    Master include file
4    Copyright (C) Matthew Chapman 1999-2004
5    
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.
10    
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.
15    
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.
19 */
20
21 #include <stdlib.h>
22 #include <stdio.h>
23 #include <string.h>
24
25 #define VERSION "1.3.1"
26
27 #define WITH_DEBUG 1
28 #define WITH_DEBUG_RDP5 1
29
30 #ifdef WITH_DEBUG
31 #define DEBUG(args)     printf args;
32 #else
33 #define DEBUG(args)
34 #endif
35
36 #ifdef WITH_DEBUG_KBD
37 #define DEBUG_KBD(args) printf args;
38 #else
39 #define DEBUG_KBD(args)
40 #endif
41
42 #ifdef WITH_DEBUG_RDP5
43 #define DEBUG_RDP5(args) printf args;
44 #else
45 #define DEBUG_RDP5(args)
46 #endif
47
48 #ifdef WITH_DEBUG_CLIPBOARD
49 #define DEBUG_CLIPBOARD(args) printf args;
50 #else
51 #define DEBUG_CLIPBOARD(args)
52 #endif
53
54 #define STRNCPY(dst,src,n)      { strncpy(dst,src,n-1); dst[n-1] = 0; }
55 #ifndef MIN
56 #define MIN(x,y)                (((x) < (y)) ? (x) : (y))
57 #endif
58 #ifndef MAX
59 #define MAX(x,y)                (((x) > (y)) ? (x) : (y))
60 #endif
61
62 #include "parse.h"
63 #include "constants.h"
64 #include "types.h"
65
66 #ifndef MAKE_PROTO
67 #include "proto.h"
68 #endif