mirror of https://github.com/acidanthera/audk.git
typedef
VOID (EFIAPI *EFI_AP_PROCEDURE) ( IN VOID *Buffer ); Buffer should be IN, OUT. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9430 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
1b620adba6
commit
92f0867613
|
@ -60,12 +60,12 @@ EFI_STATUS
|
||||||
/**
|
/**
|
||||||
Function prototype for invoking a function on an Application Processor.
|
Function prototype for invoking a function on an Application Processor.
|
||||||
|
|
||||||
@param[in] Buffer Pointer to private data buffer.
|
@param[in,out] Buffer Pointer to private data buffer.
|
||||||
**/
|
**/
|
||||||
typedef
|
typedef
|
||||||
VOID
|
VOID
|
||||||
(EFIAPI *EFI_AP_PROCEDURE)(
|
(EFIAPI *EFI_AP_PROCEDURE)(
|
||||||
IN VOID *Buffer
|
IN OUT VOID *Buffer
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue