summaryrefslogtreecommitdiffstats
path: root/python/environs/py_federation_termination.h
diff options
context:
space:
mode:
authorNicolas Clapies <nclapies@entrouvert.com>2004-07-18 23:35:59 +0000
committerNicolas Clapies <nclapies@entrouvert.com>2004-07-18 23:35:59 +0000
commit244c4e278f655d2434f3b65158a43816ac1a110d (patch)
treebd2346719b66bdad7e9aac9f61a7fee7fbcfcffb /python/environs/py_federation_termination.h
parent721642847cd1acf399f191d1bb205d7d6466f4fb (diff)
downloadlasso-244c4e278f655d2434f3b65158a43816ac1a110d.tar.gz
lasso-244c4e278f655d2434f3b65158a43816ac1a110d.tar.xz
lasso-244c4e278f655d2434f3b65158a43816ac1a110d.zip
*** empty log message ***
Diffstat (limited to 'python/environs/py_federation_termination.h')
-rw-r--r--python/environs/py_federation_termination.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/python/environs/py_federation_termination.h b/python/environs/py_federation_termination.h
new file mode 100644
index 00000000..cc1ebefb
--- /dev/null
+++ b/python/environs/py_federation_termination.h
@@ -0,0 +1,48 @@
+/* $Id$
+ *
+ * PyLasso -- Python bindings for Lasso library
+ *
+ * Copyright (C) 2004 Entr'ouvert
+ * http://lasso.labs.libre-entreprise.org
+ *
+ * Authors: Valery Febvre <vfebvre@easter-eggs.com>
+ * Nicolas Clapies <nclapies@entrouvert.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+#ifndef __PYLASSO_PY_FEDERATION_TERMINATION_H__
+#define __PYLASSO_PY_FEDERATION_TERMINATION_H__
+
+#include <lasso/environs/federation_termination.h>
+
+#include "py_server.h"
+#include "py_user.h"
+
+typedef struct {
+ PyObject_HEAD
+ LassoFederationTermination *obj;
+} LassoFederationTermination_object;
+
+#define LassoFederationTermination_get(v) (((v) == Py_None) ? NULL : (((LassoFederationTermination_object *)(PyObject_GetAttr(v, PyString_FromString("_o"))))->obj))
+PyObject *LassoFederationTermination_wrap(LassoFederationTermination *federation_termination);
+
+PyObject *federation_termination_new(PyObject *self, PyObject *args);
+PyObject *federation_termination_build_notification_msg(PyObject *self, PyObject *args);
+PyObject *federation_termination_destroy(PyObject *self, PyObject *args);
+PyObject *federation_termination_init_notification(PyObject *self, PyObject *args);
+PyObject *federation_termination_process_notification_msg(PyObject *self, PyObject *args);
+
+#endif /* __PYLASSO_PY_FEDERATION_TERMINATION_H__ */