bridge_native_dahdi.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * Asterisk -- An open source telephony toolkit.
  3. *
  4. * Copyright (C) 2013 Digium, Inc.
  5. *
  6. * Richard Mudgett <rmudgett@digium.com>
  7. *
  8. * See http://www.asterisk.org for more information about
  9. * the Asterisk project. Please do not directly contact
  10. * any of the maintainers of this project for assistance;
  11. * the project provides a web site, mailing lists and IRC
  12. * channels for your use.
  13. *
  14. * This program is free software, distributed under the terms of
  15. * the GNU General Public License Version 2. See the LICENSE file
  16. * at the top of the source tree.
  17. */
  18. /*!
  19. * \file
  20. * \brief Native DAHDI bridging support.
  21. *
  22. * \author Richard Mudgett <rmudgett@digium.com>
  23. *
  24. * See Also:
  25. * \arg \ref AstCREDITS
  26. */
  27. #ifndef _ASTERISK_BRIDGE_NATIVE_DAHDI_H
  28. #define _ASTERISK_BRIDGE_NATIVE_DAHDI_H
  29. #if defined(__cplusplus) || defined(c_plusplus)
  30. extern "C" {
  31. #endif
  32. /* ------------------------------------------------------------------- */
  33. void dahdi_native_unload(void);
  34. int dahdi_native_load(struct ast_module *mod, const struct ast_channel_tech *tech);
  35. /* ------------------------------------------------------------------- */
  36. #if defined(__cplusplus) || defined(c_plusplus)
  37. }
  38. #endif
  39. #endif /* _ASTERISK_BRIDGE_NATIVE_DAHDI_H */