itss: Fix function prototype now that widl does the right thing with const.
This commit is contained in:
parent
bca84d5467
commit
67fb5507cc
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue