Added support for loading pyc code from a resource.
diff --git a/Mac/Include/macglue.h b/Mac/Include/macglue.h
index a299016..695a045 100644
--- a/Mac/Include/macglue.h
+++ b/Mac/Include/macglue.h
@@ -52,6 +52,9 @@
 
 char *PyMac_GetPythonDir();					/* Return the name of the python dir */
 
+int PyMac_FindResourceModule(char *, char *); /* Test for 'PYC ' resource in a file */
+PyObject * PyMac_LoadResourceModule(char *, char *); /* Load 'PYC ' resource from file */
+
 int PyMac_GetOSType(PyObject *, OSType *);	/* argument parser for OSType */
 PyObject *PyMac_BuildOSType(OSType);		/* Convert OSType to PyObject */