[WINESYNC] setupapi: Add stub for SetupLogFile{A,W}.

wine commit id c7d4b0c69fb8de9a2344c7d9d4bcda6e3feef094 by Vitaly Perov <vitperov@etersoft.ru>
This commit is contained in:
winesync 2024-01-04 12:41:09 +01:00 committed by Hermès Bélusca-Maïto
parent 5e218bbb70
commit 3438acb6ab
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0
3 changed files with 47 additions and 3 deletions

View file

@ -453,8 +453,8 @@
@ stdcall SetupIterateCabinetW(wstr long ptr ptr)
@ stdcall SetupLogErrorA(str long)
@ stdcall SetupLogErrorW(wstr long)
@ stub SetupLogFileA
@ stub SetupLogFileW
@ stdcall SetupLogFileA(ptr str str str long str str str long)
@ stdcall SetupLogFileW(ptr wstr wstr wstr long wstr wstr wstr long)
@ stdcall SetupOpenAppendInfFileA(str long ptr)
@ stdcall SetupOpenAppendInfFileW(wstr long ptr)
@ stdcall SetupOpenFileQueue()

View file

@ -80,6 +80,50 @@ BOOL WINAPI SetupSetSourceListW(DWORD flags, PCWSTR *list, UINT count)
return FALSE;
}
/***********************************************************************
* SetupLogFileW (SETUPAPI.@)
*/
BOOL WINAPI SetupLogFileW(
HSPFILELOG FileLogHandle,
PCWSTR LogSectionName,
PCWSTR SourceFileName,
PCWSTR TargetFileName,
DWORD Checksum,
PCWSTR DiskTagfile,
PCWSTR DiskDescription,
PCWSTR OtherInfo,
DWORD Flags )
{
FIXME("(%p, %p, '%s', '%s', %d, %p, %p, %p, %d): stub\n", FileLogHandle,
debugstr_w(LogSectionName), debugstr_w(SourceFileName),
debugstr_w(TargetFileName), Checksum, debugstr_w(DiskTagfile),
debugstr_w(DiskDescription), debugstr_w(OtherInfo), Flags);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/***********************************************************************
* SetupLogFileA (SETUPAPI.@)
*/
BOOL WINAPI SetupLogFileA(
HSPFILELOG FileLogHandle,
PCSTR LogSectionName,
PCSTR SourceFileName,
PCSTR TargetFileName,
DWORD Checksum,
PCSTR DiskTagfile,
PCSTR DiskDescription,
PCSTR OtherInfo,
DWORD Flags )
{
FIXME("(%p, %p, '%s', '%s', %d, %p, %p, %p, %d): stub\n", FileLogHandle,
LogSectionName, SourceFileName, TargetFileName, Checksum, DiskTagfile,
DiskDescription, OtherInfo, Flags);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/***********************************************************************
* SetupDiRemoveDevice(SETUPAPI.@)

View file

@ -5,4 +5,4 @@ files:
dlls/setupapi/misc.c: dll/win32/setupapi/misc.c
dlls/setupapi/stubs.c: dll/win32/setupapi/stubs.c
tags:
wine: 3eea5a8ae9192cdd524e7beb7261a67807897582
wine: c7d4b0c69fb8de9a2344c7d9d4bcda6e3feef094