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 9 #define PST_EXTERN_PROPID_BASE (0x6700) 10 #define PR_PST_PATH PROP_TAG(PT_STRING8,PST_EXTERN_PROPID_BASE + 0) 11 #define PR_PST_REMEMBER_PW PROP_TAG(PT_BOOLEAN,PST_EXTERN_PROPID_BASE + 1) 12 #define PR_PST_ENCRYPTION PROP_TAG(PT_LONG,PST_EXTERN_PROPID_BASE + 2) 13 #define PR_PST_PW_SZ_OLD PROP_TAG(PT_STRING8,PST_EXTERN_PROPID_BASE + 3) 14 #define PR_PST_PW_SZ_NEW PROP_TAG(PT_STRING8,PST_EXTERN_PROPID_BASE + 4) 15 16 #define PSTF_NO_ENCRYPTION ((DWORD)0x80000000) 17 #define PSTF_COMPRESSABLE_ENCRYPTION ((DWORD)0x40000000) 18 #define PSTF_BEST_ENCRYPTION ((DWORD)0x20000000) 19 20 #define MSPST_UID_PROVIDER { 0x4e,0x49,0x54,0x41,0xf9,0xbf,0xb8,0x01,0x00,0xaa,0x00,0x37,0xd9,0x6e,0x00,0x00 } 21 22 #endif 23