Added stub for StgSetTimes.
This commit is contained in:
parent
a05b43fdf3
commit
f06c8789e3
|
@ -150,7 +150,7 @@ type win32
|
|||
147 stdcall StgIsStorageILockBytes(ptr) StgIsStorageILockBytes
|
||||
148 stdcall StgOpenStorage(wstr ptr long ptr long ptr) StgOpenStorage
|
||||
149 stdcall StgOpenStorageOnILockBytes(ptr ptr long long long ptr) StgOpenStorageOnILockBytes
|
||||
150 stub StgSetTimes
|
||||
150 stdcall StgSetTimes(ptr ptr ptr ptr ) StgSetTimes
|
||||
151 stdcall StringFromCLSID(ptr ptr) StringFromCLSID
|
||||
152 stdcall StringFromGUID2(ptr ptr long) StringFromGUID2
|
||||
153 stdcall StringFromIID(ptr ptr) StringFromCLSID
|
||||
|
|
|
@ -5504,6 +5504,18 @@ HRESULT WINAPI StgOpenStorageOnILockBytes(
|
|||
return hr;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* StgSetTimes [ole32.150]
|
||||
*
|
||||
*
|
||||
*/
|
||||
HRESULT WINAPI StgSetTimes(WCHAR * str, FILETIME * a, FILETIME * b, FILETIME *c )
|
||||
{
|
||||
|
||||
FIXME("(%p, %p, %p, %p),stub!\n", str, a, b, c);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* StgIsStorageILockBytes [OLE32.147]
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue