Artifact d4d1258ac262ad3c5e4dcbf8ce54eebf8b2d38ce87f0f8509370a314819fba80:
- Executable file
r38/lisp/csl/cslbase/disconfig.h
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 649) [annotate] [blame] [check-ins using] [more...]
/* disconfig.h Copyright (C) 2003-2006 Gil Dabah, http://ragestorm.net/distorm/ This library is licensed under the BSD license. See the file COPYING. */ #ifndef ___DISCONFIG_H__ #define ___DISCONFIG_H__ // diStorm64 supports 64 bit offsets: // Comment out this macro if you wish to use 32 bits offsets only! #define SUPPORT_64BIT_OFFSET 1 #ifdef SUPPORT_64BIT_OFFSET // PyArg_ParseTuple/Py_BuildValue uses a format string in order to parse/build the offset. // type: int 64 #define _PY_OFF_INT_SIZE_ "K" #else #define OFFSET_INTEGER unsigned long #define _PY_OFF_INT_SIZE_ "k" #endif #endif // ___DISCONFIG_H__