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,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
|
||||
);
|
||||
|
||||
/**
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue