/[rdesktop]/sourceforge.net/trunk/rdesktop/rdesktop.h
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /sourceforge.net/trunk/rdesktop/rdesktop.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 569 by n-ki, Wed Jan 21 14:40:40 2004 UTC revision 692 by stargo, Fri May 7 04:56:09 2004 UTC
# Line 21  Line 21 
21  #include <stdlib.h>  #include <stdlib.h>
22  #include <stdio.h>  #include <stdio.h>
23  #include <string.h>  #include <string.h>
24    #include <dirent.h>
25    
26  #define VERSION "1.3.1"  #define VERSION "1.3.1"
27    
# Line 58  Line 59 
59  #define MAX(x,y)                (((x) > (y)) ? (x) : (y))  #define MAX(x,y)                (((x) > (y)) ? (x) : (y))
60  #endif  #endif
61    
62    /* If configure does not define the endianess, try
63       to find it out */
64    #if !defined(L_ENDIAN) && !defined(B_ENDIAN)
65    #if __BYTE_ORDER == __LITTLE_ENDIAN
66    #define L_ENDIAN
67    #elif __BYTE_ORDER == __BIG_ENDIAN
68    #define B_ENDIAN
69    #else
70    #error Unknown endianness. Edit rdesktop.h.
71    #endif
72    #endif /* B_ENDIAN, L_ENDIAN from configure */
73    
74  #include "parse.h"  #include "parse.h"
75  #include "constants.h"  #include "constants.h"
76  #include "types.h"  #include "types.h"

Legend:
Removed from v.569  
changed lines
  Added in v.692

  ViewVC Help
Powered by ViewVC 1.1.26