Changeset 6004 for trunk/src


Ignore:
Timestamp:
Jun 14, 2001, 3:13:34 AM (24 years ago)
Author:
bird
Message:

Ready for revisions a-z and A-Z.

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:49 bird Exp $
     1/* $Id: extract.c,v 1.6 2001-06-14 01:13:34 bird Exp $
    22 *
    33 * Description:     SymDB entry generator.
     
    167167            case 'H':   printf16(" | KF_HALFSTRICT"); break;
    168168        }
    169         if (psz[cchNum + 2] >= 'A' && psz[cchNum + 2] <= 'E')
     169        if (psz[cchNum + 2] >= 'A' && psz[cchNum + 2] <= 'Z')
    170170            printf16(" | KF_REV_%c", psz[cchNum + 2]);
    171171
     
    270270        int         i;
    271271
    272         printf16("/* $Id: extract.c,v 1.5 2001-02-11 15:16:49 bird Exp $\n"
     272        printf16("/* $Id: extract.c,v 1.6 2001-06-14 01:13:34 bird Exp $\n"
    273273                 "*\n"
    274274                 "* Autogenerated kernel symbol database.\n"
  • trunk/src/win32k/dev32/d32init.c

    r5247 r6004  
    1 /* $Id: d32init.c,v 1.38 2001-02-23 02:57:53 bird Exp $
     1/* $Id: d32init.c,v 1.39 2001-06-14 01:13:34 bird Exp $
    22 *
    33 * d32init.c - 32-bits init routines.
     
    593593                                /* Check for any revision flag */
    594594                                pKrnlInfo->fKernel = 0;
    595                                 if ((*psz >= 'A' && *psz <= 'E') || (*psz >= 'a' && *psz <= 'e'))
     595                                if ((*psz >= 'A' && *psz <= 'Z') || (*psz >= 'a' && *psz <= 'z'))
    596596                                {
    597597                                    pKrnlInfo->fKernel = (USHORT)((*psz - (*psz >= 'a' ? 'a'-1 : 'A'-1)) << KF_REV_SHIFT);
    598598                                    psz++;
    599599                                }
    600                                 if (*psz == 'F' || *psz == 'f' || *psz == ',') /* These are ignored! */
     600                                if (*psz == ',') /* This is ignored! */
    601601                                    *psz++;
    602602
Note: See TracChangeset for help on using the changeset viewer.