📄 pagemgr.h
字号:
#ifndef __UTILITY#define __UTILITY#include <stdlib.h>#include <stdio.h>#include <math.h>using namespace std;#include <vector>//------------------// Page Pool Manager//------------------void InitPagePool(int csize,int blksize);void DestroyPagePool();char* GetNewBlock(int& BlockId);void FreeBlock(int BlockId);int getNumBlockAvail();#endif //__UTILITY
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -