mirror of
https://github.com/python/cpython.git
synced 2025-11-01 06:01:29 +00:00
Adapted to Universal Headers 3.3.2. More to follow.
This commit is contained in:
parent
c6c2838403
commit
f7d5aa61d3
28 changed files with 3445 additions and 957 deletions
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
# The following is *usually* unchanged but may still require tuning
|
||||
MODPREFIX = MODNAME # The prefix for module-wide routines
|
||||
OBJECTTYPE = 'DragReference' # The C type used to represent them
|
||||
OBJECTTYPE = 'DragRef' # The C type used to represent them
|
||||
OBJECTPREFIX = MODPREFIX + 'Obj' # The prefix for object methods
|
||||
INPUTFILE = string.lower(MODPREFIX) + 'gen.py' # The file generated by the scanner
|
||||
OUTPUTFILE = MODNAME + "module.c" # The file generated by this program
|
||||
|
|
@ -21,31 +21,21 @@
|
|||
|
||||
# Create the type objects
|
||||
|
||||
DragReference = OpaqueByValueType(OBJECTTYPE, OBJECTPREFIX)
|
||||
DragRef = OpaqueByValueType(OBJECTTYPE, OBJECTPREFIX)
|
||||
DragItemRef = Type("ItemReference", "l")
|
||||
# Old names
|
||||
DragReference = DragRef
|
||||
ItemReference = DragItemRef
|
||||
|
||||
##CCTabHandle = OpaqueByValueType("CCTabHandle", "ResObj")
|
||||
##AuxCtlHandle = OpaqueByValueType("AuxCtlHandle", "ResObj")
|
||||
##ControlPartCode = Type("ControlPartCode", "h")
|
||||
##DragConstraint = Type("DragConstraint", "h")
|
||||
##ControlVariant = Type("ControlVariant", "h")
|
||||
##IconTransformType = Type("IconTransformType", "h")
|
||||
##ControlButtonGraphicAlignment = Type("ControlButtonGraphicAlignment", "h")
|
||||
##ControlButtonTextAlignment = Type("ControlButtonTextAlignment", "h")
|
||||
##ControlButtonTextPlacement = Type("ControlButtonTextPlacement", "h")
|
||||
##ControlContentType = Type("ControlContentType", "h")
|
||||
##ControlFocusPart = Type("ControlFocusPart", "h")
|
||||
##
|
||||
##ControlFontStyleRec = OpaqueType('ControlFontStyleRec', 'ControlFontStyle')
|
||||
##ControlFontStyleRec_ptr = ControlFontStyleRec
|
||||
PixMapHandle = OpaqueByValueType("PixMapHandle", "ResObj")
|
||||
RgnHandle = OpaqueByValueType("RgnHandle", "ResObj")
|
||||
AEDesc = OpaqueType('AEDesc')
|
||||
AEDesc_ptr = AEDesc
|
||||
RGBColor = OpaqueType("RGBColor", "QdRGB")
|
||||
|
||||
ItemReference = Type("ItemReference", "l")
|
||||
FlavorType = OSTypeType("FlavorType")
|
||||
DragAttributes = Type("DragAttributes", "l")
|
||||
DragBehaviors = Type("DragBehaviors", "l")
|
||||
DragImageFlags = Type("DragImageFlags", "l")
|
||||
DragImageTranslucency = Type("DragImageTranslucency", "l")
|
||||
DragRegionMessage = Type("DragRegionMessage", "h")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue