]> sigrok.org Git - libsigrok.git/commitdiff
Move 'struct drv_context' to sigrok-internal.h.
authorUwe Hermann <redacted>
Fri, 19 Oct 2012 08:35:11 +0000 (10:35 +0200)
committerUwe Hermann <redacted>
Sun, 21 Oct 2012 14:40:13 +0000 (16:40 +0200)
It's not meant to be visible to frontends.

libsigrok-internal.h
libsigrok.h

index 2cb8fe4eef9e939887bd007e7f694925ce06f43b..2a8503abd37e80c51f9d90301a84cfc6617e0d5b 100644 (file)
@@ -61,6 +61,11 @@ struct sr_serial_dev_inst {
        int fd;
 };
 
+/* Private driver context. */
+struct drv_context {
+       GSList *instances;
+};
+
 /*--- log.c -----------------------------------------------------------------*/
 
 SR_PRIV int sr_log(int loglevel, const char *format, ...);
index 9ee524d93896a8971a8a54eb2025a9ef368bd562..3771e1ee660387bf47fc1013bf6d4656b2b0ca49 100644 (file)
@@ -560,11 +560,6 @@ struct sr_dev_driver {
        void *priv;
 };
 
-/* Private driver context. */
-struct drv_context {
-       GSList *instances;
-};
-
 struct sr_session {
        /* List of struct sr_dev* */
        GSList *devs;