mspst.h 927 B

12345678910111213141516171819202122
  1. /**
  2. * This file has no copyright assigned and is placed in the Public Domain.
  3. * This file is part of the mingw-w64 runtime package.
  4. * No warranty is given; refer to the file DISCLAIMER.PD within this package.
  5. */
  6. #ifndef _MSPST_H_
  7. #define _MSPST_H_
  8. #define PST_EXTERN_PROPID_BASE (0x6700)
  9. #define PR_PST_PATH PROP_TAG(PT_STRING8,PST_EXTERN_PROPID_BASE + 0)
  10. #define PR_PST_REMEMBER_PW PROP_TAG(PT_BOOLEAN,PST_EXTERN_PROPID_BASE + 1)
  11. #define PR_PST_ENCRYPTION PROP_TAG(PT_LONG,PST_EXTERN_PROPID_BASE + 2)
  12. #define PR_PST_PW_SZ_OLD PROP_TAG(PT_STRING8,PST_EXTERN_PROPID_BASE + 3)
  13. #define PR_PST_PW_SZ_NEW PROP_TAG(PT_STRING8,PST_EXTERN_PROPID_BASE + 4)
  14. #define PSTF_NO_ENCRYPTION ((DWORD)0x80000000)
  15. #define PSTF_COMPRESSABLE_ENCRYPTION ((DWORD)0x40000000)
  16. #define PSTF_BEST_ENCRYPTION ((DWORD)0x20000000)
  17. #define MSPST_UID_PROVIDER { 0x4e,0x49,0x54,0x41,0xf9,0xbf,0xb8,0x01,0x00,0xaa,0x00,0x37,0xd9,0x6e,0x00,0x00 }
  18. #endif