NCI interface auditing, sysfuncs.lst.

- Fixed NtCompressKey() and NtQuerySystemEnvironmentValueEx() prototypes (they were incorrectly declared/defined, but had a correct number of params in sysfuncs.lst)
- Fixed incorrect number of parameters specified in sysfuncs.lst for NtLoadKeyEx(), NtQueryOpenSubKeysEx(), NtTranslateFilePath()

sysfuncs.lst now perfectly matches all functions definitions.

svn path=/trunk/; revision=25029
This commit is contained in:
Aleksey Bragin
2006-12-03 11:13:05 +00:00
parent 3c9294fcf4
commit 087400a522
6 changed files with 14 additions and 10 deletions
+1 -2
View File
@@ -37,8 +37,7 @@ NtCompactKeys(
NTSTATUS
NTAPI
NtCompressKey(
IN HANDLE Key,
IN ULONG Mode
IN HANDLE Key
);
NTSYSCALLAPI
+4 -1
View File
@@ -368,7 +368,10 @@ NTSTATUS
NTAPI
NtQuerySystemEnvironmentValueEx(
IN PUNICODE_STRING VariableName,
IN LPGUID VendorGuid
IN LPGUID VendorGuid,
IN PVOID Value,
IN OUT PULONG ReturnLength,
IN OUT PULONG Attributes
);
NTSYSCALLAPI