]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/TianoTools/GenFdImage/GenFdImageExe.h
Adding Additional Tools that are needed for Platform Image creation.
[mirror_edk2.git] / Tools / Source / TianoTools / GenFdImage / GenFdImageExe.h
1 /*++
2
3 Copyright (c) 1999 - 2002 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 GenFdImageExe.h
16
17 Abstract:
18
19 Definitions for the Boot Strap File Image generation utility.
20
21 --*/
22
23 #ifndef _EFI_GEN_FD_IMAGE_EXE_H
24 #define _EFI_GEN_FD_IMAGE_EXE_H
25
26 //
27 // Utility Name
28 //
29 #define UTILITY_NAME "GenFdImage"
30
31 //
32 // Utility version information
33 //
34 #define UTILITY_MAJOR_VERSION 0
35 #define UTILITY_MINOR_VERSION 0
36 #define UTILITY_DATE __DATE__
37
38 //
39 // The maximum number of arguments accepted from the command line.
40 //
41 #define MIN_ARGS 10
42
43 //
44 // The function that displays general utility information
45 //
46 VOID
47 PrintUtilityInfo (
48 VOID
49 )
50 /*++
51
52 Routine Description:
53
54 GC_TODO: Add function description
55
56 Arguments:
57
58 None
59
60 Returns:
61
62 GC_TODO: add return values
63
64 --*/
65 ;
66
67 //
68 // The function that displays the utility usage message.
69 //
70 VOID
71 PrintUsage (
72 VOID
73 )
74 /*++
75
76 Routine Description:
77
78 GC_TODO: Add function description
79
80 Arguments:
81
82 None
83
84 Returns:
85
86 GC_TODO: add return values
87
88 --*/
89 ;
90
91 #endif