]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Network/Udp4Dxe/Udp4Driver.h
Update to support to produce Component Name and & Component Name 2 protocol based...
[mirror_edk2.git] / MdeModulePkg / Universal / Network / Udp4Dxe / Udp4Driver.h
1 /** @file
2
3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 Module Name:
13
14 Udp4Driver.h
15
16 Abstract:
17
18
19 **/
20
21 #ifndef _UDP4_DRIVER_H_
22 #define _UDP4_DRIVER_H_
23
24 #include <PiDxe.h>
25 #include <Library/BaseLib.h>
26 #include <Library/NetLib.h>
27 #include <Protocol/DriverBinding.h>
28 #include <Protocol/ServiceBinding.h>
29
30 EFI_STATUS
31 EFIAPI
32 Udp4DriverBindingSupported (
33 IN EFI_DRIVER_BINDING_PROTOCOL *This,
34 IN EFI_HANDLE ControllerHandle,
35 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath OPTIONAL
36 );
37
38 EFI_STATUS
39 EFIAPI
40 Udp4DriverBindingStart (
41 IN EFI_DRIVER_BINDING_PROTOCOL *This,
42 IN EFI_HANDLE ControllerHandle,
43 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath OPTIONAL
44 );
45
46 EFI_STATUS
47 EFIAPI
48 Udp4DriverBindingStop (
49 IN EFI_DRIVER_BINDING_PROTOCOL *This,
50 IN EFI_HANDLE ControllerHandle,
51 IN UINTN NumberOfChildren,
52 IN EFI_HANDLE *ChildHandleBuffer
53 );
54
55 EFI_STATUS
56 EFIAPI
57 Udp4ServiceBindingCreateChild (
58 IN EFI_SERVICE_BINDING_PROTOCOL *This,
59 IN EFI_HANDLE *ChildHandle
60 );
61
62 EFI_STATUS
63 EFIAPI
64 Udp4ServiceBindingDestroyChild (
65 IN EFI_SERVICE_BINDING_PROTOCOL *This,
66 IN EFI_HANDLE ChildHandle
67 );
68
69 #endif
70