]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Protocol/DevicePathFromText.h
Formalize comments for Protocols and PPIs.
[mirror_edk2.git] / MdePkg / Include / Protocol / DevicePathFromText.h
CommitLineData
d1f95000 1/** @file\r
2 EFI_DEVICE_PATH_FROM_TEXT_PROTOCOL as defined in UEFI 2.0. \r
3 This protocol provides service to convert text to device paths and device nodes.\r
4\r
4ca9b6c4 5 Copyright (c) 2006 - 2008, Intel Corporation \r
d1f95000 6 All rights reserved. This program and the accompanying materials \r
7 are licensed and made available under the terms and conditions of the BSD License \r
8 which accompanies this distribution. The full text of the license may be found at \r
9 http://opensource.org/licenses/bsd-license.php \r
10\r
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
13\r
d1f95000 14**/\r
15\r
16#ifndef __DEVICE_PATH_FROM_TEXT_PROTOCOL_H__\r
17#define __DEVICE_PATH_FROM_TEXT_PROTOCOL_H__\r
18\r
19#include <Protocol/DevicePath.h>\r
20\r
99e8ed21 21///\r
22/// Device Path From Text protocol\r
23///\r
d1f95000 24#define EFI_DEVICE_PATH_FROM_TEXT_PROTOCOL_GUID \\r
25 { \\r
26 0x5c99a21, 0xc70f, 0x4ad2, {0x8a, 0x5f, 0x35, 0xdf, 0x33, 0x43, 0xf5, 0x1e } \\r
27 }\r
28\r
29/**\r
30 Convert text to the binary representation of a device node.\r
31\r
32 @param TextDeviceNode TextDeviceNode points to the text representation of a device\r
33 node. Conversion starts with the first character and continues\r
34 until the first non-device node character.\r
35\r
36 @retval a_pointer Pointer to the EFI device node.\r
37 @retval NULL if TextDeviceNode is NULL or there was insufficient memory.\r
38\r
39**/\r
40typedef\r
41EFI_DEVICE_PATH_PROTOCOL*\r
8b13229b 42(EFIAPI *EFI_DEVICE_PATH_FROM_TEXT_NODE)(\r
d1f95000 43 IN CONST CHAR16 *TextDeviceNode\r
ed66e1bc 44 ); \r
d1f95000 45 \r
46\r
47/**\r
48 Convert text to the binary representation of a device node.\r
49\r
50 @param TextDeviceNode TextDevicePath points to the text representation of a device\r
51 path. Conversion starts with the first character and continues\r
52 until the first non-device path character.\r
53\r
54 @retval a_pointer Pointer to the allocated device path.\r
55 @retval NULL if TextDeviceNode is NULL or there was insufficient memory.\r
56\r
57**/\r
58typedef\r
59EFI_DEVICE_PATH_PROTOCOL*\r
8b13229b 60(EFIAPI *EFI_DEVICE_PATH_FROM_TEXT_PATH)(\r
d1f95000 61 IN CONST CHAR16 *TextDevicePath\r
ed66e1bc 62 ); \r
4ca9b6c4 63\r
44717a39 64///\r
65/// This protocol converts text to device paths and device nodes.\r
66///\r
d1f95000 67typedef struct {\r
68 EFI_DEVICE_PATH_FROM_TEXT_NODE ConvertTextToDeviceNode;\r
69 EFI_DEVICE_PATH_FROM_TEXT_PATH ConvertTextToDevicePath;\r
70} EFI_DEVICE_PATH_FROM_TEXT_PROTOCOL;\r
71\r
72extern EFI_GUID gEfiDevicePathFromTextProtocolGuid;\r
73\r
74#endif\r