]> sigrok.org Git - libsigrok.git/blobdiff - output/text/text.c
sr: Mark API functions with SR_API/SR_PRIV.
[libsigrok.git] / output / text / text.c
index da41b7334e6ba50434c5bcaaaa431ed4018aabfe..ad3e91d0e1856d52af4d9866bc52f85360510662 100644 (file)
 #include <stdio.h>
 #include <string.h>
 #include <glib.h>
-#include <sigrok.h>
 #include "config.h"
+#include "sigrok.h"
 #include "text.h"
 
-
 void flush_linebufs(struct context *ctx, char *outbuf)
 {
        static int max_probename_len = 0;
@@ -67,7 +66,7 @@ void flush_linebufs(struct context *ctx, char *outbuf)
 int init(struct sr_output *o, int default_spl, enum outputmode mode)
 {
        struct context *ctx;
-       struct probe *probe;
+       struct sr_probe *probe;
        GSList *l;
        uint64_t samplerate;
        int num_probes;
@@ -107,7 +106,7 @@ int init(struct sr_output *o, int default_spl, enum outputmode mode)
 
        snprintf(ctx->header, 511, "%s\n", PACKAGE_STRING);
        num_probes = g_slist_length(o->device->probes);
-       if (o->device->plugin || device_has_hwcap(o->device, SR_HWCAP_SAMPLERATE)) {
+       if (o->device->plugin || sr_device_has_hwcap(o->device, SR_HWCAP_SAMPLERATE)) {
                samplerate = *((uint64_t *) o->device->plugin->get_device_info(
                                o->device->plugin_index, SR_DI_CUR_SAMPLERATE));
                if (!(samplerate_s = sr_samplerate_string(samplerate))) {
@@ -170,4 +169,3 @@ int event(struct sr_output *o, int event_type, char **data_out,
 
        return SR_OK;
 }
-