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(
|
||||
IITStorage* iface,
|
||||
WCHAR* lpszName,
|
||||
FILETIME* pctime,
|
||||
FILETIME* patime,
|
||||
FILETIME* pmtime)
|
||||
const WCHAR* lpszName,
|
||||
const FILETIME* pctime,
|
||||
const FILETIME* patime,
|
||||
const FILETIME* pmtime)
|
||||
{
|
||||
ITStorageImpl *This = (ITStorageImpl *)iface;
|
||||
FIXME("%p\n", This);
|
||||
|
|
Loading…
Reference in New Issue