mirror of
https://github.com/moparisthebest/hexchat
synced 2025-02-03 00:40:21 -05:00
Rebranding for XCHAT_FD_*
This commit is contained in:
parent
a87ad4a6ae
commit
4b7c7c2bb1
@ -292,7 +292,7 @@ dns_cmd_cb (char *word[], char *word_eol[], void *ud)
|
|||||||
if (thread_start (th, thread_function, th))
|
if (thread_start (th, thread_function, th))
|
||||||
{
|
{
|
||||||
xchat_hook_fd(ph, th->pipe_fd[PIPE_READ],
|
xchat_hook_fd(ph, th->pipe_fd[PIPE_READ],
|
||||||
XCHAT_FD_READ | XCHAT_FD_EXCEPTION | XCHAT_FD_NOTSOCKET,
|
HEXCHAT_FD_READ | HEXCHAT_FD_EXCEPTION | HEXCHAT_FD_NOTSOCKET,
|
||||||
(void *)dns_read_cb, th);
|
(void *)dns_read_cb, th);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -181,10 +181,10 @@ static struct {
|
|||||||
{"EAT_ALL", XCHAT_EAT_ALL},
|
{"EAT_ALL", XCHAT_EAT_ALL},
|
||||||
|
|
||||||
/* unused until hook_fd is done
|
/* unused until hook_fd is done
|
||||||
{"FD_READ", XCHAT_FD_READ},
|
{"FD_READ", HEXCHAT_FD_READ},
|
||||||
{"FD_WRITE", XCHAT_FD_WRITE},
|
{"FD_WRITE", HEXCHAT_FD_WRITE},
|
||||||
{"FD_EXCEPTION", XCHAT_FD_EXCEPTION},
|
{"FD_EXCEPTION", HEXCHAT_FD_EXCEPTION},
|
||||||
{"FD_NOTSOCKET", XCHAT_FD_NOTSOCKET},
|
{"FD_NOTSOCKET", HEXCHAT_FD_NOTSOCKET},
|
||||||
*/
|
*/
|
||||||
|
|
||||||
{"PRI_HIGHEST", HEXCHAT_PRI_HIGHEST},
|
{"PRI_HIGHEST", HEXCHAT_PRI_HIGHEST},
|
||||||
|
@ -1055,7 +1055,7 @@ XS (XS_Xchat_hook_fd)
|
|||||||
data = NULL;
|
data = NULL;
|
||||||
|
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
if ((flags & XCHAT_FD_NOTSOCKET) == 0) {
|
if ((flags & HEXCHAT_FD_NOTSOCKET) == 0) {
|
||||||
/* this _get_osfhandle if from win32iop.h in the perl distribution,
|
/* this _get_osfhandle if from win32iop.h in the perl distribution,
|
||||||
* not the one provided by Windows
|
* not the one provided by Windows
|
||||||
*/
|
*/
|
||||||
@ -1332,10 +1332,10 @@ xs_init (pTHX)
|
|||||||
newCONSTSUB (stash, "EAT_XCHAT", newSViv (XCHAT_EAT_XCHAT));
|
newCONSTSUB (stash, "EAT_XCHAT", newSViv (XCHAT_EAT_XCHAT));
|
||||||
newCONSTSUB (stash, "EAT_PLUGIN", newSViv (XCHAT_EAT_PLUGIN));
|
newCONSTSUB (stash, "EAT_PLUGIN", newSViv (XCHAT_EAT_PLUGIN));
|
||||||
newCONSTSUB (stash, "EAT_ALL", newSViv (XCHAT_EAT_ALL));
|
newCONSTSUB (stash, "EAT_ALL", newSViv (XCHAT_EAT_ALL));
|
||||||
newCONSTSUB (stash, "FD_READ", newSViv (XCHAT_FD_READ));
|
newCONSTSUB (stash, "FD_READ", newSViv (HEXCHAT_FD_READ));
|
||||||
newCONSTSUB (stash, "FD_WRITE", newSViv (XCHAT_FD_WRITE));
|
newCONSTSUB (stash, "FD_WRITE", newSViv (HEXCHAT_FD_WRITE));
|
||||||
newCONSTSUB (stash, "FD_EXCEPTION", newSViv (XCHAT_FD_EXCEPTION));
|
newCONSTSUB (stash, "FD_EXCEPTION", newSViv (HEXCHAT_FD_EXCEPTION));
|
||||||
newCONSTSUB (stash, "FD_NOTSOCKET", newSViv (XCHAT_FD_NOTSOCKET));
|
newCONSTSUB (stash, "FD_NOTSOCKET", newSViv (HEXCHAT_FD_NOTSOCKET));
|
||||||
newCONSTSUB (stash, "KEEP", newSViv (1));
|
newCONSTSUB (stash, "KEEP", newSViv (1));
|
||||||
newCONSTSUB (stash, "REMOVE", newSViv (0));
|
newCONSTSUB (stash, "REMOVE", newSViv (0));
|
||||||
|
|
||||||
|
@ -15,10 +15,10 @@
|
|||||||
#define HEXCHAT_PRI_LOW (-64)
|
#define HEXCHAT_PRI_LOW (-64)
|
||||||
#define HEXCHAT_PRI_LOWEST (-128)
|
#define HEXCHAT_PRI_LOWEST (-128)
|
||||||
|
|
||||||
#define XCHAT_FD_READ 1
|
#define HEXCHAT_FD_READ 1
|
||||||
#define XCHAT_FD_WRITE 2
|
#define HEXCHAT_FD_WRITE 2
|
||||||
#define XCHAT_FD_EXCEPTION 4
|
#define HEXCHAT_FD_EXCEPTION 4
|
||||||
#define XCHAT_FD_NOTSOCKET 8
|
#define HEXCHAT_FD_NOTSOCKET 8
|
||||||
|
|
||||||
#define XCHAT_EAT_NONE 0 /* pass it on through! */
|
#define XCHAT_EAT_NONE 0 /* pass it on through! */
|
||||||
#define XCHAT_EAT_XCHAT 1 /* don't let xchat see this event */
|
#define XCHAT_EAT_XCHAT 1 /* don't let xchat see this event */
|
||||||
|
@ -10,10 +10,10 @@
|
|||||||
#define HEXCHAT_PRI_LOW (-64)
|
#define HEXCHAT_PRI_LOW (-64)
|
||||||
#define HEXCHAT_PRI_LOWEST (-128)
|
#define HEXCHAT_PRI_LOWEST (-128)
|
||||||
|
|
||||||
#define XCHAT_FD_READ 1
|
#define HEXCHAT_FD_READ 1
|
||||||
#define XCHAT_FD_WRITE 2
|
#define HEXCHAT_FD_WRITE 2
|
||||||
#define XCHAT_FD_EXCEPTION 4
|
#define HEXCHAT_FD_EXCEPTION 4
|
||||||
#define XCHAT_FD_NOTSOCKET 8
|
#define HEXCHAT_FD_NOTSOCKET 8
|
||||||
|
|
||||||
#define XCHAT_EAT_NONE 0 /* pass it on through! */
|
#define XCHAT_EAT_NONE 0 /* pass it on through! */
|
||||||
#define XCHAT_EAT_XCHAT 1 /* don't let xchat see this event */
|
#define XCHAT_EAT_XCHAT 1 /* don't let xchat see this event */
|
||||||
|
Loading…
Reference in New Issue
Block a user