setupapi: Add a stub implementation of SetupGetSourceInfo.
This commit is contained in:
parent
98d1486410
commit
b74f4d92d7
@ -416,8 +416,8 @@
|
|||||||
@ stub SetupGetSourceFileLocationW
|
@ stub SetupGetSourceFileLocationW
|
||||||
@ stub SetupGetSourceFileSizeA
|
@ stub SetupGetSourceFileSizeA
|
||||||
@ stub SetupGetSourceFileSizeW
|
@ stub SetupGetSourceFileSizeW
|
||||||
@ stub SetupGetSourceInfoA
|
@ stdcall SetupGetSourceInfoA(ptr long long str long ptr)
|
||||||
@ stub SetupGetSourceInfoW
|
@ stdcall SetupGetSourceInfoW(ptr long long wstr long ptr)
|
||||||
@ stdcall SetupGetStringFieldA(ptr long ptr long ptr)
|
@ stdcall SetupGetStringFieldA(ptr long ptr long ptr)
|
||||||
@ stdcall SetupGetStringFieldW(ptr long ptr long ptr)
|
@ stdcall SetupGetStringFieldW(ptr long ptr long ptr)
|
||||||
@ stub SetupGetTargetPathA
|
@ stub SetupGetTargetPathA
|
||||||
|
@ -139,6 +139,28 @@ BOOL WINAPI SetupCopyOEMInfW(PCWSTR sourceinffile, PCWSTR sourcemedialoc,
|
|||||||
return FALSE;
|
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.@)
|
* SetupInitializeFileLogW(SETUPAPI.@)
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user