]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/CCode/Source/FlashMap/Symbols.h
More moves for Tool Packages
[mirror_edk2.git] / Tools / CCode / Source / FlashMap / Symbols.h
1 /*++
2
3 Copyright (c) 2004-2006 Intel Corporation. All rights reserved
4 This program and the accompanying materials are licensed and made available
5 under the terms and conditions of the BSD License which accompanies this
6 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 Symbols.h
15
16 Abstract:
17
18 Defines and prototypes for a class-like symbol table service.
19
20 --*/
21
22 #ifndef _SYMBOLS_H_
23 #define _SYMBOLS_H_
24
25 #ifdef __cplusplus
26 extern "C"
27 {
28 #endif
29
30 int
31 SymbolAdd (
32 char *Name,
33 char *Value,
34 int Mode
35 )
36 /*++
37
38 Routine Description:
39
40 GC_TODO: Add function description
41
42 Arguments:
43
44 Name - GC_TODO: add argument description
45 Value - GC_TODO: add argument description
46 Mode - GC_TODO: add argument description
47
48 Returns:
49
50 GC_TODO: add return values
51
52 --*/
53 ;
54
55 STATUS
56 SymbolsFileStringsReplace (
57 char *InFileName,
58 char *OutFileName
59 )
60 /*++
61
62 Routine Description:
63
64 GC_TODO: Add function description
65
66 Arguments:
67
68 InFileName - GC_TODO: add argument description
69 OutFileName - GC_TODO: add argument description
70
71 Returns:
72
73 GC_TODO: add return values
74
75 --*/
76 ;
77
78 void
79 SymbolsConstructor (
80 VOID
81 )
82 /*++
83
84 Routine Description:
85
86 GC_TODO: Add function description
87
88 Arguments:
89
90 None
91
92 Returns:
93
94 GC_TODO: add return values
95
96 --*/
97 ;
98
99 void
100 SymbolsDestructor (
101 VOID
102 )
103 /*++
104
105 Routine Description:
106
107 GC_TODO: Add function description
108
109 Arguments:
110
111 None
112
113 Returns:
114
115 GC_TODO: add return values
116
117 --*/
118 ;
119
120 #ifdef __cplusplus
121 }
122 #endif
123
124 #endif // #ifndef _SYMBOLS_H_