Module: wine Branch: master Commit: 3e207c221b71d2adf3c00980074a8389015dca38 URL: http://source.winehq.org/git/wine.git/?a=commit;h=3e207c221b71d2adf3c0098007...
Author: Juan Lang juan.lang@gmail.com Date: Thu Sep 18 12:40:28 2008 -0700
include: Add missing defines.
---
include/cryptuiapi.h | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-)
diff --git a/include/cryptuiapi.h b/include/cryptuiapi.h index 3d027f5..f2efe8f 100644 --- a/include/cryptuiapi.h +++ b/include/cryptuiapi.h @@ -69,6 +69,26 @@ typedef struct tagCRYPTUI_INITDIALOG_STRUCT PCCERT_CONTEXT pCertContext; } CRYPTUI_INITDIALOG_STRUCT, *PCRYPTUI_INITDIALOG_STRUCT;
+/* Values for CRYPTUI_VIEWCERTIFICATE_STRUCT's dwFlags */ +#define CRYPTUI_HIDE_HIERARCHYPAGE 0x00000001 +#define CRYPTUI_HIDE_DETAILPAGE 0x00000002 +#define CRYPTUI_DISABLE_EDITPROPERTIES 0x00000004 +#define CRYPTUI_ENABLE_EDITPROPERTIES 0x00000008 +#define CRYPTUI_DISABLE_ADDTOSTORE 0x00000010 +#define CRYPTUI_ENABLE_ADDTOSTORE 0x00000020 +#define CRYPTUI_ACCEPT_DECLINE_STYLE 0x00000040 +#define CRYPTUI_IGNORE_UNTRUSTED_ROOT 0x00000080 +#define CRYPTUI_DONT_OPEN_STORES 0x00000100 +#define CRYPTUI_ONLY_OPEN_ROOT_STORE 0x00000200 +#define CRYPTUI_WARN_UNTRUSTED_ROOT 0x00000400 +#define CRYPTUI_ENABLE_REVOCATION_CHECKING 0x00000800 +#define CRYPTUI_WARN_REMOTE_TRUST 0x00001000 +#define CRYPTUI_DISABLE_EXPORT 0x00002000 +#define CRYPTUI_ENABLE_REVOCATION_CHECK_END_CERT 0x00004000 +#define CRYPTUI_ENABLE_REVOCATION_CHECK_CHAIN 0x00008000 +#define CRYPTUI_ENABLE_REVOCATION_CHECK_CHAIN_EXCLUDE_ROOT CRYPTUI_ENABLE_REVOCATION_CHECKING +#define CRYPTUI_DISABLE_HTMLLINK 0x00010000 + typedef struct tagCRYPTUI_VIEWCERTIFICATE_STRUCTA { DWORD dwSize;