Define PSH_WIZARD97 (problem reported by jaymz@free.fr).

This commit is contained in:
Francois Gouget 2002-12-06 23:19:54 +00:00 committed by Alexandre Julliard
parent 983088a03b
commit 3db0008552
2 changed files with 9 additions and 10 deletions

View file

@ -112,8 +112,6 @@ const WCHAR PropSheetInfoStr[] =
#define MAX_TABTEXT_LENGTH 255
#define MAX_BUTTONTEXT_LENGTH 64
#define PSH_WIZARD97_OLD 0x00002000
#define PSH_WIZARD97_NEW 0x01000000
#define INTRNL_ANY_WIZARD (PSH_WIZARD | PSH_WIZARD97_OLD | PSH_WIZARD97_NEW | PSH_WIZARD_LITE)
/******************************************************************************

View file

@ -253,10 +253,7 @@ DECL_WINELIB_TYPE_AW(LPFNPSPCALLBACK)
#define PSH_RTLREADING 0x0800
#define PSH_WIZARDCONTEXTHELP 0x00001000
/*
* for below IE 5
* PSH_WIZARD97 0x00002000
*/
#define PSH_WIZARD97_OLD 0x00002000 /* for IE < 5 */
#define PSH_WATERMARK 0x00008000
#define PSH_USEHBMWATERMARK 0x00010000
#define PSH_USEHPLWATERMARK 0x00020000
@ -265,11 +262,15 @@ DECL_WINELIB_TYPE_AW(LPFNPSPCALLBACK)
#define PSH_USEHBMHEADER 0x00100000
#define PSH_USEPAGELANG 0x00200000
#define PSH_WIZARD_LITE 0x00400000
/*
* for IE 5 and above
* PSH_WIZARD97 0x01000000
*/
#define PSH_WIZARD97_NEW 0x01000000 /* for IE >= 5 */
#define PSH_NOCONTEXTHELP 0x02000000
#ifndef __WINE__
# if _WIN32_IE < 0x0500
# define PSH_WIZARD97 PSH_WIZARD97_OLD
# else
# define PSH_WIZARD97 PSH_WIZARD97_NEW
# endif
#endif
#define PSCB_INITIALIZED 1
#define PSCB_PRECREATE 2