- Timestamp:
- Feb 11, 2001, 4:11:34 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/include/OS2Krnl.h
r5086 r5098 1 /* $Id: OS2Krnl.h,v 1.1 0 2001-02-10 11:11:43bird Exp $1 /* $Id: OS2Krnl.h,v 1.11 2001-02-11 15:11:34 bird Exp $ 2 2 * 3 3 * OS/2 kernel structures, typedefs and macros. … … 24 24 #define ULONG unsigned long 25 25 #define PCHAR char * 26 #endif 27 28 #ifndef PAGESHIFT 29 #define PAGESHIFT 12 /* bytes to pages or pages to bytes shift value. */ 30 #endif 31 #ifndef PAGESIZE 32 #define PAGESIZE 0x1000 /* pagesize on i386 */ 33 #endif 34 #ifndef PAGEOFFSET 35 #define PAGEOFFSET(addr) ((addr) & (PAGESIZE-1)) /* Gets the offset into the page addr points into. */ 36 #endif 37 #ifndef PAGESTART 38 #define PAGESTART(addr) ((addr) & ~(PAGESIZE-1)) /* Gets the address of the page addr points into. */ 26 39 #endif 27 40
Note:
See TracChangeset
for help on using the changeset viewer.