Added some stubs.
This commit is contained in:
parent
1420acef09
commit
5eb88a08a2
|
@ -27,7 +27,7 @@
|
||||||
@ stub GetSetFileTimestamp
|
@ stub GetSetFileTimestamp
|
||||||
@ stub GetVersionInfoFromImage
|
@ stub GetVersionInfoFromImage
|
||||||
@ stub InfIsFromOemLocation
|
@ stub InfIsFromOemLocation
|
||||||
@ stub InstallHinfSection
|
@ stdcall InstallHinfSection(long long str long)
|
||||||
@ stub InstallHinfSectionA
|
@ stub InstallHinfSectionA
|
||||||
@ stub InstallHinfSectionW
|
@ stub InstallHinfSectionW
|
||||||
@ stub InstallStop
|
@ stub InstallStop
|
||||||
|
@ -68,6 +68,7 @@
|
||||||
@ stdcall SetupCommitFileQueueW(long long ptr ptr)
|
@ stdcall SetupCommitFileQueueW(long long ptr ptr)
|
||||||
@ stub SetupCopyErrorA
|
@ stub SetupCopyErrorA
|
||||||
@ stub SetupCopyErrorW
|
@ stub SetupCopyErrorW
|
||||||
|
@ stdcall SetupCopyOEMInfA(str str long long ptr long ptr ptr)
|
||||||
@ stub SetupCopyOEMInfW
|
@ stub SetupCopyOEMInfW
|
||||||
@ stub SetupCreateDiskSpaceListA
|
@ stub SetupCreateDiskSpaceListA
|
||||||
@ stub SetupCreateDiskSpaceListW
|
@ stub SetupCreateDiskSpaceListW
|
||||||
|
|
|
@ -161,3 +161,23 @@ DWORD WINAPI CM_Disconnect_Machine(DWORD handle)
|
||||||
return CR_SUCCESS;
|
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));
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue