- Timestamp:
- Jan 8, 2000, 5:37:02 AM (26 years ago)
- Location:
- trunk/src/shell32
- Files:
-
- 2 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; -
trunk/src/shell32/shresdef.h
r1214 r2358 1 /* $Id: shresdef.h,v 1. 1 1999-10-09 11:13:25 sandervlExp $ */1 /* $Id: shresdef.h,v 1.2 2000-01-08 04:37:02 phaller Exp $ */ 2 2 3 3 /* … … 28 28 #define IDS_SHV_COLUMN5 11 29 29 #define IDS_SHV_COLUMN6 12 30 #define IDS_SHV_COLUMN7 13 30 31 31 32 #define IDS_DESKTOP 20
Note:
See TracChangeset
for help on using the changeset viewer.