]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/TianoTools/FlashMap/Symbols.h
1d93910c8acba8278974a3539dad4070a6c5c2bf
[mirror_edk2.git] / Tools / Source / TianoTools / FlashMap / Symbols.h
1 /*++
2
3 Copyright (c) 2004 Intel Corporation. All rights reserved
4 This software and associated documentation (if any) is furnished
5 under a license and may only be used or copied in accordance
6 with the terms of the license. Except as permitted by such
7 license, no part of this software or documentation may be
8 reproduced, stored in a retrieval system, or transmitted in any
9 form or by any means without the express written consent of
10 Intel Corporation.
11
12
13 Module Name:
14
15 Symbols.h
16
17 Abstract:
18
19 Defines and prototypes for a class-like symbol table service.
20
21 --*/
22
23 #ifndef _SYMBOLS_H_
24 #define _SYMBOLS_H_
25
26 #ifdef __cplusplus
27 extern "C"
28 {
29 #endif
30
31 int
32 SymbolAdd (
33 char *Name,
34 char *Value,
35 int Mode
36 )
37 /*++
38
39 Routine Description:
40
41 GC_TODO: Add function description
42
43 Arguments:
44
45 Name - GC_TODO: add argument description
46 Value - GC_TODO: add argument description
47 Mode - GC_TODO: add argument description
48
49 Returns:
50
51 GC_TODO: add return values
52
53 --*/
54 ;
55
56 STATUS
57 SymbolsFileStringsReplace (
58 char *InFileName,
59 char *OutFileName
60 )
61 /*++
62
63 Routine Description:
64
65 GC_TODO: Add function description
66
67 Arguments:
68
69 InFileName - GC_TODO: add argument description
70 OutFileName - GC_TODO: add argument description
71
72 Returns:
73
74 GC_TODO: add return values
75
76 --*/
77 ;
78
79 void
80 SymbolsConstructor (
81 VOID
82 )
83 /*++
84
85 Routine Description:
86
87 GC_TODO: Add function description
88
89 Arguments:
90
91 None
92
93 Returns:
94
95 GC_TODO: add return values
96
97 --*/
98 ;
99
100 void
101 SymbolsDestructor (
102 VOID
103 )
104 /*++
105
106 Routine Description:
107
108 GC_TODO: Add function description
109
110 Arguments:
111
112 None
113
114 Returns:
115
116 GC_TODO: add return values
117
118 --*/
119 ;
120
121 #ifdef __cplusplus
122 }
123 #endif
124
125 #endif // #ifndef _SYMBOLS_H_