Changeset 9298 for trunk/src/kernel32/disk.cpp
- Timestamp:
- Sep 26, 2002, 6:06:07 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/disk.cpp
r8409 r9298 1 /* $Id: disk.cpp,v 1.3 7 2002-05-14 09:28:19sandervl Exp $ */1 /* $Id: disk.cpp,v 1.38 2002-09-26 16:06:06 sandervl Exp $ */ 2 2 3 3 /* … … 570 570 char szVolume[256]; 571 571 572 //tetsetsetetsetsetset573 SetLastError(ERROR_NO_MORE_FILES);574 return FALSE;575 //tetsetsetetsetsetset576 577 572 if(!VERSION_IS_WIN2000_OR_HIGHER()) { 578 573 SetLastError(ERROR_NOT_SUPPORTED); … … 654 649 if(!VERSION_IS_WIN2000_OR_HIGHER()) { 655 650 SetLastError(ERROR_NOT_SUPPORTED); 656 return FALSE;651 return INVALID_HANDLE_VALUE; 657 652 } 658 653 659 654 SetLastError(ERROR_NO_MORE_FILES); 660 return 0;655 return INVALID_HANDLE_VALUE; 661 656 } 662 657 //****************************************************************************** … … 672 667 if(!VERSION_IS_WIN2000_OR_HIGHER()) { 673 668 SetLastError(ERROR_NOT_SUPPORTED); 674 return FALSE;669 return INVALID_HANDLE_VALUE; 675 670 } 676 671
Note:
See TracChangeset
for help on using the changeset viewer.