[pypy-commit] pypy py3k: (mattip) attempt to fix win32 translation

pjenvey noreply at buildbot.pypy.org
Thu Oct 23 23:31:25 CEST 2014


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r74144:a203c518cb8e
Date: 2014-10-23 14:31 -0700
http://bitbucket.org/pypy/pypy/changeset/a203c518cb8e/

Log:	(mattip) attempt to fix win32 translation

diff --git a/pypy/module/posix/interp_nt.py b/pypy/module/posix/interp_nt.py
--- a/pypy/module/posix/interp_nt.py
+++ b/pypy/module/posix/interp_nt.py
@@ -21,6 +21,9 @@
 """
 eci = ExternalCompilationInfo(
     includes=['windows.h'],
+    post_include_bits=[
+        "DWORD "
+        "pypy_GetFinalPathNameByHandle(FARPROC, HANDLE, LPTSTR, DWORD, DWORD);"],
     separate_module_sources=[separate_module_source],
     export_symbols=['pypy_GetFinalPathNameByHandle']
     )


More information about the pypy-commit mailing list