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 <mranostay@gmail.com>
This commit is contained in:
Matt Ranostay 2013-09-03 20:47:10 -07:00 committed by Bert Vermeulen
parent 2bb311b482
commit c542391f82
1 changed files with 1 additions and 0 deletions

View File

@ -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);