Added prototypes for the code resource routines, and for Pstring
(which was missing, for some reason).
diff --git a/Mac/Include/macglue.h b/Mac/Include/macglue.h
index 3f19548..ffd11e1 100644
--- a/Mac/Include/macglue.h
+++ b/Mac/Include/macglue.h
@@ -54,6 +54,7 @@
 #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 @@
 
 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 */