Skip to content
Snippets Groups Projects
Commit f06c8789 authored by Jim Aston's avatar Jim Aston Committed by Alexandre Julliard
Browse files

Added stub for StgSetTimes.

parent a05b43fd
Branches
Tags
No related merge requests found
......@@ -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]
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment