summaryrefslogtreecommitdiff
path: root/MdePkg/Library/UefiDevicePathLib
diff options
context:
space:
mode:
authorvanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2009-09-08 07:29:48 +0000
committervanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2009-09-08 07:29:48 +0000
commit5cba121d30d3edda6e6145eb41aabcd767e5b69c (patch)
tree6f9720921e64c149dc04c64c59f7d294329f609b /MdePkg/Library/UefiDevicePathLib
parent3032f549625c1318d666a70cad9694a472abc907 (diff)
downloadedk2-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/Library/UefiDevicePathLib')
-rw-r--r--MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.c b/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.c
index 5aad01f993..755e42e189 100644
--- a/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.c
+++ b/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.c
@@ -8,7 +8,7 @@
environment varibles. Multi-instance device paths should never be placed
on a Handle.
- Copyright (c) 2006 - 2008, Intel Corporation
+ Copyright (c) 2006 - 2009, Intel Corporation
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
@@ -54,6 +54,7 @@ GLOBAL_REMOVE_IF_UNREFERENCED CONST EFI_DEVICE_PATH_PROTOCOL mUefiDevicePathLib
**/
UINT8
+EFIAPI
DevicePathType (
IN CONST VOID *Node
)
@@ -75,6 +76,7 @@ DevicePathType (
**/
UINT8
+EFIAPI
DevicePathSubType (
IN CONST VOID *Node
)
@@ -99,6 +101,7 @@ DevicePathSubType (
**/
UINTN
+EFIAPI
DevicePathNodeLength (
IN CONST VOID *Node
)
@@ -120,6 +123,7 @@ DevicePathNodeLength (
**/
EFI_DEVICE_PATH_PROTOCOL *
+EFIAPI
NextDevicePathNode (
IN CONST VOID *Node
)
@@ -146,6 +150,7 @@ NextDevicePathNode (
**/
BOOLEAN
+EFIAPI
IsDevicePathEndType (
IN CONST VOID *Node
)
@@ -169,6 +174,7 @@ IsDevicePathEndType (
**/
BOOLEAN
+EFIAPI
IsDevicePathEnd (
IN CONST VOID *Node
)
@@ -192,6 +198,7 @@ IsDevicePathEnd (
**/
BOOLEAN
+EFIAPI
IsDevicePathEndInstance (
IN CONST VOID *Node
)
@@ -218,6 +225,7 @@ IsDevicePathEndInstance (
**/
UINT16
+EFIAPI
SetDevicePathNodeLength (
IN OUT VOID *Node,
IN UINTN Length
@@ -245,6 +253,7 @@ SetDevicePathNodeLength (
**/
VOID
+EFIAPI
SetDevicePathEndNode (
OUT VOID *Node
)