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