tapidescribe.h
来自「AVAYA IPO 430系列交换机Wavedriver的demo程序」· C头文件 代码 · 共 32 行
H
32 行
#ifndef TAPIDESCRIBER_H
#define TAPIDESCRIBER_H
// ----------------------------------------------------------------------------
// (c) Avaya 2003. All rights reserved.
//
// PROJECT: TapiSample
// FILE: tapidescribe.h
//
// This is the definition file for the tapi message description functions.
// These functions provide terse English explanations of various TAPI
// flags and values. These are equivalent to their names in the
// Windows documentation (and in the TAPI.H standard header file).
// Not all capabilities are supported by the IP Office TAPI driver.
// See tapidescribe.cpp for the implementation of these functions
//
// ----------------------------------------------------------------------------
LPCTSTR DescribeError(DWORD ErrorID);
LPCTSTR DescribeCallStateDetail(DWORD CallState, DWORD CallStateDetail);
LPCTSTR DescribeCallState(CString& result, DWORD CallState);
LPCTSTR DescribePrivilege(CString &result, DWORD CallPrivilege);
LPCTSTR DescribeDeviceStatus(CString &result, DWORD DeviceState);
LPCTSTR DescribeAddressStatus(CString &result, DWORD AddressState);
LPCTSTR DescribeCallInfo(CString &result, DWORD CallInfoState);
LPCTSTR DescribeCallReason(CString& result, DWORD CallReason);
LPCTSTR DescribeCallOrigin(CString& result, DWORD CallOrigin);
LPCTSTR DescribeCallCompletion(CString &result, DWORD CallCompletion);
LPCTSTR DescribeAddressCapabilities(CString &result, DWORD AddressCaps);
LPCTSTR DescribeCallFeatures(CString &result, DWORD CallFeatures);
LPCTSTR DescribeCallFeatures2(CString &result, DWORD CallFeatures2);
#endif TAPIDESCRIBER_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?