Commit f06c8789 authored by Jim Aston's avatar Jim Aston Committed by Alexandre Julliard

Added stub for StgSetTimes.

parent a05b43fd
......@@ -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
......
......@@ -5505,6 +5505,18 @@ HRESULT WINAPI StgOpenStorageOnILockBytes(
}
/******************************************************************************
* 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]
*
* Determines if the ILockBytes contains a storage object.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment