Dump.h 743 B

12345678910111213141516171819202122232425262728
  1. /** @file
  2. The function declaration of dump policy entry function in IpSecConfig application.
  3. Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>
  4. SPDX-License-Identifier: BSD-2-Clause-Patent
  5. **/
  6. #ifndef _DUMP_H_
  7. #define _DUMP_H_
  8. /**
  9. Print all entry information in the database according to datatype.
  10. @param[in] DataType The value of EFI_IPSEC_CONFIG_DATA_TYPE.
  11. @param[in] ParamPackage The pointer to the ParamPackage list.
  12. @retval EFI_SUCCESS Dump all information successfully.
  13. @retval Others Some mistaken case.
  14. **/
  15. EFI_STATUS
  16. ListPolicyEntry (
  17. IN EFI_IPSEC_CONFIG_DATA_TYPE DataType,
  18. IN LIST_ENTRY *ParamPackage
  19. );
  20. #endif