Fix IN OUT specifiers

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7474 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
mdkinney
2009-02-06 18:34:23 +00:00
parent 1bfc7438ab
commit 9bb407c643
3 changed files with 9 additions and 9 deletions

View File

@@ -172,8 +172,8 @@ IsDevicePathEndInstance (
**/ **/
UINT16 UINT16
SetDevicePathNodeLength ( SetDevicePathNodeLength (
IN VOID *Node, IN OUT VOID *Node,
IN UINTN Length IN UINTN Length
); );
/** /**
@@ -194,7 +194,7 @@ SetDevicePathNodeLength (
**/ **/
VOID VOID
SetDevicePathEndNode ( SetDevicePathEndNode (
IN VOID *Node OUT VOID *Node
); );
/** /**

View File

@@ -221,8 +221,8 @@ IsDevicePathEndInstance (
**/ **/
UINT16 UINT16
SetDevicePathNodeLength ( SetDevicePathNodeLength (
IN VOID *Node, IN OUT VOID *Node,
IN UINTN NodeLength IN UINTN NodeLength
) )
{ {
ASSERT (Node != NULL); ASSERT (Node != NULL);
@@ -248,7 +248,7 @@ SetDevicePathNodeLength (
**/ **/
VOID VOID
SetDevicePathEndNode ( SetDevicePathEndNode (
IN VOID *Node OUT VOID *Node
) )
{ {
ASSERT (Node != NULL); ASSERT (Node != NULL);

View File

@@ -250,8 +250,8 @@ IsDevicePathEndInstance (
**/ **/
UINT16 UINT16
SetDevicePathNodeLength ( SetDevicePathNodeLength (
IN VOID *Node, IN OUT VOID *Node,
IN UINTN NodeLength IN UINTN NodeLength
) )
{ {
ASSERT (Node != NULL); ASSERT (Node != NULL);
@@ -277,7 +277,7 @@ SetDevicePathNodeLength (
**/ **/
VOID VOID
SetDevicePathEndNode ( SetDevicePathEndNode (
IN VOID *Node OUT VOID *Node
) )
{ {
ASSERT (Node != NULL); ASSERT (Node != NULL);