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

This commit is contained in:
Alexandre Julliard 2008-04-30 11:45:21 +02:00
parent bca84d5467
commit 67fb5507cc
1 changed files with 4 additions and 4 deletions

View File

@ -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);