]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Network/UefiPxeBcDxe/PxeBcSupport.h
sync alignment issue on IPF.
[mirror_edk2.git] / MdeModulePkg / Universal / Network / UefiPxeBcDxe / PxeBcSupport.h
1 /** @file
2
3 Copyright (c) 2007, 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 PxeBcSupport.h
15
16 Abstract:
17
18 Support routines for PxeBc
19
20
21 **/
22
23 #ifndef __EFI_PXEBC_SUPPORT_H__
24 #define __EFI_PXEBC_SUPPORT_H__
25
26 EFI_STATUS
27 GetSmbiosSystemGuidAndSerialNumber (
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 **/
42 VOID
43 PxeBcCommonNotify (
44 IN EFI_EVENT Event,
45 IN VOID *Context
46 )
47 ;
48
49 VOID
50 CvtNum (
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 **/
66 UINTN
67 UtoA10 (
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 **/
82 UINT64
83 AtoU64 (
84 UINT8 *BufferPtr
85 )
86 ;
87
88
89 #endif
90