]> git.proxmox.com Git - mirror_edk2.git/blame - EmbeddedPkg/Include/Protocol/DebugSupportPeriodicCallback.h
Update the copyright notice format
[mirror_edk2.git] / EmbeddedPkg / Include / Protocol / DebugSupportPeriodicCallback.h
CommitLineData
2ef2b01e
A
1/** @file\r
2 Protocol is used to help implement DebugSupport.RegisterPeriodicCallback() functionality.\r
3 This enables the DXE timer driver to support the periodic callback function so the \r
4 DebugSupport driver does not need to contain platform specific information about how a timer\r
5 works.\r
6\r
7 Copyright (c) 2008-2009 Apple Inc. All rights reserved.<BR>\r
8\r
9 All rights reserved. This program and the accompanying materials\r
10 are licensed and made available under the terms and conditions of the BSD License\r
11 which accompanies this distribution. The full text of the license may be found at\r
12 http://opensource.org/licenses/bsd-license.php\r
13\r
14 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
15 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
16\r
17**/\r
18\r
19\r
20#ifndef __DEBUG_SUPPORT_PERIODIC_CALLBACK_H__\r
21#define __DEBUG_SUPPORT_PERIODIC_CALLBACK_H__\r
22\r
23#include <Protocol/DebugSupport.h>\r
24\r
25typedef struct _EFI_DEBUG_SUPPORT_PERIODIC_CALLBACK_PROTOCOL EFI_DEBUG_SUPPORT_PERIODIC_CALLBACK_PROTOCOL;\r
26\r
27\r
28// {9546E07C-2CBB-4c88-986C-CD341086F044}\r
29#define EFI_DEBUG_SUPPORT_PERIODIC_CALLBACK_PROTOCOL_GUID \\r
30 { 0x9546e07c, 0x2cbb, 0x4c88, { 0x98, 0x6c, 0xcd, 0x34, 0x10, 0x86, 0xf0, 0x44 } }\r
31\r
32\r
33//\r
34// DebugSupport protocol definition\r
35//\r
36struct _EFI_DEBUG_SUPPORT_PERIODIC_CALLBACK_PROTOCOL {\r
37 EFI_PERIODIC_CALLBACK PeriodicCallback;\r
38};\r
39\r
40extern EFI_GUID gEfiDebugSupportPeriodicCallbackProtocolGuid;\r
41\r
42#endif \r