mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[NTOS:IO] Reformat iorsrce.c, no functional code changes.
- Fix whitespace; add SAL annotations, doxygen documentation... - Deduplicate the array of description strings corresponding to IO_QUERY_DEVICE_DATA_FORMAT. - Unhardcode the "[3]" into 'IoQueryDeviceMaxData': the maximum number of device data queried.
This commit is contained in:
parent
509359b3ec
commit
2674e26cbb
3 changed files with 920 additions and 805 deletions
|
@ -1330,17 +1330,17 @@ IopStartRamdisk(
|
|||
// Configuration Routines
|
||||
//
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
IopFetchConfigurationInformation(OUT PWSTR * SymbolicLinkList,
|
||||
IN GUID Guid,
|
||||
IN ULONG ExpectedInterfaces,
|
||||
IN PULONG Interfaces
|
||||
IopFetchConfigurationInformation(
|
||||
_Out_ PWSTR* SymbolicLinkList,
|
||||
_In_ GUID Guid,
|
||||
_In_ ULONG ExpectedInterfaces,
|
||||
_Out_ PULONG Interfaces
|
||||
);
|
||||
|
||||
VOID
|
||||
NTAPI
|
||||
IopStoreSystemPartitionInformation(IN PUNICODE_STRING NtSystemPartitionDeviceName,
|
||||
IN PUNICODE_STRING OsLoaderPathName
|
||||
IopStoreSystemPartitionInformation(
|
||||
_In_ PUNICODE_STRING NtSystemPartitionDeviceName,
|
||||
_In_ PUNICODE_STRING OsLoaderPathName
|
||||
);
|
||||
|
||||
//
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1492,7 +1492,7 @@ IoQueryDeviceDescription(
|
|||
_In_opt_ PCONFIGURATION_TYPE PeripheralType,
|
||||
_In_opt_ PULONG PeripheralNumber,
|
||||
_In_ PIO_QUERY_DEVICE_ROUTINE CalloutRoutine,
|
||||
_Inout_opt_ PVOID Context);
|
||||
_In_opt_ PVOID Context);
|
||||
|
||||
_IRQL_requires_max_(APC_LEVEL)
|
||||
NTKERNELAPI
|
||||
|
|
Loading…
Reference in a new issue