Changeset 2358 for trunk/src/shell32/shlfolder.cpp
- Timestamp:
- Jan 8, 2000, 5:37:02 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/shell32/shlfolder.cpp
r2355 r2358 1 /* $Id: shlfolder.cpp,v 1. 5 2000-01-08 02:43:27phaller Exp $ */1 /* $Id: shlfolder.cpp,v 1.6 2000-01-08 04:37:01 phaller Exp $ */ 2 2 /* 3 3 * Shell Folder stuff … … 2066 2066 _ILSimpleGetText(pidl, szPath, MAX_PATH); 2067 2067 GetDiskFreeSpaceExA(szPath, NULL, &ulBytes, NULL); 2068 StrFormatByteSizeA(ulBytes. s.LowPart, psd->str.u.cStr, MAX_PATH);2068 StrFormatByteSizeA(ulBytes.LowPart, psd->str.u.cStr, MAX_PATH); 2069 2069 } 2070 2070 break; … … 2074 2074 _ILSimpleGetText(pidl, szPath, MAX_PATH); 2075 2075 GetDiskFreeSpaceExA(szPath, &ulBytes, NULL, NULL); 2076 StrFormatByteSizeA(ulBytes. s.LowPart, psd->str.u.cStr, MAX_PATH);2076 StrFormatByteSizeA(ulBytes.LowPart, psd->str.u.cStr, MAX_PATH); 2077 2077 } 2078 2078 break;
Note:
See TracChangeset
for help on using the changeset viewer.