PwdCredentialProviderHii.h 614 B

1234567891011121314151617181920212223
  1. /** @file
  2. GUID used as HII FormSet and HII Package list GUID in PwdCredentialProviderDxe driver.
  3. Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
  4. SPDX-License-Identifier: BSD-2-Clause-Patent
  5. **/
  6. #ifndef __PWD_CREDENTIAL_PROVIDER_HII_H__
  7. #define __PWD_CREDENTIAL_PROVIDER_HII_H__
  8. //
  9. // Used for save password credential and form browser.
  10. // Also used as provider identifier.
  11. //
  12. #define PWD_CREDENTIAL_PROVIDER_GUID \
  13. { \
  14. 0x78b9ec8b, 0xc000, 0x46c5, { 0xac, 0x93, 0x24, 0xa0, 0xc1, 0xbb, 0x0, 0xce } \
  15. }
  16. extern EFI_GUID gPwdCredentialProviderGuid;
  17. #endif