/[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 29 by matty, Fri Sep 14 03:38:39 2001 UTC revision 30 by matty, Fri Sep 14 13:51:38 2001 UTC
# Line 24  Line 24 
24    
25  #define VERSION "1.1.0"  #define VERSION "1.1.0"
26    
27  #define STATUS(args...) fprintf(stderr, args);  #ifdef WITH_DEBUG
28  #define ERROR(args...)  fprintf(stderr, "ERROR: "args);  #define DEBUG(args)     printf args;
 #define WARN(args...)   fprintf(stderr, "WARNING: "args);  
 #define NOTIMP(args...) fprintf(stderr, "NOTIMP: "args);  
   
 #ifdef RDP_DEBUG  
 #define DEBUG(args...)  fprintf(stderr, args);  
29  #else  #else
30  #define DEBUG(args...)  #define DEBUG(args)
31  #endif  #endif
32    
33    #define STRNCPY(dst,src,n) { strncpy(dst,src,n-1); dst[n-1] = 0; }
34    
35  #include "constants.h"  #include "constants.h"
36  #include "types.h"  #include "types.h"
37  #include "parse.h"  #include "parse.h"

Legend:
Removed from v.29  
changed lines
  Added in v.30

  ViewVC Help
Powered by ViewVC 1.1.26