Airframe Application Utilities
libairframe 0.7.2 API documentation

Main Page | Data Structures | File List | Data Fields | Globals

mio_stdio.h

Go to the documentation of this file.
00001 /*
00002  ** mio_stdio.c
00003  ** Multiple I/O standard in source / standard out sink
00004  **
00005  ** ------------------------------------------------------------------------
00006  ** Copyright (C) 2006 Carnegie Mellon University. All Rights Reserved.
00007  ** ------------------------------------------------------------------------
00008  ** Authors: Brian Trammell <bht@cert.org>
00009  ** ------------------------------------------------------------------------
00010  ** GNU Lesser GPL Rights pursuant to Version 2.1, February 1999 
00011  ** Government Purpose License Rights (GPLR) pursuant to DFARS 252.225-7013
00012  ** ------------------------------------------------------------------------
00013  */
00014 
00022 /* idem hack */
00023 #ifndef _AIRFRAME_MIO_STDIO_H_
00024 #define _AIRFRAME_MIO_STDIO_H_
00025 #include <airframe/mio.h>
00026 
00041 gboolean mio_source_init_stdin(
00042     MIOSource       *source,
00043     const char      *spec,
00044     MIOType         vsp_type,
00045     void            *cfg,
00046     GError          **err);
00047 
00062 gboolean mio_sink_init_stdout(
00063     MIOSink         *sink,
00064     const char      *spec,
00065     MIOType         vsp_type,
00066     void            *cfg,
00067     GError          **err);
00068 
00069 /* end idem */
00070 #endif