📄 px_ls_blacklist.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 tagBlackList {
int char_id; //被加入黑名单的角色id
struct tagBlackList * pNext;
}BLACKLIST, * LPBLACKLIST;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -