]> git.proxmox.com Git - mirror_edk2.git/blob - Nt32Pkg/PlatformBdsDxe/Generic/DeviceMngr/DeviceManager.h
add in PlatformBds.inf
[mirror_edk2.git] / Nt32Pkg / PlatformBdsDxe / Generic / DeviceMngr / DeviceManager.h
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 DeviceManager.c
15
16 Abstract:
17
18 The platform device manager reference implement
19
20 Revision History
21
22 --*/
23
24 #ifndef _DEVICE_MANAGER_H
25 #define _DEVICE_MANAGER_H
26
27 //
28 // Include common header file for this module.
29 //
30 #include "CommonHeader.h"
31
32 #include "Generic/FrontPage.h"
33
34 #define EFI_NON_DEVICE_CLASS 0x00 // Useful when you do not want something in the Device Manager
35 #define EFI_DISK_DEVICE_CLASS 0x01
36 #define EFI_VIDEO_DEVICE_CLASS 0x02
37 #define EFI_NETWORK_DEVICE_CLASS 0x04
38 #define EFI_INPUT_DEVICE_CLASS 0x08
39 #define EFI_ON_BOARD_DEVICE_CLASS 0x10
40 #define EFI_OTHER_DEVICE_CLASS 0x20
41
42 EFI_STATUS
43 EFIAPI
44 DeviceManagerCallbackRoutine (
45 IN EFI_FORM_CALLBACK_PROTOCOL *This,
46 IN UINT16 KeyValue,
47 IN EFI_IFR_DATA_ARRAY *DataArray,
48 OUT EFI_HII_CALLBACK_PACKET **Packet
49 )
50 ;
51
52 EFI_STATUS
53 InitializeDeviceManager (
54 VOID
55 )
56 ;
57
58 EFI_STATUS
59 CallDeviceManager (
60 VOID
61 )
62 ;
63
64 #endif