proto.h: move routine declaration to its respective group
This commit is contained in:
parent
3ad0308c55
commit
b736fa0c7d
|
@ -164,8 +164,6 @@ SR_API const char *const *sr_input_extensions_get(
|
||||||
const struct sr_input_module *imod);
|
const struct sr_input_module *imod);
|
||||||
SR_API const struct sr_input_module *sr_input_find(char *id);
|
SR_API const struct sr_input_module *sr_input_find(char *id);
|
||||||
SR_API const struct sr_option **sr_input_options_get(const struct sr_input_module *imod);
|
SR_API const struct sr_option **sr_input_options_get(const struct sr_input_module *imod);
|
||||||
SR_API gboolean sr_output_test_flag(const struct sr_output_module *omod,
|
|
||||||
uint64_t flag);
|
|
||||||
SR_API void sr_input_options_free(const struct sr_option **options);
|
SR_API void sr_input_options_free(const struct sr_option **options);
|
||||||
SR_API struct sr_input *sr_input_new(const struct sr_input_module *imod,
|
SR_API struct sr_input *sr_input_new(const struct sr_input_module *imod,
|
||||||
GHashTable *options);
|
GHashTable *options);
|
||||||
|
@ -192,6 +190,8 @@ SR_API void sr_output_options_free(const struct sr_option **opts);
|
||||||
SR_API const struct sr_output *sr_output_new(const struct sr_output_module *omod,
|
SR_API const struct sr_output *sr_output_new(const struct sr_output_module *omod,
|
||||||
GHashTable *params, const struct sr_dev_inst *sdi,
|
GHashTable *params, const struct sr_dev_inst *sdi,
|
||||||
const char *filename);
|
const char *filename);
|
||||||
|
SR_API gboolean sr_output_test_flag(const struct sr_output_module *omod,
|
||||||
|
uint64_t flag);
|
||||||
SR_API int sr_output_send(const struct sr_output *o,
|
SR_API int sr_output_send(const struct sr_output *o,
|
||||||
const struct sr_datafeed_packet *packet, GString **out);
|
const struct sr_datafeed_packet *packet, GString **out);
|
||||||
SR_API int sr_output_free(const struct sr_output *o);
|
SR_API int sr_output_free(const struct sr_output *o);
|
||||||
|
|
Loading…
Reference in New Issue