error.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. #ifndef fooerrorhfoo
  2. #define fooerrorhfoo
  3. /***
  4. This file is part of PulseAudio.
  5. Copyright 2004-2006 Lennart Poettering
  6. Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
  7. PulseAudio is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU Lesser General Public License as published
  9. by the Free Software Foundation; either version 2.1 of the License,
  10. or (at your option) any later version.
  11. PulseAudio is distributed in the hope that it will be useful, but
  12. WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. General Public License for more details.
  15. You should have received a copy of the GNU Lesser General Public License
  16. along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
  17. ***/
  18. #include <pulse/cdecl.h>
  19. #include <pulse/version.h>
  20. /** \file
  21. * Error management */
  22. PA_C_DECL_BEGIN
  23. /** Return a human readable error message for the specified numeric error code */
  24. const char* pa_strerror(int error);
  25. PA_C_DECL_END
  26. #endif