/corec/err.h

https://github.com/robUx4/Core-C · C Header · 75 lines · 36 code · 6 blank · 33 comment · 0 complexity · 20878e3ad57af6d7f092a61ed26a0079 MD5 · raw file

  1. /*****************************************************************************
  2. *
  3. * Copyright (c) 2008-2010, CoreCodec, Inc.
  4. * All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions are met:
  8. * * Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * * Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. * * Neither the name of CoreCodec, Inc. nor the
  14. * names of its contributors may be used to endorse or promote products
  15. * derived from this software without specific prior written permission.
  16. *
  17. * THIS SOFTWARE IS PROVIDED BY CoreCodec, Inc. ``AS IS'' AND ANY
  18. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  19. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  20. * DISCLAIMED. IN NO EVENT SHALL CoreCodec, Inc. BE LIABLE FOR ANY
  21. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  22. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  23. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  24. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  25. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  26. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27. *
  28. ****************************************************************************/
  29. #ifndef __ERR_H
  30. #define __ERR_H
  31. #define ERR_ID FOURCC('E','R','R','_')
  32. //----------------------------------------------------------------
  33. // error codes
  34. #define ERR_NONE (err_t)0
  35. #define ERR_BUFFER_FULL (err_t)-1 // 0xFFFFFFFF
  36. #define ERR_OUT_OF_MEMORY (err_t)-2 // 0xFFFFFFFE
  37. #define ERR_INVALID_DATA (err_t)-3 // 0xFFFFFFFD
  38. #define ERR_INVALID_PARAM (err_t)-4 // 0xFFFFFFFC
  39. #define ERR_NOT_SUPPORTED (err_t)-5 // 0xFFFFFFFB
  40. #define ERR_NEED_MORE_DATA (err_t)-6 // 0xFFFFFFFA
  41. // stream added 0xFFFFFFF9
  42. #define ERR_FILE_NOT_FOUND (err_t)-8 // 0xFFFFFFF8
  43. #define ERR_END_OF_FILE (err_t)-9 // 0xFFFFFFF7
  44. #define ERR_DEVICE_ERROR (err_t)-10 // 0xFFFFFFF6
  45. #define ERR_SYNCED (err_t)-11 // 0xFFFFFFF5
  46. #define ERR_DATA_NOT_FOUND (err_t)-12 // 0xFFFFFFF4
  47. #define ERR_PROTO_NOT_FOUND (err_t)-13 // 0xFFFFFFF3
  48. #define ERR_NOT_DIRECTORY (err_t)-14 // 0xFFFFFFF2
  49. #define ERR_NOT_COMPATIBLE (err_t)-15 // 0xFFFFFFF1
  50. #define ERR_CONNECT_FAILED (err_t)-16 // 0xFFFFFFF0
  51. #define ERR_DROPPING (err_t)-17 // 0xFFFFFFEF
  52. #define ERR_STOPPED (err_t)-18 // 0xFFFFFFEE
  53. #define ERR_UNAUTHORIZED (err_t)-19 // 0xFFFFFFED
  54. #define ERR_LOADING_HEADER (err_t)-20 // 0xFFFFFFEC
  55. #define ERR_READ (err_t)-21 // 0xFFFFFFEB
  56. #define ERR_WRITE (err_t)-22 // 0xFFFFFFEA
  57. #define ERR_UNRESOLVED_ADDR (err_t)-23 // 0xFFFFFFE9
  58. #define ERR_NO_NETWORK (err_t)-24 // 0xFFFFFFE8
  59. #define ERR_TIME_OUT (err_t)-25 // 0xFFFFFFE7
  60. #define ERR_KEY_NOT_UNIQUE (err_t)-26 // 0xFFFFFFE6
  61. #define ERR_NOT_CONST (err_t)-27 // 0xFFFFFFE5
  62. #define ERR_REDIRECTED (err_t)-28 // 0xFFFFFFE4
  63. #define ERR_CANCELED (err_t)-29 // 0xFFFFFFE3
  64. #define ERR_STREAM_CACHED (err_t)-30 // 0xFFFFFFE2
  65. #define ERR_SERVER_ERROR (err_t)-31 // 0xFFFFFFE1
  66. #define ERR_NOT_USABLE (err_t)-32 // 0xFFFFFFE0
  67. // buffer full: data is not processed, retry later
  68. // need more data: data is processed, but need more to continue
  69. #endif