Changeset 99404 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/NetworkPkg/ArpDxe/ArpDriver.h
- Timestamp:
- Apr 14, 2023 3:17:44 PM (22 months ago)
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/FirmwareNew
-
Property svn:mergeinfo
changed from (toggle deleted branches)
to (toggle deleted branches)/vendor/edk2/current 103735-103757,103769-103776,129194-145445 /vendor/edk2/current 103735-103757,103769-103776,129194-156846
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/NetworkPkg/ArpDxe/ArpDriver.h
r85718 r99404 9 9 #ifndef _ARP_DRIVER_H_ 10 10 #define _ARP_DRIVER_H_ 11 12 11 13 12 #include <Uefi.h> … … 22 21 #include <Library/UefiLib.h> 23 22 24 25 23 // 26 24 // Global variables 27 25 // 28 extern EFI_DRIVER_BINDING_PROTOCOL 29 extern EFI_COMPONENT_NAME_PROTOCOL 30 extern EFI_COMPONENT_NAME2_PROTOCOL 26 extern EFI_DRIVER_BINDING_PROTOCOL gArpDriverBinding; 27 extern EFI_COMPONENT_NAME_PROTOCOL gArpComponentName; 28 extern EFI_COMPONENT_NAME2_PROTOCOL gArpComponentName2; 31 29 32 30 // 33 31 // Function prototypes for the Driver Binding Protocol 34 32 // 33 35 34 /** 36 35 Tests to see if this driver supports a given controller. … … 200 199 ); 201 200 202 203 201 // 204 202 // EFI Component Name Functions 205 203 // 204 206 205 /** 207 206 Retrieves a Unicode string that is the user readable name of the driver. … … 251 250 ); 252 251 253 254 252 /** 255 253 Retrieves a Unicode string that is the user readable name of the controller … … 323 321 EFIAPI 324 322 ArpComponentNameGetControllerName ( 325 IN EFI_COMPONENT_NAME_PROTOCOL *This, 326 IN EFI_HANDLE ControllerHandle, 327 IN EFI_HANDLE ChildHandle OPTIONAL, 328 IN CHAR8 *Language, 329 OUT CHAR16 **ControllerName 330 ); 331 323 IN EFI_COMPONENT_NAME_PROTOCOL *This, 324 IN EFI_HANDLE ControllerHandle, 325 IN EFI_HANDLE ChildHandle OPTIONAL, 326 IN CHAR8 *Language, 327 OUT CHAR16 **ControllerName 328 ); 332 329 333 330 #endif 334
Note:
See TracChangeset
for help on using the changeset viewer.