This commit is contained in:
2026-06-10 15:42:34 +05:30
parent 602b538830
commit ec1f4ea117
13 changed files with 240 additions and 107 deletions
@@ -0,0 +1,19 @@
#pragma once
#include <windows.h>
#include <string>
struct MappingInfo
{
HANDLE fileHandle;
HANDLE mappingHandle;
void* mappedView;
std::string fileName;
size_t recordSize;
size_t mappedCapacity;
MappingInfo()
: fileHandle(NULL),
mappingHandle(NULL),
mappedView(nullptr),
recordSize(0),
mappedCapacity(0) {}
};