summaryrefslogtreecommitdiff
path: root/src/common.h
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-10-01 22:12:01 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-10-01 22:12:01 +0000
commit0158782b02765bf7eadd8b56c9d71783acf5e802 (patch)
tree9c09d98f54cf77e0ad348b08bddd3d43ea9fd66e /src/common.h
parentf8ea75ceb144fd7efaf0c582f10d06a05420235f (diff)
downloadirssi-0158782b02765bf7eadd8b56c9d71783acf5e802.zip
Keyboard should never get stuck again when receiving huge amounts of
text from server that irssi doesn't handle fast enough. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@710 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h
index 199fb5c1..8fa76d78 100644
--- a/src/common.h
+++ b/src/common.h
@@ -55,6 +55,8 @@ typedef void (*GInputFunction) (void *data, int source,
int g_input_add(int source, GInputCondition condition,
GInputFunction function, void *data);
+int g_input_add_full(int source, int priority, GInputCondition condition,
+ GInputFunction function, void *data);
#define MAX_INT_STRLEN ((sizeof(int) * CHAR_BIT + 2) / 3 + 1)