From: Jack Jansen Date: Fri, 25 Aug 2000 22:28:08 +0000 (+0000) Subject: Added prototype for DlgObj_ConvertToWindow(). X-Git-Tag: v2.0b1~224 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7a1b6fe02072a5b6077141295db8fc9824145acf;p=python Added prototype for DlgObj_ConvertToWindow(). --- diff --git a/Mac/Include/pymactoolbox.h b/Mac/Include/pymactoolbox.h index 79b8f0e37c..39dffab7f9 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)