summaryrefslogtreecommitdiffstats
path: root/storage/connect/maputil.h
diff options
context:
space:
mode:
Diffstat (limited to 'storage/connect/maputil.h')
-rw-r--r--storage/connect/maputil.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/storage/connect/maputil.h b/storage/connect/maputil.h
new file mode 100644
index 00000000..e310488e
--- /dev/null
+++ b/storage/connect/maputil.h
@@ -0,0 +1,21 @@
+#ifndef __MAPUTIL_H__
+#define __MAPUTIL_H__
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+typedef struct {
+ void *memory;
+ DWORD lenL;
+ DWORD lenH;
+ } MEMMAP;
+
+DllExport HANDLE CreateFileMap(PGLOBAL, LPCSTR, MEMMAP *, MODE, bool);
+DllExport bool CloseMemMap(void *memory, size_t dwSize);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __MAPUTIL_H__ */