在64位python ctypes中使用msvcrt

时间:2011-10-25 22:45:23

标签: python 64-bit ctypes msvcrt

我想使用ctypes包从64位python中调用msvcrt函数。我显然做错了。这是明智的做法吗?

Python 2.7.2 (default, Jun 12 2011, 14:24:46) [MSC v.1500 64 bit (AMD64)] on win
32
Type "help", "copyright", "credits" or "license" for more information.
>>> import ctypes
>>> libc = ctypes.cdll.msvcrt
>>> fp = libc.fopen('text.txt', 'wb') #Seems to work, creates a file
>>> libc.fclose(ctypes.c_void_p(fp))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
WindowsError: exception: access violation reading 0xFFFFFFFFFF082B28
>>>

如果此代码执行我想要的操作,它将打开并关闭文本文件而不会崩溃。

1 个答案:

答案 0 :(得分:5)

默认的ctypes结果类型是32位整数,但文件句柄是指针宽度,即64位。因此,您丢失了文件指针中的一半信息。

在调用fopen之前,必须声明结果类型是指针:

libc.fopen.restype = ctypes.c_void_p
fp = libc.fopen(...)
libc.fclose(fp)