[pypy-svn] r78232 - pypy/branch/fast-forward/pypy/rlib

afa at codespeak.net afa at codespeak.net
Sat Oct 23 11:09:52 CEST 2010


Author: afa
Date: Sat Oct 23 11:09:50 2010
New Revision: 78232

Modified:
   pypy/branch/fast-forward/pypy/rlib/clibffi.py
Log:
Fix after merge


Modified: pypy/branch/fast-forward/pypy/rlib/clibffi.py
==============================================================================
--- pypy/branch/fast-forward/pypy/rlib/clibffi.py	(original)
+++ pypy/branch/fast-forward/pypy/rlib/clibffi.py	Sat Oct 23 11:09:50 2010
@@ -376,6 +376,8 @@
 FUNCFLAG_STDCALL   = 0
 FUNCFLAG_CDECL     = 1  # for WINAPI calls
 FUNCFLAG_PYTHONAPI = 4
+FUNCFLAG_USE_ERRNO = 8
+FUNCFLAG_USE_LASTERROR = 16
 
 class AbstractFuncPtr(object):
     ll_cif = lltype.nullptr(FFI_CIFP.TO)



More information about the Pypy-commit mailing list