| 812 | } |
| 813 | |
| 814 | EFI_STATUS |
| 815 | EfiGetInfo ( |
| 816 | IN VOID *Source, |
| 817 | IN UINT32 SrcSize, |
| 818 | OUT UINT32 *DstSize, |
| 819 | OUT UINT32 *ScratchSize |
| 820 | ) |
| 821 | /*++ |
| 822 | |
| 823 | Routine Description: |
| 824 | |
| 825 | The implementation Efi Decompress GetInfo(). |
| 826 | |
| 827 | Arguments: |
| 828 | |
| 829 | Source - The source buffer containing the compressed data. |
| 830 | SrcSize - The size of source buffer |
| 831 | DstSize - The size of destination buffer. |
| 832 | ScratchSize - The size of scratch buffer. |
| 833 | |
| 834 | Returns: |
| 835 | |
| 836 | EFI_SUCCESS - The size of destination buffer and the size of scratch buffer are successfully retrieved. |
| 837 | EFI_INVALID_PARAMETER - The source data is corrupted |
| 838 | |
| 839 | --*/ |
| 840 | { |
| 841 | return GetInfo (Source, SrcSize, DstSize, ScratchSize); |
| 842 | } |
| 843 | |
| 844 | EFI_STATUS |
| 845 | TianoGetInfo ( |