source: trunk/include/win/virtual.h

Last change on this file was 21916, checked in by dmik, 14 years ago

Merge branch gcc-kmk to trunk.

File size: 541 bytes
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
11extern "C" {
12#endif
13
14HANDLE WINAPI VIRTUAL_MapFileA( LPCSTR name , LPVOID *lpMapping, BOOL fReadIntoMemory = FALSE);
15HANDLE WINAPI VIRTUAL_MapFileW( LPCWSTR name , LPVOID *lpMapping, BOOL fReadIntoMemory = FALSE);
16
17LPVOID 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.