Home | History | Annotate | Download | only in DriverSampleDxe

Lines Matching refs:HotKey

1876   EFI_INPUT_KEY                   HotKey;

2167 // Example of how to use BrowserEx protocol to register HotKey.
2174 HotKey.UnicodeChar = CHAR_NULL;
2175 HotKey.ScanCode = SCAN_F9;
2176 FormBrowserEx->RegisterHotKey (&HotKey, 0, 0, NULL);
2177 HotKey.ScanCode = SCAN_F10;
2178 FormBrowserEx->RegisterHotKey (&HotKey, 0, 0, NULL);
2181 // Register the default HotKey F9 and F10 again.
2183 HotKey.ScanCode = SCAN_F10;
2186 FormBrowserEx->RegisterHotKey (&HotKey, BROWSER_ACTION_SUBMIT, 0, NewString);
2187 HotKey.ScanCode = SCAN_F9;
2190 FormBrowserEx->RegisterHotKey (&HotKey, BROWSER_ACTION_DEFAULT, EFI_HII_DEFAULT_CLASS_STANDARD, NewString);