Skip to content

Commit

Permalink
linter: skip native API check for more UEFI routines
Browse files Browse the repository at this point in the history
  • Loading branch information
williballenthin committed Aug 2, 2023
1 parent b2789f0 commit a538a7b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/lint.py
Original file line number Diff line number Diff line change
Expand Up @@ -571,6 +571,8 @@ def check_features(self, ctx: Context, features: List[Feature]):
"RtlCreateUserProcess",
"NtProtectVirtualMemory",
"NtEnumerateSystemEnvironmentValuesEx",
"NtQuerySystemEnvironmentValueEx",
"NtQuerySystemEnvironmentValue",
):
# ntoskrnl.exe does not export these routines
continue
Expand All @@ -581,6 +583,7 @@ def check_features(self, ctx: Context, features: List[Feature]):
"KeStackAttachProcess",
"ObfDereferenceObject",
"KeUnstackDetachProcess",
"ExGetFirmwareEnvironmentVariable",
):
# ntdll.dll does not export these routines
continue
Expand Down

0 comments on commit a538a7b

Please sign in to comment.