Skip to content

Commit

Permalink
Properly distinguish between PeCoffLib2 vs UefiImageLib
Browse files Browse the repository at this point in the history
  • Loading branch information
mhaeuser committed May 8, 2023
1 parent 0fb834b commit d9109c3
Showing 5 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion Include/Acidanthera/Library/OcPeCoffExtLib.h
Original file line number Diff line number Diff line change
@@ -10,7 +10,6 @@
#define OC_PE_COFF_EXT_LIB_H

#include <IndustryStandard/Apfs.h>
#include <Library/UefiImageLib.h>

/**
Verify Apple COFF legacy signature.
1 change: 0 additions & 1 deletion Library/OcApfsLib/OcApfsIo.c
Original file line number Diff line number Diff line change
@@ -18,7 +18,6 @@
#include <Library/BaseOverflowLib.h>
#include <Library/DebugLib.h>
#include <Library/MemoryAllocationLib.h>
#include <Library/UefiImageLib.h>
#include <Library/OcApfsLib.h>

STATIC
1 change: 0 additions & 1 deletion Library/OcApfsLib/OcApfsLib.inf
Original file line number Diff line number Diff line change
@@ -66,5 +66,4 @@
MemoryAllocationLib
UefiBootServicesTableLib
UefiLib
UefiImageLib
UefiRuntimeServicesTableLib
2 changes: 1 addition & 1 deletion Library/OcPeCoffExtLib/OcPeCoffExtLib.c
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
#include <Library/BaseLib.h>
#include <Library/BaseMemoryLib.h>
#include <Library/BaseOverflowLib.h>
#include <Library/UefiImageLib.h>
#include <Library/PeCoffLib2.h>
#include <Library/UefiRuntimeServicesTableLib.h>
#include <Library/UefiBootServicesTableLib.h>
#include <Library/MemoryAllocationLib.h>
2 changes: 1 addition & 1 deletion Utilities/TestPeCoff/PeCoff.c
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@
#include <Library/BaseMemoryLib.h>
#include <Library/BaseOverflowLib.h>
#include <Library/MemoryAllocationLib.h>
#include <Library/UefiImageLib.h>
#include <Library/PeCoffLib2.h>
#include <Library/DebugLib.h>
#include <Library/UefiBootServicesTableLib.h>

0 comments on commit d9109c3

Please sign in to comment.