h225raserr.h
上传用户:hnnddl
上传日期:2007-01-06
资源大小:3580k
文件大小:2k
源码类别:

IP电话/视频会议

开发平台:

WINDOWS

  1. /*
  2.  * $Revision: 1.2 $
  3.  * $Date: 1997/10/31 14:53:11 $
  4.  */
  5. ////////////////////////////////////////////////////////////////
  6. //               Copyright (c) 1996,97 Lucent Technologies    //
  7. //                       All Rights Reserved                  //
  8. //                                                            //
  9. //                       THIS IS UNPUBLISHED                  //
  10. //                       PROPRIETARY SOURCE                   //
  11. //                   CODE OF Lucent Technologies              //
  12. // AND elemedia   //
  13. //                                                            //
  14. //           The copyright notice above does not evidence any //
  15. //          actual or intended publication of such source code//
  16. ////////////////////////////////////////////////////////////////
  17. //
  18. /////////////////////////////////////////////////////////////////
  19. // File : h225raserr.h        //
  20. //                                                             //
  21. //    //
  22. //    //
  23. // History:    //
  24. //    //
  25. //  25_Mar_1997 Created    //
  26. //    //
  27. /////////////////////////////////////////////////////////////////
  28. #if !defined(__H225RASERR_H__)
  29. #define __H225RASERR_H__
  30. #include "api/apierr.h"
  31. #define H225RAS_SUCCESS 0
  32. // Aliases for general error codes
  33. #define H225RAS_UNKNOWN_ERROR PROT_CODE_UNKNOWN_ERROR
  34. #define H225RAS_MEM_ALLOC_FAILED PROT_CODE_MEM_ALLOC_FAILED
  35. #define H225RAS_INVALID_PARAM PROT_CODE_INVALID_PARAM
  36. #define H225RAS_PENDING PROT_CODE_PENDING
  37. #define H225RAS_NOT_SUPPORTED PROT_CODE_NOT_SUPPORTED
  38. #define H225RAS_ITEM_NOT_PRESENT PROT_CODE_ITEM_NOT_PRESENT
  39. #define H225RAS_BUFFER_TOO_SMALL PROT_CODE_BUFFER_TOO_SMALL
  40. #define H225RAS_ASN1_ENCODE_FAILED (PROT_CODE_MAX + 1)
  41. #define H225RAS_BAD_MESSAGE (PROT_CODE_MAX + 2)
  42. #define H225RAS_CANNOT_MCAST (PROT_CODE_MAX + 3)
  43. // H225RAS specific error codes
  44. #define H225RAS_ERROR(CODE)
  45. (ProtReturnCode)PROT_ERR(PROT_FACILITY_CODE_H225,
  46. PROT_FACILITY_SUB_CODE_H225RAS,(CODE))
  47. #endif //__H225RASERR_H__