Revert "New API function sr_session_dev_list()"

This reverts commit 2bb311b482.
This commit is contained in:
Uwe Hermann 2013-11-03 21:57:36 +01:00
parent 6c114fa626
commit 455279d79a
1 changed files with 0 additions and 25 deletions

View File

@ -190,31 +190,6 @@ SR_API int sr_session_dev_add(const struct sr_dev_inst *sdi)
return SR_OK;
}
/**
* List all device instances attached to the current session.
*
* @param devlist A pointer where the device instance list will be
* stored on return. If no devices are in the session,
* this will be NULL. Each element in the list points
* to a struct sr_dev_inst *.
* The list must be freed by the caller, but not the
* elements pointed to.
*
* @return SR_OK upon success, SR_ERR upon invalid arguments.
*/
SR_API int sr_session_dev_list(GSList **devlist)
{
*devlist = NULL;
if (!session)
return SR_ERR;
*devlist = g_slist_copy(session->devs);
return SR_OK;
}
/**
* Remove all datafeed callbacks in the current session.
*