Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
3db00085
Commit
3db00085
authored
Dec 06, 2002
by
Francois Gouget
Committed by
Alexandre Julliard
Dec 06, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Define PSH_WIZARD97 (problem reported by jaymz@free.fr).
parent
983088a0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
10 deletions
+9
-10
propsheet.c
dlls/comctl32/propsheet.c
+0
-2
prsht.h
include/prsht.h
+9
-8
No files found.
dlls/comctl32/propsheet.c
View file @
3db00085
...
...
@@ -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)
/******************************************************************************
...
...
include/prsht.h
View file @
3db00085
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment