3eb9473e |
1 | /*++\r |
2 | \r |
3 | Copyright (c) 2004, Intel Corporation \r |
4 | All rights reserved. This program and the accompanying materials \r |
5 | are licensed and made available under the terms and conditions of the BSD License \r |
6 | which accompanies this distribution. The full text of the license may be found at \r |
7 | http://opensource.org/licenses/bsd-license.php \r |
8 | \r |
9 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r |
10 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r |
11 | \r |
12 | Module Name:\r |
13 | \r |
14 | EfiCompNameSupport.h\r |
15 | \r |
16 | Abstract:\r |
17 | \r |
18 | Private data structures for the Console Splitter driver\r |
19 | \r |
20 | --*/\r |
21 | \r |
22 | #ifndef EFI_COMPONENT_NAME_SUPPORT_H\r |
23 | #define EFI_COMPONENT_NAME_SUPPORT_H\r |
24 | \r |
25 | #include "Tiano.h"\r |
26 | \r |
27 | #ifndef EFI_SIZE_REDUCTION_APPLIED\r |
28 | \r |
29 | #define INSTALL_ALL_DRIVER_PROTOCOLS(ImageHandle, \\r |
30 | SystemTable, \\r |
31 | DriverBinding, \\r |
32 | DriverBindingHandle, \\r |
33 | ComponentName, \\r |
34 | DriverConfiguration, \\r |
35 | DriverDiagnostics) \\r |
36 | EfiLibInstallAllDriverProtocols ((ImageHandle), \\r |
37 | (SystemTable), \\r |
38 | (DriverBinding), \\r |
39 | (DriverBindingHandle), \\r |
40 | (ComponentName), \\r |
41 | (DriverConfiguration), \\r |
42 | (DriverDiagnostics))\r |
43 | #else\r |
44 | \r |
45 | #define INSTALL_ALL_DRIVER_PROTOCOLS(ImageHandle, \\r |
46 | SystemTable, \\r |
47 | DriverBinding, \\r |
48 | DriverBindingHandle, \\r |
49 | ComponentName, \\r |
50 | DriverConfiguration, \\r |
51 | DriverDiagnostics) \\r |
52 | EfiLibInstallDriverBinding ((ImageHandle), \\r |
53 | (SystemTable), \\r |
54 | (DriverBinding), \\r |
55 | (DriverBindingHandle))\r |
56 | #endif\r |
57 | \r |
58 | #endif\r |