]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/Network/UefiPxeBcDxe/PxeBcSupport.h
added newline after brief summary
[mirror_edk2.git] / MdeModulePkg / Universal / Network / UefiPxeBcDxe / PxeBcSupport.h
CommitLineData
30368135 1/** @file\r
2\r
3Copyright (c) 2007 - 2008, Intel Corporation \r
4All rights reserved. This program and the accompanying materials\r
5are licensed and made available under the terms and conditions of the BSD License\r
6which accompanies this distribution. The full text of the license may be found at\r
7http://opensource.org/licenses/bsd-license.php\r
8\r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
11\r
12Module Name:\r
13\r
14 PxeBcSupport.h\r
15\r
16Abstract:\r
17\r
18 Support routines for PxeBc\r
19\r
20\r
21**/\r
22\r
23#ifndef __EFI_PXEBC_SUPPORT_H__\r
24#define __EFI_PXEBC_SUPPORT_H__\r
25\r
26EFI_STATUS\r
27GetSmbiosSystemGuidAndSerialNumber (\r
28 IN EFI_GUID *SystemGuid,\r
29 OUT CHAR8 **SystemSerialNumber\r
30 );\r
31\r
32\r
33/**\r
34 GC_NOTO: Add function description\r
35\r
36 @param Event GC_NOTO: add argument description\r
37 @param Context GC_NOTO: add argument description\r
38\r
39 @return GC_NOTO: add return values\r
40\r
41**/\r
42VOID\r
43PxeBcCommonNotify (\r
44 IN EFI_EVENT Event,\r
45 IN VOID *Context\r
46 )\r
47;\r
48\r
49EFI_STATUS\r
50PxeBcConfigureUdpWriteInstance (\r
51 IN EFI_UDP4_PROTOCOL *Udp4,\r
52 IN EFI_IPv4_ADDRESS *StationIp,\r
53 IN EFI_IPv4_ADDRESS *SubnetMask,\r
54 IN EFI_IPv4_ADDRESS *Gateway,\r
55 IN OUT UINT16 *SrcPort\r
56 );\r
57VOID\r
58CvtNum (\r
59 IN UINTN Number,\r
60 IN UINT8 *Buffer,\r
61 IN INTN Length\r
62 );\r
63\r
64\r
65/**\r
66 GC_NOTO: Add function description\r
67\r
68 @param Number GC_NOTO: add argument description\r
69 @param BufferPtr GC_NOTO: add argument description\r
70\r
71 @return GC_NOTO: add return values\r
72\r
73**/\r
74UINTN\r
75UtoA10 (\r
76 UINTN Number,\r
77 CHAR8 *BufferPtr\r
78 )\r
79;\r
80\r
81\r
82/**\r
83 GC_NOTO: Add function description\r
84\r
85 @param BufferPtr GC_NOTO: add argument description\r
86\r
87 @return GC_NOTO: add return values\r
88\r
89**/\r
90UINT64\r
91AtoU64 (\r
92 UINT8 *BufferPtr\r
93 )\r
94;\r
95\r
96\r
97#endif\r
98\r