Changeset 9475 for trunk/src


Ignore:
Timestamp:
Dec 6, 2002, 3:59:24 AM (23 years ago)
Author:
bird
Message:

Delete kernel. Support for B kernels.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/test/win32ktst.c

    r6289 r9475  
    1 /* $Id: win32ktst.c,v 1.10 2001-07-10 05:28:15 bird Exp $
     1/* $Id: win32ktst.c,v 1.11 2002-12-06 02:59:24 bird Exp $
    22 *
    33 * Win32k test module.
     
    397397        strcat(szName, "\\");
    398398    strcat(szName, "os2krnl");
     399    rc = DosForceDelete(szName);
     400    if (rc != NO_ERROR && rc != ERROR_FILE_NOT_FOUND)
     401        printf("warning: delete %s -> rc=%d\n", szName, rc);
    399402    rc = DosCopy(pszSrcName, szName, DCPY_EXISTING);
    400403    if (rc != NO_ERROR)
    401404    {
    402         printf("Failed to copy %s to %s.\n", pszSrcName, szName);
     405        printf("Failed to copy %s to %s. (rc=%d)\n", pszSrcName, szName, rc);
    403406        return FALSE;
    404407    }
     
    650653            if (argv[7][0] == 'A')  opt.fKernel |= KF_ALLSTRICT;
    651654            if (argv[7][0] == 'H')  opt.fKernel |= KF_HALFSTRICT;
     655            if (argv[7][0] == 'B')  opt.fKernel |= KF_HALFSTRICT;
    652656
    653657            if (argc >= 9 && argv[8][1] == '\0')
Note: See TracChangeset for help on using the changeset viewer.