summaryrefslogtreecommitdiff
path: root/include/glibtop/procargs.h
diff options
context:
space:
mode:
authorMartin Baulig <baulig@suse.de>2001-04-20 18:09:15 +0000
committerMartin Baulig <martin@src.gnome.org>2001-04-20 18:09:15 +0000
commitd6630b9f7adec0b55d823170fb52821c1be96f83 (patch)
tree3199b271e83b8432b11e3cdbd7b5a0f8edcf73ac /include/glibtop/procargs.h
parent3b7c1099168b7b04dbc501adc371a7f624a091d8 (diff)
downloadlibgtop-d6630b9f7adec0b55d823170fb52821c1be96f83.tar.gz
Changed `void *closure' to `glibtop_closure *closure'.
2001-04-20 Martin Baulig <baulig@suse.de> * include/glibtop/*.h (glibtop_get_*_s, glibtop_get_*_pl): Changed `void *closure' to `glibtop_closure *closure'. * include/glibtop/*.h (glibtop_init_*_s): Added `glibtop_closure *closure' argument. (glibtop_init_*_p): Changed `glibtop *server' to `glibtop_server *server' and added `glibtop_closure *closure'.
Diffstat (limited to 'include/glibtop/procargs.h')
-rw-r--r--include/glibtop/procargs.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/glibtop/procargs.h b/include/glibtop/procargs.h
index 8fbc12d4..545e4769 100644
--- a/include/glibtop/procargs.h
+++ b/include/glibtop/procargs.h
@@ -44,15 +44,15 @@ char **
glibtop_get_proc_args_l (glibtop_client *client, glibtop_array *array, pid_t pid);
#if GLIBTOP_SUID_PROC_ARGS
-int glibtop_init_proc_args_p (glibtop *server);
+int glibtop_init_proc_args_p (glibtop_server *server, glibtop_closure *closure);
char **
-glibtop_get_proc_args_p (glibtop *server, void *closure, glibtop_array *array, pid_t pid);
+glibtop_get_proc_args_p (glibtop_server *server, glibtop_closure *closure, glibtop_array *array, pid_t pid);
#else
-int glibtop_init_proc_args_s (glibtop_server *server);
+int glibtop_init_proc_args_s (glibtop_server *server, glibtop_closure *closure);
char **
-glibtop_get_proc_args_s (glibtop_server *server, void *closure, glibtop_array *array, pid_t pid);
+glibtop_get_proc_args_s (glibtop_server *server, glibtop_closure *closure, glibtop_array *array, pid_t pid);
#endif
#ifdef GLIBTOP_NAMES