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

IP电话/视频会议

开发平台:

WINDOWS

  1. /*
  2.  * $Revision: 1.1.1.1 $
  3.  * $Date: 1997/06/27 20:21: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. #if !defined(__CONNMGRERR_H__)
  18. #define __CONNMGRERR_H__
  19. #include "api/apierr.h"
  20. #define CONNMGR_SUCCESS 0
  21. // Aliases for general error codes
  22. #define CONNMGR_UNKNOWN_ERROR PROT_CODE_UNKNOWN_ERROR
  23. #define CONNMGR_MEM_ALLOC_FAILED PROT_CODE_MEM_ALLOC_FAILED
  24. #define CONNMGR_INVALID_PARAM PROT_CODE_INVALID_PARAM
  25. #define CONNMGR_PENDING PROT_CODE_PENDING
  26. #define CONNMGR_NOT_IMPLEMENTED PROT_CODE_NOT_IMPLEMENTED
  27. #define CONNMGR_TRANS_UNINITIALIZED (PROT_CODE_MAX + 1)
  28. #define CONNMGR_CONNECTED (PROT_CODE_MAX + 2)
  29. #define CONNMGR_ERROR(CODE)
  30. (ProtReturnCode)PROT_ERR(PROT_FACILITY_CODE_TRANSPORT,
  31. PROT_FACILITY_SUB_CODE_CONNMGR,(CODE))
  32. #endif //__CONNMGRERR_H__