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 techtonik
Recipients techtonik
Date 2012-11-27.21:31:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1354051893.66.0.564339889546.issue16566@psf.upfronthosting.co.za>
In-reply-to
Content
The union definition for the curious:

    class _OFFSET(Structure):
        _fields_ = [
            ('Offset', DWORD),
            ('OffsetHigh', DWORD)]

    class _OFFSET_UNION(Union):
        _anonymous_ = '_offset'
        _fields_ = [
            ('_offset', _OFFSET),
            ('Pointer', PVOID)]
History
Date User Action Args
2012-11-27 21:31:33techtoniksetrecipients: + techtonik
2012-11-27 21:31:33techtoniksetmessageid: <1354051893.66.0.564339889546.issue16566@psf.upfronthosting.co.za>
2012-11-27 21:31:33techtoniklinkissue16566 messages
2012-11-27 21:31:33techtonikcreate