summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/waste/wastemodule.c
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1997-08-27 14:09:25 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1997-08-27 14:09:25 (GMT)
commit8505ef8c6caa179314936132f075380bf6eb08c4 (patch)
treec82ae3a5f194e9a648f5ef8084b455d2caaad686 /Mac/Modules/waste/wastemodule.c
parent3412c5d0fb44f2186ff244aa6d504b1ec0b5dda7 (diff)
downloadcpython-8505ef8c6caa179314936132f075380bf6eb08c4.zip
cpython-8505ef8c6caa179314936132f075380bf6eb08c4.tar.gz
cpython-8505ef8c6caa179314936132f075380bf6eb08c4.tar.bz2
Added #include <WETabs.h>, which had somehow gone missing
Diffstat (limited to 'Mac/Modules/waste/wastemodule.c')
-rw-r--r--Mac/Modules/waste/wastemodule.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/Mac/Modules/waste/wastemodule.c b/Mac/Modules/waste/wastemodule.c
index 7f74ff6..a832957 100644
--- a/Mac/Modules/waste/wastemodule.c
+++ b/Mac/Modules/waste/wastemodule.c
@@ -43,13 +43,17 @@ extern int BMObj_Convert(PyObject *, BitMapPtr *);
extern PyObject *WinObj_WhichWindow(WindowPtr);
#include <WASTE.h>
-#include <WEObjectHandlers.h>
#include <WETabs.h>
+#include <WEObjectHandlers.h>
/* Exported by Qdmodule.c: */
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);