2 * Copyright 2006 Jacek Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include "wine/debug.h"
23 WINE_DEFAULT_DEBUG_CHANNEL(shdocvw
);
25 static HRESULT WINAPI
UrlHistoryStg_QueryInterface(IUrlHistoryStg2
*iface
, REFIID riid
, void **ppv
)
29 if(IsEqualGUID(&IID_IUnknown
, riid
)) {
30 TRACE("(IID_IUnknown %p)\n", ppv
);
32 }else if(IsEqualGUID(&IID_IUrlHistoryStg
, riid
)) {
33 TRACE("(IID_IUrlHistoryStg %p)\n", ppv
);
35 }else if(IsEqualGUID(&IID_IUrlHistoryStg2
, riid
)) {
36 TRACE("(IID_IUrlHistoryStg2 %p)\n", ppv
);
41 IUnknown_AddRef((IUnknown
*)*ppv
);
45 WARN("(%s %p)\n", debugstr_guid(riid
), ppv
);
49 static ULONG WINAPI
UrlHistoryStg_AddRef(IUrlHistoryStg2
*iface
)
55 static ULONG WINAPI
UrlHistoryStg_Release(IUrlHistoryStg2
*iface
)
57 SHDOCVW_UnlockModule();
61 static HRESULT WINAPI
UrlHistoryStg_AddUrl(IUrlHistoryStg2
*iface
, LPCOLESTR lpcsUrl
,
62 LPCOLESTR pocsTitle
, DWORD dwFlags
)
64 FIXME("(%s %s %08x)\n", debugstr_w(lpcsUrl
), debugstr_w(pocsTitle
), dwFlags
);
68 static HRESULT WINAPI
UrlHistoryStg_DeleteUrl(IUrlHistoryStg2
*iface
, LPCOLESTR lpcsUrl
,
71 FIXME("(%s %08x)\n", debugstr_w(lpcsUrl
), dwFlags
);
75 static HRESULT WINAPI
UrlHistoryStg_QueryUrl(IUrlHistoryStg2
*iface
, LPCOLESTR lpcsUrl
,
76 DWORD dwFlags
, LPSTATURL lpSTATURL
)
78 FIXME("(%s %08x %p)\n", debugstr_w(lpcsUrl
), dwFlags
, lpSTATURL
);
82 static HRESULT WINAPI
UrlHistoryStg_BindToObject(IUrlHistoryStg2
*iface
, LPCOLESTR lpcsUrl
,
83 REFIID riid
, void **ppv
)
85 FIXME("(%s %s %p)\n", debugstr_w(lpcsUrl
), debugstr_guid(riid
), ppv
);
89 static HRESULT WINAPI
UrlHistoryStg_EnumUrls(IUrlHistoryStg2
*iface
, IEnumSTATURL
**ppEnum
)
91 FIXME("(%p)\n", ppEnum
);
95 static HRESULT WINAPI
UrlHistoryStg_AddUrlAndNotify(IUrlHistoryStg2
*iface
, LPCOLESTR pocsUrl
,
96 LPCOLESTR pocsTitle
, DWORD dwFlags
, BOOL fWriteHistory
, IOleCommandTarget
*poctNotify
,
97 IUnknown
*punkISFolder
)
99 FIXME("(%s %s %08x %x %p %p)\n", debugstr_w(pocsUrl
), debugstr_w(pocsTitle
),
100 dwFlags
, fWriteHistory
, poctNotify
, punkISFolder
);
104 static HRESULT WINAPI
UrlHistoryStg_ClearHistory(IUrlHistoryStg2
*iface
)
110 static const IUrlHistoryStg2Vtbl UrlHistoryStg2Vtbl
= {
111 UrlHistoryStg_QueryInterface
,
112 UrlHistoryStg_AddRef
,
113 UrlHistoryStg_Release
,
114 UrlHistoryStg_AddUrl
,
115 UrlHistoryStg_DeleteUrl
,
116 UrlHistoryStg_QueryUrl
,
117 UrlHistoryStg_BindToObject
,
118 UrlHistoryStg_EnumUrls
,
119 UrlHistoryStg_AddUrlAndNotify
,
120 UrlHistoryStg_ClearHistory
123 static IUrlHistoryStg2 UrlHistoryStg2
= { &UrlHistoryStg2Vtbl
};
125 HRESULT
CUrlHistory_Create(IUnknown
*pOuter
, REFIID riid
, void **ppv
)
128 return CLASS_E_NOAGGREGATION
;
130 return IUrlHistoryStg_QueryInterface(&UrlHistoryStg2
, riid
, ppv
);