diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2000-08-25 22:28:08 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2000-08-25 22:28:08 (GMT) |
commit | 7a1b6fe02072a5b6077141295db8fc9824145acf (patch) | |
tree | 4572f05ae938f15828e442e4c6f248bd7f145079 /Mac | |
parent | b8c4c7b37e6a9e8b08160c264bfc09f6fa239c54 (diff) | |
download | cpython-7a1b6fe02072a5b6077141295db8fc9824145acf.zip cpython-7a1b6fe02072a5b6077141295db8fc9824145acf.tar.gz cpython-7a1b6fe02072a5b6077141295db8fc9824145acf.tar.bz2 |
Added prototype for DlgObj_ConvertToWindow().
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/Include/pymactoolbox.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Mac/Include/pymactoolbox.h b/Mac/Include/pymactoolbox.h index 79b8f0e..39dffab 100644 --- a/Mac/Include/pymactoolbox.h +++ b/Mac/Include/pymactoolbox.h @@ -32,6 +32,7 @@ extern int CtlObj_Convert(PyObject *, ControlHandle *); /* Dlg exports */ extern PyObject *DlgObj_New(DialogPtr); extern int DlgObj_Convert(PyObject *, DialogPtr *); +extern WindowPtr DlgObj_ConvertToWindow(PyObject *); extern PyTypeObject Dialog_Type; #define DlgObj_Check(x) ((x)->ob_type == &Dialog_Type) |