Commit b8a4b9f9 authored by Gijs Vermeulen's avatar Gijs Vermeulen Committed by Alexandre Julliard

setupapi: Add SetupDiGetClassRegistryPropertyW stub.

parent f7447407
...@@ -336,6 +336,7 @@ ...@@ -336,6 +336,7 @@
@ stub SetupDiGetClassImageListExW @ stub SetupDiGetClassImageListExW
@ stub SetupDiGetClassInstallParamsA @ stub SetupDiGetClassInstallParamsA
@ stub SetupDiGetClassInstallParamsW @ stub SetupDiGetClassInstallParamsW
@ stdcall SetupDiGetClassRegistryPropertyW(ptr long ptr ptr long ptr wstr ptr)
@ stub SetupDiGetDeviceInfoListClass @ stub SetupDiGetDeviceInfoListClass
@ stdcall SetupDiGetDeviceInfoListDetailA(ptr ptr) @ stdcall SetupDiGetDeviceInfoListDetailA(ptr ptr)
@ stdcall SetupDiGetDeviceInfoListDetailW(ptr ptr) @ stdcall SetupDiGetDeviceInfoListDetailW(ptr ptr)
......
...@@ -667,3 +667,12 @@ CONFIGRET WINAPI CM_Request_Device_EjectW(DEVINST dev, PPNP_VETO_TYPE type, LPWS ...@@ -667,3 +667,12 @@ CONFIGRET WINAPI CM_Request_Device_EjectW(DEVINST dev, PPNP_VETO_TYPE type, LPWS
FIXME("(0x%08lx, %p, %p, %lu, 0x%08lx) stub\n", dev, type, name, length, flags); FIXME("(0x%08lx, %p, %p, %lu, 0x%08lx) stub\n", dev, type, name, length, flags);
return CR_SUCCESS; return CR_SUCCESS;
} }
BOOL WINAPI SetupDiGetClassRegistryPropertyW(const GUID *class, DWORD prop, DWORD *datatype, BYTE *buff, DWORD size,
DWORD *req_size, const WCHAR *name, VOID *reserved)
{
FIXME("class %s, prop %ld, datatype %p, buff %p, size %ld, req_size %p, name %s, reserved %p stub!\n",
debugstr_guid(class), prop, datatype, buff, size, req_size, debugstr_w(name), reserved);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment