]> git.proxmox.com Git - mirror_edk2.git/blob - Nt32Pkg/PlatformBdsDxe/Generic/DeviceMngr/DeviceManagerVfr.Vfr
Remove CommonHeader.h from VFR files.
[mirror_edk2.git] / Nt32Pkg / PlatformBdsDxe / Generic / DeviceMngr / DeviceManagerVfr.Vfr
1 // *++
2 //
3 // Copyright (c) 2006, Intel Corporation
4 // All rights reserved. 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 // DeviceManagerVfr.vfr
15 //
16 // Abstract:
17 //
18 // Device Manager formset.
19 //
20 // Revision History:
21 //
22 // --*/
23
24
25 #define FORMSET_GUID { 0x3ebfa8e6, 0x511d, 0x4b5b, { 0xa9, 0x5f, 0xfb, 0x38, 0x26, 0xf, 0x1c, 0x27 } }
26
27 #define EFI_DISK_DEVICE_CLASS 0x01
28 #define EFI_VIDEO_DEVICE_CLASS 0x02
29 #define EFI_NETWORK_DEVICE_CLASS 0x04
30 #define EFI_INPUT_DEVICE_CLASS 0x08
31 #define EFI_ON_BOARD_DEVICE_CLASS 0x10
32 #define EFI_OTHER_DEVICE_CLASS 0x20
33 #define EFI_VBIOS_CLASS 0x40
34
35 #define DEVICE_MANAGER_CLASS 0x0000
36 #define FRONT_PAGE_SUBCLASS 0x0003
37
38 formset
39 guid = FORMSET_GUID,
40 title = STRING_TOKEN(STR_DEVICE_MANAGER_TITLE),
41 help = STRING_TOKEN(STR_EMPTY_STRING),
42 class = DEVICE_MANAGER_CLASS,
43 subclass = FRONT_PAGE_SUBCLASS,
44
45 form formid = 0x1000,
46 title = STRING_TOKEN(STR_DEVICE_MANAGER_TITLE);
47
48 //
49 // This is where devices get added to the device manager hierarchy
50 //
51 subtitle text = STRING_TOKEN(STR_DISK_DEVICE);
52 label EFI_DISK_DEVICE_CLASS;
53
54 subtitle text = STRING_TOKEN(STR_VIDEO_DEVICE);
55 label EFI_VIDEO_DEVICE_CLASS;
56
57 subtitle text = STRING_TOKEN(STR_NETWORK_DEVICE);
58 label EFI_NETWORK_DEVICE_CLASS;
59
60 subtitle text = STRING_TOKEN(STR_INPUT_DEVICE);
61 label EFI_INPUT_DEVICE_CLASS;
62
63 subtitle text = STRING_TOKEN(STR_ON_BOARD_DEVICE);
64 label EFI_ON_BOARD_DEVICE_CLASS;
65
66 subtitle text = STRING_TOKEN(STR_OTHER_DEVICE);
67 label EFI_OTHER_DEVICE_CLASS;
68
69 subtitle text = STRING_TOKEN(STR_EMPTY_STRING);
70 label EFI_VBIOS_CLASS;
71
72 endform;
73 endformset;
74