mirror of https://github.com/acidanthera/audk.git
ShellPkg: Add missing function descriptor comment.
Submitted-by: jcarsey git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12326 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
a6d4d0ac16
commit
0f87f732e9
|
@ -18,6 +18,16 @@
|
||||||
#include <Library/ShellCEntryLib.h>
|
#include <Library/ShellCEntryLib.h>
|
||||||
#include <Library/SortLib.h>
|
#include <Library/SortLib.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
Test comparator.
|
||||||
|
|
||||||
|
@param[in] b1 The first INTN
|
||||||
|
@param[in] b2 The other INTN
|
||||||
|
|
||||||
|
@retval 0 They are the same.
|
||||||
|
@retval -1 b1 is less than b2
|
||||||
|
@retval 1 b1 is greater then b2
|
||||||
|
**/
|
||||||
INTN
|
INTN
|
||||||
EFIAPI
|
EFIAPI
|
||||||
Test(CONST VOID*b1, CONST VOID*b2)
|
Test(CONST VOID*b1, CONST VOID*b2)
|
||||||
|
|
Loading…
Reference in New Issue