mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 20:33:46 +02:00
correct wrong function prefixes: g_input -> i_input
This commit is contained in:
parent
9cbdf9175e
commit
edb2f699d1
17 changed files with 72 additions and 103 deletions
11
src/common.h
11
src/common.h
|
|
@ -45,15 +45,14 @@ typedef guint64 uoff_t;
|
|||
#define PRIuUOFF_T G_GUINT64_FORMAT
|
||||
|
||||
/* input functions */
|
||||
#define G_INPUT_READ (1 << 0)
|
||||
#define G_INPUT_WRITE (1 << 1)
|
||||
#define I_INPUT_READ (1 << 0)
|
||||
#define I_INPUT_WRITE (1 << 1)
|
||||
|
||||
typedef void (*GInputFunction) (void *data, GIOChannel *source, int condition);
|
||||
|
||||
int g_input_add(GIOChannel *source, int condition,
|
||||
GInputFunction function, void *data);
|
||||
int g_input_add_full(GIOChannel *source, int priority, int condition,
|
||||
GInputFunction function, void *data);
|
||||
int i_input_add(GIOChannel *source, int condition, GInputFunction function, void *data);
|
||||
int i_input_add_full(GIOChannel *source, int priority, int condition, GInputFunction function,
|
||||
void *data);
|
||||
|
||||
/* return full path for ~/.irssi */
|
||||
const char *get_irssi_dir(void);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue