]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/CCode/Source/GenFvImage/GenFvImageExe.h
More moves for Tool Packages
[mirror_edk2.git] / Tools / CCode / Source / GenFvImage / GenFvImageExe.h
1 /*++
2
3 Copyright (c) 2004, 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 GenFvImageExe.h
15
16 Abstract:
17
18 Definitions for the PeimFixup exe utility.
19
20 --*/
21
22 //
23 // Coded to Tiano Coding Standards
24 //
25 #ifndef _EFI_GEN_FV_IMAGE_EXE_H
26 #define _EFI_GEN_FV_IMAGE_EXE_H
27
28 #include <stdio.h>
29 #include <string.h>
30 #include <stdlib.h>
31 #include "GenFvImageLib.h"
32
33 //
34 // Utility Name
35 //
36 #define UTILITY_NAME "GenFvImage"
37
38 //
39 // Utility version information
40 //
41 #define UTILITY_MAJOR_VERSION 0
42 #define UTILITY_MINOR_VERSION 1
43 #define UTILITY_DATE __DATE__
44
45 //
46 // The maximum number of arguments accepted from the command line.
47 //
48 #define MAX_ARGS 3
49
50 //
51 // The function that displays general utility information
52 //
53 VOID
54 PrintUtilityInfo (
55 VOID
56 )
57 /*++
58
59 Routine Description:
60
61 TODO: Add function description
62
63 Arguments:
64
65 None
66
67 Returns:
68
69 TODO: add return values
70
71 --*/
72 ;
73
74 //
75 // The function that displays the utility usage message.
76 //
77 VOID
78 PrintUsage (
79 VOID
80 )
81 /*++
82
83 Routine Description:
84
85 TODO: Add function description
86
87 Arguments:
88
89 None
90
91 Returns:
92
93 TODO: add return values
94
95 --*/
96 ;
97
98 #endif