mirror of https://github.com/acidanthera/audk.git
92 lines
1.5 KiB
C
92 lines
1.5 KiB
C
/*++
|
|
|
|
Copyright (c) 1999 - 2002 Intel Corporation. All rights reserved
|
|
This software and associated documentation (if any) is furnished
|
|
under a license and may only be used or copied in accordance
|
|
with the terms of the license. Except as permitted by such
|
|
license, no part of this software or documentation may be
|
|
reproduced, stored in a retrieval system, or transmitted in any
|
|
form or by any means without the express written consent of
|
|
Intel Corporation.
|
|
|
|
|
|
Module Name:
|
|
|
|
GenFdImageExe.h
|
|
|
|
Abstract:
|
|
|
|
Definitions for the Boot Strap File Image generation utility.
|
|
|
|
--*/
|
|
|
|
#ifndef _EFI_GEN_FD_IMAGE_EXE_H
|
|
#define _EFI_GEN_FD_IMAGE_EXE_H
|
|
|
|
//
|
|
// Utility Name
|
|
//
|
|
#define UTILITY_NAME "GenFdImage"
|
|
|
|
//
|
|
// Utility version information
|
|
//
|
|
#define UTILITY_MAJOR_VERSION 0
|
|
#define UTILITY_MINOR_VERSION 0
|
|
#define UTILITY_DATE __DATE__
|
|
|
|
//
|
|
// The maximum number of arguments accepted from the command line.
|
|
//
|
|
#define MIN_ARGS 10
|
|
|
|
//
|
|
// The function that displays general utility information
|
|
//
|
|
VOID
|
|
PrintUtilityInfo (
|
|
VOID
|
|
)
|
|
/*++
|
|
|
|
Routine Description:
|
|
|
|
GC_TODO: Add function description
|
|
|
|
Arguments:
|
|
|
|
None
|
|
|
|
Returns:
|
|
|
|
GC_TODO: add return values
|
|
|
|
--*/
|
|
;
|
|
|
|
//
|
|
// The function that displays the utility usage message.
|
|
//
|
|
VOID
|
|
PrintUsage (
|
|
VOID
|
|
)
|
|
/*++
|
|
|
|
Routine Description:
|
|
|
|
GC_TODO: Add function description
|
|
|
|
Arguments:
|
|
|
|
None
|
|
|
|
Returns:
|
|
|
|
GC_TODO: add return values
|
|
|
|
--*/
|
|
;
|
|
|
|
#endif
|