Commit 51bb7d15 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

atl: Constify some variables.

parent 3c75d938
......@@ -149,7 +149,7 @@ static HRESULT get_word(LPCOLESTR *str, strbuf *buf)
return S_OK;
}
static HRESULT do_preprocess(Registrar *This, LPCOLESTR data, strbuf *buf)
static HRESULT do_preprocess(const Registrar *This, LPCOLESTR data, strbuf *buf)
{
LPCOLESTR iter, iter2 = data;
rep_list *rep_iter;
......@@ -663,7 +663,7 @@ static const IRegistrarVtbl RegistrarVtbl = {
Registrar_ResourceUnregister,
};
static HRESULT Registrar_create(LPUNKNOWN pUnkOuter, REFIID riid, void **ppvObject)
static HRESULT Registrar_create(const IUnknown *pUnkOuter, REFIID riid, void **ppvObject)
{
Registrar *ret;
......
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