| 127 | } |
| 128 | |
| 129 | PyObject *PyWinObject_FromCWnd(CWnd *pWnd) |
| 130 | { |
| 131 | return (PyObject *) ui_assoc_object::make (UITypeFromCObject(pWnd), |
| 132 | pWnd)->GetGoodRet(); |
| 133 | |
| 134 | } |
| 135 | CWnd *GetWndPtr(PyObject *self) |
| 136 | { |
| 137 | return (CWnd *)PyCWnd::GetPythonGenericWnd(self); |
no test coverage detected