Last change
on this file since 94368 was 80721, checked in by vboxsync, 5 years ago |
Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
432 bytes
|
Line | |
---|
1 | /** @file
|
---|
2 | Debug device library instance that retrieves the current enabling state for
|
---|
3 | the platform debug output device.
|
---|
4 |
|
---|
5 | Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
|
---|
6 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 |
|
---|
8 | **/
|
---|
9 |
|
---|
10 | #include <Base.h>
|
---|
11 |
|
---|
12 | /**
|
---|
13 | Returns the debug print device enable state.
|
---|
14 |
|
---|
15 | @return Debug print device enable state.
|
---|
16 |
|
---|
17 | **/
|
---|
18 | UINT8
|
---|
19 | EFIAPI
|
---|
20 | GetDebugPrintDeviceEnable (
|
---|
21 | VOID
|
---|
22 | )
|
---|
23 | {
|
---|
24 | return 1;
|
---|
25 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.