endpoint_supp.h

来自「h323源码」· C头文件 代码 · 共 47 行

H
47
字号
/////////////////////////////////////////////////////////////////////// endpoint_supp.h//// definitions for handset/endpoint related event handling module//// Copyright Netergy Microelectronics  2000, 2001//////////////////////////////////////////////////////////////////////#ifndef __ENDPOINT_SUPP_H__#define __ENDPOINT_SUPP_H__# define EndPointEncodeStreamTone(CHANNEL,STREAM,KEY,ACTION) \    HandsetEncodeStreamTone((CHANNEL),(STREAM),(KEY),(ACTION))# define EndPointTone(EP, TONE, STATE) \    HandsetGenerateTone((EP)->wChannel, (TONE), (STATE))#ifdef ADVANCED_IPPHONE_FEATURES# define EndPointDisplayString(EP,MSG) \    HandsetDisplayString((MSG),3)#else# define EndPointDisplayString(EP,MSG) \    HandsetDisplayString((MSG),1)#endif# define EndPointDisplayNumber(EP,MSG) \    HandsetDisplayNumber((MSG))# define EndPointsDisplayString(MSG, LINE) \    HandsetDisplayString((MSG),1)# define EndPointsClearDisplay() HandsetClearDisplay()# define EndPointsClearDisplayLine(LINE) HandsetClearDisplay()# define EndPointsDisplayHandsetStatus() HandsetDisplayHandsetStatus()# define EndPointsRegisterOnHookDisplayString(MSG) \    HandsetRegisterOnHookDisplayString((MSG))# define EndPointsRegisterOnHookDisplayNumber(MSG) \    HandsetRegisterOnHookDisplayNumber((MSG))# define EndPointsRegisterInfoStrings(MSG1, MSG2, MSG3, PNUM1, PNUM2) \    HandsetRegisterInfoStrings((MSG1), (MSG2), (MSG3), (PNUM1), " ")# define EndPointsRegisterPhoneNumber(LINE,NUM)# define EndPointUpdateVMWI(LINE, STATE) HandsetVMWI((LINE),(STATE))# define EndPointsDisplayCallerID(LINE,MSG) HandsetDisplayCallerID((LINE),(MSG))# define EndPointsSetChannelDTMFSquelch(LINE, STATE) # define EndPointDtmfTone(CHANNEL,TONE,STATE) HandsetGenerateTone((CHANNEL),(TONE),(STATE))#endif //__ENDPOINT_SUPP_H__//////////////////////////////////// END OF FILE /////////////////////////

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?