summaryrefslogtreecommitdiff
path: root/gsystem-subprocess.c
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2012-12-08 13:45:59 -0500
committerColin Walters <walters@verbum.org>2012-12-08 13:45:59 -0500
commitaac3668399f8058877cf21ba35617ec4cfecd500 (patch)
treeb58e9e87d0b30a3911a4e3119ecb849250b1d874 /gsystem-subprocess.c
parentdd1b3032b4cd175c2a9b2c611a62525454bad772 (diff)
downloadlibgsystem-aac3668399f8058877cf21ba35617ec4cfecd500.tar.gz
Introspection fixes, use --warn-error
This way we get more of the API for bindings.
Diffstat (limited to 'gsystem-subprocess.c')
-rw-r--r--gsystem-subprocess.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/gsystem-subprocess.c b/gsystem-subprocess.c
index d016144..4302cab 100644
--- a/gsystem-subprocess.c
+++ b/gsystem-subprocess.c
@@ -502,6 +502,11 @@ gs_subprocess_get_pid (GSSubprocess *self)
return self->pid;
}
+/**
+ * gs_subprocess_get_stdin_pipe:
+ *
+ * Returns: (transfer full): Pipe
+ */
GOutputStream *
gs_subprocess_get_stdin_pipe (GSSubprocess *self)
{
@@ -511,6 +516,11 @@ gs_subprocess_get_stdin_pipe (GSSubprocess *self)
return self->stdin_pipe;
}
+/**
+ * gs_subprocess_get_stdout_pipe:
+ *
+ * Returns: (transfer full): Pipe
+ */
GInputStream *
gs_subprocess_get_stdout_pipe (GSSubprocess *self)
{
@@ -520,6 +530,11 @@ gs_subprocess_get_stdout_pipe (GSSubprocess *self)
return self->stdout_pipe;
}
+/**
+ * gs_subprocess_get_stderr_pipe:
+ *
+ * Returns: (transfer full): Pipe
+ */
GInputStream *
gs_subprocess_get_stderr_pipe (GSSubprocess *self)
{