Main Page | Class Hierarchy | Class List | File List | Class Members | File Members

aw.h

Go to the documentation of this file.
00001 // aw.h 00002 00003 // IF(ansi, widechar) 00004 // AW(x) add suffix (A or W) 00005 // L(x) makes widechar when WIDE is defined 00006 00007 #ifdef AW 00008 #undef AW 00009 #endif 00010 #ifdef IF 00011 #undef IF 00012 #endif 00013 #ifdef L 00014 #undef L 00015 #endif 00016 00017 #ifndef CONCAT 00018 #define CONCAT(a,b) a##b 00019 #endif 00020 00021 #if defined(WIDE) && (WIDE) 00022 00023 #define IF(a,w) w 00024 #define AW(x) x##W 00025 #define L(x) CONCAT(L, x) 00026 00027 #else 00028 00029 #define IF(a,w) a 00030 #define AW(x) x##A 00031 #define L(x) x 00032 00033 #endif 00034

Generated on Sat May 15 19:39:17 2004 for test by doxygen 1.3.7