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 | |
Jack Jansen | 5f65309 | 1995-01-18 13:53:49 +0000 | [diff] [blame] | 25 | #include <Types.h> |
Guido van Rossum | b340466 | 1995-01-22 18:36:13 +0000 | [diff] [blame] | 26 | #include <Files.h> |
Guido van Rossum | cf27c2d | 1995-01-25 23:06:44 +0000 | [diff] [blame] | 27 | #include <Events.h> |
Jack Jansen | 5f65309 | 1995-01-18 13:53:49 +0000 | [diff] [blame] | 28 | |
Guido van Rossum | cf27c2d | 1995-01-25 23:06:44 +0000 | [diff] [blame] | 29 | char *macstrerror(int); /* strerror with mac errors */ |
Guido van Rossum | b340466 | 1995-01-22 18:36:13 +0000 | [diff] [blame] | 30 | |
Jack Jansen | ee23d6e | 1995-01-27 14:43:25 +0000 | [diff] [blame] | 31 | extern int PyMac_DoYieldEnabled; /* Don't do eventloop when false */ |
| 32 | |
Guido van Rossum | cf27c2d | 1995-01-25 23:06:44 +0000 | [diff] [blame] | 33 | extern PyObject *PyMac_OSErrException; /* Exception for OSErr */ |
| 34 | PyObject *PyMac_GetOSErrException(void); /* Initialize & return it */ |
Guido van Rossum | b340466 | 1995-01-22 18:36:13 +0000 | [diff] [blame] | 35 | |
Jack Jansen | fdbc79e | 1995-01-26 16:37:21 +0000 | [diff] [blame] | 36 | int PyMac_Idle Py_PROTO((void)); /* Idle routine */ |
| 37 | void PyMac_Yield Py_PROTO((void)); /* optional idle routine for mainloop */ |
| 38 | void PyMac_SetYield Py_PROTO((long, long, long, long)); /* Set timeouts */ |
Guido van Rossum | cf27c2d | 1995-01-25 23:06:44 +0000 | [diff] [blame] | 39 | PyObject *PyErr_Mac(PyObject *, int); /* Exception with a mac error */ |
Jack Jansen | a76382a | 1995-02-02 14:25:56 +0000 | [diff] [blame] | 40 | PyObject *PyMac_Error(OSErr); /* Uses PyMac_GetOSErrException */ |
| 41 | void PyMac_HandleEvent Py_PROTO((EventRecord *)); /* Handle one event, if possible */ |
Guido van Rossum | b340466 | 1995-01-22 18:36:13 +0000 | [diff] [blame] | 42 | |
Guido van Rossum | cf27c2d | 1995-01-25 23:06:44 +0000 | [diff] [blame] | 43 | int PyMac_Idle(void); /* Idle routine */ |
Guido van Rossum | b340466 | 1995-01-22 18:36:13 +0000 | [diff] [blame] | 44 | |
Guido van Rossum | cf27c2d | 1995-01-25 23:06:44 +0000 | [diff] [blame] | 45 | int PyMac_GetOSType(PyObject *, OSType *); /* argument parser for OSType */ |
| 46 | PyObject *PyMac_BuildOSType(OSType); /* Convert OSType to PyObject */ |
Guido van Rossum | b340466 | 1995-01-22 18:36:13 +0000 | [diff] [blame] | 47 | |
Guido van Rossum | cf27c2d | 1995-01-25 23:06:44 +0000 | [diff] [blame] | 48 | int PyMac_GetStr255(PyObject *, Str255); /* argument parser for Str255 */ |
| 49 | PyObject *PyMac_BuildStr255(Str255); /* Convert Str255 to PyObject */ |
| 50 | |
| 51 | int PyMac_GetFSSpec(PyObject *, FSSpec *); /* argument parser for FSSpec */ |
| 52 | PyObject *PyMac_BuildFSSpec(FSSpec *); /* Convert FSSpec to PyObject */ |
| 53 | |
| 54 | int PyMac_GetRect(PyObject *, Rect *); /* argument parser for Rect */ |
| 55 | PyObject *PyMac_BuildRect(Rect *); /* Convert Rect to PyObject */ |
| 56 | |
| 57 | int PyMac_GetPoint(PyObject *, Point *); /* argument parser for Point */ |
| 58 | PyObject *PyMac_BuildPoint(Point); /* Convert Point to PyObject */ |
| 59 | |
| 60 | int PyMac_GetEventRecord(PyObject *, EventRecord *); /* argument parser for EventRecord */ |
| 61 | PyObject *PyMac_BuildEventRecord(EventRecord *); /* Convert EventRecord to PyObject */ |