Line | |
---|
1 | /*
|
---|
2 | * Some help functions
|
---|
3 | *
|
---|
4 | * Copyright 1999 Sander van Leeuwen
|
---|
5 | */
|
---|
6 |
|
---|
7 | #ifndef __VIRTUAL_H
|
---|
8 | #define __VIRTUAL_H
|
---|
9 |
|
---|
10 | #ifdef __cplusplus
|
---|
11 | extern "C" {
|
---|
12 | #endif
|
---|
13 |
|
---|
14 | HANDLE WINAPI VIRTUAL_MapFileA( LPCSTR name , LPVOID *lpMapping, BOOL fReadIntoMemory = FALSE);
|
---|
15 | HANDLE WINAPI VIRTUAL_MapFileW( LPCWSTR name , LPVOID *lpMapping, BOOL fReadIntoMemory = FALSE);
|
---|
16 |
|
---|
17 | LPVOID VirtualAllocShared(DWORD cbSize, DWORD fdwAllocationType,
|
---|
18 | DWORD fdwProtect, LPSTR name);
|
---|
19 |
|
---|
20 | #ifdef __cplusplus
|
---|
21 | } // extern "C"
|
---|
22 | #endif
|
---|
23 |
|
---|
24 | #endif /* __VIRTUAL_H */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.