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:
jcarsey 2011-09-12 15:34:11 +00:00
parent a6d4d0ac16
commit 0f87f732e9
1 changed files with 10 additions and 0 deletions

View File

@ -18,6 +18,16 @@
#include <Library/ShellCEntryLib.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
EFIAPI
Test(CONST VOID*b1, CONST VOID*b2)