• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1///** @file
2//
3//    Sample Inventory Data
4//
5//  Copyright (c) 2004 - 2015, Intel Corporation. All rights reserved.<BR>
6//  This program and the accompanying materials
7//  are licensed and made available under the terms and conditions of the BSD License
8//  which accompanies this distribution.  The full text of the license may be found at
9//  http://opensource.org/licenses/bsd-license.php
10//
11//  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12//  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13//
14//**/
15
16#include "NVDataStruc.h"
17
18formset
19  guid     = DRIVER_SAMPLE_INVENTORY_GUID,
20  title    = STRING_TOKEN(STR_INV_FORM_SET_TITLE),
21  help     = STRING_TOKEN(STR_INV_FORM_SET_HELP),
22
23  form formid = 1,
24       title  = STRING_TOKEN(STR_INV_FORM1_TITLE);  // note formid is a variable (for readability) (UINT16) - also added Form to the line to signify the Op-Code
25
26  	text
27      help   = STRING_TOKEN(STR_INV_VERSION_HELP),
28      text   = STRING_TOKEN(STR_INV_VERSION_TEXT),
29	    text   = STRING_TOKEN(STR_INV_EMPTY_STRING),
30      flags  = 0,
31      key    = 0;
32
33  	text
34      help   = STRING_TOKEN(STR_INV_EMPTY_STRING),
35      text   = STRING_TOKEN(STR_INV_VERSION_TEXT2),
36	    text   = STRING_TOKEN(STR_INV_EMPTY_STRING),
37      flags  = 0,
38      key    = 0;
39
40  	text
41      help   = STRING_TOKEN(STR_INV_EMPTY_STRING),
42      text   = STRING_TOKEN(STR_INV_VERSION_TEXT3),
43	    text   = STRING_TOKEN(STR_INV_EMPTY_STRING),
44      flags  = 0,
45      key    = 0;
46
47  	text
48      help   = STRING_TOKEN(STR_INV_EMPTY_STRING),
49      text   = STRING_TOKEN(STR_INV_VERSION_TEXT4),
50	    text   = STRING_TOKEN(STR_INV_EMPTY_STRING),
51      flags  = 0,
52      key    = 0;
53
54    subtitle text = STRING_TOKEN(STR_INV_EMPTY_STRING);
55
56  	text
57      help   = STRING_TOKEN(STR_INV_EMPTY_STRING),
58      text   = STRING_TOKEN(STR_INV_VERSION_TEXT5),
59	    text   = STRING_TOKEN(STR_INV_EMPTY_STRING),
60      flags  = 0,
61      key    = 0;
62
63  	text
64      help   = STRING_TOKEN(STR_INV_EMPTY_STRING),
65      text   = STRING_TOKEN(STR_INV_VERSION_TEXT6),
66	    text   = STRING_TOKEN(STR_INV_EMPTY_STRING),
67      flags  = 0,
68      key    = 0;
69
70  	text
71      help   = STRING_TOKEN(STR_INV_EMPTY_STRING),
72      text   = STRING_TOKEN(STR_INV_VERSION_TEXT7),
73	    text   = STRING_TOKEN(STR_INV_EMPTY_STRING),
74      flags  = 0,
75      key    = 0;
76
77  	text
78      help   = STRING_TOKEN(STR_INV_EMPTY_STRING),
79      text   = STRING_TOKEN(STR_INV_VERSION_TEXT8),
80	    text   = STRING_TOKEN(STR_INV_EMPTY_STRING),
81      flags  = 0,
82      key    = 0;
83
84  	text
85      help   = STRING_TOKEN(STR_INV_EMPTY_STRING),
86      text   = STRING_TOKEN(STR_INV_VERSION_TEXT9),
87	    text   = STRING_TOKEN(STR_INV_EMPTY_STRING),
88      flags  = 0,
89      key    = 0;
90
91  	text
92      help   = STRING_TOKEN(STR_INV_EMPTY_STRING),
93      text   = STRING_TOKEN(STR_INV_VERSION_TEXT10),
94	    text   = STRING_TOKEN(STR_INV_EMPTY_STRING),
95      flags  = 0,
96      key    = 0;
97
98  	text
99      help   = STRING_TOKEN(STR_INV_EMPTY_STRING),
100      text   = STRING_TOKEN(STR_INV_VERSION_TEXT11),
101	    text   = STRING_TOKEN(STR_INV_EMPTY_STRING),
102      flags  = 0,
103      key    = 0;
104
105    text
106      help   = STRING_TOKEN(STR_CHECK_KEYWORD_SUPPORT),
107      text   = STRING_TOKEN(STR_CHECK_KEYWORD_SUPPORT),
108      flags  = INTERACTIVE,
109      key    = 0x1231;
110
111    subtitle text = STRING_TOKEN(STR_INV_EMPTY_STRING);
112
113    subtitle text = STRING_TOKEN(STR_INV_VERSION_TEXT12);
114
115  endform;
116
117endformset;
118