- Timestamp:
- Dec 6, 2002, 3:59:24 AM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/test/win32ktst.c
r6289 r9475 1 /* $Id: win32ktst.c,v 1.1 0 2001-07-10 05:28:15bird Exp $1 /* $Id: win32ktst.c,v 1.11 2002-12-06 02:59:24 bird Exp $ 2 2 * 3 3 * Win32k test module. … … 397 397 strcat(szName, "\\"); 398 398 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); 399 402 rc = DosCopy(pszSrcName, szName, DCPY_EXISTING); 400 403 if (rc != NO_ERROR) 401 404 { 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); 403 406 return FALSE; 404 407 } … … 650 653 if (argv[7][0] == 'A') opt.fKernel |= KF_ALLSTRICT; 651 654 if (argv[7][0] == 'H') opt.fKernel |= KF_HALFSTRICT; 655 if (argv[7][0] == 'B') opt.fKernel |= KF_HALFSTRICT; 652 656 653 657 if (argc >= 9 && argv[8][1] == '\0')
Note:
See TracChangeset
for help on using the changeset viewer.