diff options
Diffstat (limited to 'Include/pymactoolbox.h')
-rw-r--r-- | Include/pymactoolbox.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Include/pymactoolbox.h b/Include/pymactoolbox.h index 9e4a3e42a0..defa2bece7 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?? */ |