File indexing completed on 2024-09-08 07:33:55
0001 /** 0002 * This file should always be included instead of <rfb/rfb.h> because otherwise it's redefinition 0003 * of TRUE and FALSE plays havoc with other things. 0004 */ 0005 0006 #ifndef KRFB_RFB_H 0007 #define KRFB_RFB_H 0008 0009 #include "rfb/rfb.h" 0010 0011 #ifdef max 0012 #undef max 0013 #endif 0014 0015 #undef TRUE 0016 #undef FALSE 0017 0018 #endif // Header guard 0019