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) ...@@ -35,3 +35,19 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
return TRUE; 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 @@ ...@@ -13,8 +13,8 @@
@ stub GetVersionFromFile @ stub GetVersionFromFile
@ stub GetVersionFromFileEx @ stub GetVersionFromFileEx
@ stub IsNTAdmin @ stub IsNTAdmin
@ stub LaunchINFSection @ stdcall LaunchINFSection(ptr ptr str long)
@ stub LaunchINFSectionEx @ stdcall LaunchINFSectionEx(ptr ptr str long)
@ stub NeedReboot @ stub NeedReboot
@ stub NeedRebootInit @ stub NeedRebootInit
@ stub OpenINFEngine @ 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