From 68de2bcb00161656a90ee0a396482daac4c639d0 Mon Sep 17 00:00:00 2001 From: TingPing Date: Mon, 8 Apr 2013 17:09:36 -0300 Subject: Add constants to both modules --- plugins/python/python.c | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'plugins') diff --git a/plugins/python/python.c b/plugins/python/python.c index 4077bfe4..b0748e97 100644 --- a/plugins/python/python.c +++ b/plugins/python/python.c @@ -1171,6 +1171,17 @@ Plugin_New(char *filename, PyMethodDef *xchat_methods, PyObject *xcoobj) hexchat_print(ph, "Can't create xchat module"); goto error; } + + PyModule_AddIntConstant(m, "EAT_NONE", HEXCHAT_EAT_NONE); + PyModule_AddIntConstant(m, "EAT_XCHAT", HEXCHAT_EAT_HEXCHAT); + PyModule_AddIntConstant(m, "EAT_PLUGIN", HEXCHAT_EAT_PLUGIN); + PyModule_AddIntConstant(m, "EAT_ALL", HEXCHAT_EAT_ALL); + PyModule_AddIntConstant(m, "PRI_HIGHEST", HEXCHAT_PRI_HIGHEST); + PyModule_AddIntConstant(m, "PRI_HIGH", HEXCHAT_PRI_HIGH); + PyModule_AddIntConstant(m, "PRI_NORM", HEXCHAT_PRI_NORM); + PyModule_AddIntConstant(m, "PRI_LOW", HEXCHAT_PRI_LOW); + PyModule_AddIntConstant(m, "PRI_LOWEST", HEXCHAT_PRI_LOWEST); + m = Py_InitModule("hexchat", xchat_methods); if (m == NULL) { hexchat_print(ph, "Can't create hexchat module"); -- cgit 1.4.1