mirror of
https://github.com/irssi/irssi.git
synced 2026-08-17 15:42:26 +02:00
..adding new files..
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@171 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
d01b094151
commit
c95034c6de
206 changed files with 31247 additions and 0 deletions
24
src/irc/core/server-idle.h
Normal file
24
src/irc/core/server-idle.h
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
#ifndef __SERVER_IDLE_H
|
||||
#define __SERVER_IDLE_H
|
||||
|
||||
#include "irc-server.h"
|
||||
|
||||
/* Add new idle command to queue */
|
||||
int server_idle_add(IRC_SERVER_REC *server, const char *cmd, const char *arg, int last, ...);
|
||||
|
||||
/* Add new idle command to first of queue */
|
||||
int server_idle_add_first(IRC_SERVER_REC *server, const char *cmd, const char *arg, int last, ...);
|
||||
|
||||
/* Add new idle command to specified position of queue */
|
||||
int server_idle_insert(IRC_SERVER_REC *server, const char *cmd, const char *arg, int tag, int last, ...);
|
||||
|
||||
/* Check if record is still in queue */
|
||||
int server_idle_find(IRC_SERVER_REC *server, int tag);
|
||||
|
||||
/* Remove record from idle queue */
|
||||
int server_idle_remove(IRC_SERVER_REC *server, int tag);
|
||||
|
||||
void servers_idle_init(void);
|
||||
void servers_idle_deinit(void);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue