mirror of
https://github.com/reactos/reactos.git
synced 2025-04-21 20:50:29 +00:00
[SETUPAPI] Use long type also in SetupGetInfDriverStoreLocationA
Addendum for the previous commit.
This commit is contained in:
parent
5ff377c9ab
commit
237e7461ea
1 changed files with 1 additions and 1 deletions
|
@ -753,7 +753,7 @@ BOOL WINAPI SetupGetInfDriverStoreLocationA(
|
||||||
PCSTR LocaleName, PSTR ReturnBuffer, DWORD ReturnBufferSize,
|
PCSTR LocaleName, PSTR ReturnBuffer, DWORD ReturnBufferSize,
|
||||||
PDWORD RequiredSize)
|
PDWORD RequiredSize)
|
||||||
{
|
{
|
||||||
FIXME("stub: %s %p %s %p %u %p\n", debugstr_a(FileName), AlternativePlatformInfo, debugstr_a(LocaleName), ReturnBuffer, ReturnBufferSize, RequiredSize);
|
FIXME("stub: %s %p %s %p %lu %p\n", debugstr_a(FileName), AlternativePlatformInfo, debugstr_a(LocaleName), ReturnBuffer, ReturnBufferSize, RequiredSize);
|
||||||
|
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
Loading…
Reference in a new issue