mirror of
https://github.com/irssi/irssi.git
synced 2026-08-18 16:12:30 +02:00
added functions from fe-windows.h and window-items.h
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@868 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
2e96f68445
commit
746bd9b4f0
5 changed files with 380 additions and 27 deletions
|
|
@ -91,6 +91,196 @@ input_remove(tag)
|
|||
CODE:
|
||||
perl_source_remove(tag);
|
||||
|
||||
# maybe there's some easier way than this..? :)
|
||||
int
|
||||
MSGLEVEL_CRAP()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_CRAP;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
MSGLEVEL_MSGS()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_MSGS;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
MSGLEVEL_PUBLIC()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_PUBLIC;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
MSGLEVEL_NOTICES()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_NOTICES;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
MSGLEVEL_SNOTES()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_SNOTES;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
MSGLEVEL_CTCPS()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_CTCPS;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
MSGLEVEL_ACTIONS()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_ACTIONS;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
MSGLEVEL_JOINS()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_JOINS;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
MSGLEVEL_PARTS()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_PARTS;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
MSGLEVEL_QUITS()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_QUITS;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
MSGLEVEL_KICKS()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_KICKS;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
MSGLEVEL_MODES()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_MODES;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
MSGLEVEL_TOPICS()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_TOPICS;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
MSGLEVEL_WALLOPS()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_WALLOPS;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
MSGLEVEL_INVITES()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_INVITES;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
MSGLEVEL_NICKS()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_NICKS;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
MSGLEVEL_DCC()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_DCC;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
MSGLEVEL_DCCMSGS()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_DCCMSGS;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
MSGLEVEL_CLIENTNOTICE()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_CLIENTNOTICE;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
MSGLEVEL_CLIENTCRAP()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_CLIENTCRAP;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
MSGLEVEL_CLIENTERROR()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_CLIENTERROR;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
MSGLEVEL_HILIGHT()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_HILIGHT;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
MSGLEVEL_ALL()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_ALL;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
MSGLEVEL_NOHILIGHT()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_NOHILIGHT;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
MSGLEVEL_NO_ACT()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_NO_ACT;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
MSGLEVEL_NEVER()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_NEVER;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
MSGLEVEL_LASTLOG()
|
||||
CODE:
|
||||
RETVAL = MSGLEVEL_LASTLOG;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
int
|
||||
level2bits(str)
|
||||
char *str
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue