mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
[WIN32SS] Implement EngQueryDeviceAttribute
This commit is contained in:
parent
c89ac107ce
commit
f3f4cc0f25
2 changed files with 27 additions and 28 deletions
|
@ -989,6 +989,33 @@ PDEVOBJ_vGetDeviceCaps(
|
|||
|
||||
/** Exported functions ********************************************************/
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL
|
||||
APIENTRY
|
||||
EngQueryDeviceAttribute(
|
||||
_In_ HDEV hdev,
|
||||
_In_ ENG_DEVICE_ATTRIBUTE devAttr,
|
||||
_In_reads_bytes_(cjInSize) PVOID pvIn,
|
||||
_In_ ULONG cjInSize,
|
||||
_Out_writes_bytes_(cjOutSize) PVOID pvOut,
|
||||
_In_ ULONG cjOutSize)
|
||||
{
|
||||
PPDEVOBJ ppdev = (PPDEVOBJ)hdev;
|
||||
|
||||
if (devAttr != QDA_ACCELERATION_LEVEL)
|
||||
return FALSE;
|
||||
|
||||
if (cjOutSize >= sizeof(DWORD))
|
||||
{
|
||||
*(DWORD*)pvOut = ppdev->dwAccelerationLevel;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
_Must_inspect_result_ _Ret_z_
|
||||
LPWSTR
|
||||
APIENTRY
|
||||
|
|
|
@ -577,34 +577,6 @@ EngPlgBlt(
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
BOOL
|
||||
APIENTRY
|
||||
EngQueryDeviceAttribute(
|
||||
_In_ HDEV hdev,
|
||||
_In_ ENG_DEVICE_ATTRIBUTE devAttr,
|
||||
_In_reads_bytes_(cjInSize) PVOID pvIn,
|
||||
_In_ ULONG cjInSize,
|
||||
_Out_writes_bytes_(cjOutSize) PVOID pvOut,
|
||||
_In_ ULONG cjOutSize)
|
||||
{
|
||||
if (devAttr != QDA_ACCELERATION_LEVEL)
|
||||
return FALSE;
|
||||
|
||||
UNIMPLEMENTED;
|
||||
|
||||
if (cjOutSize >= sizeof(DWORD))
|
||||
{
|
||||
/* Set all accelerations to enabled */
|
||||
*(DWORD*)pvOut = 0;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue