setupapi: Add a stub implementation of SetupGetSourceInfo.

This commit is contained in:
James Hawkins 2006-07-31 11:48:27 -07:00 committed by Alexandre Julliard
parent 98d1486410
commit b74f4d92d7
2 changed files with 24 additions and 2 deletions

View File

@ -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

View File

@ -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.@)
*/ */