From: Jack Jansen Date: Thu, 26 Jan 1995 16:37:21 +0000 (+0000) Subject: Prototypes for new routines. X-Git-Tag: v1.2b3~84 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fdbc79e77963bfb66ac3bc3732ac112c9096075f;p=thirdparty%2FPython%2Fcpython.git Prototypes for new routines. --- diff --git a/Mac/Include/macglue.h b/Mac/Include/macglue.h index 730fc2a67c1b..411e1cb09302 100644 --- a/Mac/Include/macglue.h +++ b/Mac/Include/macglue.h @@ -31,6 +31,9 @@ char *macstrerror(int); /* strerror with mac errors */ extern PyObject *PyMac_OSErrException; /* Exception for OSErr */ PyObject *PyMac_GetOSErrException(void); /* Initialize & return it */ +int PyMac_Idle Py_PROTO((void)); /* Idle routine */ +void PyMac_Yield Py_PROTO((void)); /* optional idle routine for mainloop */ +void PyMac_SetYield Py_PROTO((long, long, long, long)); /* Set timeouts */ PyObject *PyErr_Mac(PyObject *, int); /* Exception with a mac error */ PyObject *PyMac_Error(OSErr); /* Uses PyMac_GetOSErrException */