[NTOS][NTDLL][NDK] Nt/ZwCreatePagingFile: Fix parameter names + use SAL; fix NTDLL spec file.

This commit is contained in:
Hermès Bélusca-Maïto 2022-11-01 22:07:36 +01:00
parent ab5fdac922
commit 4ac263c93a
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0
3 changed files with 13 additions and 11 deletions

View file

@ -106,8 +106,8 @@ NTSTATUS
NTAPI
NtCreatePagingFile(
_In_ PUNICODE_STRING FileName,
_In_ PLARGE_INTEGER InitialSize,
_In_ PLARGE_INTEGER MaxiumSize,
_In_ PLARGE_INTEGER MinimumSize,
_In_ PLARGE_INTEGER MaximumSize,
_In_ ULONG Reserved
);
@ -346,8 +346,8 @@ NTSTATUS
NTAPI
ZwCreatePagingFile(
_In_ PUNICODE_STRING FileName,
_In_ PLARGE_INTEGER InitialSize,
_In_ PLARGE_INTEGER MaxiumSize,
_In_ PLARGE_INTEGER MinimumSize,
_In_ PLARGE_INTEGER MaximumSize,
_In_ ULONG Reserved
);