source: trunk/src/kernel32/old/map.h@ 1036

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

Backup copy of old kernel32

File size: 572 bytes
Line 
1/* $Id: map.h,v 1.1 1999-09-15 23:32:58 sandervl Exp $ */
2
3/* Copyright (C) 1995 by Holger Veit (Holger.Veit@gmd.de)
4 * Use at your own risk! No Warranty! The author is not responsible for
5 * any damage or loss of data caused by proper or improper use of this
6 * device driver.
7 */
8#ifndef _MAP_H_
9#define _MAP_H_
10
11/* must include <os2.h> first */
12
13#define IOCTL_MAP 1
14#define IOCTL_UMAP 2
15
16struct map_ioctl {
17 union {
18 ULONG phys;
19 void* user;
20 } a;
21 ULONG size;
22};
23
24extern int mpioctl(HFILE fd, int func, struct map_ioctl* data);
25
26#endif
Note: See TracBrowser for help on using the repository browser.