Ctypes的定义

时间:2011-09-30 14:22:59

标签: python ctypes

如何使用ctypes编写下面复制的定义?

unsigned char* x = new unsigned char[10];

谢谢。

1 个答案:

答案 0 :(得分:1)

根据您需要使用x的方式,您可能需要ctypes.create_string_buffer

x = ctypes.create_string_buffer(' ' * 10);