Commit 67fb5507 authored by Alexandre Julliard's avatar Alexandre Julliard

itss: Fix function prototype now that widl does the right thing with const.

parent bca84d54
...@@ -296,10 +296,10 @@ static HRESULT WINAPI ITStorageImpl_StgOpenStorageOnILockBytes( ...@@ -296,10 +296,10 @@ static HRESULT WINAPI ITStorageImpl_StgOpenStorageOnILockBytes(
static HRESULT WINAPI ITStorageImpl_StgSetTimes( static HRESULT WINAPI ITStorageImpl_StgSetTimes(
IITStorage* iface, IITStorage* iface,
WCHAR* lpszName, const WCHAR* lpszName,
FILETIME* pctime, const FILETIME* pctime,
FILETIME* patime, const FILETIME* patime,
FILETIME* pmtime) const FILETIME* pmtime)
{ {
ITStorageImpl *This = (ITStorageImpl *)iface; ITStorageImpl *This = (ITStorageImpl *)iface;
FIXME("%p\n", This); FIXME("%p\n", This);
......
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