mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-17 07:48:50 +01:00
40 lines
749 B
ArmAsm
40 lines
749 B
ArmAsm
#define pasty(m, n) m##n
|
|
#define include pasty(#, include)
|
|
#define ifdef pasty(#, ifdef)
|
|
#define ifndef pasty(#, ifndef)
|
|
#define endif pasty(#, endif)
|
|
#define define pasty(#, define)
|
|
#define message pasty(#, pragma message)
|
|
#define undef pasty(#, undef)
|
|
#define error pasty(#, error)
|
|
#define else pasty(#, else)
|
|
#define comment pasty(#, pragma comment)
|
|
|
|
|
|
ifndef ARABICA_ARABICA_CONFIG_H
|
|
define ARABICA_ARABICA_CONFIG_H
|
|
|
|
#ifdef ARABICA_NO_WCHAR_T
|
|
#undef ARABICA_NO_WCHAR_T
|
|
define ARABICA_NO_WCHAR_T
|
|
#endif
|
|
|
|
#ifdef _MSC_VER
|
|
#if (_MSC_VER < 1300)
|
|
define ARABICA_VS6_WORKAROUND
|
|
#endif
|
|
|
|
define ARABICA_NO_CODECVT_SPECIALISATIONS
|
|
#endif
|
|
|
|
#ifdef _WIN32
|
|
define ARABICA_WINDOWS
|
|
#endif
|
|
|
|
#if defined(_DEBUG) || (__DEBUG__)
|
|
define ARABICA_DEBUG
|
|
#endif
|
|
|
|
endif
|
|
|
|
|