From 34801c778ffbb5946c54d86a30ab9225b67a1deb Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Wed, 29 Nov 2006 03:02:07 +0000 Subject: [PATCH] *** empty log message *** --- ase/macros.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ase/macros.h b/ase/macros.h index 5f096817..6a843add 100644 --- a/ase/macros.h +++ b/ase/macros.h @@ -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_ @@ -54,10 +54,14 @@ } \ } 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_MS(str) ((const ase_mchar_t*)str) #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_WS(str) ((const ase_wchar_t*)L ## str) #define ASE_WT(txt) (L ## txt)