Changeset 3411 for trunk/src/win32k/dev16
- Timestamp:
- Apr 17, 2000, 3:56:50 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/dev16/probkrnl.c
r3321 r3411 1 /* $Id: probkrnl.c,v 1. 19 2000-04-05 18:40:38 bird Exp $1 /* $Id: probkrnl.c,v 1.20 2000-04-17 01:56:48 bird Exp $ 2 2 * 3 3 * Description: Autoprobes the os2krnl file and os2krnl[*].sym files. … … 102 102 {FALSE, -1, 11, "g_tkExecPgm", -1, -1, -1, -1, EPT_PROC32}, /* 13 */ 103 103 {FALSE, -1, 11, "f_FuStrLenZ", -1, -1, -1, -1, EPT_PROCIMPORT16}, /* 14 */ 104 {FALSE, -1, 10, "f_FuStrLen", -1, -1, -1, -1, EPT_PROCIMPORT16}, /* 14 */ 105 {FALSE, -1, 8, "f_FuBuff", -1, -1, -1, -1, EPT_PROCIMPORT16} /* 15 */ 104 {FALSE, -1, 10, "f_FuStrLen", -1, -1, -1, -1, EPT_PROCIMPORT16}, /* 15 */ 105 {FALSE, -1, 8, "f_FuBuff", -1, -1, -1, -1, EPT_PROCIMPORT16}, /* 16 */ 106 {FALSE, -1, 16, "_VMObjHandleInfo", -1, -1, -1, -1, EPT_PROCIMPORT} /* 17 */ 106 107 /* {FALSE, -1, 11, "", -1, -1, -1, EPT_PROCIMPORT16} */ /* 16 */ 107 108 }; … … 983 984 int i; 984 985 int n; 985 SEL GDT; 986 SEL LDT; 987 PGINFOSEG pInfoSeg; 986 SEL selGIS; 987 SEL selLIS; 988 PGINFOSEG pGIS; 989 PLINFOSEG pLIS; 988 990 USHORT usBootDrive; 989 991 … … 1035 1037 /* determin boot drive */ 1036 1038 /*---------------------*/ 1037 rc = DosGetInfoSeg(& GDT, &LDT);1039 rc = DosGetInfoSeg(&selGIS, &selLIS); 1038 1040 if (rc != NO_ERROR) 1039 1041 return rc; 1040 1042 1041 pInfoSeg = MAKEPGINFOSEG(GDT); 1042 usBootDrive = pInfoSeg->bootdrive; 1043 usVerMajor = pInfoSeg->uchMajorVersion; 1044 usVerMinor = pInfoSeg->uchMinorVersion; 1043 pLIS = MAKEPLINFOSEG(selLIS); 1044 pGIS = MAKEPGINFOSEG(selGIS); 1045 usBootDrive = pGIS->bootdrive; 1046 usVerMajor = pGIS->uchMajorVersion; 1047 usVerMinor = pGIS->uchMinorVersion; 1045 1048 dprintf(("BootDrive: %d\n", usBootDrive)); 1046 1049 … … 1495 1498 int i; 1496 1499 1497 printf16("/* $Id: probkrnl.c,v 1. 19 2000-04-05 18:40:38 bird Exp $\n"1500 printf16("/* $Id: probkrnl.c,v 1.20 2000-04-17 01:56:48 bird Exp $\n" 1498 1501 "*\n" 1499 1502 "* Autogenerated kernel symbol database.\n"
Note:
See TracChangeset
for help on using the changeset viewer.