Changeset 4162 for branches/GRACE/src/win32k/dev16/d16init.c
- Timestamp:
- Sep 2, 2000, 10:49:29 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GRACE/src/win32k/dev16/d16init.c
r4117 r4162 1 /* $Id: d16init.c,v 1.6.4. 4 2000-08-30 04:11:26bird Exp $1 /* $Id: d16init.c,v 1.6.4.5 2000-09-02 20:49:09 bird Exp $ 2 2 * 3 3 * d16init - init routines for both drivers. … … 36 36 #include <memory.h> 37 37 38 #include "devSegDf.h" 39 #undef DATA16_INIT 40 #define DATA16_INIT 41 #undef CODE16_INIT 42 #define CODE16_INIT 38 43 #include "probkrnl.h" 39 44 #include "dev1632.h" … … 42 47 #include "log.h" 43 48 #include "options.h" 49 50 44 51 45 52 /** … … 66 73 67 74 pRpOut->BPBArray = NULL; 68 pRpOut->CodeEnd = (USHORT)&CODE16END;69 pRpOut->DataEnd = (USHORT)&DATA16END;75 pRpOut->CodeEnd = (USHORT)&CODE16_INITSTART; 76 pRpOut->DataEnd = (USHORT)&DATA16_INITSTART; 70 77 pRpOut->Unit = 0; 71 78 pRpOut->rph.Status = STATUS_DONE; … … 134 141 * Fill return data. 135 142 */ 136 pRpOut->CodeEnd = (USHORT)&CODE16 END;137 pRpOut->DataEnd = (USHORT)&DATA16 END;143 pRpOut->CodeEnd = (USHORT)&CODE16_INITSTART; 144 pRpOut->DataEnd = (USHORT)&DATA16_INITSTART; 138 145 pRpOut->BPBArray= NULL; 139 146 pRpOut->Unit = 0; … … 163 170 * @param pRp Generic IO Control request packet. 164 171 */ 165 USHORT NEAR R0Init16(PRP_GENIOCTL pRp)172 USHORT NEAR R0Init16(PRP_GENIOCTL pRp) 166 173 { 167 174 USHORT usRc = STATUS_DONE; … … 244 251 * (Since this is init code not present after init...) 245 252 */ 246 USHORT NEAR initGetDosTableData(void)253 USHORT NEAR initGetDosTableData(void) 247 254 { 248 255 APIRET rc;
Note:
See TracChangeset
for help on using the changeset viewer.