*** empty log message ***

This commit is contained in:
hyung-hwan 2005-01-21 04:17:50 +00:00
parent 736e00304a
commit f01784016c

View File

@ -1,5 +1,5 @@
/* /*
* $Id: macros.h,v 1.4 2005-01-17 03:12:56 bacon Exp $ * $Id: macros.h,v 1.5 2005-01-21 04:17:50 bacon Exp $
*/ */
#ifndef _XP_MACROS_H_ #ifndef _XP_MACROS_H_
@ -27,14 +27,14 @@
#define XP_QUOTE(val) __XP_QUOTE(val) #define XP_QUOTE(val) __XP_QUOTE(val)
#define __XP_QUOTE(val) #val #define __XP_QUOTE(val) #val
#define XP_MCHAR(ch) ch #define XP_MCHAR(ch) (ch)
#define XP_MTEXT(txt) txt #define XP_MTEXT(txt) (txt)
/* TODO: if the compiler doesn't have the built-in wchar_t support /* TODO: if the compiler doesn't have the built-in wchar_t support
* XP_WCHAR & XP_WTEXT must be defined differently. * XP_WCHAR & XP_WTEXT must be defined differently.
*/ */
#define XP_WCHAR(ch) L##ch #define XP_WCHAR(ch) (L##ch)
#define XP_WTEXT(txt) L##txt #define XP_WTEXT(txt) (L##txt)
#ifdef XP_CHAR_IS_MCHAR #ifdef XP_CHAR_IS_MCHAR
#define XP_CHAR(ch) XP_MCHAR(ch) #define XP_CHAR(ch) XP_MCHAR(ch)