From: Adam Dickmeiss Date: Thu, 26 Nov 2009 08:49:58 +0000 (+0100) Subject: Dont enable 64-bit on Windows X-Git-Tag: v4.0.0~107 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=10c562bc3ccaaa440189f279ca562327612f87c6 Dont enable 64-bit on Windows --- diff --git a/include/yaz/nmem.h b/include/yaz/nmem.h index 39c47eb..8e49fee 100644 --- a/include/yaz/nmem.h +++ b/include/yaz/nmem.h @@ -43,8 +43,14 @@ YAZ_BEGIN_CDECL /** \brief NMEM handle (an opaque pointer to memory) */ typedef struct nmem_control *NMEM; +#ifdef _MSC_VER +#define NMEM_64 0 +#endif + /** \brief Set to 1 if YAZ BER integer is 64-bit ; 0 otherwise */ +#ifndef NMEM_64 #define NMEM_64 1 +#endif #if NMEM_64 /** \brief BER/utility integer (64-bit or more) */