|
#include <MemoryMap.h>
Public Methods | |
MemoryMap () | |
Constructor. | |
~MemoryMap () | |
Destructor. | |
void | load (const char *filename) |
Load a file by name, and set our data pointer. More... | |
void | close () |
Close the memory-mapped file. | |
void * | getData () |
Get access to the data. | |
Public Attributes | |
DWORD | fileSizeLow |
The low-order word size of the memory-mapped file. | |
DWORD | fileSizeHigh |
The high-order word size of the memory-mapped file. Used only with very big files. |
Definition at line 19 of file MemoryMap.h.
|
Load a file by name, and set our data pointer.
Definition at line 54 of file MemoryMap.cpp. |