From c09fffb05a77b289a6e996271ecf8a18fe77fc9e Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Fri, 14 Apr 2006 15:08:37 +0000 Subject: [PATCH] *** empty log message *** --- ase/awk/{Makefile.bcc => makefile.bcc} | 0 ase/awk/{Makefile.cl => makefile.cl} | 0 ase/awk/{Makefile.lcc => makefile.lcc} | 0 ase/awk/{Makefile.sco => makefile.sco} | 0 ase/conf_msw.h | 46 +++++++++++++++++++++ ase/test/awk/{Makefile.bcc => makefile.bcc} | 0 ase/test/awk/{Makefile.cl => makefile.cl} | 0 ase/test/awk/{Makefile.lcc => makefile.lcc} | 0 ase/test/awk/{Makefile.sco => makefile.sco} | 0 ase/types.h | 4 +- 10 files changed, 48 insertions(+), 2 deletions(-) rename ase/awk/{Makefile.bcc => makefile.bcc} (100%) rename ase/awk/{Makefile.cl => makefile.cl} (100%) rename ase/awk/{Makefile.lcc => makefile.lcc} (100%) rename ase/awk/{Makefile.sco => makefile.sco} (100%) create mode 100644 ase/conf_msw.h rename ase/test/awk/{Makefile.bcc => makefile.bcc} (100%) rename ase/test/awk/{Makefile.cl => makefile.cl} (100%) rename ase/test/awk/{Makefile.lcc => makefile.lcc} (100%) rename ase/test/awk/{Makefile.sco => makefile.sco} (100%) diff --git a/ase/awk/Makefile.bcc b/ase/awk/makefile.bcc similarity index 100% rename from ase/awk/Makefile.bcc rename to ase/awk/makefile.bcc diff --git a/ase/awk/Makefile.cl b/ase/awk/makefile.cl similarity index 100% rename from ase/awk/Makefile.cl rename to ase/awk/makefile.cl diff --git a/ase/awk/Makefile.lcc b/ase/awk/makefile.lcc similarity index 100% rename from ase/awk/Makefile.lcc rename to ase/awk/makefile.lcc diff --git a/ase/awk/Makefile.sco b/ase/awk/makefile.sco similarity index 100% rename from ase/awk/Makefile.sco rename to ase/awk/makefile.sco diff --git a/ase/conf_msw.h b/ase/conf_msw.h new file mode 100644 index 00000000..f8fac9f9 --- /dev/null +++ b/ase/conf_msw.h @@ -0,0 +1,46 @@ + +/* +Macro Meaning +_WIN64 A 64-bit platform. +_WIN32 A 32-bit platform. This value is also defined by the 64-bit + compiler for backward compatibility. +_WIN16 A 16-bit platform + +The following macros are specific to the architecture. + +Macro Meaning +_M_IA64 Intel Itanium Processor Family +_M_IX86 x86 platform +_M_X64 x64 platform +*/ + +#define XP_ENDIAN_LITTLE + +#define XP_SIZEOF_CHAR 1 +#define XP_SIZEOF_SHORT 2 +#define XP_SIZEOF_INT 4 + +#ifdef _WIN64 + #define XP_SIZEOF_LONG 8 +#else + #define XP_SIZEOF_LONG 4 +#endif + +#define XP_SIZEOF_LONG_LONG 0 + +#define XP_SIZEOF___INT8 1 +#define XP_SIZEOF___INT16 2 +#define XP_SIZEOF___INT32 4 +#define XP_SIZEOF___INT64 8 +#define XP_SIZEOF___INT96 0 +#define XP_SIZEOF___INT128 0 + +#ifdef _WIN64 + #define XP_SIZEOF_VOID_P 8 +#else + #define XP_SIZEOF_VOID_P 4 +#endif + +#define XP_SIZEOF_FLOAT 4 +#define XP_SIZEOF_DOUBLE 8 +#define XP_SIZEOF_LONG_DOUBLE 16 diff --git a/ase/test/awk/Makefile.bcc b/ase/test/awk/makefile.bcc similarity index 100% rename from ase/test/awk/Makefile.bcc rename to ase/test/awk/makefile.bcc diff --git a/ase/test/awk/Makefile.cl b/ase/test/awk/makefile.cl similarity index 100% rename from ase/test/awk/Makefile.cl rename to ase/test/awk/makefile.cl diff --git a/ase/test/awk/Makefile.lcc b/ase/test/awk/makefile.lcc similarity index 100% rename from ase/test/awk/Makefile.lcc rename to ase/test/awk/makefile.lcc diff --git a/ase/test/awk/Makefile.sco b/ase/test/awk/makefile.sco similarity index 100% rename from ase/test/awk/Makefile.sco rename to ase/test/awk/makefile.sco diff --git a/ase/types.h b/ase/types.h index b64245d7..b564c1b2 100644 --- a/ase/types.h +++ b/ase/types.h @@ -1,12 +1,12 @@ /* - * $Id: types.h,v 1.43 2006-04-14 14:17:09 bacon Exp $ + * $Id: types.h,v 1.44 2006-04-14 15:08:37 bacon Exp $ */ #ifndef _XP_TYPES_H_ #define _XP_TYPES_H_ #if defined(_WIN32) - #include + #include #elif defined(vms) || defined(__vms) #include #else