| 802 | return retVal; |
| 803 | } |
| 804 | int Python_callback(PyObject *method, WPARAM val) |
| 805 | { |
| 806 | PyObject *meth = method; |
| 807 | PyObject *thearglst = Py_BuildValue("(N)",PyWinObject_FromPARAM(val)); |
| 808 | return Python_do_int_callback(meth,thearglst); |
| 809 | } |
| 810 | int Python_callback(PyObject *method, LPARAM val) |
| 811 | { |
| 812 | PyObject *meth = method; |
no test coverage detected