setupapi: Add a stub implementation for SetupPromptReboot.
This commit is contained in:
parent
b37b72b006
commit
7f31cc4756
|
@ -454,7 +454,7 @@
|
|||
@ stdcall SetupOpenMasterInf()
|
||||
@ stub SetupPromptForDiskA
|
||||
@ stub SetupPromptForDiskW
|
||||
@ stub SetupPromptReboot
|
||||
@ stdcall SetupPromptReboot(ptr ptr long)
|
||||
@ stub SetupQueryDrivesInDiskSpaceListA
|
||||
@ stub SetupQueryDrivesInDiskSpaceListW
|
||||
@ stub SetupQueryFileLogA
|
||||
|
|
|
@ -200,3 +200,12 @@ BOOL WINAPI SetupOpenLog(BOOL Reserved)
|
|||
FIXME("(%d) stub\n", Reserved);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupPromptReboot(SETUPAPI.@)
|
||||
*/
|
||||
INT WINAPI SetupPromptReboot( HSPFILEQ file_queue, HWND owner, BOOL scan_only )
|
||||
{
|
||||
FIXME("%p, %p, %d\n", file_queue, owner, scan_only);
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -851,6 +851,7 @@ HINF WINAPI SetupOpenInfFileA( PCSTR name, PCSTR pszclass, DWORD style, UINT
|
|||
HINF WINAPI SetupOpenInfFileW( PCWSTR name, PCWSTR pszclass, DWORD style, UINT *error );
|
||||
#define SetupOpenInfFile WINELIB_NAME_AW(SetupOpenInfFile)
|
||||
HINF WINAPI SetupOpenMasterInf( VOID );
|
||||
INT WINAPI SetupPromptReboot( HSPFILEQ, HWND, BOOL);
|
||||
BOOL WINAPI SetupQueryInfFileInformationA(PSP_INF_INFORMATION, UINT, PSTR, DWORD, PDWORD);
|
||||
BOOL WINAPI SetupQueryInfFileInformationW(PSP_INF_INFORMATION, UINT, PWSTR, DWORD, PDWORD);
|
||||
#define SetupQueryInfFileInformation WINELIB_NAME_AW(SetupQueryInFileInformation)
|
||||
|
|
Loading…
Reference in New Issue