]> git.proxmox.com Git - mirror_edk2.git/blame - EdkCompatibilityPkg/Foundation/Protocol/Print/Print.h
Update the copyright notice format
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Protocol / Print / Print.h
CommitLineData
3eb9473e 1/*++\r
2\r
f57387d5
HT
3Copyright (c) 2004, Intel Corporation. All rights reserved.<BR>\r
4This program and the accompanying materials \r
3eb9473e 5are licensed and made available under the terms and conditions of the BSD License \r
6which accompanies this distribution. The full text of the license may be found at \r
7http://opensource.org/licenses/bsd-license.php \r
8 \r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
11\r
12Module Name:\r
13\r
14 Print.h\r
15\r
16Abstract:\r
17\r
18 This file defines the Print protocol\r
19\r
20--*/\r
21\r
22#ifndef _PPRINT_H_\r
23#define _PPRINT_H_\r
24\r
25#define EFI_PRINT_PROTOCOL_GUID \\r
7ccf38a3 26 { 0xdf2d868e, 0x32fc, 0x4cf0, {0x8e, 0x6b, 0xff, 0xd9, 0x5d, 0x13, 0x43, 0xd0} }\r
3eb9473e 27\r
3eb9473e 28\r
29typedef struct _EFI_PRINT_PROTOCOL EFI_PRINT_PROTOCOL;\r
30\r
31typedef\r
32UINTN\r
33(EFIAPI *EFI_VSPRINT) (\r
34 OUT CHAR16 *StartOfBuffer,\r
35 IN UINTN BufferSize,\r
36 IN CONST CHAR16 *FormatString,\r
37 IN VA_LIST Marker\r
38 );\r
39\r
9c092841 40struct _EFI_PRINT_PROTOCOL {\r
3eb9473e 41 EFI_VSPRINT VSPrint;\r
9c092841 42};\r
3eb9473e 43\r
44\r
45extern EFI_GUID gEfiPrintProtocolGuid;\r
46\r
7ccf38a3 47#endif\r