Regenerated with CW Pro 5.2, which has MacOS 8.6 and Appearance 1.1 support.

This commit is contained in:
Jack Jansen 1999-12-12 21:41:51 +00:00
parent 608b3fa801
commit a05ac607d7
47 changed files with 4083 additions and 533 deletions

View file

@ -44,6 +44,10 @@ extern PyObject *WinObj_WhichWindow(WindowPtr);
#include <Appearance.h>
/* Exported by Qdmodule.c: */
extern PyObject *QdRGB_New(RGBColor *);
extern int QdRGB_Convert(PyObject *, RGBColor *);
#define resNotFound -192 /* Can't include <Errors.h> because of Python's "errors.h" */
static PyObject *App_Error;

View file

@ -70,6 +70,10 @@ RGBColor = OpaqueType("RGBColor", "QdRGB")
includestuff = includestuff + """
#include <%s>""" % MACHEADERFILE + """
/* Exported by Qdmodule.c: */
extern PyObject *QdRGB_New(RGBColor *);
extern int QdRGB_Convert(PyObject *, RGBColor *);
#define resNotFound -192 /* Can't include <Errors.h> because of Python's "errors.h" */
"""