Commit 7f31cc47 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

setupapi: Add a stub implementation for SetupPromptReboot.

parent b37b72b0
...@@ -454,7 +454,7 @@ ...@@ -454,7 +454,7 @@
@ stdcall SetupOpenMasterInf() @ stdcall SetupOpenMasterInf()
@ stub SetupPromptForDiskA @ stub SetupPromptForDiskA
@ stub SetupPromptForDiskW @ stub SetupPromptForDiskW
@ stub SetupPromptReboot @ stdcall SetupPromptReboot(ptr ptr long)
@ stub SetupQueryDrivesInDiskSpaceListA @ stub SetupQueryDrivesInDiskSpaceListA
@ stub SetupQueryDrivesInDiskSpaceListW @ stub SetupQueryDrivesInDiskSpaceListW
@ stub SetupQueryFileLogA @ stub SetupQueryFileLogA
......
...@@ -200,3 +200,12 @@ BOOL WINAPI SetupOpenLog(BOOL Reserved) ...@@ -200,3 +200,12 @@ BOOL WINAPI SetupOpenLog(BOOL Reserved)
FIXME("(%d) stub\n", Reserved); FIXME("(%d) stub\n", Reserved);
return TRUE; 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 ...@@ -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 ); HINF WINAPI SetupOpenInfFileW( PCWSTR name, PCWSTR pszclass, DWORD style, UINT *error );
#define SetupOpenInfFile WINELIB_NAME_AW(SetupOpenInfFile) #define SetupOpenInfFile WINELIB_NAME_AW(SetupOpenInfFile)
HINF WINAPI SetupOpenMasterInf( VOID ); HINF WINAPI SetupOpenMasterInf( VOID );
INT WINAPI SetupPromptReboot( HSPFILEQ, HWND, BOOL);
BOOL WINAPI SetupQueryInfFileInformationA(PSP_INF_INFORMATION, UINT, PSTR, DWORD, PDWORD); BOOL WINAPI SetupQueryInfFileInformationA(PSP_INF_INFORMATION, UINT, PSTR, DWORD, PDWORD);
BOOL WINAPI SetupQueryInfFileInformationW(PSP_INF_INFORMATION, UINT, PWSTR, DWORD, PDWORD); BOOL WINAPI SetupQueryInfFileInformationW(PSP_INF_INFORMATION, UINT, PWSTR, DWORD, PDWORD);
#define SetupQueryInfFileInformation WINELIB_NAME_AW(SetupQueryInFileInformation) #define SetupQueryInfFileInformation WINELIB_NAME_AW(SetupQueryInFileInformation)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment