diff options
author | Valery Febvre <vfebvre at easter-eggs.com> | 2004-05-02 22:19:01 +0000 |
---|---|---|
committer | Valery Febvre <vfebvre at easter-eggs.com> | 2004-05-02 22:19:01 +0000 |
commit | fadb14e123c3f661d79cfca4192985bfaf1d5bb9 (patch) | |
tree | ade93fa8dd752506de98e13da186e649bc689347 /python/protocols/py_logout_request.h | |
parent | 290e743aa70ca648d9e252209130aaa2fe1c1c2d (diff) | |
download | lasso-fadb14e123c3f661d79cfca4192985bfaf1d5bb9.tar.gz lasso-fadb14e123c3f661d79cfca4192985bfaf1d5bb9.tar.xz lasso-fadb14e123c3f661d79cfca4192985bfaf1d5bb9.zip |
Many many changes
Diffstat (limited to 'python/protocols/py_logout_request.h')
-rw-r--r-- | python/protocols/py_logout_request.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/python/protocols/py_logout_request.h b/python/protocols/py_logout_request.h index af305e34..4357767f 100644 --- a/python/protocols/py_logout_request.h +++ b/python/protocols/py_logout_request.h @@ -34,14 +34,10 @@ typedef struct { LassoLogoutRequest *obj; } LassoLogoutRequest_object; -#define lassoLogoutRequest_get(v) (((v) == Py_None) ? NULL : (((LassoLogoutRequest_object *)(PyObject_GetAttr(v, PyString_FromString("_o"))))->obj)) -PyObject *lassoLogoutRequest_wrap(LassoLogoutRequest *request); +#define LassoLogoutRequest_get(v) (((v) == Py_None) ? NULL : (((LassoLogoutRequest_object *)(PyObject_GetAttr(v, PyString_FromString("_o"))))->obj)) +PyObject *LassoLogoutRequest_wrap(LassoLogoutRequest *request); PyObject *logout_request_getattr(PyObject *self, PyObject *args); -PyObject *logout_request(PyObject *self, PyObject *args); - -PyObject *logout_request_set_sessionIndex(PyObject *self, PyObject *args); -PyObject *logout_request_set_relayState(PyObject *self, PyObject *args); -PyObject *logout_request_set_consent(PyObject *self, PyObject *args); +PyObject *logout_request_new(PyObject *self, PyObject *args); #endif /* __PYLASSO_PY_LOGOUT_REQUEST_H__ */ |