⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 px_ss_state.h

📁 MMORPG游戏服务器端架构及函数
💻 H
字号:
#ifndef _PX_SS_STATE_
#define _PX_SS_STATE_

/* must been first include begin */
#include "..\ProjectX_Common\ProjectX_Copyright.h"
#include "..\ProjectX_Common\ProjectX_Common.h"
/* must been first include end */


#include <windows.h>
#include <stdio.h>
#include <stdlib.h>


typedef struct tagPx_SS_State {
	__int64		prev_time;
	__int64		curr_time;
	CRITICAL_SECTION * cts_state;
	int			frame_cl;
	int			frame_rs;
	byte		prev_state;
	byte		curr_state;
	byte		cl_state;
	byte		rs_state;
}PX_SS_STATE, * LPPX_SS_STATE;

































#endif	//_PX_SS_STATE_

⌨️ 快捷键说明

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