]> git.proxmox.com Git - mirror_edk2.git/blame - Nt32Pkg/PlatformBdsDxe/Generic/DeviceMngr/DeviceManager.h
Remove CommonHeader.h for BdsPlatformDxe driver in Nt32Pkg.
[mirror_edk2.git] / Nt32Pkg / PlatformBdsDxe / Generic / DeviceMngr / DeviceManager.h
CommitLineData
bc11b829 1/*++\r
2\r
3Copyright (c) 2006, Intel Corporation \r
4All rights reserved. This program and the accompanying materials \r
5are licensed and made available under the terms and conditions of the BSD License \r
6which accompanies this distribution. The full text of the license may be found at \r
7http://opensource.org/licenses/bsd-license.php \r
8 \r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
11\r
12Module Name: \r
13\r
14 DeviceManager.c\r
15\r
16Abstract:\r
17\r
18 The platform device manager reference implement\r
19\r
20Revision History\r
21\r
22--*/\r
23\r
24#ifndef _DEVICE_MANAGER_H\r
25#define _DEVICE_MANAGER_H\r
26\r
bc11b829 27#include "Generic/FrontPage.h"\r
28\r
29#define EFI_NON_DEVICE_CLASS 0x00 // Useful when you do not want something in the Device Manager\r
30#define EFI_DISK_DEVICE_CLASS 0x01\r
31#define EFI_VIDEO_DEVICE_CLASS 0x02\r
32#define EFI_NETWORK_DEVICE_CLASS 0x04\r
33#define EFI_INPUT_DEVICE_CLASS 0x08\r
34#define EFI_ON_BOARD_DEVICE_CLASS 0x10\r
35#define EFI_OTHER_DEVICE_CLASS 0x20\r
36\r
37EFI_STATUS\r
38EFIAPI\r
39DeviceManagerCallbackRoutine (\r
40 IN EFI_FORM_CALLBACK_PROTOCOL *This,\r
41 IN UINT16 KeyValue,\r
42 IN EFI_IFR_DATA_ARRAY *DataArray,\r
43 OUT EFI_HII_CALLBACK_PACKET **Packet\r
44 )\r
45;\r
46\r
47EFI_STATUS\r
48InitializeDeviceManager (\r
49 VOID\r
50 )\r
51;\r
52\r
53EFI_STATUS\r
54CallDeviceManager (\r
55 VOID\r
56 )\r
57;\r
58\r
59#endif\r