]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Disk/RamDiskDxe/RamDiskNVData.h
89d1d5a786e0267052b5b2a6d75b38556a4cb21e
[mirror_edk2.git] / MdeModulePkg / Universal / Disk / RamDiskDxe / RamDiskNVData.h
1 /** @file
2 Header file for NV data structure definition.
3
4 Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #ifndef _RAM_DISK_NVDATA_H_
16 #define _RAM_DISK_NVDATA_H_
17
18 #include <Guid/HiiPlatformSetupFormset.h>
19 #include <Guid/RamDiskHii.h>
20
21 #define MAIN_FORM_ID 0x1000
22 #define MAIN_GOTO_FILE_EXPLORER_ID 0x1001
23 #define MAIN_REMOVE_RD_QUESTION_ID 0x1002
24 #define MAIN_LABEL_LIST_START 0x1003
25 #define MAIN_LABEL_LIST_END 0x1004
26 #define MAIN_CHECKBOX_QUESTION_ID_START 0x1100
27
28 #define CREATE_RAW_RAM_DISK_FORM_ID 0x2000
29 #define CREATE_RAW_SIZE_QUESTION_ID 0x2001
30 #define CREATE_RAW_SUBMIT_QUESTION_ID 0x2002
31 #define CREATE_RAW_DISCARD_QUESTION_ID 0x2003
32
33 typedef struct {
34 //
35 // The size of the RAM disk to be created.
36 //
37 UINT64 Size;
38 } RAM_DISK_CONFIGURATION;
39
40 #endif