summaryrefslogtreecommitdiff
path: root/libsigrokdecode.h
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2017-05-31 22:51:23 +0200
committerUwe Hermann <uwe@hermann-uwe.de>2017-05-31 23:07:01 +0200
commitd480174d51b327ad8e579d79f619607a9687597e (patch)
tree3eab97821a42ebb0a8bbb86a14fdd153f98edb44 /libsigrokdecode.h
parentcdb49509e85443129f2d60180eb818813030901e (diff)
downloadlibsigrokdecode-d480174d51b327ad8e579d79f619607a9687597e.tar.gz
libsigrokdecode-d480174d51b327ad8e579d79f619607a9687597e.zip
struct srd_decoder: Add list of input/output decoder IDs.
Diffstat (limited to 'libsigrokdecode.h')
-rw-r--r--libsigrokdecode.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/libsigrokdecode.h b/libsigrokdecode.h
index ae96d95..df1cb5c 100644
--- a/libsigrokdecode.h
+++ b/libsigrokdecode.h
@@ -154,6 +154,12 @@ struct srd_decoder {
*/
char *license;
+ /** List of possible decoder input IDs. */
+ GSList *inputs;
+
+ /** List of possible decoder output IDs. */
+ GSList *outputs;
+
/** List of channels required by this decoder. */
GSList *channels;