Stub implementation for SetupCopyOEMInfW.
This commit is contained in:
parent
969c4dee50
commit
64dcb35a4e
|
@ -253,7 +253,7 @@
|
|||
@ stub SetupCopyErrorA
|
||||
@ stub SetupCopyErrorW
|
||||
@ stdcall SetupCopyOEMInfA(str str long long ptr long ptr ptr)
|
||||
@ stub SetupCopyOEMInfW
|
||||
@ stdcall SetupCopyOEMInfW(wstr wstr long long ptr long ptr ptr)
|
||||
@ stdcall SetupCreateDiskSpaceListA(ptr long long)
|
||||
@ stdcall SetupCreateDiskSpaceListW(ptr long long)
|
||||
@ stub SetupDecompressOrCopyFileA
|
||||
|
|
|
@ -132,7 +132,21 @@ BOOL WINAPI SetupCopyOEMInfA(PCSTR sourceinffile, PCSTR sourcemedialoc,
|
|||
DWORD destnamesize, PDWORD required,
|
||||
PSTR *destinfnamecomponent)
|
||||
{
|
||||
FIXME("stub: source %s location %s ...\n",sourceinffile, sourcemedialoc);
|
||||
FIXME("stub: source %s location %s ...\n", debugstr_a(sourceinffile),
|
||||
debugstr_a(sourcemedialoc));
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupCopyOEMInfW (SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupCopyOEMInfW(PCWSTR sourceinffile, PCWSTR sourcemedialoc,
|
||||
DWORD mediatype, DWORD copystyle, PWSTR destinfname,
|
||||
DWORD destnamesize, PDWORD required,
|
||||
PWSTR *destinfnamecomponent)
|
||||
{
|
||||
FIXME("stub: source %s location %s ...\n", debugstr_w(sourceinffile),
|
||||
debugstr_w(sourcemedialoc));
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue