Tizen 2.1 base
[platform/upstream/glib2.0.git] / gio / tests / test-pipe-unix.h
1 /* Unix pipe-to-self. This is a utility module for tests, not a test.
2  *
3  * Copyright © 2008-2010 Red Hat, Inc.
4  * Copyright © 2011 Nokia Corporation
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General
17  * Public License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19  * Boston, MA 02111-1307, USA.
20  *
21  * Author: Simon McVittie <simon.mcvittie@collabora.co.uk>
22  */
23
24 #ifndef TEST_PIPE_UNIX_H
25 #define TEST_PIPE_UNIX_H
26
27 #include <gio/gio.h>
28
29 gboolean test_pipe (GInputStream  **is,
30                     GOutputStream **os,
31                     GError        **error);
32
33 gboolean test_bidi_pipe (GIOStream **left,
34                          GIOStream **right,
35                          GError    **error);
36
37 #endif /* guard */