mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-30 02:26:23 +00:00
Changes from make ari-stubs after r402560
........ Merged revisions 402561 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@402571 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -19,7 +19,7 @@
|
|||||||
/*! \file
|
/*! \file
|
||||||
*
|
*
|
||||||
* \brief Generated file - declares stubs to be implemented in
|
* \brief Generated file - declares stubs to be implemented in
|
||||||
* res/ari/resource_playback.c
|
* res/ari/resource_playbacks.c
|
||||||
*
|
*
|
||||||
* Playback control resources
|
* Playback control resources
|
||||||
*
|
*
|
||||||
@@ -34,12 +34,12 @@
|
|||||||
* template in rest-api-templates/ari_resource.h.mustache
|
* template in rest-api-templates/ari_resource.h.mustache
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _ASTERISK_RESOURCE_PLAYBACK_H
|
#ifndef _ASTERISK_RESOURCE_PLAYBACKS_H
|
||||||
#define _ASTERISK_RESOURCE_PLAYBACK_H
|
#define _ASTERISK_RESOURCE_PLAYBACKS_H
|
||||||
|
|
||||||
#include "asterisk/ari.h"
|
#include "asterisk/ari.h"
|
||||||
|
|
||||||
/*! \brief Argument struct for ast_ari_playback_get() */
|
/*! \brief Argument struct for ast_ari_playbacks_get() */
|
||||||
struct ast_ari_playbacks_get_args {
|
struct ast_ari_playbacks_get_args {
|
||||||
/*! \brief Playback's id */
|
/*! \brief Playback's id */
|
||||||
const char *playback_id;
|
const char *playback_id;
|
||||||
@@ -52,7 +52,7 @@ struct ast_ari_playbacks_get_args {
|
|||||||
* \param[out] response HTTP response
|
* \param[out] response HTTP response
|
||||||
*/
|
*/
|
||||||
void ast_ari_playbacks_get(struct ast_variable *headers, struct ast_ari_playbacks_get_args *args, struct ast_ari_response *response);
|
void ast_ari_playbacks_get(struct ast_variable *headers, struct ast_ari_playbacks_get_args *args, struct ast_ari_response *response);
|
||||||
/*! \brief Argument struct for ast_ari_playback_stop() */
|
/*! \brief Argument struct for ast_ari_playbacks_stop() */
|
||||||
struct ast_ari_playbacks_stop_args {
|
struct ast_ari_playbacks_stop_args {
|
||||||
/*! \brief Playback's id */
|
/*! \brief Playback's id */
|
||||||
const char *playback_id;
|
const char *playback_id;
|
||||||
@@ -65,7 +65,7 @@ struct ast_ari_playbacks_stop_args {
|
|||||||
* \param[out] response HTTP response
|
* \param[out] response HTTP response
|
||||||
*/
|
*/
|
||||||
void ast_ari_playbacks_stop(struct ast_variable *headers, struct ast_ari_playbacks_stop_args *args, struct ast_ari_response *response);
|
void ast_ari_playbacks_stop(struct ast_variable *headers, struct ast_ari_playbacks_stop_args *args, struct ast_ari_response *response);
|
||||||
/*! \brief Argument struct for ast_ari_playback_control() */
|
/*! \brief Argument struct for ast_ari_playbacks_control() */
|
||||||
struct ast_ari_playbacks_control_args {
|
struct ast_ari_playbacks_control_args {
|
||||||
/*! \brief Playback's id */
|
/*! \brief Playback's id */
|
||||||
const char *playback_id;
|
const char *playback_id;
|
||||||
@@ -81,4 +81,4 @@ struct ast_ari_playbacks_control_args {
|
|||||||
*/
|
*/
|
||||||
void ast_ari_playbacks_control(struct ast_variable *headers, struct ast_ari_playbacks_control_args *args, struct ast_ari_response *response);
|
void ast_ari_playbacks_control(struct ast_variable *headers, struct ast_ari_playbacks_control_args *args, struct ast_ari_response *response);
|
||||||
|
|
||||||
#endif /* _ASTERISK_RESOURCE_PLAYBACK_H */
|
#endif /* _ASTERISK_RESOURCE_PLAYBACKS_H */
|
||||||
|
Reference in New Issue
Block a user