connmgrerr.h
资源名称:h323.zip [点击查看]
上传用户:hnnddl
上传日期:2007-01-06
资源大小:3580k
文件大小:1k
源码类别:
IP电话/视频会议
开发平台:
WINDOWS
- /*
- * $Revision: 1.1.1.1 $
- * $Date: 1997/06/27 20:21:11 $
- */
- ////////////////////////////////////////////////////////////////
- // Copyright (c) 1996,97 Lucent Technologies //
- // All Rights Reserved //
- // //
- // THIS IS UNPUBLISHED //
- // PROPRIETARY SOURCE //
- // CODE OF Lucent Technologies //
- // AND elemedia //
- // //
- // The copyright notice above does not evidence any //
- // actual or intended publication of such source code//
- ////////////////////////////////////////////////////////////////
- #if !defined(__CONNMGRERR_H__)
- #define __CONNMGRERR_H__
- #include "api/apierr.h"
- #define CONNMGR_SUCCESS 0
- // Aliases for general error codes
- #define CONNMGR_UNKNOWN_ERROR PROT_CODE_UNKNOWN_ERROR
- #define CONNMGR_MEM_ALLOC_FAILED PROT_CODE_MEM_ALLOC_FAILED
- #define CONNMGR_INVALID_PARAM PROT_CODE_INVALID_PARAM
- #define CONNMGR_PENDING PROT_CODE_PENDING
- #define CONNMGR_NOT_IMPLEMENTED PROT_CODE_NOT_IMPLEMENTED
- #define CONNMGR_TRANS_UNINITIALIZED (PROT_CODE_MAX + 1)
- #define CONNMGR_CONNECTED (PROT_CODE_MAX + 2)
- #define CONNMGR_ERROR(CODE)
- (ProtReturnCode)PROT_ERR(PROT_FACILITY_CODE_TRANSPORT,
- PROT_FACILITY_SUB_CODE_CONNMGR,(CODE))
- #endif //__CONNMGRERR_H__