endpoint.h
来自「h.248源代码」· C头文件 代码 · 共 30 行
H
30 行
/******************************************************************** * * File: endpoint.c * * Description: * * Revisions: * * Copyright 2003 Netergy Microelectronics, Inc. All rights reserved. * ********************************************************************/#ifndef __ENDPOINT_H__#define __ENDPOINT_H__#include "protocol.h"#include "pthread.h"typedef struct END_POINT { pthread_mutex_t mMutex; H_PROTOCOL_INSTANCE hInstance; char szTermName[20]; WORD wChannel;} END_POINT;void EndPointInit(END_POINT *pEndPoint, WORD wChannel);void EndPointProcess(END_POINT *pEndPoint);#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?