mirror of https://github.com/acidanthera/audk.git
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:
parent
1bfc7438ab
commit
9bb407c643
|
@ -172,8 +172,8 @@ IsDevicePathEndInstance (
|
|||
**/
|
||||
UINT16
|
||||
SetDevicePathNodeLength (
|
||||
IN VOID *Node,
|
||||
IN UINTN Length
|
||||
IN OUT VOID *Node,
|
||||
IN UINTN Length
|
||||
);
|
||||
|
||||
/**
|
||||
|
@ -194,7 +194,7 @@ SetDevicePathNodeLength (
|
|||
**/
|
||||
VOID
|
||||
SetDevicePathEndNode (
|
||||
IN VOID *Node
|
||||
OUT VOID *Node
|
||||
);
|
||||
|
||||
/**
|
||||
|
|
|
@ -221,8 +221,8 @@ IsDevicePathEndInstance (
|
|||
**/
|
||||
UINT16
|
||||
SetDevicePathNodeLength (
|
||||
IN VOID *Node,
|
||||
IN UINTN NodeLength
|
||||
IN OUT VOID *Node,
|
||||
IN UINTN NodeLength
|
||||
)
|
||||
{
|
||||
ASSERT (Node != NULL);
|
||||
|
@ -248,7 +248,7 @@ SetDevicePathNodeLength (
|
|||
**/
|
||||
VOID
|
||||
SetDevicePathEndNode (
|
||||
IN VOID *Node
|
||||
OUT VOID *Node
|
||||
)
|
||||
{
|
||||
ASSERT (Node != NULL);
|
||||
|
|
|
@ -250,8 +250,8 @@ IsDevicePathEndInstance (
|
|||
**/
|
||||
UINT16
|
||||
SetDevicePathNodeLength (
|
||||
IN VOID *Node,
|
||||
IN UINTN NodeLength
|
||||
IN OUT VOID *Node,
|
||||
IN UINTN NodeLength
|
||||
)
|
||||
{
|
||||
ASSERT (Node != NULL);
|
||||
|
@ -277,7 +277,7 @@ SetDevicePathNodeLength (
|
|||
**/
|
||||
VOID
|
||||
SetDevicePathEndNode (
|
||||
IN VOID *Node
|
||||
OUT VOID *Node
|
||||
)
|
||||
{
|
||||
ASSERT (Node != NULL);
|
||||
|
|
Loading…
Reference in New Issue