#ifndef lcdialog_h #define lcdialog_h typedef struct { PyObject_HEAD PyObject *reflist; DIALOG *dia; int owner; int nof; } LCDialogObject; extern PyTypeObject LCDialog_Type; #define LCDialogObject_Check(x) ((x)->ob_type == &LCDialog_Type) PyObject *LCDialog_New(); PyObject *LCDialog_FromDialog(DIALOG *dia); PyObject *LCDialog_FromDialogDealloc(DIALOG *dia); #endif /* lcdialog_h */