summaryrefslogtreecommitdiffstats
path: root/pysigmap.h
diff options
context:
space:
mode:
authorChristopher Davis <loafier@gmail.com>2006-06-24 03:10:40 +0000
committerChristopher Davis <loafier@gmail.com>2006-06-24 03:10:40 +0000
commitd75ad2cebb61a3cb46570cecbc257693c528da0b (patch)
tree863b5ebfaca07d0c4ad140ce58e35d90916d78b7 /pysigmap.h
parent4d33c04f15e60e21a537edd635c9ac130312a3cb (diff)
downloadirssi-python-d75ad2cebb61a3cb46570cecbc257693c528da0b.tar.gz
irssi-python-d75ad2cebb61a3cb46570cecbc257693c528da0b.tar.xz
irssi-python-d75ad2cebb61a3cb46570cecbc257693c528da0b.zip
Worked more on signal handler. Got variable signals
working (IE: event *) Still need to get signal emit, register, unregister, cmd unbind, sig remove and a few others. git-svn-id: http://svn.irssi.org/repos/irssi-python@4290 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'pysigmap.h')
-rw-r--r--pysigmap.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/pysigmap.h b/pysigmap.h
index 0e37935..b6c3278 100644
--- a/pysigmap.h
+++ b/pysigmap.h
@@ -58,17 +58,21 @@ static PY_SIGNAL_SPEC_REC py_sigmap[] = {
{"channel sync", "C", 0, 0, 0},
{"channel topic changed", "C", 0, 0, 0},
{"ctcp msg", "Sssss", 0, 0, 0},
+ {"ctcp msg ", "Sssss", 0, 0, 1},
{"default ctcp msg", "Sssss", 0, 0, 0},
{"ctcp reply", "Sssss", 0, 0, 0},
+ {"ctcp reply ", "Sssss", 0, 0, 1},
{"default ctcp reply", "Sssss", 0, 0, 0},
{"ctcp action", "Sssss", 0, 0, 0},
{"awaylog show", "lii", 0, 0, 0},
{"server nick changed", "S", 0, 0, 0},
{"event connected", "S", 0, 0, 0},
{"server event", "Ssss", 0, 0, 0},
+ {"event ", "Ssss", 0, 0, 1},
{"default event", "Ssss", 0, 0, 0},
{"whois default event", "Ssss", 0, 0, 0},
{"server incoming", "Ss", 0, 0, 0},
+ {"redir ", "Ssss", 0, 0, 1},
{"server lag", "S", 0, 0, 0},
{"server lag disconnect", "S", 0, 0, 0},
{"massjoin", "CL", 0, 0, 0},
@@ -82,8 +86,10 @@ static PY_SIGNAL_SPEC_REC py_sigmap[] = {
{"netsplit server remove", "Se", 0, 0, 0},
{"netsplit new", "N", 0, 0, 0},
{"netsplit remove", "N", 0, 0, 0},
+ {"dcc ctcp ", "sd", 0, 0, 1},
{"default dcc ctcp", "sd", 0, 0, 0},
{"dcc unknown ctcp", "sss", 0, 0, 0},
+ {"dcc reply ", "sd", 0, 0, 1},
{"default dcc reply", "sd", 0, 0, 0},
{"dcc unknown reply", "sss", 0, 0, 0},
{"dcc chat message", "ds", 0, 0, 0},