Minor documentation fixes

This commit is contained in:
Bert Vermeulen 2013-09-25 11:51:38 +02:00
parent 5451816fd1
commit 72a08bccff
3 changed files with 6 additions and 1 deletions

View File

@ -439,7 +439,8 @@ SR_PRIV void sr_hw_cleanup_all(void)
} }
} }
/** A floating reference can be passed in for data. */ /** A floating reference can be passed in for data.
* @private */
SR_PRIV struct sr_config *sr_config_new(int key, GVariant *data) SR_PRIV struct sr_config *sr_config_new(int key, GVariant *data)
{ {
struct sr_config *src; struct sr_config *src;
@ -452,6 +453,7 @@ SR_PRIV struct sr_config *sr_config_new(int key, GVariant *data)
return src; return src;
} }
/** @private */
SR_PRIV void sr_config_free(struct sr_config *src) SR_PRIV void sr_config_free(struct sr_config *src)
{ {

View File

@ -411,6 +411,8 @@ SR_API int sr_session_run(void)
* resources that the session thread will try to use. * resources that the session thread will try to use.
* *
* @return SR_OK upon success, SR_ERR_BUG if no session exists. * @return SR_OK upon success, SR_ERR_BUG if no session exists.
*
* @private
*/ */
SR_PRIV int sr_session_stop_sync(void) SR_PRIV int sr_session_stop_sync(void)
{ {

View File

@ -51,6 +51,7 @@
extern struct sr_session *session; extern struct sr_session *session;
extern SR_PRIV struct sr_dev_driver session_driver; extern SR_PRIV struct sr_dev_driver session_driver;
/** @private */
SR_PRIV int sr_sessionfile_check(const char *filename) SR_PRIV int sr_sessionfile_check(const char *filename)
{ {
struct zip *archive; struct zip *archive;