2008-02-11から1日間の記事一覧

[Python] [ctypes] ctypes について

>>> from ctypes import * >>> class DATA(Structure): _fields_ = [ ('name', c_char_p, ), ] >>> data = DATA() >>> data.name = (c_char * 100)() Traceback (most recent call last): File "<pyshell#9>", line 1, in <module> data.name = (c_char * 100)() TypeError: inc</module></pyshell#9>…