diff options
author | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-02-13 00:22:19 +0000 |
---|---|---|
committer | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-02-13 00:22:19 +0000 |
commit | d1f076304d3be2f1423ba8d62062253cb0d59354 (patch) | |
tree | 846db1b4ff7acfc5cde2905f9cf707cc697835db | |
parent | 000c06d2361f435354de6d9d3496fabc6cfe5b67 (diff) | |
download | edk2-platforms-d1f076304d3be2f1423ba8d62062253cb0d59354.tar.xz |
MdeModulePkg/Core/Dxe/SectionExtraction/CoreSectionExtraction.c:
Surrounded unreferenced STATIC functions by '#if 0', '#endif' to
prevent a compiler warning:
NotifyGuidedExtraction, CreateGuidedExtractionRpnEvent
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4688 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | MdeModulePkg/Core/Dxe/SectionExtraction/CoreSectionExtraction.c | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/MdeModulePkg/Core/Dxe/SectionExtraction/CoreSectionExtraction.c b/MdeModulePkg/Core/Dxe/SectionExtraction/CoreSectionExtraction.c index fcc5565040..94eb08b5bb 100644 --- a/MdeModulePkg/Core/Dxe/SectionExtraction/CoreSectionExtraction.c +++ b/MdeModulePkg/Core/Dxe/SectionExtraction/CoreSectionExtraction.c @@ -109,6 +109,7 @@ ChildIsType ( IN EFI_GUID *SectionDefinitionGuid
);
+#if 0
STATIC
VOID
EFIAPI
@@ -116,13 +117,16 @@ NotifyGuidedExtraction ( IN EFI_EVENT Event,
IN VOID *RpnContext
);
+#endif
+#if 0
STATIC
VOID
CreateGuidedExtractionRpnEvent (
IN CORE_SECTION_STREAM_NODE *ParentStream,
IN CORE_SECTION_CHILD_NODE *ChildNode
);
+#endif
STATIC
EFI_STATUS
@@ -932,6 +936,7 @@ Returns: }
+#if 0
STATIC
VOID
CreateGuidedExtractionRpnEvent (
@@ -973,8 +978,10 @@ Returns: FALSE
);
}
-
-
+#endif
+
+
+#if 0
STATIC
VOID
EFIAPI
@@ -1053,7 +1060,8 @@ Returns: CoreCloseEvent (Event);
CoreFreePool (Context);
}
-
+#endif
+
STATIC
VOID
|