X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=output%2Foutput_skeleton.c;h=e4b3baf61c46532bfdbf4887b50fb81951ccd3b1;hb=54ac5277c5e462f1778300b9bc3fdd4709ecb2dc;hp=91ee9171e73c1a522b2c9995d6f57e36ba2c2254;hpb=f0411b1d170aa60c3aa79b12e88f53b225ea350d;p=libsigrok.git diff --git a/output/output_skeleton.c b/output/output_skeleton.c index 91ee9171..e4b3baf6 100644 --- a/output/output_skeleton.c +++ b/output/output_skeleton.c @@ -20,27 +20,27 @@ #include #include -static int init(struct output *o) +static int init(struct sr_output *o) { return 0; } -static int data(struct output *o, char *data_in, uint64_t length_in, +static int data(struct sr_output *o, const char *data_in, uint64_t length_in, char **data_out, uint64_t *length_out) { - return SIGROK_OK; + return SR_OK; } -static int event(struct output *o, int event_type, char **data_out, +static int event(struct sr_output *o, int event_type, char **data_out, uint64_t *length_out) { - return SIGROK_OK; + return SR_OK; } -struct output_format output_foo = { +struct sr_output_format output_foo = { "foo", "The foo format", - DF_LOGIC, + SR_DF_LOGIC, init, data, event,