endpoint_supp.h

来自「h323源代码的另一部分」· C头文件 代码 · 共 42 行

H
42
字号
/////////////////////////////////////////////////////////////////////// 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))# define EndPointDisplayString(EP,MSG) \    HandsetDisplayString((MSG), ((EP)->wChannel)+2)# define EndPointDisplayNumber(EP,MSG) \    HandsetDisplayString((MSG), ((EP)->wChannel)+2)# define EndPointsDisplayString(MSG, LINE) \    HandsetDisplayString((MSG), (LINE))# define EndPointsClearDisplay() HandsetClearDisplay()# define EndPointsClearDisplayLine(LINE) HandsetClearDisplayLine((LINE))# define EndPointsDisplayHandsetStatus() HandsetDisplayHandsetStatus()# define EndPointsRegisterOnHookDisplayString(MSG)# define EndPointsRegisterOnHookDisplayNumber(MSG)# define EndPointsRegisterInfoStrings(MSG1, MSG2, MSG3, PNUM1, PNUM2) \    HandsetRegisterInfoStrings((MSG1), (MSG2), (MSG3), (PNUM1), (PNUM2))# define EndPointsRegisterPhoneNumber(LINE,NUM) \    HandsetRegisterPhoneNumber((LINE),(NUM))# define EndPointUpdateVMWI(LINE, STATE) HandsetVMWI((LINE), (STATE))# define EndPointsDisplayCallerID(LINE,MSG) HandsetDisplayCallerID((LINE),(MSG))# define EndPointsSetChannelDTMFSquelch(LINE, STATE) \    HandsetSetChannelDTMFSquelch((LINE), (STATE))# define EndPointDtmfTone(CHANNEL,TONE,STATE)#endif //__ENDPOINT_SUPP_H__//////////////////////////////////// END OF FILE /////////////////////////

⌨️ 快捷键说明

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