]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - EdkCompatibilityPkg/Foundation/Framework/Ppi/Stall/Stall.h
Update the copyright notice format
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Framework / Ppi / Stall / Stall.h
... / ...
CommitLineData
1/*++\r
2\r
3 Copyright (c) 1999 - 2002, Intel Corporation. All rights reserved.<BR>\r
4 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
12Module Name:\r
13\r
14 Stall.h\r
15 \r
16Abstract:\r
17\r
18 Stall PPI \r
19\r
20--*/\r
21\r
22#ifndef _PEI_STALL_PPI_H_\r
23#define _PEI_STALL_PPI_H_\r
24\r
25#define PEI_STALL_PPI_GUID \\r
26 { \\r
27 0x1f4c6f90, 0xb06b, 0x48d8, {0xa2, 0x01, 0xba, 0xe5, 0xf1, 0xcd, 0x7d, 0x56} \\r
28 }\r
29\r
30EFI_FORWARD_DECLARATION (PEI_STALL_PPI);\r
31\r
32typedef\r
33EFI_STATUS\r
34(EFIAPI *PEI_STALL) (\r
35 IN EFI_PEI_SERVICES **PeiServices,\r
36 IN PEI_STALL_PPI * This,\r
37 IN UINTN Microseconds\r
38 );\r
39\r
40struct _PEI_STALL_PPI {\r
41 UINTN Resolution;\r
42 PEI_STALL Stall;\r
43};\r
44\r
45extern EFI_GUID gPeiStallPpiGuid;\r
46\r
47#endif\r