Module: wine Branch: master Commit: 67fb5507cc45cf4038b8ab651f291621521050a9 URL: http://source.winehq.org/git/wine.git/?a=commit;h=67fb5507cc45cf4038b8ab651f...
Author: Alexandre Julliard julliard@winehq.org Date: Wed Apr 30 11:45:21 2008 +0200
itss: Fix function prototype now that widl does the right thing with const.
---
dlls/itss/itss.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/dlls/itss/itss.c b/dlls/itss/itss.c index 3bab9e1..47756fa 100644 --- a/dlls/itss/itss.c +++ b/dlls/itss/itss.c @@ -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);