]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Protocol/DevicePathFromText.h
automagically convert ELF to PE/COFF (i386 only)
[mirror_edk2.git] / MdePkg / Include / Protocol / DevicePathFromText.h
CommitLineData
878ddf1f 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
5 Copyright (c) 2006, Intel Corporation \r
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
14 Module Name: DevicePathFromText.h\r
15\r
16**/\r
17\r
18#ifndef __DEVICE_PATH_FROM_TEXT_PROTOCOL_H__\r
19#define __DEVICE_PATH_FROM_TEXT_PROTOCOL_H__\r
20\r
21//\r
22// Device Path From Text protocol\r
23//\r
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
42(EFIAPI *EFI_DEVICE_PATH_FROM_TEXT_NODE) (\r
43 IN CONST CHAR16 *TextDeviceNode\r
44 )\r
45; \r
46 \r
47\r
48/**\r
49 Convert text to the binary representation of a device node.\r
50\r
51 @param TextDeviceNode TextDevicePath points to the text representation of a device\r
52 path. Conversion starts with the first character and continues\r
53 until the first non-device path character.\r
54\r
55 @retval a_pointer Pointer to the allocated device path.\r
56 @retval NULL if TextDeviceNode is NULL or there was insufficient memory.\r
57\r
58**/\r
59typedef\r
60EFI_DEVICE_PATH_PROTOCOL*\r
61(EFIAPI *EFI_DEVICE_PATH_FROM_TEXT_PATH) (\r
62 IN CONST CHAR16 *TextDevicePath\r
63 )\r
64; \r
65 \r
66typedef struct {\r
562d2849 67 EFI_DEVICE_PATH_FROM_TEXT_NODE ConvertTextToDeviceNode;\r
68 EFI_DEVICE_PATH_FROM_TEXT_PATH ConvertTextToDevicePath;\r
878ddf1f 69} EFI_DEVICE_PATH_FROM_TEXT_PROTOCOL;\r
70\r
71extern EFI_GUID gEfiDevicePathFromTextProtocolGuid;\r
72\r
73#endif\r