qse/ase/macros.h

52 lines
1.3 KiB
C
Raw Normal View History

2004-12-18 09:16:31 +00:00
/*
2005-02-05 06:28:13 +00:00
* $Id: macros.h,v 1.9 2005-02-05 06:28:13 bacon Exp $
2004-12-18 09:16:31 +00:00
*/
2004-12-18 09:58:49 +00:00
#ifndef _XP_MACROS_H_
#define _XP_MACROS_H_
2004-12-18 09:16:31 +00:00
2004-12-18 09:58:49 +00:00
#include <xp/types.h>
2004-12-18 09:16:31 +00:00
2004-12-18 09:58:49 +00:00
#define XP_NULL ((void*)0)
#define XP_EOF ((xp_cint_t)-1)
2004-12-18 09:16:31 +00:00
2004-12-18 09:58:49 +00:00
#define xp_sizeof(n) (sizeof(n))
#define xp_countof(n) (sizeof(n) / sizeof(n[0]))
2004-12-18 09:16:31 +00:00
#if defined(_WIN32)
2004-12-18 09:58:49 +00:00
#define xp_main _tmain
2005-01-21 06:02:02 +00:00
#elif defined(XP_CHAR_IS_MCHAR)
2004-12-18 09:58:49 +00:00
#define xp_main main
2004-12-18 09:16:31 +00:00
#endif
2004-12-18 09:58:49 +00:00
#define XP_LOOP_CONTINUE(id) goto __loop_ ## id ## _begin__;
#define XP_LOOP_BREAK(id) goto __loop_ ## id ## _end__;
#define XP_LOOP_BEGIN(id) __loop_ ## id ## _begin__: {
#define XP_LOOP_END(id) XP_LOOP_CONTINUE(id) } __loop_ ## id ## _end__:;
2004-12-18 09:16:31 +00:00
2004-12-18 09:58:49 +00:00
#define XP_QUOTE(val) __XP_QUOTE(val)
#define __XP_QUOTE(val) #val
2004-12-18 09:16:31 +00:00
2005-02-05 06:28:13 +00:00
//#define XP_MCHAR(ch) ((xp_mchar_t)ch)
//#define XP_MTEXT(txt) ((const xp_mchar_t*)txt)
#define XP_MCHAR(ch) ch
#define XP_MTEXT(txt) txt
2005-01-06 15:31:59 +00:00
2005-01-17 03:12:56 +00:00
/* TODO: if the compiler doesn't have the built-in wchar_t support
* XP_WCHAR & XP_WTEXT must be defined differently.
2005-01-21 04:22:24 +00:00
#define XP_WCHAR(ch) ((xp_wchar_t)ch)
#define XP_WTEXT(txt) don't know yet... may have to call a function?
2005-01-17 03:12:56 +00:00
*/
2005-02-05 06:28:13 +00:00
#define XP_WCHAR(ch) L##ch
#define XP_WTEXT(txt) L##txt
2004-12-18 09:16:31 +00:00
2005-02-05 06:05:19 +00:00
#if defined(XP_CHAR_IS_MCHAR)
#define XP_CHAR(ch) XP_MCHAR(ch)
#define XP_TEXT(txt) XP_MTEXT(txt)
2005-01-06 15:31:59 +00:00
#else
2005-02-05 06:05:19 +00:00
#define XP_CHAR(ch) XP_WCHAR(ch)
#define XP_TEXT(txt) XP_WTEXT(txt)
2005-01-06 15:31:59 +00:00
#endif
2004-12-18 09:16:31 +00:00
#endif