Guido van Rossum | b340466 | 1995-01-22 18:36:13 +0000 | [diff] [blame] | 1 | /*********************************************************** |
| 2 | Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, |
| 3 | The Netherlands. |
| 4 | |
| 5 | All Rights Reserved |
| 6 | |
| 7 | Permission to use, copy, modify, and distribute this software and its |
| 8 | documentation for any purpose and without fee is hereby granted, |
| 9 | provided that the above copyright notice appear in all copies and that |
| 10 | both that copyright notice and this permission notice appear in |
| 11 | supporting documentation, and that the names of Stichting Mathematisch |
| 12 | Centrum or CWI not be used in advertising or publicity pertaining to |
| 13 | distribution of the software without specific, written prior permission. |
| 14 | |
| 15 | STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO |
| 16 | THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND |
| 17 | FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE |
| 18 | FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 19 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 20 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 21 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 22 | |
| 23 | ******************************************************************/ |
| 24 | |
Guido van Rossum | becdbec | 1995-02-14 01:27:24 +0000 | [diff] [blame] | 25 | #ifndef SystemSevenOrLater |
| 26 | #define SystemSevenOrLater 1 |
| 27 | #endif |
| 28 | |
Jack Jansen | 5f65309 | 1995-01-18 13:53:49 +0000 | [diff] [blame] | 29 | #include <Types.h> |
Guido van Rossum | b340466 | 1995-01-22 18:36:13 +0000 | [diff] [blame] | 30 | #include <Files.h> |
Guido van Rossum | cf27c2d | 1995-01-25 23:06:44 +0000 | [diff] [blame] | 31 | #include <Events.h> |
Jack Jansen | 5f65309 | 1995-01-18 13:53:49 +0000 | [diff] [blame] | 32 | |
Guido van Rossum | becdbec | 1995-02-14 01:27:24 +0000 | [diff] [blame] | 33 | #ifdef GENERATINGCFM /* Defined to 0 or 1 in Universal headers */ |
| 34 | #define HAVE_UNIVERSAL_HEADERS |
| 35 | #endif |
| 36 | |
Guido van Rossum | cf27c2d | 1995-01-25 23:06:44 +0000 | [diff] [blame] | 37 | char *macstrerror(int); /* strerror with mac errors */ |
Guido van Rossum | b340466 | 1995-01-22 18:36:13 +0000 | [diff] [blame] | 38 | |
Jack Jansen | ee23d6e | 1995-01-27 14:43:25 +0000 | [diff] [blame] | 39 | extern int PyMac_DoYieldEnabled; /* Don't do eventloop when false */ |
| 40 | |
Guido van Rossum | cf27c2d | 1995-01-25 23:06:44 +0000 | [diff] [blame] | 41 | extern PyObject *PyMac_OSErrException; /* Exception for OSErr */ |
| 42 | PyObject *PyMac_GetOSErrException(void); /* Initialize & return it */ |
Guido van Rossum | b340466 | 1995-01-22 18:36:13 +0000 | [diff] [blame] | 43 | |
Jack Jansen | fdbc79e | 1995-01-26 16:37:21 +0000 | [diff] [blame] | 44 | int PyMac_Idle Py_PROTO((void)); /* Idle routine */ |
| 45 | void PyMac_Yield Py_PROTO((void)); /* optional idle routine for mainloop */ |
| 46 | void PyMac_SetYield Py_PROTO((long, long, long, long)); /* Set timeouts */ |
Guido van Rossum | cf27c2d | 1995-01-25 23:06:44 +0000 | [diff] [blame] | 47 | PyObject *PyErr_Mac(PyObject *, int); /* Exception with a mac error */ |
Jack Jansen | a76382a | 1995-02-02 14:25:56 +0000 | [diff] [blame] | 48 | PyObject *PyMac_Error(OSErr); /* Uses PyMac_GetOSErrException */ |
| 49 | void PyMac_HandleEvent Py_PROTO((EventRecord *)); /* Handle one event, if possible */ |
Guido van Rossum | b340466 | 1995-01-22 18:36:13 +0000 | [diff] [blame] | 50 | |
Guido van Rossum | cf27c2d | 1995-01-25 23:06:44 +0000 | [diff] [blame] | 51 | int PyMac_Idle(void); /* Idle routine */ |
Guido van Rossum | b340466 | 1995-01-22 18:36:13 +0000 | [diff] [blame] | 52 | |
Jack Jansen | 8cd2b72 | 1995-02-13 11:33:28 +0000 | [diff] [blame] | 53 | char *PyMac_GetPythonDir(); /* Return the name of the python dir */ |
| 54 | |
Guido van Rossum | cf27c2d | 1995-01-25 23:06:44 +0000 | [diff] [blame] | 55 | int PyMac_GetOSType(PyObject *, OSType *); /* argument parser for OSType */ |
| 56 | PyObject *PyMac_BuildOSType(OSType); /* Convert OSType to PyObject */ |
Guido van Rossum | b340466 | 1995-01-22 18:36:13 +0000 | [diff] [blame] | 57 | |
Guido van Rossum | cf27c2d | 1995-01-25 23:06:44 +0000 | [diff] [blame] | 58 | int PyMac_GetStr255(PyObject *, Str255); /* argument parser for Str255 */ |
| 59 | PyObject *PyMac_BuildStr255(Str255); /* Convert Str255 to PyObject */ |
| 60 | |
| 61 | int PyMac_GetFSSpec(PyObject *, FSSpec *); /* argument parser for FSSpec */ |
| 62 | PyObject *PyMac_BuildFSSpec(FSSpec *); /* Convert FSSpec to PyObject */ |
| 63 | |
| 64 | int PyMac_GetRect(PyObject *, Rect *); /* argument parser for Rect */ |
| 65 | PyObject *PyMac_BuildRect(Rect *); /* Convert Rect to PyObject */ |
| 66 | |
| 67 | int PyMac_GetPoint(PyObject *, Point *); /* argument parser for Point */ |
| 68 | PyObject *PyMac_BuildPoint(Point); /* Convert Point to PyObject */ |
| 69 | |
| 70 | int PyMac_GetEventRecord(PyObject *, EventRecord *); /* argument parser for EventRecord */ |
| 71 | PyObject *PyMac_BuildEventRecord(EventRecord *); /* Convert EventRecord to PyObject */ |