This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Matt.Clarke
Recipients Matt.Clarke, amaury.forgeotdarc, meador.inge
Date 2013-04-23.14:50:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CAHVc1YP68ibNT+TZXsT7sZ7m-mFaQEJNHEcypJkWa8LDorOJ_A@mail.gmail.com>
In-reply-to <CAHVc1YOB+hx53HadR9BEdr=Zy9vizaLJijXy6JfAQD_1L2Y=4Q@mail.gmail.com>
Content
It seems that any argument greater than 8 bytes is automatically converted
to a references. Thus, changing to using ctypes.POINTER works. For example:

callback_t = ctypes.CFUNCTYPE(None, ctypes.POINTER(myst_args))

Quite a simple solution in the end. Is it worth documenting this on the
ctypes page?

Thanks for your help,

Matt

On 18 March 2013 15:19, Matt Clarke <report@bugs.python.org> wrote:

>
> Matt Clarke added the comment:
>
> Hi Amaury.
>
> They are both 12 bytes.
>
> Matt
>
> ----------
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <http://bugs.python.org/issue17310>
> _______________________________________
>
History
Date User Action Args
2013-04-23 14:50:34Matt.Clarkesetrecipients: + Matt.Clarke, amaury.forgeotdarc, meador.inge
2013-04-23 14:50:34Matt.Clarkelinkissue17310 messages
2013-04-23 14:50:34Matt.Clarkecreate