On 25/02/2010 10:01 AM, Tim Roberts wrote:
but I am not sure. Is there a way to get the array/list?

You will have to use a package like ctypes to do that.  Something like this:

lst = ctypes.cast(lParam, ctypes.POINTER(ctypes.c_int))
print lst[0]
print lst[1]

Or use something like win32gui.PyGetMemory and the struct module (same result, different modules)

HTH,

Mark
_______________________________________________
python-win32 mailing list
python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32

Reply via email to