mio_sink_file.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00022
00023 #ifndef _AIRFRAME_MIO_SINK_FILE_H_
00024 #define _AIRFRAME_MIO_SINK_FILE_H_
00025 #include <airframe/mio.h>
00026
00031 typedef struct _MIOSinkFileConfig {
00036 uint32_t next_serial;
00037 } MIOSinkFileConfig;
00038
00054 gboolean mio_sink_init_file_single(
00055 MIOSink *sink,
00056 const char *spec,
00057 MIOType vsp_type,
00058 void *cfg,
00059 GError **err);
00060
00086 gboolean mio_sink_init_file_pattern(
00087 MIOSink *sink,
00088 const char *spec,
00089 MIOType vsp_type,
00090 void *cfg,
00091 GError **err);
00092
00093
00094 #endif