mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Regenerated with CW Pro 5.2, which has MacOS 8.6 and Appearance 1.1 support.
This commit is contained in:
parent
608b3fa801
commit
a05ac607d7
47 changed files with 4083 additions and 533 deletions
|
@ -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;
|
||||
|
|
|
@ -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" */
|
||||
"""
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue