Commit 5eb88a08 authored by Uwe Bonnes's avatar Uwe Bonnes Committed by Alexandre Julliard

Added some stubs.

parent 1420acef
......@@ -27,7 +27,7 @@
@ stub GetSetFileTimestamp
@ stub GetVersionInfoFromImage
@ stub InfIsFromOemLocation
@ stub InstallHinfSection
@ stdcall InstallHinfSection(long long str long)
@ stub InstallHinfSectionA
@ stub InstallHinfSectionW
@ stub InstallStop
......@@ -68,6 +68,7 @@
@ stdcall SetupCommitFileQueueW(long long ptr ptr)
@ stub SetupCopyErrorA
@ stub SetupCopyErrorW
@ stdcall SetupCopyOEMInfA(str str long long ptr long ptr ptr)
@ stub SetupCopyOEMInfW
@ stub SetupCreateDiskSpaceListA
@ stub SetupCreateDiskSpaceListW
......
......@@ -161,3 +161,23 @@ DWORD WINAPI CM_Disconnect_Machine(DWORD handle)
return CR_SUCCESS;
}
/***********************************************************************
* SetupCopyOEMInfA (SETUPAPI.@)
*/
BOOL WINAPI SetupCopyOEMInfA(LPCSTR sourceinffile, LPCSTR sourcemedialoc,
DWORD mediatype, DWORD copystyle, LPSTR destinfname,
DWORD destnamesize, PDWORD required,
LPSTR destinfnamecomponent)
{
FIXME("stub: source %s location %s...\n",sourceinffile, sourcemedialoc);
return FALSE;
}
/***********************************************************************
* InstallHinfSection (SETUPAPI.@)
*/
void WINAPI InstallHinfSection(HWND hwnd, HINSTANCE handle, LPCSTR cmdline, INT show)
{
FIXME("stub, hwnd %p, handle %p, cmdline %s\n", hwnd, handle, debugstr_a(cmdline));
}
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