/[rdesktop]/jpeg/rdesktop/trunk/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 /jpeg/rdesktop/trunk/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 756 by stargo, Tue Aug 24 21:37:50 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    #include <sys/select.h>
26    
27  #define VERSION "1.3.1"  #define VERSION "1.3.1"
28    
# Line 58  Line 60 
60  #define MAX(x,y)                (((x) > (y)) ? (x) : (y))  #define MAX(x,y)                (((x) > (y)) ? (x) : (y))
61  #endif  #endif
62    
63    /* If configure does not define the endianess, try
64       to find it out */
65    #if !defined(L_ENDIAN) && !defined(B_ENDIAN)
66    #if __BYTE_ORDER == __LITTLE_ENDIAN
67    #define L_ENDIAN
68    #elif __BYTE_ORDER == __BIG_ENDIAN
69    #define B_ENDIAN
70    #else
71    #error Unknown endianness. Edit rdesktop.h.
72    #endif
73    #endif /* B_ENDIAN, L_ENDIAN from configure */
74    
75  #include "parse.h"  #include "parse.h"
76  #include "constants.h"  #include "constants.h"
77  #include "types.h"  #include "types.h"

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

  ViewVC Help
Powered by ViewVC 1.1.26