Differences From Artifact [f4cb9cebdd]:
- File win/tclWinTest.c — part of check-in [31d001f4a3] at 2019-09-19 11:36:21 on branch implicit-unicode — Don't build the Tcl library in Unicode mode any more. Just tclAppInit.c (and cat32 on Windows) (user: jan.nijtmans size: 17762) [more...]
To Artifact [a7b8e5238e]:
- File win/tclWinTest.c — part of check-in [ed3245630a] at 2020-03-22 21:16:21 on branch core-8-6-branch — Even more uppercase HEX representations in source-code (user: jan.nijtmans size: 17762) [more...]
| ︙ | ︙ | |||
457 458 459 460 461 462 463 |
attr = GetFileAttributesA(nativePath);
/*
* nativePath not found
*/
| | | 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 |
attr = GetFileAttributesA(nativePath);
/*
* nativePath not found
*/
if (attr == 0xFFFFFFFF) {
res = -1;
goto done;
}
/*
* If nativePath is not a directory, there is no special handling.
*/
|
| ︙ | ︙ |