diff options
Diffstat (limited to 'lang/python/helpers.h')
-rw-r--r-- | lang/python/helpers.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lang/python/helpers.h b/lang/python/helpers.h index f41d327c..16a9b9fd 100644 --- a/lang/python/helpers.h +++ b/lang/python/helpers.h @@ -26,11 +26,11 @@ #define write(fd, str, sz) {DWORD written; WriteFile((HANDLE) fd, str, sz, &written, 0);} #endif -PyObject *pygpgme_raise_callback_exception(PyObject *self); +PyObject *pyme_raise_callback_exception(PyObject *self); -PyObject *pygpgme_set_passphrase_cb(PyObject *self, PyObject *cb); -PyObject *pygpgme_set_progress_cb(PyObject *self, PyObject *cb); -PyObject *pygpgme_set_status_cb(PyObject *self, PyObject *cb); +PyObject *pyme_set_passphrase_cb(PyObject *self, PyObject *cb); +PyObject *pyme_set_progress_cb(PyObject *self, PyObject *cb); +PyObject *pyme_set_status_cb(PyObject *self, PyObject *cb); -PyObject *pygpgme_data_new_from_cbs(PyObject *self, PyObject *pycbs, - gpgme_data_t *r_data); +PyObject *pyme_data_new_from_cbs(PyObject *self, PyObject *pycbs, + gpgme_data_t *r_data); |