*** empty log message ***

This commit is contained in:
hyung-hwan 2006-11-29 03:02:07 +00:00
parent 8ddf723afa
commit 34801c778f

View File

@ -1,5 +1,5 @@
/* /*
* $Id: macros.h,v 1.42 2006-11-29 02:54:14 bacon Exp $ * $Id: macros.h,v 1.43 2006-11-29 03:02:07 bacon Exp $
*/ */
#ifndef _ASE_MACROS_H_ #ifndef _ASE_MACROS_H_
@ -54,10 +54,14 @@
} \ } \
} while (0); } while (0);
#define ASE_MQ_I(val) #val
#define ASE_MQ(val) ASE_MQ_I(val)
#define ASE_MC(ch) ((ase_mchar_t)ch) #define ASE_MC(ch) ((ase_mchar_t)ch)
#define ASE_MS(str) ((const ase_mchar_t*)str) #define ASE_MS(str) ((const ase_mchar_t*)str)
#define ASE_MT(txt) (txt) #define ASE_MT(txt) (txt)
#define ASE_WQ_I(val) (L ## #val)
#define ASE_WQ(val) ASE_WQ_I(val)
#define ASE_WC(ch) ((ase_wchar_t)L ## ch) #define ASE_WC(ch) ((ase_wchar_t)L ## ch)
#define ASE_WS(str) ((const ase_wchar_t*)L ## str) #define ASE_WS(str) ((const ase_wchar_t*)L ## str)
#define ASE_WT(txt) (L ## txt) #define ASE_WT(txt) (L ## txt)