From: Matt Ranostay Date: Wed, 4 Sep 2013 03:47:10 +0000 (-0700) Subject: proto: Add missing prototype in proto.h X-Git-Tag: libsigrok-0.2.2~63 X-Git-Url: https://sigrok.org/gitweb/?p=libsigrok.git;a=commitdiff_plain;h=c542391f8243e9307950820fa8dc3fad6fec3600 proto: Add missing prototype in proto.h Add missing prototype sr_session_dev_list that was breaking the Pulseview build. Signed-off-by: Matt Ranostay --- diff --git a/proto.h b/proto.h index 821846f2..ca23fc7c 100644 --- a/proto.h +++ b/proto.h @@ -90,6 +90,7 @@ SR_API struct sr_session *sr_session_new(void); SR_API int sr_session_destroy(void); SR_API int sr_session_dev_remove_all(void); SR_API int sr_session_dev_add(const struct sr_dev_inst *sdi); +SR_API int sr_session_dev_list(GSList **devlist); /* Datafeed setup */ SR_API int sr_session_datafeed_callback_remove_all(void);