setupapi: Add stubs for SetupOpenLog, SetupCloseLog, and SetupLogError.
This commit is contained in:
parent
7588b669d8
commit
15b46847b0
|
@ -247,7 +247,7 @@
|
|||
@ stub SetupCancelTemporarySourceList
|
||||
@ stdcall SetupCloseFileQueue(ptr)
|
||||
@ stdcall SetupCloseInfFile(long)
|
||||
@ stub SetupCloseLog
|
||||
@ stdcall SetupCloseLog()
|
||||
@ stdcall SetupCommitFileQueue(long long ptr ptr) SetupCommitFileQueueW
|
||||
@ stdcall SetupCommitFileQueueA(long long ptr ptr)
|
||||
@ stdcall SetupCommitFileQueueW(long long ptr ptr)
|
||||
|
@ -442,7 +442,7 @@
|
|||
@ stdcall SetupIterateCabinetA(str long ptr ptr)
|
||||
@ stdcall SetupIterateCabinetW(wstr long ptr ptr)
|
||||
@ stub SetupLogErrorA
|
||||
@ stub SetupLogErrorW
|
||||
@ stdcall SetupLogErrorW(wstr long)
|
||||
@ stub SetupLogFileA
|
||||
@ stub SetupLogFileW
|
||||
@ stdcall SetupOpenAppendInfFileA(str long ptr)
|
||||
|
@ -450,6 +450,7 @@
|
|||
@ stdcall SetupOpenFileQueue()
|
||||
@ stdcall SetupOpenInfFileA(str str long ptr)
|
||||
@ stdcall SetupOpenInfFileW(wstr wstr long ptr)
|
||||
@ stdcall SetupOpenLog(long)
|
||||
@ stdcall SetupOpenMasterInf()
|
||||
@ stub SetupPromptForDiskA
|
||||
@ stub SetupPromptForDiskW
|
||||
|
|
|
@ -196,3 +196,29 @@ BOOL WINAPI RegistryDelnode(DWORD x, DWORD y)
|
|||
FIXME("%08lx %08lx: stub\n", x, y);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupCloseLog(SETUPAPI.@)
|
||||
*/
|
||||
void WINAPI SetupCloseLog()
|
||||
{
|
||||
FIXME("() stub\n");
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupLogErrorW(SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupLogErrorW(PCWSTR MessageString, LogSeverity Severity)
|
||||
{
|
||||
FIXME("(%s, %ld) stub\n", debugstr_w(MessageString), Severity);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupOpenLog(SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupOpenLog(BOOL Reserved)
|
||||
{
|
||||
FIXME("(%d) stub\n", Reserved);
|
||||
return TRUE;
|
||||
}
|
||||
|
|
|
@ -690,6 +690,13 @@ DECL_WINELIB_SETUPAPI_TYPE_AW(PFILEPATHS)
|
|||
#define INFINFO_REVERSE_DEFAULT_SEARCH 4
|
||||
#define INFINFO_INF_PATH_LIST_SEARCH 5
|
||||
|
||||
#define LogSeverity DWORD
|
||||
#define LogSevInformation 0x00000000
|
||||
#define LogSevWarning 0x00000001
|
||||
#define LogSevError 0x00000002
|
||||
#define LogSevFatalError 0x00000003
|
||||
#define LogSevMaximum 0x00000004
|
||||
|
||||
LONG WINAPI AddTagToGroupOrderList(PCWSTR lpGroupName, DWORD dwUnknown2, DWORD dwUnknown3);
|
||||
DWORD WINAPI CaptureAndConvertAnsiArg(PCSTR lpSrc, PWSTR *lpDst);
|
||||
DWORD WINAPI CaptureStringArg(PCWSTR lpSrc, PWSTR *lpDst);
|
||||
|
|
Loading…
Reference in New Issue