Changeset 17590


Ignore:
Timestamp:
Oct 12, 2001, 7:17:45 PM (24 years ago)
Author:
phaller
Message:

.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified tags/trunk/src/shell32/shlfolder.c

    r17574 r17590  
    88 *
    99 */
     10
     11/****************************************************************************
     12 * includes
     13 ****************************************************************************/
     14
     15#include <odin.h>
     16#include <os2sel.h>
     17#include <odinwrap.h>
     18
     19ODINDEBUGCHANNEL(SHELL32-SHLFOLDER)
     20
     21
     22
    1023#ifdef __WIN32OS2__
    11 #define WINE_LARGE_INTEGER
    1224#define snprintf(a,b,c,d)       sprintf(a,c,d)
    1325#endif
     
    844856*/
    845857
    846 static HRESULT WINAPI  IShellFolder_fnCompareIDs(
    847         IShellFolder2 * iface,
    848         LPARAM lParam,
    849         LPCITEMIDLIST pidl1,
    850         LPCITEMIDLIST pidl2)
     858static ODINFUNCTION4(HRESULT, IShellFolder_fnCompareIDs,
     859                     IShellFolder2 *, iface,
     860                     LPARAM, lParam,
     861                     LPCITEMIDLIST, pidl1,
     862                     LPCITEMIDLIST, pidl2)
    851863{
    852864        _ICOM_THIS_From_IShellFolder2(IGenericSFImpl, iface)
     
    25322544                _ILSimpleGetText(pidl, szPath, MAX_PATH);
    25332545                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);
    25352547              }
    25362548              break;
     
    25402552                _ILSimpleGetText(pidl, szPath, MAX_PATH);
    25412553                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);
    25432555              }
    25442556              break;
Note: See TracChangeset for help on using the changeset viewer.