source: trunk/src/kernel32/oslibdos.h@ 705

Last change on this file since 705 was 705, checked in by sandervl, 26 years ago

Cleanup

File size: 2.1 KB
Line 
1/* $Id: oslibdos.h,v 1.1 1999-08-26 12:56:02 sandervl Exp $ */
2
3/*
4 * Wrappers for OS/2 Dos* API
5 *
6 * Copyright 1998 Sander van Leeuwen (sandervl@xs4all.nl)
7 *
8 *
9 * Project Odin Software License can be found in LICENSE.TXT
10 *
11 */
12#ifndef __OSLIBDOS_H__
13#define __OSLIBDOS_H__
14
15
16DWORD OSLibDosAllocMem(LPVOID *lplpMemAddr, DWORD size, DWORD flags);
17DWORD OSLibDosFreeMem(LPVOID lpMemAddr);
18DWORD OSLibDosQueryMem(LPVOID lpMemAddr, DWORD *lpRangeSize, DWORD *lpAttr);
19DWORD OSLibDosSetMem(LPVOID lpMemAddr, DWORD size, DWORD flags);
20
21#define OSLIB_NOERROR 0
22#define OSLIB_ERROR_INVALID_ADDRESS 1
23#define OSLIB_ERROR_ACCESS_DENIED 2
24
25#ifndef __OS2_H__
26
27/* Access protection */
28#define PAG_READ 0x00000001U /* read access */
29#define PAG_WRITE 0x00000002U /* write access */
30#define PAG_EXECUTE 0x00000004U /* execute access */
31#define PAG_GUARD 0x00000008U /* guard protection */
32#define PAG_DEFAULT 0x00000400U /* default (initial) access */
33
34/* Commit */
35#define PAG_COMMIT 0x00000010U /* commit storage */
36#define PAG_DECOMMIT 0x00000020U /* decommit storage */
37
38/* Allocation attributes */
39#define OBJ_TILE 0x00000040U /* tile object */
40#define OBJ_PROTECTED 0x00000080U /* protect object */
41#define OBJ_GETTABLE 0x00000100U /* gettable by other processes */
42#define OBJ_GIVEABLE 0x00000200U /* giveable to other processes */
43
44/* Allocation type (returned from DosQueryMem) */
45#define PAG_SHARED 0x00002000U /* shared object */
46#define PAG_FREE 0x00004000U /* pages are free */
47#define PAG_BASE 0x00010000U /* first page in object */
48
49#endif
50
51#endif
Note: See TracBrowser for help on using the repository browser.