dialplan_functions.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * Asterisk -- An open source telephony toolkit.
  3. *
  4. * Copyright (C) 2010, Digium, Inc.
  5. *
  6. * See http://www.asterisk.org for more information about
  7. * the Asterisk project. Please do not directly contact
  8. * any of the maintainers of this project for assistance;
  9. * the project provides a web site, mailing lists and IRC
  10. * channels for your use.
  11. *
  12. * This program is free software, distributed under the terms of
  13. * the GNU General Public License Version 2. See the LICENSE file
  14. * at the top of the source tree.
  15. */
  16. /*!
  17. * \file
  18. * \brief SIP dialplan functions header file
  19. */
  20. #include "sip.h"
  21. #ifndef _SIP_DIALPLAN_FUNCTIONS_H
  22. #define _SIP_DIALPLAN_FUNCTIONS_H
  23. /*!
  24. * \brief Channel read dialplan function for SIP
  25. */
  26. int sip_acf_channel_read(struct ast_channel *chan, const char *funcname, char *preparse, char *buf, size_t buflen);
  27. /*!
  28. * \brief register dialplan function tests
  29. */
  30. void sip_dialplan_function_register_tests(void);
  31. /*!
  32. * \brief unregister dialplan function tests
  33. */
  34. void sip_dialplan_function_unregister_tests(void);
  35. #endif /* !defined(_SIP_DIALPLAN_FUNCTIONS_H) */