📄 px_ls_chat_video.h
字号:
#pragma once
/* must been first include begin */
#include "..\ProjectX_Common\ProjectX_Copyright.h"
#include "..\ProjectX_Common\ProjectX_Common.h"
/* must been first include end */
/* std and common include */
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
/*
* 视频聊天
* 暂时仅提供转接服务
* 具体由客户端实现
*/
typedef struct tagChat_Video {
byte state;
int active_sessionid;
int passive_sessionid;
int active_ip;
int passive_ip;
int active_port;
int passive_port;
int last_handle_frame;
}CHAT_VIDEO, * LPCHAT_VIDEO;
typedef struct tagChat_Video_Key {
byte state;
CHAT_VIDEO * pchat_video;
}CHAT_VIDEO_KEY, * LPCHAT_VIDEO_KEY;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -