summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2001-09-01 23:39:58 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2001-09-01 23:39:58 (GMT)
commitfabd00fa91277d2536d97d033e0f7ac561c65fab (patch)
tree12d421896780b1360337deb8627d82d69ebad0de /Include
parent62d24a0f50db4b959ef32ac0e7b9946cc045ca08 (diff)
downloadcpython-fabd00fa91277d2536d97d033e0f7ac561c65fab.zip
cpython-fabd00fa91277d2536d97d033e0f7ac561c65fab.tar.gz
cpython-fabd00fa91277d2536d97d033e0f7ac561c65fab.tar.bz2
Added glue routine for PyMac_BuildFSSpec, PyMac_GetFSRef and PyMac_BuildFSRef.
Moved the declarations to pymactoolbox.h.
Diffstat (limited to 'Include')
-rw-r--r--Include/pymactoolbox.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/Include/pymactoolbox.h b/Include/pymactoolbox.h
index 9e4a3e4..defa2be 100644
--- a/Include/pymactoolbox.h
+++ b/Include/pymactoolbox.h
@@ -88,7 +88,11 @@ PyObject *PyMac_Buildwide(wide *); /* Convert wide to PyObject */
#endif /* USE_TOOLBOX_OBJECT_GLUE */
/* macfs exports */
-extern int PyMac_GetFSSpec(PyObject *, FSSpec *);
+int PyMac_GetFSSpec(PyObject *, FSSpec *); /* argument parser for FSSpec */
+PyObject *PyMac_BuildFSSpec(FSSpec *); /* Convert FSSpec to PyObject */
+
+int PyMac_GetFSRef(PyObject *, FSRef *); /* argument parser for FSRef */
+PyObject *PyMac_BuildFSRef(FSRef *); /* Convert FSRef to PyObject */
/* AE exports */
extern PyObject *AEDesc_New(AppleEvent *); /* XXXX Why passed by address?? */