- Timestamp:
- Jun 14, 2001, 3:13:34 AM (24 years ago)
- Location:
- trunk/src/win32k
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/dev16/extract.c
r5103 r6004 1 /* $Id: extract.c,v 1. 5 2001-02-11 15:16:49bird Exp $1 /* $Id: extract.c,v 1.6 2001-06-14 01:13:34 bird Exp $ 2 2 * 3 3 * Description: SymDB entry generator. … … 167 167 case 'H': printf16(" | KF_HALFSTRICT"); break; 168 168 } 169 if (psz[cchNum + 2] >= 'A' && psz[cchNum + 2] <= ' E')169 if (psz[cchNum + 2] >= 'A' && psz[cchNum + 2] <= 'Z') 170 170 printf16(" | KF_REV_%c", psz[cchNum + 2]); 171 171 … … 270 270 int i; 271 271 272 printf16("/* $Id: extract.c,v 1. 5 2001-02-11 15:16:49bird Exp $\n"272 printf16("/* $Id: extract.c,v 1.6 2001-06-14 01:13:34 bird Exp $\n" 273 273 "*\n" 274 274 "* Autogenerated kernel symbol database.\n" -
trunk/src/win32k/dev32/d32init.c
r5247 r6004 1 /* $Id: d32init.c,v 1.3 8 2001-02-23 02:57:53bird Exp $1 /* $Id: d32init.c,v 1.39 2001-06-14 01:13:34 bird Exp $ 2 2 * 3 3 * d32init.c - 32-bits init routines. … … 593 593 /* Check for any revision flag */ 594 594 pKrnlInfo->fKernel = 0; 595 if ((*psz >= 'A' && *psz <= ' E') || (*psz >= 'a' && *psz <= 'e'))595 if ((*psz >= 'A' && *psz <= 'Z') || (*psz >= 'a' && *psz <= 'z')) 596 596 { 597 597 pKrnlInfo->fKernel = (USHORT)((*psz - (*psz >= 'a' ? 'a'-1 : 'A'-1)) << KF_REV_SHIFT); 598 598 psz++; 599 599 } 600 if (*psz == ' F' || *psz == 'f' || *psz == ',') /* These areignored! */600 if (*psz == ',') /* This is ignored! */ 601 601 *psz++; 602 602
Note:
See TracChangeset
for help on using the changeset viewer.