mirror of
https://github.com/python/cpython.git
synced 2025-07-24 03:35:53 +00:00
Added prototypes for the code resource routines, and for Pstring
(which was missing, for some reason).
This commit is contained in:
parent
ac82b6a041
commit
f22e67dcb5
2 changed files with 4 additions and 1 deletions
|
@ -1 +1 @@
|
|||
#define BUILD 37
|
||||
#define BUILD 39
|
||||
|
|
|
@ -54,6 +54,7 @@ void PyMac_FixGUSIcd Py_PROTO((void)); /* Workaround for GUSI chdir() call */
|
|||
#endif
|
||||
|
||||
char *PyMac_StrError(int); /* strerror with mac errors */
|
||||
unsigned char *Pstring(char *str); /* Convert c-string to pascal-string in static buffer */
|
||||
|
||||
#ifdef USE_GUSI
|
||||
extern int PyMac_ConsoleIsDead; /* True when exiting */
|
||||
|
@ -84,6 +85,8 @@ void PyMac_RestoreMenuBar(void); /* Restore menu bar for ease of exiting */
|
|||
|
||||
int PyMac_FindResourceModule(PyStringObject *, char *, char *); /* Test for 'PYC ' resource in a file */
|
||||
PyObject * PyMac_LoadResourceModule(char *, char *); /* Load 'PYC ' resource from file */
|
||||
int PyMac_FindCodeResourceModule(PyStringObject *, char *, char *); /* Test for 'PYD ' resource in a file */
|
||||
PyObject * PyMac_LoadCodeResourceModule(char *, char *); /* Load 'PYD ' resource from file */
|
||||
struct filedescr *PyMac_FindModuleExtension(char *, int *, char *); /* Look for module in single folder */
|
||||
|
||||
int PyMac_GetDirectory(FSSpec *dirfss, char *prompt); /* Ask user for a directory */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue