Changeset 2836 for trunk/src/win32k/include
- Timestamp:
- Feb 21, 2000, 5:45:47 AM (26 years ago)
- Location:
- trunk/src/win32k/include
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/include/dev16.h
r2832 r2836 1 /* $Id: dev16.h,v 1. 6 2000-02-20 04:27:23bird Exp $1 /* $Id: dev16.h,v 1.7 2000-02-21 04:45:46 bird Exp $ 2 2 * dev16 - 16-bit specific. Should not be used in 32-bit C/C++. 3 3 * … … 105 105 USHORT NEAR dev1Init(PRPINITIN pRpIn, PRPINITOUT pRpOut); 106 106 USHORT NEAR R0Init16(PRP_GENIOCTL pRp); 107 USHORT NEAR initGetDosTableData(void); 107 108 108 109 -
trunk/src/win32k/include/dev32.h
r2832 r2836 1 /* $Id: dev32.h,v 1. 6 2000-02-20 04:27:23bird Exp $1 /* $Id: dev32.h,v 1.7 2000-02-21 04:45:46 bird Exp $ 2 2 * 3 3 * dev32 - header file for 32-bit part of the driver. … … 82 82 * variable into an function call; like the addToModule calls. 83 83 * 84 * @returns 32-bit FLAT stack pointer. 84 * Warning - At init-time you have ot make sure that the pulTKSSBase32 pointer is set! 85 * 86 * @returns 32-bit FLAT pointer. 85 87 */ 86 88 #ifdef RING0 -
trunk/src/win32k/include/devSegDf.inc
r1678 r2836 1 ; $Id: devSegDf.inc,v 1. 3 1999-11-10 01:45:32bird Exp $1 ; $Id: devSegDf.inc,v 1.4 2000-02-21 04:45:46 bird Exp $ 2 2 ; 3 3 ; Segment definitions for win32k.sys. … … 20 20 DATA16_GROUP group DATA16, DATA16_CONST, DATA16_BSS 21 21 22 22 23 CODE16 segment word public 'CODE' use16 23 24 CODE16 ends 25 24 26 25 27 CODE32 segment dword public 'CODE' use32 26 28 CODE32 ends 27 29 30 EH_CODE segment dword public 'CODE' use32 31 EH_CODE ends 32 28 33 CALLTAB segment dword public 'DATA' use32 29 34 CALLTAB ends 30 35 31 DGROUP group BSS32, DATA32 36 37 ;DGROUP group BSS32, DATA32 38 DGROUP group BSS32, DATA32, CONST32_RO, _VFT, EH_DATA, CALLTAB 32 39 33 40 DATA32 segment dword public 'DATA' use32 … … 40 47 BSS32 ends 41 48 49 50 ;CONSTGROUP group CONST32_RO, _VFT, EH_DATA 51 42 52 CONST32_RO segment dword public 'CONST' use32 43 53 CONST32_RO ends 44 54 55 _VFT segment dword public 'CONST' use32 56 _VFT ends 57 58 EH_DATA segment byte public 'CONST' use32 59 EH_DATA ends 60 -
trunk/src/win32k/include/options.h
r2511 r2836 1 /* $Id: options.h,v 1. 6 2000-01-24 18:18:59bird Exp $1 /* $Id: options.h,v 1.7 2000-02-21 04:45:47 bird Exp $ 2 2 * 3 3 * Options. … … 44 44 o.usCom = OUTPUT_COM2; \ 45 45 o.fLogging = FALSE; \ 46 // o.fLogging = TRUE; \ 46 47 o.fKernel = KF_UNI; \ 47 48 o.ulBuild = ~0UL; \
Note:
See TracChangeset
for help on using the changeset viewer.