Commit c9148373 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

Add stub implementations for LaunchINFSection(Ex).

parent 2f2f3a1d
......@@ -35,3 +35,19 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
return TRUE;
}
/***********************************************************************
* LaunchINFSection (SETUPAPI.@)
*/
void WINAPI LaunchINFSection( HWND hWnd, HINSTANCE hInst, LPCSTR cmdline, INT show )
{
FIXME("%p %p %s %d\n", hWnd, hInst, debugstr_a(cmdline), show );
}
/***********************************************************************
* LaunchINFSectionEx (SETUPAPI.@)
*/
void WINAPI LaunchINFSectionEx( HWND hWnd, HINSTANCE hInst, LPCSTR cmdline, INT show )
{
FIXME("%p %p %s %d\n", hWnd, hInst, debugstr_a(cmdline), show );
}
......@@ -13,8 +13,8 @@
@ stub GetVersionFromFile
@ stub GetVersionFromFileEx
@ stub IsNTAdmin
@ stub LaunchINFSection
@ stub LaunchINFSectionEx
@ stdcall LaunchINFSection(ptr ptr str long)
@ stdcall LaunchINFSectionEx(ptr ptr str long)
@ stub NeedReboot
@ stub NeedRebootInit
@ stub OpenINFEngine
......
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