- Timestamp:
- Oct 27, 2000, 12:59:13 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/dev16/probkrnl.c
r4347 r4542 1 /* $Id: probkrnl.c,v 1.2 7 2000-10-01 02:58:15bird Exp $1 /* $Id: probkrnl.c,v 1.28 2000-10-27 10:59:13 bird Exp $ 2 2 * 3 3 * Description: Autoprobes the os2krnl file and os2krnl[*].sym files. … … 86 86 * IMPORTANT: aImportTab has three sibling arrays, two in dev32\d32init.c (aulProc 87 87 * and aTstFakers), and the calltab.asm, which must match entry by entry. 88 * - obsolete warning - 88 89 * When adding/removing/shuffling items in aImportTab, aulProc and 89 90 * calltab.asm has to be updated immediately! 90 91 * Use the mkcalltab.exe to generate calltab.asm and aTstFakers. 92 * - obsolete warning - 93 * We'll now generate both of these files from this table. 94 * 91 95 */ 92 96 IMPORTKRNLSYM DATA16_GLOBAL aImportTab[NBR_OF_KRNLIMPORTS] = … … 632 636 633 637 dprintf(("LookUpKrnlEntry - found entry for this kernel!\n")); 638 kstrcpy(szSymbolFile, "Win32k Symbol Database"); 634 639 635 640 /* … … 653 658 654 659 /* set sym name on success or complain on error */ 655 if (rc == 0) 656 kstrcpy(szSymbolFile, "Win32k Symbol Database"); 657 else 660 if (rc != 0) 658 661 { 659 662 printf16("Warning: The Win32k Symbol Database entry found.\n" … … 1258 1261 rc = rc2; 1259 1262 } 1260 if (rc == NO_ERROR) 1263 if (rc2 == NO_ERROR) 1264 { 1261 1265 kstrcpy(szSymbolFile, apszSym[i]); 1262 else if (rc == 1 || rc2 == NO_ERROR)1263 rc = rc2;1266 rc = NO_ERROR; 1267 } 1264 1268 #endif 1265 1269 }
Note:
See TracChangeset
for help on using the changeset viewer.