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 | f71a9a9 | 1995-02-18 14:59:48 +0000 | [diff] [blame] | 37 | #ifdef __CFM68K__ |
| 38 | #pragma lib_export on |
| 39 | #endif |
Guido van Rossum | b340466 | 1995-01-22 18:36:13 +0000 | [diff] [blame] | 40 | |
Guido van Rossum | f71a9a9 | 1995-02-18 14:59:48 +0000 | [diff] [blame] | 41 | char *PyMac_StrError(int); /* strerror with mac errors */ |
| 42 | |
| 43 | extern int PyMac_DoYieldEnabled; /* Don't do eventloop when false */ |
Jack Jansen | ee23d6e | 1995-01-27 14:43:25 +0000 | [diff] [blame] | 44 | |
Guido van Rossum | cf27c2d | 1995-01-25 23:06:44 +0000 | [diff] [blame] | 45 | extern PyObject *PyMac_OSErrException; /* Exception for OSErr */ |
| 46 | PyObject *PyMac_GetOSErrException(void); /* Initialize & return it */ |
Guido van Rossum | b340466 | 1995-01-22 18:36:13 +0000 | [diff] [blame] | 47 | |
Guido van Rossum | f71a9a9 | 1995-02-18 14:59:48 +0000 | [diff] [blame] | 48 | int PyMac_Idle Py_PROTO((void)); /* Idle routine */ |
| 49 | void PyMac_Yield Py_PROTO((void)); /* optional idle routine for mainloop */ |
| 50 | void PyMac_SetYield Py_PROTO((long, long, long, long)); /* Set timeouts */ |
Guido van Rossum | cf27c2d | 1995-01-25 23:06:44 +0000 | [diff] [blame] | 51 | PyObject *PyErr_Mac(PyObject *, int); /* Exception with a mac error */ |
Jack Jansen | a76382a | 1995-02-02 14:25:56 +0000 | [diff] [blame] | 52 | PyObject *PyMac_Error(OSErr); /* Uses PyMac_GetOSErrException */ |
Guido van Rossum | f71a9a9 | 1995-02-18 14:59:48 +0000 | [diff] [blame] | 53 | void PyMac_HandleEvent Py_PROTO((EventRecord *)); /* Handle one event, if possible */ |
Guido van Rossum | b340466 | 1995-01-22 18:36:13 +0000 | [diff] [blame] | 54 | |
Guido van Rossum | cf27c2d | 1995-01-25 23:06:44 +0000 | [diff] [blame] | 55 | int PyMac_Idle(void); /* Idle routine */ |
Guido van Rossum | b340466 | 1995-01-22 18:36:13 +0000 | [diff] [blame] | 56 | |
Guido van Rossum | f71a9a9 | 1995-02-18 14:59:48 +0000 | [diff] [blame] | 57 | char *PyMac_GetPythonDir(); /* Return the name of the python dir */ |
Jack Jansen | 8cd2b72 | 1995-02-13 11:33:28 +0000 | [diff] [blame] | 58 | |
Jack Jansen | 74162f3 | 1995-02-15 22:58:33 +0000 | [diff] [blame] | 59 | int PyMac_FindResourceModule(char *, char *); /* Test for 'PYC ' resource in a file */ |
| 60 | PyObject * PyMac_LoadResourceModule(char *, char *); /* Load 'PYC ' resource from file */ |
| 61 | |
Jack Jansen | 3ec804a | 1995-02-20 15:56:10 +0000 | [diff] [blame] | 62 | int PyMac_GetDirectory(FSSpec *dirfss); /* Ask user for a directory */ |
| 63 | |
Guido van Rossum | cf27c2d | 1995-01-25 23:06:44 +0000 | [diff] [blame] | 64 | int PyMac_GetOSType(PyObject *, OSType *); /* argument parser for OSType */ |
| 65 | PyObject *PyMac_BuildOSType(OSType); /* Convert OSType to PyObject */ |
Guido van Rossum | b340466 | 1995-01-22 18:36:13 +0000 | [diff] [blame] | 66 | |
Guido van Rossum | cf27c2d | 1995-01-25 23:06:44 +0000 | [diff] [blame] | 67 | int PyMac_GetStr255(PyObject *, Str255); /* argument parser for Str255 */ |
| 68 | PyObject *PyMac_BuildStr255(Str255); /* Convert Str255 to PyObject */ |
| 69 | |
| 70 | int PyMac_GetFSSpec(PyObject *, FSSpec *); /* argument parser for FSSpec */ |
| 71 | PyObject *PyMac_BuildFSSpec(FSSpec *); /* Convert FSSpec to PyObject */ |
| 72 | |
| 73 | int PyMac_GetRect(PyObject *, Rect *); /* argument parser for Rect */ |
| 74 | PyObject *PyMac_BuildRect(Rect *); /* Convert Rect to PyObject */ |
| 75 | |
| 76 | int PyMac_GetPoint(PyObject *, Point *); /* argument parser for Point */ |
| 77 | PyObject *PyMac_BuildPoint(Point); /* Convert Point to PyObject */ |
| 78 | |
| 79 | int PyMac_GetEventRecord(PyObject *, EventRecord *); /* argument parser for EventRecord */ |
| 80 | PyObject *PyMac_BuildEventRecord(EventRecord *); /* Convert EventRecord to PyObject */ |
Guido van Rossum | f71a9a9 | 1995-02-18 14:59:48 +0000 | [diff] [blame] | 81 | |
| 82 | void PyMac_InitApplet(void); /* Initialize and run an Applet */ |