Author: Armin Rigo <[email protected]> Branch: Changeset: r1051:8478932880c2 Date: 2012-11-20 17:24 +0100 http://bitbucket.org/cffi/cffi/changeset/8478932880c2/
Log: Windows needs the standard types diff --git a/c/misc_win32.h b/c/misc_win32.h --- a/c/misc_win32.h +++ b/c/misc_win32.h @@ -115,6 +115,20 @@ /************************************************************/ +/* types */ + +typedef __int8 int8_t; +typedef __int16 int16_t; +typedef __int32 int32_t; +typedef __int64 int64_t; +typedef unsigned __int8 uint8_t; +typedef unsigned __int16 uint16_t; +typedef unsigned __int32 uint32_t; +typedef unsigned __int64 uint64_t; +typedef SSIZE_T ssize_t; + + +/************************************************************/ /* obscure */ #define ffi_prep_closure(a,b,c,d) ffi_prep_closure_loc(a,b,c,d,a) _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
