Re: mmap and ctypes

2008-08-21 Thread castironpi
On Aug 18, 1:09 am, Méta-MCI \(MVP\) [EMAIL PROTECTED] wrote: Hi! See here:  http://www.ponx.org/download/CD/COMdll/autoitmmap.dll @-salutations -- Michel Claveau I don't see how it fits in. -- http://mail.python.org/mailman/listinfo/python-list

Re: mmap and ctypes

2008-08-18 Thread M�ta-MCI (MVP)
Hi! See here: http://www.ponx.org/download/CD/COMdll/autoitmmap.dll @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list

mmap and ctypes

2008-08-16 Thread castironpi
Hi all, I have a mmap and a data structure in it. I know the structure's location in the mmap and what structure it is. It has a ctypes definition. I want to initialize a ctypes object to point to a part of the mmap. Here is my attempt: b mmap.mmap object at 0x009FEDB8 c= ctypes.pointer( b

Re: mmap and ctypes

2008-08-16 Thread Michel Claveau - NoSpam SVP ; merci
Hi! I use mmap for interchange data between Python Autoit. For that, I use (Autoit's side) a little DLL. This DLL can, perhaps, be used with ctypes. @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list

Re: mmap and ctypes

2008-08-16 Thread castironpi
On Aug 16, 4:42 pm, Michel Claveau - NoSpam SVP ; merci [EMAIL PROTECTED] wrote: Hi! I use mmap for interchange data between Python Autoit.  For that, I use (Autoit's side) a little DLL. This DLL can, perhaps, be used with ctypes. @-salutations -- Michel Claveau Say more-- what DLL?

Re: mmap and ctypes

2008-08-16 Thread castironpi
On Aug 16, 5:20 pm, castironpi [EMAIL PROTECTED] wrote: On Aug 16, 4:42 pm, Michel Claveau - NoSpam SVP ; merci [EMAIL PROTECTED] wrote: Hi! I use mmap for interchange data between Python Autoit.  For that, I use (Autoit's side) a little DLL. This DLL can, perhaps, be used with