setupapi: Add a stub implementation of SetupGetSourceInfo.
This commit is contained in:
parent
98d1486410
commit
b74f4d92d7
|
@ -416,8 +416,8 @@
|
|||
@ stub SetupGetSourceFileLocationW
|
||||
@ stub SetupGetSourceFileSizeA
|
||||
@ stub SetupGetSourceFileSizeW
|
||||
@ stub SetupGetSourceInfoA
|
||||
@ stub SetupGetSourceInfoW
|
||||
@ stdcall SetupGetSourceInfoA(ptr long long str long ptr)
|
||||
@ stdcall SetupGetSourceInfoW(ptr long long wstr long ptr)
|
||||
@ stdcall SetupGetStringFieldA(ptr long ptr long ptr)
|
||||
@ stdcall SetupGetStringFieldW(ptr long ptr long ptr)
|
||||
@ stub SetupGetTargetPathA
|
||||
|
|
|
@ -139,6 +139,28 @@ BOOL WINAPI SetupCopyOEMInfW(PCWSTR sourceinffile, PCWSTR sourcemedialoc,
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupGetSourceInfoA (SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupGetSourceInfoA(HINF InfHandle, UINT SourceId, UINT InfoDesired,
|
||||
PSTR ReturnBuffer, DWORD ReturnBufferSize, LPDWORD RequiredSize)
|
||||
{
|
||||
FIXME("(%p, %d, %d, %p, %ld, %p): stub\n", InfHandle, SourceId, InfoDesired,
|
||||
ReturnBuffer, ReturnBufferSize, RequiredSize);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupGetSourceInfoW (SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupGetSourceInfoW(HINF InfHandle, UINT SourceId, UINT InfoDesired,
|
||||
PWSTR ReturnBuffer, DWORD ReturnBufferSize, LPDWORD RequiredSize)
|
||||
{
|
||||
FIXME("(%p, %d, %d, %p, %ld, %p): stub\n", InfHandle, SourceId, InfoDesired,
|
||||
ReturnBuffer, ReturnBufferSize, RequiredSize);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupInitializeFileLogW(SETUPAPI.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue