mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 16:43:04 +00:00
[VIDEOPRT] Reformat VideoPortVerifyAccessRanges()
Fix indentation, add SAL annotations and Doxygen description.
This commit is contained in:
parent
7eca194709
commit
de6313d89e
2 changed files with 89 additions and 73 deletions
|
@ -1251,9 +1251,9 @@ VPAPI
|
|||
VP_STATUS
|
||||
NTAPI
|
||||
VideoPortVerifyAccessRanges(
|
||||
IN PVOID HwDeviceExtension,
|
||||
IN ULONG NumAccessRanges,
|
||||
IN PVIDEO_ACCESS_RANGE AccessRanges);
|
||||
_In_ PVOID HwDeviceExtension,
|
||||
_In_opt_ ULONG NumAccessRanges,
|
||||
_In_reads_opt_(NumAccessRanges) PVIDEO_ACCESS_RANGE AccessRanges);
|
||||
|
||||
VPAPI
|
||||
VOID
|
||||
|
|
|
@ -816,15 +816,31 @@ VideoPortGetAccessRanges(
|
|||
return NO_ERROR;
|
||||
}
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
|
||||
VP_STATUS NTAPI
|
||||
/**
|
||||
* @brief
|
||||
* Claims or releases a range of hardware resources and checks for conflicts.
|
||||
*
|
||||
* @param[in] HwDeviceExtension
|
||||
* The miniport device extension.
|
||||
*
|
||||
* @param[in] NumAccessRanges
|
||||
* The number of hardware resource ranges in the @p AccessRanges array.
|
||||
* Specify zero to release the hardware resources held by the miniport.
|
||||
*
|
||||
* @param[in] AccessRanges
|
||||
* The array of hardware resource ranges to claim ownership.
|
||||
* Specify NULL to release the hardware resources held by the miniport.
|
||||
*
|
||||
* @return
|
||||
* NO_ERROR if the resources have been successfully claimed or released.
|
||||
* ERROR_INVALID_PARAMETER if an error or a conflict occurred.
|
||||
**/
|
||||
VP_STATUS
|
||||
NTAPI
|
||||
VideoPortVerifyAccessRanges(
|
||||
IN PVOID HwDeviceExtension,
|
||||
IN ULONG NumAccessRanges,
|
||||
IN PVIDEO_ACCESS_RANGE AccessRanges)
|
||||
_In_ PVOID HwDeviceExtension,
|
||||
_In_opt_ ULONG NumAccessRanges,
|
||||
_In_reads_opt_(NumAccessRanges) PVIDEO_ACCESS_RANGE AccessRanges)
|
||||
{
|
||||
PVIDEO_PORT_DEVICE_EXTENSION DeviceExtension;
|
||||
BOOLEAN ConflictDetected;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue