shlwapi: Fix spec entries for SHFormatDateTime().

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
feature/deterministic
Nikolay Sivov 2020-02-03 10:16:10 +03:00 committed by Alexandre Julliard
parent 8363316f62
commit 1d1aa18654
2 changed files with 5 additions and 2 deletions

View File

@ -350,8 +350,8 @@
350 stdcall -noname GetFileVersionInfoSizeWrapW(wstr ptr)
351 stdcall -noname GetFileVersionInfoWrapW(wstr long long ptr)
352 stdcall -noname VerQueryValueWrapW(ptr wstr ptr ptr)
353 stdcall -ordinal SHFormatDateTimeA(ptr ptr str long)
354 stdcall -ordinal SHFormatDateTimeW(ptr ptr wstr long)
353 stdcall -ordinal SHFormatDateTimeA(ptr ptr ptr long)
354 stdcall -ordinal SHFormatDateTimeW(ptr ptr ptr long)
355 stdcall -noname IUnknown_EnableModeless(ptr long)
356 stdcall -noname CreateAllAccessSecurityAttributes(ptr ptr long)
357 stdcall -noname SHGetNewLinkInfoWrapW(wstr wstr wstr long long)

View File

@ -1135,6 +1135,9 @@ BOOL WINAPI IsOS(DWORD);
#define FDTF_RTLDATE 0x00000200
#define FDTF_NOAUTOREADINGORDER 0x00000400
int WINAPI SHFormatDateTimeA(const FILETIME UNALIGNED *filetime, DWORD *flags, LPSTR buffer, UINT size);
int WINAPI SHFormatDateTimeW(const FILETIME UNALIGNED *filetime, DWORD *flags, LPWSTR buffer, UINT size);
typedef struct
{
const IID *piid;