Changeset 2358 for trunk/src


Ignore:
Timestamp:
Jan 8, 2000, 5:37:02 AM (26 years ago)
Author:
phaller
Message:

Fix: broken shell build

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:27 phaller Exp $ */
     1/* $Id: shlfolder.cpp,v 1.6 2000-01-08 04:37:01 phaller Exp $ */
    22/*
    33 * Shell Folder stuff
     
    20662066           _ILSimpleGetText(pidl, szPath, MAX_PATH);
    20672067           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);
    20692069         }
    20702070         break;
     
    20742074           _ILSimpleGetText(pidl, szPath, MAX_PATH);
    20752075           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);
    20772077         }
    20782078         break;
  • trunk/src/shell32/shresdef.h

    r1214 r2358  
    1 /* $Id: shresdef.h,v 1.1 1999-10-09 11:13:25 sandervl Exp $ */
     1/* $Id: shresdef.h,v 1.2 2000-01-08 04:37:02 phaller Exp $ */
    22
    33/*
     
    2828#define IDS_SHV_COLUMN5         11
    2929#define IDS_SHV_COLUMN6         12
     30#define IDS_SHV_COLUMN7         13
    3031
    3132#define IDS_DESKTOP             20
Note: See TracChangeset for help on using the changeset viewer.