mirror of
https://github.com/irssi/irssi.git
synced 2026-08-19 00:22:17 +02:00
right. maybe now builds with glib2 right?
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2898 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
a17321c5c8
commit
8790f97869
1 changed files with 2 additions and 2 deletions
|
|
@ -41,7 +41,7 @@ void irssi_ssl_close(GIOChannel *);
|
||||||
/* ssl create watch */
|
/* ssl create watch */
|
||||||
guint irssi_ssl_create_watch(GIOChannel *, gint, GIOCondition, GIOFunc, gpointer, GDestroyNotify);
|
guint irssi_ssl_create_watch(GIOChannel *, gint, GIOCondition, GIOFunc, gpointer, GDestroyNotify);
|
||||||
#else
|
#else
|
||||||
guint irssi_ssl_create_watch(GIOChannel *, GIOCondition);
|
GSource *irssi_ssl_create_watch(GIOChannel *, GIOCondition);
|
||||||
#endif
|
#endif
|
||||||
/* ssl free */
|
/* ssl free */
|
||||||
void irssi_ssl_free(GIOChannel *);
|
void irssi_ssl_free(GIOChannel *);
|
||||||
|
|
@ -191,7 +191,7 @@ guint irssi_ssl_create_watch(GIOChannel *handle, gint priority, GIOCondition con
|
||||||
return chan->giochan->funcs->io_add_watch(handle, priority, cond, func, data, notify);
|
return chan->giochan->funcs->io_add_watch(handle, priority, cond, func, data, notify);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
guint irssi_ssl_create_watch(GIOChannel *handle, GIOCondition cond)
|
GSource *irssi_ssl_create_watch(GIOChannel *handle, GIOCondition cond)
|
||||||
{
|
{
|
||||||
GIOSSLChannel *chan = (GIOSSLChannel *)handle;
|
GIOSSLChannel *chan = (GIOSSLChannel *)handle;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue