Home | History | Annotate | Download | only in GenFvImage
      1 /*++
      2 
      3 Copyright (c) 2004 - 2010, Intel Corporation. All rights reserved.<BR>
      4 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_VERSION "v1.1"
     42 #define UTILITY_DATE          __DATE__
     43 
     44 //
     45 // The maximum number of arguments accepted from the command line.
     46 //
     47 #define MAX_ARGS  3
     48 
     49 //
     50 // The function that displays general utility information
     51 //
     52 VOID
     53 PrintUtilityInfo (
     54   VOID
     55   )
     56 /*++
     57 
     58 Routine Description:
     59 
     60   TODO: Add function description
     61 
     62 Arguments:
     63 
     64   None
     65 
     66 Returns:
     67 
     68   TODO: add return values
     69 
     70 --*/
     71 ;
     72 
     73 //
     74 // The function that displays the utility usage message.
     75 //
     76 VOID
     77 PrintUsage (
     78   VOID
     79   )
     80 /*++
     81 
     82 Routine Description:
     83 
     84   TODO: Add function description
     85 
     86 Arguments:
     87 
     88   None
     89 
     90 Returns:
     91 
     92   TODO: add return values
     93 
     94 --*/
     95 ;
     96 
     97 #endif
     98