Commit 1b2a8190 authored by Ge van Geldorp's avatar Ge van Geldorp Committed by Alexandre Julliard

Fix IFileSystemBindData method order.

parent 0415030f
...@@ -58,8 +58,8 @@ static struct ICOM_VTABLE(IFileSystemBindData) sbvt = ...@@ -58,8 +58,8 @@ static struct ICOM_VTABLE(IFileSystemBindData) sbvt =
IFileSystemBindData_fnQueryInterface, IFileSystemBindData_fnQueryInterface,
IFileSystemBindData_fnAddRef, IFileSystemBindData_fnAddRef,
IFileSystemBindData_fnRelease, IFileSystemBindData_fnRelease,
IFileSystemBindData_fnGetFindData,
IFileSystemBindData_fnSetFindData, IFileSystemBindData_fnSetFindData,
IFileSystemBindData_fnGetFindData,
}; };
static const WCHAR wFileSystemBindData[] = {'F','i','l','e',' ','S','y','s','t','e','m',' ','B','i','n','d','D','a','t','a',0}; static const WCHAR wFileSystemBindData[] = {'F','i','l','e',' ','S','y','s','t','e','m',' ','B','i','n','d','D','a','t','a',0};
......
...@@ -940,12 +940,12 @@ DEFINE_GUID(IID_IFileSystemBindData, 0x01e18d10, 0x4d8b, 0x11d2, 0x85,0x5d, 0x00 ...@@ -940,12 +940,12 @@ DEFINE_GUID(IID_IFileSystemBindData, 0x01e18d10, 0x4d8b, 0x11d2, 0x85,0x5d, 0x00
#if defined(__cplusplus) && !defined(CINTERFACE) #if defined(__cplusplus) && !defined(CINTERFACE)
struct IFileSystemBindData : public IUnknown struct IFileSystemBindData : public IUnknown
{ {
virtual HRESULT STDMETHODCALLTYPE GetFindData(
WIN32_FIND_DATAW* pfd) = 0;
virtual HRESULT STDMETHODCALLTYPE SetFindData( virtual HRESULT STDMETHODCALLTYPE SetFindData(
const WIN32_FIND_DATAW* pfd) = 0; const WIN32_FIND_DATAW* pfd) = 0;
virtual HRESULT STDMETHODCALLTYPE GetFindData(
WIN32_FIND_DATAW* pfd) = 0;
}; };
#else #else
typedef struct IFileSystemBindDataVtbl IFileSystemBindDataVtbl; typedef struct IFileSystemBindDataVtbl IFileSystemBindDataVtbl;
...@@ -968,14 +968,14 @@ struct IFileSystemBindDataVtbl { ...@@ -968,14 +968,14 @@ struct IFileSystemBindDataVtbl {
IFileSystemBindData* This); IFileSystemBindData* This);
/*** IFileSystemBindData methods ***/ /*** IFileSystemBindData methods ***/
HRESULT (STDMETHODCALLTYPE *GetFindData)(
IFileSystemBindData* This,
WIN32_FIND_DATAW* pfd);
HRESULT (STDMETHODCALLTYPE *SetFindData)( HRESULT (STDMETHODCALLTYPE *SetFindData)(
IFileSystemBindData* This, IFileSystemBindData* This,
const WIN32_FIND_DATAW* pfd); const WIN32_FIND_DATAW* pfd);
HRESULT (STDMETHODCALLTYPE *GetFindData)(
IFileSystemBindData* This,
WIN32_FIND_DATAW* pfd);
}; };
/*** IUnknown methods ***/ /*** IUnknown methods ***/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment