mirror of https://github.com/acidanthera/audk.git
28 lines
891 B
C
28 lines
891 B
C
/** @file
|
|
Formset guids, form id and VarStore data structure for Boot Maintenance Manager.
|
|
|
|
Copyright (c) 2004 - 2015, Intel Corporation. All rights reserved.<BR>
|
|
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.
|
|
|
|
**/
|
|
#ifndef _FILE_EXPLORER_FORM_GUID_H_
|
|
#define _FILE_EXPLORER_FORM_GUID_H_
|
|
|
|
|
|
#define EFI_FILE_EXPLORE_FORMSET_GUID \
|
|
{ \
|
|
0x1f2d63e1, 0xfebd, 0x4dc7, {0x9c, 0xc5, 0xba, 0x2b, 0x1c, 0xef, 0x9c, 0x5b} \
|
|
}
|
|
|
|
#define FORM_FILE_EXPLORER_ID 0x1000
|
|
#define LABEL_END 0xffff
|
|
|
|
#endif
|
|
|