diff options
author | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-08-08 15:21:11 +0000 |
---|---|---|
committer | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-08-08 15:21:11 +0000 |
commit | 98a1fa1f349476533c626020a7196f08c1ef2dba (patch) | |
tree | abb5f0fcc6bc97926946335b972bb9e9fa2b636f /MdePkg/Include | |
parent | 7a31af6a12e9586fc0d6bed972c00a0aafd728d8 (diff) | |
download | edk2-platforms-98a1fa1f349476533c626020a7196f08c1ef2dba.tar.xz |
Correct parameter UINTN to UINT32
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3576 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include')
-rw-r--r-- | MdePkg/Include/Library/CustomDecompressLib.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/MdePkg/Include/Library/CustomDecompressLib.h b/MdePkg/Include/Library/CustomDecompressLib.h index 36086d4f0f..36e8c027cc 100644 --- a/MdePkg/Include/Library/CustomDecompressLib.h +++ b/MdePkg/Include/Library/CustomDecompressLib.h @@ -18,7 +18,6 @@ /** Decompress GetInfo fucntion.
-
@param[in] DecompressGuid The guid matches this decompress method. @param[in] Source The source buffer containing the compressed data. @param[in] SourceSize The size of source buffer @@ -71,8 +70,8 @@ CustomDecompress ( RETURN_STATUS
EFIAPI
CustomDecompressGetAlgorithms (
- IN OUT GUID **AlgorithmGuidTable,
- IN OUT UINTN *NumberOfAlgorithms
+ IN OUT GUID **AlgorithmGuidTable,
+ IN OUT UINT32 *NumberOfAlgorithms
);
#endif
|