Add compiler hint of "GLOBAL_REMOVE_IF_UNREFERENCED" to prevent component name structures linked into final image if PcdComponentNameDisabled or PcdComponentName2Disabled is set to TRUE.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4057 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qhuang8
2007-10-09 07:08:08 +00:00
parent 36873a6195
commit 1307dcd745
43 changed files with 182 additions and 182 deletions

View File

@ -16,7 +16,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gIsaBusComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gIsaBusComponentName = {
IsaBusComponentNameGetDriverName, IsaBusComponentNameGetDriverName,
IsaBusComponentNameGetControllerName, IsaBusComponentNameGetControllerName,
"eng" "eng"
@ -25,7 +25,7 @@ EFI_COMPONENT_NAME_PROTOCOL gIsaBusComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gIsaBusComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gIsaBusComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) IsaBusComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) IsaBusComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) IsaBusComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) IsaBusComponentNameGetControllerName,
"en" "en"

View File

@ -17,7 +17,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gIsaFloppyComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gIsaFloppyComponentName = {
IsaFloppyComponentNameGetDriverName, IsaFloppyComponentNameGetDriverName,
IsaFloppyComponentNameGetControllerName, IsaFloppyComponentNameGetControllerName,
"eng" "eng"
@ -26,7 +26,7 @@ EFI_COMPONENT_NAME_PROTOCOL gIsaFloppyComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gIsaFloppyComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gIsaFloppyComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) IsaFloppyComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) IsaFloppyComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) IsaFloppyComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) IsaFloppyComponentNameGetControllerName,
"en" "en"

View File

@ -17,7 +17,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gIsaSerialComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gIsaSerialComponentName = {
IsaSerialComponentNameGetDriverName, IsaSerialComponentNameGetDriverName,
IsaSerialComponentNameGetControllerName, IsaSerialComponentNameGetControllerName,
"eng" "eng"
@ -26,7 +26,7 @@ EFI_COMPONENT_NAME_PROTOCOL gIsaSerialComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gIsaSerialComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gIsaSerialComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) IsaSerialComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) IsaSerialComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) IsaSerialComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) IsaSerialComponentNameGetControllerName,
"en" "en"

View File

@ -146,7 +146,7 @@ Ps2KeyboardComponentNameGetControllerName (
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gPs2KeyboardComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gPs2KeyboardComponentName = {
Ps2KeyboardComponentNameGetDriverName, Ps2KeyboardComponentNameGetDriverName,
Ps2KeyboardComponentNameGetControllerName, Ps2KeyboardComponentNameGetControllerName,
"eng" "eng"
@ -155,7 +155,7 @@ EFI_COMPONENT_NAME_PROTOCOL gPs2KeyboardComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gPs2KeyboardComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gPs2KeyboardComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) Ps2KeyboardComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) Ps2KeyboardComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) Ps2KeyboardComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) Ps2KeyboardComponentNameGetControllerName,
"en" "en"

View File

@ -16,7 +16,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gPs2MouseComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gPs2MouseComponentName = {
Ps2MouseComponentNameGetDriverName, Ps2MouseComponentNameGetDriverName,
Ps2MouseComponentNameGetControllerName, Ps2MouseComponentNameGetControllerName,
"eng" "eng"
@ -25,7 +25,7 @@ EFI_COMPONENT_NAME_PROTOCOL gPs2MouseComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gPs2MouseComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gPs2MouseComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) Ps2MouseComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) Ps2MouseComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) Ps2MouseComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) Ps2MouseComponentNameGetControllerName,
"en" "en"

View File

@ -15,7 +15,7 @@
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gIDEBusComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gIDEBusComponentName = {
IDEBusComponentNameGetDriverName, IDEBusComponentNameGetDriverName,
IDEBusComponentNameGetControllerName, IDEBusComponentNameGetControllerName,
"eng" "eng"
@ -24,7 +24,7 @@ EFI_COMPONENT_NAME_PROTOCOL gIDEBusComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gIDEBusComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gIDEBusComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) IDEBusComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) IDEBusComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) IDEBusComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) IDEBusComponentNameGetControllerName,
"en" "en"

View File

@ -16,7 +16,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gPciBusComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gPciBusComponentName = {
PciBusComponentNameGetDriverName, PciBusComponentNameGetDriverName,
PciBusComponentNameGetControllerName, PciBusComponentNameGetControllerName,
"eng" "eng"
@ -25,7 +25,7 @@ EFI_COMPONENT_NAME_PROTOCOL gPciBusComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gPciBusComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gPciBusComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) PciBusComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) PciBusComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) PciBusComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) PciBusComponentNameGetControllerName,
"en" "en"

View File

@ -146,7 +146,7 @@ PciVgaMiniPortComponentNameGetControllerName (
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gPciVgaMiniPortComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gPciVgaMiniPortComponentName = {
PciVgaMiniPortComponentNameGetDriverName, PciVgaMiniPortComponentNameGetDriverName,
PciVgaMiniPortComponentNameGetControllerName, PciVgaMiniPortComponentNameGetControllerName,
"eng" "eng"
@ -155,7 +155,7 @@ EFI_COMPONENT_NAME_PROTOCOL gPciVgaMiniPortComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gPciVgaMiniPortComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gPciVgaMiniPortComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) PciVgaMiniPortComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) PciVgaMiniPortComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) PciVgaMiniPortComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) PciVgaMiniPortComponentNameGetControllerName,
"en" "en"

View File

@ -16,7 +16,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gVgaClassComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gVgaClassComponentName = {
VgaClassComponentNameGetDriverName, VgaClassComponentNameGetDriverName,
VgaClassComponentNameGetControllerName, VgaClassComponentNameGetControllerName,
"eng" "eng"
@ -25,7 +25,7 @@ EFI_COMPONENT_NAME_PROTOCOL gVgaClassComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gVgaClassComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gVgaClassComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) VgaClassComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) VgaClassComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) VgaClassComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) VgaClassComponentNameGetControllerName,
"en" "en"

View File

@ -16,7 +16,7 @@
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gAtapiScsiPassThruComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gAtapiScsiPassThruComponentName = {
AtapiScsiPassThruComponentNameGetDriverName, AtapiScsiPassThruComponentNameGetDriverName,
AtapiScsiPassThruComponentNameGetControllerName, AtapiScsiPassThruComponentNameGetControllerName,
"eng" "eng"
@ -25,7 +25,7 @@ EFI_COMPONENT_NAME_PROTOCOL gAtapiScsiPassThruComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gAtapiScsiPassThruComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gAtapiScsiPassThruComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) AtapiScsiPassThruComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) AtapiScsiPassThruComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) AtapiScsiPassThruComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) AtapiScsiPassThruComponentNameGetControllerName,
"en" "en"

View File

@ -155,7 +155,7 @@ EhciComponentNameGetControllerName (
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gEhciComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gEhciComponentName = {
EhciComponentNameGetDriverName, EhciComponentNameGetDriverName,
EhciComponentNameGetControllerName, EhciComponentNameGetControllerName,
"eng" "eng"
@ -164,7 +164,7 @@ EFI_COMPONENT_NAME_PROTOCOL gEhciComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gEhciComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gEhciComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) EhciComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) EhciComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) EhciComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) EhciComponentNameGetControllerName,
"en" "en"

View File

@ -153,7 +153,7 @@ UhciComponentNameGetControllerName (
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gUhciComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gUhciComponentName = {
UhciComponentNameGetDriverName, UhciComponentNameGetDriverName,
UhciComponentNameGetControllerName, UhciComponentNameGetControllerName,
"eng" "eng"
@ -162,7 +162,7 @@ EFI_COMPONENT_NAME_PROTOCOL gUhciComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gUhciComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gUhciComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) UhciComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) UhciComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) UhciComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) UhciComponentNameGetControllerName,
"en" "en"

View File

@ -42,7 +42,7 @@ Abstract:
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gScsiBusComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gScsiBusComponentName = {
ScsiBusComponentNameGetDriverName, ScsiBusComponentNameGetDriverName,
ScsiBusComponentNameGetControllerName, ScsiBusComponentNameGetControllerName,
"eng" "eng"
@ -51,7 +51,7 @@ EFI_COMPONENT_NAME_PROTOCOL gScsiBusComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gScsiBusComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gScsiBusComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) ScsiBusComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) ScsiBusComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) ScsiBusComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) ScsiBusComponentNameGetControllerName,
"en" "en"

View File

@ -38,7 +38,7 @@ Abstract:
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gScsiDiskComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gScsiDiskComponentName = {
ScsiDiskComponentNameGetDriverName, ScsiDiskComponentNameGetDriverName,
ScsiDiskComponentNameGetControllerName, ScsiDiskComponentNameGetControllerName,
"eng" "eng"
@ -47,7 +47,7 @@ EFI_COMPONENT_NAME_PROTOCOL gScsiDiskComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gScsiDiskComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gScsiDiskComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) ScsiDiskComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) ScsiDiskComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) ScsiDiskComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) ScsiDiskComponentNameGetControllerName,
"en" "en"

View File

@ -158,7 +158,7 @@ UsbBusComponentNameGetControllerName (
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL mUsbBusComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL mUsbBusComponentName = {
UsbBusComponentNameGetDriverName, UsbBusComponentNameGetDriverName,
UsbBusComponentNameGetControllerName, UsbBusComponentNameGetControllerName,
"eng" "eng"
@ -167,7 +167,7 @@ EFI_COMPONENT_NAME_PROTOCOL mUsbBusComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL mUsbBusComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL mUsbBusComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) UsbBusComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) UsbBusComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) UsbBusComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) UsbBusComponentNameGetControllerName,
"en" "en"

View File

@ -154,7 +154,7 @@ UsbKeyboardComponentNameGetControllerName (
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gUsbKeyboardComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gUsbKeyboardComponentName = {
UsbKeyboardComponentNameGetDriverName, UsbKeyboardComponentNameGetDriverName,
UsbKeyboardComponentNameGetControllerName, UsbKeyboardComponentNameGetControllerName,
"eng" "eng"
@ -163,7 +163,7 @@ EFI_COMPONENT_NAME_PROTOCOL gUsbKeyboardComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gUsbKeyboardComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gUsbKeyboardComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) UsbKeyboardComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) UsbKeyboardComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) UsbKeyboardComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) UsbKeyboardComponentNameGetControllerName,
"en" "en"

View File

@ -156,7 +156,7 @@ UsbMassStorageGetControllerName (
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gUsbMassStorageComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gUsbMassStorageComponentName = {
UsbMassStorageGetDriverName, UsbMassStorageGetDriverName,
UsbMassStorageGetControllerName, UsbMassStorageGetControllerName,
"eng" "eng"
@ -165,7 +165,7 @@ EFI_COMPONENT_NAME_PROTOCOL gUsbMassStorageComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gUsbMassStorageComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gUsbMassStorageComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) UsbMassStorageGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) UsbMassStorageGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) UsbMassStorageGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) UsbMassStorageGetControllerName,
"en" "en"

View File

@ -154,7 +154,7 @@ UsbMouseComponentNameGetControllerName (
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gUsbMouseComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gUsbMouseComponentName = {
UsbMouseComponentNameGetDriverName, UsbMouseComponentNameGetDriverName,
UsbMouseComponentNameGetControllerName, UsbMouseComponentNameGetControllerName,
"eng" "eng"
@ -163,7 +163,7 @@ EFI_COMPONENT_NAME_PROTOCOL gUsbMouseComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gUsbMouseComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gUsbMouseComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) UsbMouseComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) UsbMouseComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) UsbMouseComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) UsbMouseComponentNameGetControllerName,
"en" "en"

View File

@ -27,7 +27,7 @@ Abstract:
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gConPlatformComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gConPlatformComponentName = {
ConPlatformComponentNameGetDriverName, ConPlatformComponentNameGetDriverName,
ConPlatformComponentNameGetControllerName, ConPlatformComponentNameGetControllerName,
"eng" "eng"
@ -36,7 +36,7 @@ EFI_COMPONENT_NAME_PROTOCOL gConPlatformComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gConPlatformComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gConPlatformComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) ConPlatformComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) ConPlatformComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) ConPlatformComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) ConPlatformComponentNameGetControllerName,
"en" "en"

View File

@ -22,7 +22,7 @@ Abstract:
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gConSplitterConInComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gConSplitterConInComponentName = {
ConSplitterComponentNameGetDriverName, ConSplitterComponentNameGetDriverName,
ConSplitterConInComponentNameGetControllerName, ConSplitterConInComponentNameGetControllerName,
"eng" "eng"
@ -31,7 +31,7 @@ EFI_COMPONENT_NAME_PROTOCOL gConSplitterConInComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gConSplitterConInComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gConSplitterConInComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) ConSplitterComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) ConSplitterComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) ConSplitterConInComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) ConSplitterConInComponentNameGetControllerName,
"en" "en"
@ -41,7 +41,7 @@ EFI_COMPONENT_NAME2_PROTOCOL gConSplitterConInComponentName2 = {
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gConSplitterSimplePointerComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gConSplitterSimplePointerComponentName = {
ConSplitterComponentNameGetDriverName, ConSplitterComponentNameGetDriverName,
ConSplitterSimplePointerComponentNameGetControllerName, ConSplitterSimplePointerComponentNameGetControllerName,
"eng" "eng"
@ -50,7 +50,7 @@ EFI_COMPONENT_NAME_PROTOCOL gConSplitterSimplePointerComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gConSplitterSimplePointerComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gConSplitterSimplePointerComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) ConSplitterComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) ConSplitterComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) ConSplitterSimplePointerComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) ConSplitterSimplePointerComponentNameGetControllerName,
"en" "en"
@ -60,7 +60,7 @@ EFI_COMPONENT_NAME2_PROTOCOL gConSplitterSimplePointerComponentName2 = {
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gConSplitterConOutComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gConSplitterConOutComponentName = {
ConSplitterComponentNameGetDriverName, ConSplitterComponentNameGetDriverName,
ConSplitterConOutComponentNameGetControllerName, ConSplitterConOutComponentNameGetControllerName,
"eng" "eng"
@ -69,7 +69,7 @@ EFI_COMPONENT_NAME_PROTOCOL gConSplitterConOutComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gConSplitterConOutComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gConSplitterConOutComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) ConSplitterComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) ConSplitterComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) ConSplitterConOutComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) ConSplitterConOutComponentNameGetControllerName,
"en" "en"
@ -79,7 +79,7 @@ EFI_COMPONENT_NAME2_PROTOCOL gConSplitterConOutComponentName2 = {
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gConSplitterStdErrComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gConSplitterStdErrComponentName = {
ConSplitterComponentNameGetDriverName, ConSplitterComponentNameGetDriverName,
ConSplitterStdErrComponentNameGetControllerName, ConSplitterStdErrComponentNameGetControllerName,
"eng" "eng"
@ -88,7 +88,7 @@ EFI_COMPONENT_NAME_PROTOCOL gConSplitterStdErrComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gConSplitterStdErrComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gConSplitterStdErrComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) ConSplitterComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) ConSplitterComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) ConSplitterStdErrComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) ConSplitterStdErrComponentNameGetControllerName,
"en" "en"

View File

@ -22,7 +22,7 @@ Abstract:
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gGraphicsConsoleComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gGraphicsConsoleComponentName = {
GraphicsConsoleComponentNameGetDriverName, GraphicsConsoleComponentNameGetDriverName,
GraphicsConsoleComponentNameGetControllerName, GraphicsConsoleComponentNameGetControllerName,
"eng" "eng"
@ -31,7 +31,7 @@ EFI_COMPONENT_NAME_PROTOCOL gGraphicsConsoleComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gGraphicsConsoleComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gGraphicsConsoleComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) GraphicsConsoleComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) GraphicsConsoleComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) GraphicsConsoleComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) GraphicsConsoleComponentNameGetControllerName,
"en" "en"

View File

@ -22,7 +22,7 @@ Abstract:
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gTerminalComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gTerminalComponentName = {
TerminalComponentNameGetDriverName, TerminalComponentNameGetDriverName,
TerminalComponentNameGetControllerName, TerminalComponentNameGetControllerName,
"eng" "eng"
@ -31,7 +31,7 @@ EFI_COMPONENT_NAME_PROTOCOL gTerminalComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gTerminalComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gTerminalComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) TerminalComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) TerminalComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) TerminalComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) TerminalComponentNameGetControllerName,
"en" "en"

View File

@ -22,7 +22,7 @@ Abstract:
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gDebugPortComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gDebugPortComponentName = {
DebugPortComponentNameGetDriverName, DebugPortComponentNameGetDriverName,
DebugPortComponentNameGetControllerName, DebugPortComponentNameGetControllerName,
"eng" "eng"
@ -31,7 +31,7 @@ EFI_COMPONENT_NAME_PROTOCOL gDebugPortComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gDebugPortComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gDebugPortComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) DebugPortComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) DebugPortComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) DebugPortComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) DebugPortComponentNameGetControllerName,
"en" "en"

View File

@ -17,7 +17,7 @@
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gDiskIoComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gDiskIoComponentName = {
DiskIoComponentNameGetDriverName, DiskIoComponentNameGetDriverName,
DiskIoComponentNameGetControllerName, DiskIoComponentNameGetControllerName,
"eng" "eng"
@ -26,7 +26,7 @@ EFI_COMPONENT_NAME_PROTOCOL gDiskIoComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gDiskIoComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gDiskIoComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) DiskIoComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) DiskIoComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) DiskIoComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) DiskIoComponentNameGetControllerName,
"en" "en"

View File

@ -17,7 +17,7 @@
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gPartitionComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gPartitionComponentName = {
PartitionComponentNameGetDriverName, PartitionComponentNameGetDriverName,
PartitionComponentNameGetControllerName, PartitionComponentNameGetControllerName,
"eng" "eng"
@ -26,7 +26,7 @@ EFI_COMPONENT_NAME_PROTOCOL gPartitionComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gPartitionComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gPartitionComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) PartitionComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) PartitionComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) PartitionComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) PartitionComponentNameGetControllerName,
"en" "en"

View File

@ -153,7 +153,7 @@ ArpComponentNameGetControllerName (
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gArpComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gArpComponentName = {
ArpComponentNameGetDriverName, ArpComponentNameGetDriverName,
ArpComponentNameGetControllerName, ArpComponentNameGetControllerName,
"eng" "eng"
@ -162,7 +162,7 @@ EFI_COMPONENT_NAME_PROTOCOL gArpComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gArpComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gArpComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) ArpComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) ArpComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) ArpComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) ArpComponentNameGetControllerName,
"en" "en"

View File

@ -154,7 +154,7 @@ DhcpComponentNameGetControllerName (
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gDhcp4ComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gDhcp4ComponentName = {
DhcpComponentNameGetDriverName, DhcpComponentNameGetDriverName,
DhcpComponentNameGetControllerName, DhcpComponentNameGetControllerName,
"eng" "eng"
@ -163,7 +163,7 @@ EFI_COMPONENT_NAME_PROTOCOL gDhcp4ComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gDhcp4ComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gDhcp4ComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) DhcpComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) DhcpComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) DhcpComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) DhcpComponentNameGetControllerName,
"en" "en"

View File

@ -154,7 +154,7 @@ Ip4ConfigComponentNameGetControllerName (
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gIp4ConfigComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gIp4ConfigComponentName = {
Ip4ConfigComponentNameGetDriverName, Ip4ConfigComponentNameGetDriverName,
Ip4ConfigComponentNameGetControllerName, Ip4ConfigComponentNameGetControllerName,
"eng" "eng"
@ -163,7 +163,7 @@ EFI_COMPONENT_NAME_PROTOCOL gIp4ConfigComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gIp4ConfigComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gIp4ConfigComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) Ip4ConfigComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) Ip4ConfigComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) Ip4ConfigComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) Ip4ConfigComponentNameGetControllerName,
"en" "en"

View File

@ -154,7 +154,7 @@ Ip4ComponentNameGetControllerName (
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gIp4ComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gIp4ComponentName = {
Ip4ComponentNameGetDriverName, Ip4ComponentNameGetDriverName,
Ip4ComponentNameGetControllerName, Ip4ComponentNameGetControllerName,
"eng" "eng"
@ -163,7 +163,7 @@ EFI_COMPONENT_NAME_PROTOCOL gIp4ComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gIp4ComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gIp4ComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) Ip4ComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) Ip4ComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) Ip4ComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) Ip4ComponentNameGetControllerName,
"en" "en"

View File

@ -154,7 +154,7 @@ MnpComponentNameGetControllerName (
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gMnpComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gMnpComponentName = {
MnpComponentNameGetDriverName, MnpComponentNameGetDriverName,
MnpComponentNameGetControllerName, MnpComponentNameGetControllerName,
"eng" "eng"
@ -163,7 +163,7 @@ EFI_COMPONENT_NAME_PROTOCOL gMnpComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gMnpComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gMnpComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) MnpComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) MnpComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) MnpComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) MnpComponentNameGetControllerName,
"en" "en"

View File

@ -153,7 +153,7 @@ Mtftp4ComponentNameGetControllerName (
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gMtftp4ComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gMtftp4ComponentName = {
Mtftp4ComponentNameGetDriverName, Mtftp4ComponentNameGetDriverName,
Mtftp4ComponentNameGetControllerName, Mtftp4ComponentNameGetControllerName,
"eng" "eng"
@ -162,7 +162,7 @@ EFI_COMPONENT_NAME_PROTOCOL gMtftp4ComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gMtftp4ComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gMtftp4ComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) Mtftp4ComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) Mtftp4ComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) Mtftp4ComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) Mtftp4ComponentNameGetControllerName,
"en" "en"

View File

@ -152,7 +152,7 @@ PxeBcComponentNameGetControllerName (
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gPxeBcComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gPxeBcComponentName = {
PxeBcComponentNameGetDriverName, PxeBcComponentNameGetDriverName,
PxeBcComponentNameGetControllerName, PxeBcComponentNameGetControllerName,
"eng" "eng"
@ -161,7 +161,7 @@ EFI_COMPONENT_NAME_PROTOCOL gPxeBcComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gPxeBcComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gPxeBcComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) PxeBcComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) PxeBcComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) PxeBcComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) PxeBcComponentNameGetControllerName,
"en" "en"

View File

@ -157,7 +157,7 @@ PxeDhcp4ComponentNameGetControllerName (
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gPxeDhcp4ComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gPxeDhcp4ComponentName = {
PxeDhcp4ComponentNameGetDriverName, PxeDhcp4ComponentNameGetDriverName,
PxeDhcp4ComponentNameGetControllerName, PxeDhcp4ComponentNameGetControllerName,
"eng" "eng"
@ -166,7 +166,7 @@ EFI_COMPONENT_NAME_PROTOCOL gPxeDhcp4ComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gPxeDhcp4ComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gPxeDhcp4ComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) PxeDhcp4ComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) PxeDhcp4ComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) PxeDhcp4ComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) PxeDhcp4ComponentNameGetControllerName,
"en" "en"

View File

@ -155,7 +155,7 @@ SimpleNetworkComponentNameGetControllerName (
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gSimpleNetworkComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gSimpleNetworkComponentName = {
SimpleNetworkComponentNameGetDriverName, SimpleNetworkComponentNameGetDriverName,
SimpleNetworkComponentNameGetControllerName, SimpleNetworkComponentNameGetControllerName,
"eng" "eng"
@ -164,7 +164,7 @@ EFI_COMPONENT_NAME_PROTOCOL gSimpleNetworkComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gSimpleNetworkComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gSimpleNetworkComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) SimpleNetworkComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) SimpleNetworkComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) SimpleNetworkComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) SimpleNetworkComponentNameGetControllerName,
"en" "en"

View File

@ -153,7 +153,7 @@ TcpComponentNameGetControllerName (
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gTcp4ComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gTcp4ComponentName = {
TcpComponentNameGetDriverName, TcpComponentNameGetDriverName,
TcpComponentNameGetControllerName, TcpComponentNameGetControllerName,
"eng" "eng"
@ -162,7 +162,7 @@ EFI_COMPONENT_NAME_PROTOCOL gTcp4ComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gTcp4ComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gTcp4ComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) TcpComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) TcpComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) TcpComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) TcpComponentNameGetControllerName,
"en" "en"

View File

@ -154,7 +154,7 @@ UdpComponentNameGetControllerName (
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gUdp4ComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gUdp4ComponentName = {
UdpComponentNameGetDriverName, UdpComponentNameGetDriverName,
UdpComponentNameGetControllerName, UdpComponentNameGetControllerName,
"eng" "eng"
@ -163,7 +163,7 @@ EFI_COMPONENT_NAME_PROTOCOL gUdp4ComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gUdp4ComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gUdp4ComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) UdpComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) UdpComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) UdpComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) UdpComponentNameGetControllerName,
"en" "en"

View File

@ -153,7 +153,7 @@ SnpNt32DriverComponentNameGetControllerName (
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gSnpNt32DriverComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gSnpNt32DriverComponentName = {
SnpNt32DriverComponentNameGetDriverName, SnpNt32DriverComponentNameGetDriverName,
SnpNt32DriverComponentNameGetControllerName, SnpNt32DriverComponentNameGetControllerName,
"eng" "eng"
@ -162,7 +162,7 @@ EFI_COMPONENT_NAME_PROTOCOL gSnpNt32DriverComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gSnpNt32DriverComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gSnpNt32DriverComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) SnpNt32DriverComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) SnpNt32DriverComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) SnpNt32DriverComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) SnpNt32DriverComponentNameGetControllerName,
"en" "en"

View File

@ -156,7 +156,7 @@ WinNtBlockIoComponentNameGetControllerName (
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gWinNtBlockIoComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gWinNtBlockIoComponentName = {
WinNtBlockIoComponentNameGetDriverName, WinNtBlockIoComponentNameGetDriverName,
WinNtBlockIoComponentNameGetControllerName, WinNtBlockIoComponentNameGetControllerName,
"eng" "eng"
@ -165,7 +165,7 @@ EFI_COMPONENT_NAME_PROTOCOL gWinNtBlockIoComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gWinNtBlockIoComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gWinNtBlockIoComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) WinNtBlockIoComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) WinNtBlockIoComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) WinNtBlockIoComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) WinNtBlockIoComponentNameGetControllerName,
"en" "en"

View File

@ -167,7 +167,7 @@ WinNtBusDriverComponentNameGetControllerName (
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gWinNtBusDriverComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gWinNtBusDriverComponentName = {
WinNtBusDriverComponentNameGetDriverName, WinNtBusDriverComponentNameGetDriverName,
WinNtBusDriverComponentNameGetControllerName, WinNtBusDriverComponentNameGetControllerName,
"eng" "eng"
@ -176,7 +176,7 @@ EFI_COMPONENT_NAME_PROTOCOL gWinNtBusDriverComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gWinNtBusDriverComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gWinNtBusDriverComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) WinNtBusDriverComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) WinNtBusDriverComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) WinNtBusDriverComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) WinNtBusDriverComponentNameGetControllerName,
"en" "en"

View File

@ -175,7 +175,7 @@ WinNtConsoleComponentNameGetControllerName (
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gWinNtConsoleComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gWinNtConsoleComponentName = {
WinNtConsoleComponentNameGetDriverName, WinNtConsoleComponentNameGetDriverName,
WinNtConsoleComponentNameGetControllerName, WinNtConsoleComponentNameGetControllerName,
"eng" "eng"
@ -184,7 +184,7 @@ EFI_COMPONENT_NAME_PROTOCOL gWinNtConsoleComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gWinNtConsoleComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gWinNtConsoleComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) WinNtConsoleComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) WinNtConsoleComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) WinNtConsoleComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) WinNtConsoleComponentNameGetControllerName,
"en" "en"

View File

@ -178,7 +178,7 @@ WinNtGopComponentNameGetControllerName (
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gWinNtGopComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gWinNtGopComponentName = {
WinNtGopComponentNameGetDriverName, WinNtGopComponentNameGetDriverName,
WinNtGopComponentNameGetControllerName, WinNtGopComponentNameGetControllerName,
"eng" "eng"
@ -187,7 +187,7 @@ EFI_COMPONENT_NAME_PROTOCOL gWinNtGopComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gWinNtGopComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gWinNtGopComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) WinNtGopComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) WinNtGopComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) WinNtGopComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) WinNtGopComponentNameGetControllerName,
"en" "en"

View File

@ -152,7 +152,7 @@ WinNtSerialIoComponentNameGetControllerName (
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gWinNtSerialIoComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gWinNtSerialIoComponentName = {
WinNtSerialIoComponentNameGetDriverName, WinNtSerialIoComponentNameGetDriverName,
WinNtSerialIoComponentNameGetControllerName, WinNtSerialIoComponentNameGetControllerName,
"eng" "eng"
@ -161,7 +161,7 @@ EFI_COMPONENT_NAME_PROTOCOL gWinNtSerialIoComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gWinNtSerialIoComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gWinNtSerialIoComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) WinNtSerialIoComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) WinNtSerialIoComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) WinNtSerialIoComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) WinNtSerialIoComponentNameGetControllerName,
"en" "en"

View File

@ -177,7 +177,7 @@ WinNtSimpleFileSystemComponentNameGetControllerName (
// //
// EFI Component Name Protocol // EFI Component Name Protocol
// //
EFI_COMPONENT_NAME_PROTOCOL gWinNtSimpleFileSystemComponentName = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gWinNtSimpleFileSystemComponentName = {
WinNtSimpleFileSystemComponentNameGetDriverName, WinNtSimpleFileSystemComponentNameGetDriverName,
WinNtSimpleFileSystemComponentNameGetControllerName, WinNtSimpleFileSystemComponentNameGetControllerName,
"eng" "eng"
@ -186,7 +186,7 @@ EFI_COMPONENT_NAME_PROTOCOL gWinNtSimpleFileSystemComponentName = {
// //
// EFI Component Name 2 Protocol // EFI Component Name 2 Protocol
// //
EFI_COMPONENT_NAME2_PROTOCOL gWinNtSimpleFileSystemComponentName2 = { GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gWinNtSimpleFileSystemComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) WinNtSimpleFileSystemComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) WinNtSimpleFileSystemComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) WinNtSimpleFileSystemComponentNameGetControllerName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) WinNtSimpleFileSystemComponentNameGetControllerName,
"en" "en"