remove special handling of previous MinGW versions

svn path=/trunk/; revision=17369
This commit is contained in:
Martin Fuchs 2005-08-13 13:21:27 +00:00
parent 33d084e118
commit 5729cb615a
2 changed files with 2 additions and 2 deletions

View file

@ -369,7 +369,7 @@ void ShellPath::GetUIObjectOf(REFIID riid, LPVOID* ppvOut, HWND hWnd, ShellFolde
CHECKERROR(sf->GetUIObjectOf(hWnd, 1, &idl, riid, 0, ppvOut));
}
#ifndef __MINGW32__ // ILCombine() is currently missing in MinGW.
#if 1 // ILCombine() was missing in previous versions of MinGW.
// convert an item id list from relative to absolute (=relative to the desktop) format
ShellPath ShellPath::create_absolute_pidl(LPCITEMIDLIST parent_pidl) const

View file

@ -549,7 +549,7 @@ extern HRESULT path_from_pidlW(IShellFolder* folder, LPCITEMIDLIST pidl, LPWSTR
extern HRESULT name_from_pidl(IShellFolder* folder, LPCITEMIDLIST pidl, LPTSTR buffer, int len, SHGDNF flags);
#ifdef __MINGW32__ // ILGetSize() is currently missing in MinGW.
#if 0 // ILGetSize() was missing in previous versions of MinGW.
extern "C" UINT STDCALL ILGetSize(LPCITEMIDLIST pidl);
#ifdef UNICODE // CFSTR_FILENAME is defined wrong in MinGW.