mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-09-29 10:36:35 +02:00
Use g types in public API for consistency
This commit is contained in:
@@ -57,18 +57,18 @@
|
|||||||
|
|
||||||
GQuark g_unix_error_quark (void);
|
GQuark g_unix_error_quark (void);
|
||||||
|
|
||||||
gboolean g_unix_pipe_flags (int *fds,
|
gboolean g_unix_pipe_flags (gint *fds,
|
||||||
int flags,
|
gint flags,
|
||||||
GError **error);
|
GError **error);
|
||||||
|
|
||||||
gboolean g_unix_set_fd_nonblocking (gint fd,
|
gboolean g_unix_set_fd_nonblocking (gint fd,
|
||||||
gboolean nonblock,
|
gboolean nonblock,
|
||||||
GError **error);
|
GError **error);
|
||||||
|
|
||||||
GSource *g_unix_signal_source_new (int signum);
|
GSource *g_unix_signal_source_new (gint signum);
|
||||||
|
|
||||||
guint g_unix_signal_add_watch_full (int signum,
|
guint g_unix_signal_add_watch_full (gint signum,
|
||||||
int priority,
|
gint priority,
|
||||||
GSourceFunc handler,
|
GSourceFunc handler,
|
||||||
gpointer user_data,
|
gpointer user_data,
|
||||||
GDestroyNotify notify);
|
GDestroyNotify notify);
|
||||||
|
Reference in New Issue
Block a user