]> sigrok.org Git - libsigrok.git/blobdiff - src/libsigrok-internal.h
input: Add sdi_ready flag to struct sr_input.
[libsigrok.git] / src / libsigrok-internal.h
index 0a4e804ded0ca3544d3f35d73551f3df2911aee7..d1819985510bf84e4718f978f73d6003f7391c7f 100644 (file)
@@ -211,6 +211,7 @@ struct sr_input {
        const struct sr_input_module *module;
        GString *buf;
        struct sr_dev_inst *sdi;
+       gboolean sdi_ready;
        void *priv;
 };
 
@@ -306,7 +307,7 @@ struct sr_input_module {
         * @retval SR_OK Success
         * @retval other Negative error code.
         */
-       int (*receive) (const struct sr_input *in, GString *buf);
+       int (*receive) (struct sr_input *in, GString *buf);
 
        /**
         * This function is called after the caller is finished using
@@ -490,7 +491,7 @@ SR_PRIV struct sr_channel *sr_channel_new(int index, int type,
                gboolean enabled, const char *name);
 
 /* Generic device instances */
-SR_PRIV struct sr_dev_inst *sr_dev_inst_new(int index, int status,
+SR_PRIV struct sr_dev_inst *sr_dev_inst_new(int status,
                const char *vendor, const char *model, const char *version);
 SR_PRIV void sr_dev_inst_free(struct sr_dev_inst *sdi);
 
@@ -567,6 +568,9 @@ SR_PRIV int sr_session_send(const struct sr_dev_inst *sdi,
                const struct sr_datafeed_packet *packet);
 SR_PRIV int sr_session_stop_sync(struct sr_session *session);
 SR_PRIV int sr_sessionfile_check(const char *filename);
+SR_PRIV int sr_packet_copy(const struct sr_datafeed_packet *packet,
+               struct sr_datafeed_packet **copy);
+SR_PRIV void sr_packet_free(struct sr_datafeed_packet *packet);
 
 /*--- std.c -----------------------------------------------------------------*/