/[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 798 by stargo, Sat Nov 6 15:29:38 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    #ifdef HAVE_SYS_SELECT_H
26    #include <sys/select.h>
27    #else
28    #include <sys/time.h>
29    #include <sys/types.h>
30    #include <unistd.h>
31    #endif
32    
33  #define VERSION "1.3.1"  #define VERSION "1.3.1"
34    
# Line 58  Line 66 
66  #define MAX(x,y)                (((x) > (y)) ? (x) : (y))  #define MAX(x,y)                (((x) > (y)) ? (x) : (y))
67  #endif  #endif
68    
69    /* If configure does not define the endianess, try
70       to find it out */
71    #if !defined(L_ENDIAN) && !defined(B_ENDIAN)
72    #if __BYTE_ORDER == __LITTLE_ENDIAN
73    #define L_ENDIAN
74    #elif __BYTE_ORDER == __BIG_ENDIAN
75    #define B_ENDIAN
76    #else
77    #error Unknown endianness. Edit rdesktop.h.
78    #endif
79    #endif /* B_ENDIAN, L_ENDIAN from configure */
80    
81  #include "parse.h"  #include "parse.h"
82  #include "constants.h"  #include "constants.h"
83  #include "types.h"  #include "types.h"

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

  ViewVC Help
Powered by ViewVC 1.1.26