?? memmap.h
字號:
// MemMap.h: interface for memory maped file.////////////////////////////////////////////////////////////////////////#if !defined(_MEMMAP_H__)#define _MEMMAP_H__// Forward declaration.struct mem_map;struct mem_map* CreateMemMap(const char* mem_file, const unsigned int nWndSize);void CloseMemMap(struct mem_map** ppMem);int GetCurWnd(const struct mem_map* pMem);void* GetStartOfMap(const struct mem_map* pMem);void* GetLastAddrOfMap(const struct mem_map* pMem);int GetMemMapFileSize(const struct mem_map* pMem);//////////////////////////////////////////////////////////////////////#endif // _MEMMAP_H__
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -