diff options
author | Christopher Davis <loafier@gmail.com> | 2006-06-26 04:20:50 +0000 |
---|---|---|
committer | Christopher Davis <loafier@gmail.com> | 2006-06-26 04:20:50 +0000 |
commit | 96280edc8fda9cc591bc0833398e576bf680931d (patch) | |
tree | 53dad5721b3fa530a7a69b0169fe4d5d0b614a3e /pyconstants.h | |
parent | 3b04cf6a1210f97d8144ee1ba646186aca4912ef (diff) | |
download | irssi-python-96280edc8fda9cc591bc0833398e576bf680931d.tar.gz irssi-python-96280edc8fda9cc591bc0833398e576bf680931d.tar.xz irssi-python-96280edc8fda9cc591bc0833398e576bf680931d.zip |
working on new provision for constants and changed sig2code script
git-svn-id: http://svn.irssi.org/repos/irssi-python@4292 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'pyconstants.h')
-rw-r--r-- | pyconstants.h | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/pyconstants.h b/pyconstants.h new file mode 100644 index 0000000..4cf6407 --- /dev/null +++ b/pyconstants.h @@ -0,0 +1,45 @@ +static PY_CONSTANT_REC py_constants[] = { + {"INPUT_READ", INPUT_READ}, + {"INPUT_WRITE", INPUT_WRITE}, + {"IRSSI_GUI_GNOME", IRSSI_GUI_GNOME}, + {"IRSSI_GUI_GTK", IRSSI_GUI_GTK}, + {"IRSSI_GUI_KDE", IRSSI_GUI_KDE}, + {"IRSSI_GUI_NONE", IRSSI_GUI_NONE}, + {"IRSSI_GUI_QT", IRSSI_GUI_QT}, + {"IRSSI_GUI_TEXT", IRSSI_GUI_TEXT}, + {"MASK_DOMAIN", MASK_DOMAIN}, + {"MASK_HOST", MASK_HOST}, + {"MASK_NICK", MASK_NICK}, + {"MASK_USER", MASK_USER}, + {"MSGLEVEL_ACTIONS", MSGLEVEL_ACTIONS}, + {"MSGLEVEL_ALL", MSGLEVEL_ALL}, + {"MSGLEVEL_CLIENTCRAP", MSGLEVEL_CLIENTCRAP}, + {"MSGLEVEL_CLIENTERROR", MSGLEVEL_CLIENTERROR}, + {"MSGLEVEL_CLIENTNOTICE", MSGLEVEL_CLIENTNOTICE}, + {"MSGLEVEL_CRAP", MSGLEVEL_CRAP}, + {"MSGLEVEL_CTCPS", MSGLEVEL_CTCPS}, + {"MSGLEVEL_DCC", MSGLEVEL_DCC}, + {"MSGLEVEL_DCCMSGS", MSGLEVEL_DCCMSGS}, + {"MSGLEVEL_HILIGHT", MSGLEVEL_HILIGHT}, + {"MSGLEVEL_INVITES", MSGLEVEL_INVITES}, + {"MSGLEVEL_JOINS", MSGLEVEL_JOINS}, + {"MSGLEVEL_KICKS", MSGLEVEL_KICKS}, + {"MSGLEVEL_LASTLOG", MSGLEVEL_LASTLOG}, + {"MSGLEVEL_MODES", MSGLEVEL_MODES}, + {"MSGLEVEL_MSGS", MSGLEVEL_MSGS}, + {"MSGLEVEL_NEVER", MSGLEVEL_NEVER}, + {"MSGLEVEL_NICKS", MSGLEVEL_NICKS}, + {"MSGLEVEL_NO_ACT", MSGLEVEL_NO_ACT}, + {"MSGLEVEL_NOHILIGHT", MSGLEVEL_NOHILIGHT}, + {"MSGLEVEL_NOTICES", MSGLEVEL_NOTICES}, + {"MSGLEVEL_PARTS", MSGLEVEL_PARTS}, + {"MSGLEVEL_PUBLIC", MSGLEVEL_PUBLIC}, + {"MSGLEVEL_QUITS", MSGLEVEL_QUITS}, + {"MSGLEVEL_SNOTES", MSGLEVEL_SNOTES}, + {"MSGLEVEL_TOPICS", MSGLEVEL_TOPICS}, + {"MSGLEVEL_WALLOPS", MSGLEVEL_WALLOPS}, + {"SIGNAL_PRIORITY_DEFAULT", SIGNAL_PRIORITY_DEFAULT}, + {"SIGNAL_PRIORITY_HIGH", SIGNAL_PRIORITY_HIGH}, + {"SIGNAL_PRIORITY_LOW", SIGNAL_PRIORITY_LOW}, + {NULL} +}; |