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,7 +172,7 @@ IsDevicePathEndInstance (
**/
UINT16
SetDevicePathNodeLength (
IN VOID *Node,
IN OUT VOID *Node,
IN UINTN Length
);
@ -194,7 +194,7 @@ SetDevicePathNodeLength (
**/
VOID
SetDevicePathEndNode (
IN VOID *Node
OUT VOID *Node
);
/**

View File

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

View File

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