memmap.h

来自「挖掘频繁闭序列的算法是序列挖掘算法早期比较著名的算法」· C头文件 代码 · 共 21 行

H
21
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?