📄 tapi3err.h
字号:
#pragma option push -b -a8 -pc -A- /*P_O_Push*/
/*****************************************************************************
*
* Copyright (c) 1998 - 1999 Microsoft Corporation
*
* Module Name:
*
* tapi3err.h
*
* Abstract:
*
* Error Notifications for TAPI 3.0
*
*****************************************************************************/
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
#ifndef __TAPI3ERR_H__
#define __TAPI3ERR_H__
//--------------------------------------------------------------------------
// Core TAPI Error messages
//--------------------------------------------------------------------------
//
// Values are 32 bit values layed out as follows:
//
// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
// +---+-+-+-----------------------+-------------------------------+
// |Sev|C|R| Facility | Code |
// +---+-+-+-----------------------+-------------------------------+
//
// where
//
// Sev - is the severity code
//
// 00 - Success
// 01 - Informational
// 10 - Warning
// 11 - Error
//
// C - is the Customer code flag
//
// R - is a reserved bit
//
// Facility - is the facility code
//
// Code - is the facility's status code
//
//
// Define the facility codes
//
//
// Define the severity codes
//
//
// MessageId: TAPI_E_NOTENOUGHMEMORY
//
// MessageText:
//
// The buffer passed in to this method was not big enough.
//
#define TAPI_E_NOTENOUGHMEMORY ((HRESULT)0x80040001L)
//
// MessageId: TAPI_E_NOITEMS
//
// MessageText:
//
// No items exist that match the request.
//
#define TAPI_E_NOITEMS ((HRESULT)0x80040002L)
//
// MessageId: TAPI_E_NOTSUPPORTED
//
// MessageText:
//
// This method is not supported.
//
#define TAPI_E_NOTSUPPORTED ((HRESULT)0x80040003L)
//
// MessageId: TAPI_E_INVALIDMEDIATYPE
//
// MessageText:
//
// The MEDIATYPE passed in to this method was invalid.
//
#define TAPI_E_INVALIDMEDIATYPE ((HRESULT)0x80040004L)
//
// MessageId: TAPI_E_OPERATIONFAILED
//
// MessageText:
//
// The operation failed for an unspecified reason.
//
#define TAPI_E_OPERATIONFAILED ((HRESULT)0x80040005L)
//
// MessageId: TAPI_E_ALLOCATED
//
// MessageText:
//
// The device is already in use.
//
#define TAPI_E_ALLOCATED ((HRESULT)0x80040006L)
//
// MessageId: TAPI_E_CALLUNAVAIL
//
// MessageText:
//
// No call appearance available.
//
#define TAPI_E_CALLUNAVAIL ((HRESULT)0x80040007L)
//
// MessageId: TAPI_E_COMPLETIONOVERRUN
//
// MessageText:
//
// Too many call completions outstanding.
//
#define TAPI_E_COMPLETIONOVERRUN ((HRESULT)0x80040008L)
//
// MessageId: TAPI_E_CONFERENCEFULL
//
// MessageText:
//
// The conference is full.
//
#define TAPI_E_CONFERENCEFULL ((HRESULT)0x80040009L)
//
// MessageId: TAPI_E_DIALMODIFIERNOTSUPPORTED
//
// MessageText:
//
// The dial modifier is not supported.
//
#define TAPI_E_DIALMODIFIERNOTSUPPORTED ((HRESULT)0x8004000AL)
//
// MessageId: TAPI_E_INUSE
//
// MessageText:
//
// The device is already in use.
//
#define TAPI_E_INUSE ((HRESULT)0x8004000BL)
//
// MessageId: TAPI_E_INVALADDRESS
//
// MessageText:
//
// The phone number is invalid or not properly formatted.
//
#define TAPI_E_INVALADDRESS ((HRESULT)0x8004000CL)
//
// MessageId: TAPI_E_INVALADDRESSSTATE
//
// MessageText:
//
// Operation not permitted in current address state.
//
#define TAPI_E_INVALADDRESSSTATE ((HRESULT)0x8004000DL)
//
// MessageId: TAPI_E_INVALCALLPARAMS
//
// MessageText:
//
// Invalid LINECALLPARAMS structure.
//
#define TAPI_E_INVALCALLPARAMS ((HRESULT)0x8004000EL)
//
// MessageId: TAPI_E_INVALCALLPRIVILEGE
//
// MessageText:
//
// Invalid call privilege.
//
#define TAPI_E_INVALCALLPRIVILEGE ((HRESULT)0x8004000FL)
//
// MessageId: TAPI_E_INVALCALLSTATE
//
// MessageText:
//
// Operation not permitted in current call state.
//
#define TAPI_E_INVALCALLSTATE ((HRESULT)0x80040010L)
//
// MessageId: TAPI_E_INVALCARD
//
// MessageText:
//
// Invalid calling card.
//
#define TAPI_E_INVALCARD ((HRESULT)0x80040011L)
//
// MessageId: TAPI_E_INVALCOMPLETIONID
//
// MessageText:
//
// Invalid call completion ID.
//
#define TAPI_E_INVALCOMPLETIONID ((HRESULT)0x80040012L)
//
// MessageId: TAPI_E_INVALCOUNTRYCODE
//
// MessageText:
//
// Invalid country code.
//
#define TAPI_E_INVALCOUNTRYCODE ((HRESULT)0x80040013L)
//
// MessageId: TAPI_E_INVALDEVICECLASS
//
// MessageText:
//
// Invalid device class identifier
//
#define TAPI_E_INVALDEVICECLASS ((HRESULT)0x80040014L)
//
// MessageId: TAPI_E_INVALDIALPARAMS
//
// MessageText:
//
// Invalid dialing parameters
//
#define TAPI_E_INVALDIALPARAMS ((HRESULT)0x80040015L)
//
// MessageId: TAPI_E_INVALDIGITS
//
// MessageText:
//
// Invalid digits.
//
#define TAPI_E_INVALDIGITS ((HRESULT)0x80040016L)
//
// MessageId: TAPI_E_INVALGROUPID
//
// MessageText:
//
// Invalid group pickup ID.
//
#define TAPI_E_INVALGROUPID ((HRESULT)0x80040017L)
//
// MessageId: TAPI_E_INVALLOCATION
//
// MessageText:
//
// Invalid location ID.
//
#define TAPI_E_INVALLOCATION ((HRESULT)0x80040018L)
//
// MessageId: TAPI_E_INVALMESSAGEID
//
// MessageText:
//
// Invalid message ID.
//
#define TAPI_E_INVALMESSAGEID ((HRESULT)0x80040019L)
//
// MessageId: TAPI_E_INVALPARKID
//
// MessageText:
//
// Invalid park ID.
//
#define TAPI_E_INVALPARKID ((HRESULT)0x8004001AL)
//
// MessageId: TAPI_E_INVALRATE
//
// MessageText:
//
// Invalid rate.
//
#define TAPI_E_INVALRATE ((HRESULT)0x8004001BL)
//
// MessageId: TAPI_E_INVALTIMEOUT
//
// MessageText:
//
// Invalid timeout value.
//
#define TAPI_E_INVALTIMEOUT ((HRESULT)0x8004001CL)
//
// MessageId: TAPI_E_INVALTONE
//
// MessageText:
//
// Invalid tone.
//
#define TAPI_E_INVALTONE ((HRESULT)0x8004001DL)
//
// MessageId: TAPI_E_INVALLIST
//
// MessageText:
//
// Invalid list passed as a parameter
//
#define TAPI_E_INVALLIST ((HRESULT)0x8004001EL)
//
// MessageId: TAPI_E_INVALMODE
//
// MessageText:
//
// Invalide mode passed as a parameter
//
#define TAPI_E_INVALMODE ((HRESULT)0x8004001FL)
//
// MessageId: TAPI_E_NOCONFERENCE
//
// MessageText:
//
// The call is not part of a conference.
//
#define TAPI_E_NOCONFERENCE ((HRESULT)0x80040020L)
//
// MessageId: TAPI_E_NODEVICE
//
// MessageText:
//
// The device was removed, or the device class is not recognized.
//
#define TAPI_E_NODEVICE ((HRESULT)0x80040021L)
//
// MessageId: TAPI_E_NOREQUEST
//
// MessageText:
//
// No Assisted Telephony requests are pending.
//
#define TAPI_E_NOREQUEST ((HRESULT)0x80040022L)
//
// MessageId: TAPI_E_NOTOWNER
//
// MessageText:
//
// The application is does not have OWNER privilege on the call.
//
#define TAPI_E_NOTOWNER ((HRESULT)0x80040023L)
//
// MessageId: TAPI_E_NOTREGISTERED
//
// MessageText:
//
// The application is not registered to handle requests.
//
#define TAPI_E_NOTREGISTERED ((HRESULT)0x80040024L)
//
// MessageId: TAPI_E_REQUESTOVERRUN
//
// MessageText:
//
// The request queue is already full.
//
#define TAPI_E_REQUESTOVERRUN ((HRESULT)0x80040025L)
//
// MessageId: TAPI_E_TARGETNOTFOUND
//
// MessageText:
//
// The call handoff failed because the specified target was not found.
//
#define TAPI_E_TARGETNOTFOUND ((HRESULT)0x80040026L)
//
// MessageId: TAPI_E_TARGETSELF
//
// MessageText:
//
// No higher priority target exists for the call handoff.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -