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