mirror of
https://github.com/reactos/reactos.git
synced 2025-05-30 06:28:34 +00:00
[WDF] Synchronize function attributes between declaration & definition
Addendum to 1f377076d7
This commit is contained in:
parent
d924cb8271
commit
e55eeb2d9c
8 changed files with 12 additions and 1 deletions
|
@ -412,7 +412,6 @@ exit:
|
||||||
return ntStatus;
|
return ntStatus;
|
||||||
}
|
}
|
||||||
|
|
||||||
_Must_inspect_result_
|
|
||||||
VOID
|
VOID
|
||||||
FxChildList::Initialize(
|
FxChildList::Initialize(
|
||||||
__in PWDF_CHILD_LIST_CONFIG Config
|
__in PWDF_CHILD_LIST_CONFIG Config
|
||||||
|
|
|
@ -1332,6 +1332,7 @@ FxDevice::_AcquireOptinRemoveLock(
|
||||||
|
|
||||||
_Must_inspect_result_
|
_Must_inspect_result_
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
|
STDCALL
|
||||||
FxDevice::DispatchWithLock(
|
FxDevice::DispatchWithLock(
|
||||||
__in MdDeviceObject DeviceObject,
|
__in MdDeviceObject DeviceObject,
|
||||||
__in MdIrp Irp
|
__in MdIrp Irp
|
||||||
|
@ -1546,6 +1547,7 @@ DispatchWorker(
|
||||||
|
|
||||||
_Must_inspect_result_
|
_Must_inspect_result_
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
|
STDCALL
|
||||||
FxDevice::Dispatch(
|
FxDevice::Dispatch(
|
||||||
__in MdDeviceObject DeviceObject,
|
__in MdDeviceObject DeviceObject,
|
||||||
__in MdIrp Irp
|
__in MdIrp Irp
|
||||||
|
|
|
@ -34,6 +34,7 @@ extern "C" {
|
||||||
|
|
||||||
_Must_inspect_result_
|
_Must_inspect_result_
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
|
STDCALL
|
||||||
FxDriver::AddDevice(
|
FxDriver::AddDevice(
|
||||||
__in MdDriverObject DriverObject,
|
__in MdDriverObject DriverObject,
|
||||||
__in MdDeviceObject PhysicalDeviceObject
|
__in MdDeviceObject PhysicalDeviceObject
|
||||||
|
|
|
@ -1444,6 +1444,7 @@ Return Value:
|
||||||
|
|
||||||
_Must_inspect_result_
|
_Must_inspect_result_
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
|
STDCALL
|
||||||
FxPkgGeneral::_CreateCompletionRoutine(
|
FxPkgGeneral::_CreateCompletionRoutine(
|
||||||
__in MdDeviceObject DeviceObject,
|
__in MdDeviceObject DeviceObject,
|
||||||
__in MdIrp OriginalIrp,
|
__in MdIrp OriginalIrp,
|
||||||
|
@ -1500,6 +1501,7 @@ Return Value:
|
||||||
|
|
||||||
_Must_inspect_result_
|
_Must_inspect_result_
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
|
STDCALL
|
||||||
FxPkgGeneral::_CreateCompletionRoutine2(
|
FxPkgGeneral::_CreateCompletionRoutine2(
|
||||||
__in MdDeviceObject DeviceObject,
|
__in MdDeviceObject DeviceObject,
|
||||||
__in MdIrp OriginalIrp,
|
__in MdIrp OriginalIrp,
|
||||||
|
|
|
@ -154,6 +154,7 @@ Returns:
|
||||||
|
|
||||||
_Must_inspect_result_
|
_Must_inspect_result_
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
|
STDCALL
|
||||||
FxPkgFdo::_SystemPowerS0Completion(
|
FxPkgFdo::_SystemPowerS0Completion(
|
||||||
__in MdDeviceObject DeviceObject,
|
__in MdDeviceObject DeviceObject,
|
||||||
__in MdIrp OriginalIrp,
|
__in MdIrp OriginalIrp,
|
||||||
|
@ -205,6 +206,7 @@ FxPkgFdo::_SystemPowerS0Completion(
|
||||||
|
|
||||||
_Must_inspect_result_
|
_Must_inspect_result_
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
|
STDCALL
|
||||||
FxPkgFdo::_SystemPowerSxCompletion(
|
FxPkgFdo::_SystemPowerSxCompletion(
|
||||||
__in MdDeviceObject DeviceObject,
|
__in MdDeviceObject DeviceObject,
|
||||||
__in MdIrp OriginalIrp,
|
__in MdIrp OriginalIrp,
|
||||||
|
@ -365,6 +367,7 @@ FxPkgFdo::RaiseDevicePower(
|
||||||
|
|
||||||
_Must_inspect_result_
|
_Must_inspect_result_
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
|
STDCALL
|
||||||
FxPkgFdo::RaiseDevicePowerCompletion(
|
FxPkgFdo::RaiseDevicePowerCompletion(
|
||||||
__in MdDeviceObject DeviceObject,
|
__in MdDeviceObject DeviceObject,
|
||||||
__in MdIrp OriginalIrp,
|
__in MdIrp OriginalIrp,
|
||||||
|
|
|
@ -1434,6 +1434,7 @@ Return Value:
|
||||||
|
|
||||||
_Must_inspect_result_
|
_Must_inspect_result_
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
|
STDCALL
|
||||||
FxPkgFdo::_PnpFilteredStartDeviceCompletionRoutine(
|
FxPkgFdo::_PnpFilteredStartDeviceCompletionRoutine(
|
||||||
__in MdDeviceObject DeviceObject,
|
__in MdDeviceObject DeviceObject,
|
||||||
__inout MdIrp Irp,
|
__inout MdIrp Irp,
|
||||||
|
@ -1457,6 +1458,7 @@ FxPkgFdo::_PnpFilteredStartDeviceCompletionRoutine(
|
||||||
|
|
||||||
_Must_inspect_result_
|
_Must_inspect_result_
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
|
STDCALL
|
||||||
FxPkgFdo::_PnpStartDeviceCompletionRoutine(
|
FxPkgFdo::_PnpStartDeviceCompletionRoutine(
|
||||||
__in MdDeviceObject DeviceObject,
|
__in MdDeviceObject DeviceObject,
|
||||||
__inout MdIrp Irp,
|
__inout MdIrp Irp,
|
||||||
|
|
|
@ -2402,6 +2402,7 @@ Return Value:
|
||||||
|
|
||||||
_Must_inspect_result_
|
_Must_inspect_result_
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
|
STDCALL
|
||||||
FxIoTarget::_RequestCompletionRoutine(
|
FxIoTarget::_RequestCompletionRoutine(
|
||||||
MdDeviceObject DeviceObject,
|
MdDeviceObject DeviceObject,
|
||||||
MdIrp Irp,
|
MdIrp Irp,
|
||||||
|
|
|
@ -29,6 +29,7 @@ extern "C" {
|
||||||
|
|
||||||
_Must_inspect_result_
|
_Must_inspect_result_
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
|
STDCALL
|
||||||
FxIoTargetRemote::_PlugPlayNotification(
|
FxIoTargetRemote::_PlugPlayNotification(
|
||||||
__in PVOID NotificationStructure,
|
__in PVOID NotificationStructure,
|
||||||
__inout_opt PVOID Context
|
__inout_opt PVOID Context
|
||||||
|
|
Loading…
Reference in a new issue