diff options
author | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-09-08 07:29:48 +0000 |
---|---|---|
committer | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-09-08 07:29:48 +0000 |
commit | 5cba121d30d3edda6e6145eb41aabcd767e5b69c (patch) | |
tree | 6f9720921e64c149dc04c64c59f7d294329f609b /MdePkg/Include/Library | |
parent | 3032f549625c1318d666a70cad9694a472abc907 (diff) | |
download | edk2-platforms-5cba121d30d3edda6e6145eb41aabcd767e5b69c.tar.xz |
add modifier EFIAPI for library interfaces.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9246 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Library')
-rw-r--r-- | MdePkg/Include/Library/DevicePathLib.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/MdePkg/Include/Library/DevicePathLib.h b/MdePkg/Include/Library/DevicePathLib.h index eb9de5a873..4012472675 100644 --- a/MdePkg/Include/Library/DevicePathLib.h +++ b/MdePkg/Include/Library/DevicePathLib.h @@ -6,7 +6,7 @@ path nodes make use of the ReadUnaligned16() and WriteUnaligned16() functions from
the Base Library, so this library class has an implied dependency on the Base Library.
-Copyright (c) 2006 - 2008, Intel Corporation<BR>
+Copyright (c) 2006 - 2009, Intel Corporation<BR>
All rights reserved. This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -35,6 +35,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. **/
UINT8
+EFIAPI
DevicePathType (
IN CONST VOID *Node
);
@@ -52,6 +53,7 @@ DevicePathType ( **/
UINT8
+EFIAPI
DevicePathSubType (
IN CONST VOID *Node
);
@@ -72,6 +74,7 @@ DevicePathSubType ( **/
UINTN
+EFIAPI
DevicePathNodeLength (
IN CONST VOID *Node
);
@@ -89,6 +92,7 @@ DevicePathNodeLength ( **/
EFI_DEVICE_PATH_PROTOCOL *
+EFIAPI
NextDevicePathNode (
IN CONST VOID *Node
);
@@ -111,6 +115,7 @@ NextDevicePathNode ( **/
BOOLEAN
+EFIAPI
IsDevicePathEndType (
IN CONST VOID *Node
);
@@ -130,6 +135,7 @@ IsDevicePathEndType ( **/
BOOLEAN
+EFIAPI
IsDevicePathEnd (
IN CONST VOID *Node
);
@@ -149,6 +155,7 @@ IsDevicePathEnd ( **/
BOOLEAN
+EFIAPI
IsDevicePathEndInstance (
IN CONST VOID *Node
);
@@ -171,6 +178,7 @@ IsDevicePathEndInstance ( **/
UINT16
+EFIAPI
SetDevicePathNodeLength (
IN OUT VOID *Node,
IN UINTN Length
@@ -193,6 +201,7 @@ SetDevicePathNodeLength ( **/
VOID
+EFIAPI
SetDevicePathEndNode (
OUT VOID *Node
);
|