diff options
Diffstat (limited to 'Mac/Modules/waste/wastesupport.py')
-rw-r--r-- | Mac/Modules/waste/wastesupport.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Mac/Modules/waste/wastesupport.py b/Mac/Modules/waste/wastesupport.py index 14f9a14..ef73288 100644 --- a/Mac/Modules/waste/wastesupport.py +++ b/Mac/Modules/waste/wastesupport.py @@ -39,9 +39,15 @@ WEStyleMode = Type("WEStyleMode", "h") WEActionKind = Type("WEActionKind", "h") WEAlignment = Type("WEAlignment", "b") WEEdge = Type("WEEdge", "b") +WEDirection = Type("WEDirection", "h") WESoupHandle = OpaqueByValueType("WESoupHandle", "ResObj") +WEFontTableHandle = OpaqueByValueType("WEFontTableHandle", "ResObj") +WEFontTableHandle WERunInfo = OpaqueType("WERunInfo", "RunInfo") +AppleEvent = OpaqueType('AppleEvent', 'AEDesc') +AppleEvent_ptr = OpaqueType('AppleEvent', 'AEDesc') + TextStyle = OpaqueType("TextStyle", "TextStyle") TextStyle_ptr = TextStyle LongPt = OpaqueType("LongPt", "LongPt") @@ -58,6 +64,10 @@ includestuff = includestuff + """ extern PyObject *QdRGB_New(RGBColor *); extern int QdRGB_Convert(PyObject *, RGBColor *); +/* Exported by AEModule.c: */ +extern PyObject *AEDesc_New(AppleEvent *); +extern int AEDesc_Convert(PyObject *, AppleEvent *); + /* Forward declaration */ staticforward PyObject *WEOObj_New(WEObjectReference); staticforward PyObject *ExistingwasteObj_New(WEReference); |