Changeset 17590
- Timestamp:
- Oct 12, 2001, 7:17:45 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified tags/trunk/src/shell32/shlfolder.c ¶
r17574 r17590 8 8 * 9 9 */ 10 11 /**************************************************************************** 12 * includes 13 ****************************************************************************/ 14 15 #include <odin.h> 16 #include <os2sel.h> 17 #include <odinwrap.h> 18 19 ODINDEBUGCHANNEL(SHELL32-SHLFOLDER) 20 21 22 10 23 #ifdef __WIN32OS2__ 11 #define WINE_LARGE_INTEGER12 24 #define snprintf(a,b,c,d) sprintf(a,c,d) 13 25 #endif … … 844 856 */ 845 857 846 static HRESULT WINAPI IShellFolder_fnCompareIDs(847 IShellFolder2 *iface,848 LPARAMlParam,849 LPCITEMIDLISTpidl1,850 LPCITEMIDLISTpidl2)858 static ODINFUNCTION4(HRESULT, IShellFolder_fnCompareIDs, 859 IShellFolder2 *, iface, 860 LPARAM, lParam, 861 LPCITEMIDLIST, pidl1, 862 LPCITEMIDLIST, pidl2) 851 863 { 852 864 _ICOM_THIS_From_IShellFolder2(IGenericSFImpl, iface) … … 2532 2544 _ILSimpleGetText(pidl, szPath, MAX_PATH); 2533 2545 GetDiskFreeSpaceExA(szPath, NULL, &ulBytes, NULL); 2534 StrFormatByteSizeA(ulBytes. s.LowPart, psd->str.u.cStr, MAX_PATH);2546 StrFormatByteSizeA(ulBytes.LowPart, psd->str.u.cStr, MAX_PATH); 2535 2547 } 2536 2548 break; … … 2540 2552 _ILSimpleGetText(pidl, szPath, MAX_PATH); 2541 2553 GetDiskFreeSpaceExA(szPath, &ulBytes, NULL, NULL); 2542 StrFormatByteSizeA(ulBytes. s.LowPart, psd->str.u.cStr, MAX_PATH);2554 StrFormatByteSizeA(ulBytes.LowPart, psd->str.u.cStr, MAX_PATH); 2543 2555 } 2544 2556 break;
Note:
See TracChangeset
for help on using the changeset viewer.