Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Felix Münchhalfen
wine
Commits
dbf9fba4
Commit
dbf9fba4
authored
26 years ago
by
Bertho Stultiens
Committed by
Alexandre Julliard
26 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Changed the DLGTEMPLATE and DLGITEMTEMPLATE types to adhere to the AW
structure for compatibility.
parent
9bdf34b3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/prsht.h
+2
-2
2 additions, 2 deletions
include/prsht.h
include/winuser.h
+17
-4
17 additions, 4 deletions
include/winuser.h
with
19 additions
and
6 deletions
include/prsht.h
+
2
−
2
View file @
dbf9fba4
...
...
@@ -58,7 +58,7 @@ typedef struct _PROPSHEETPAGEA
union
{
LPCSTR
pszTemplate
;
LPCDLGTEMPLATE
pResource
;
LPCDLGTEMPLATE
A
pResource
;
}
DUMMYUNIONNAME1
;
union
{
...
...
@@ -84,7 +84,7 @@ typedef struct _PROPSHEETPAGEW
union
{
LPCWSTR
pszTemplate
;
LPCDLGTEMPLATE
pResource
;
LPCDLGTEMPLATE
W
pResource
;
}
DUMMYUNIONNAME1
;
union
{
...
...
This diff is collapsed.
Click to expand it.
include/winuser.h
+
17
−
4
View file @
dbf9fba4
...
...
@@ -1642,8 +1642,15 @@ typedef struct tagDLGTEMPLATE
short
y
;
short
cx
;
short
cy
;
}
DLGTEMPLATE
,
*
LPDLGTEMPLATE
;
typedef
const
DLGTEMPLATE
*
LPCDLGTEMPLATE
;
}
DLGTEMPLATE
;
typedef
DLGTEMPLATE
*
LPDLGTEMPLATEA
;
typedef
DLGTEMPLATE
*
LPDLGTEMPLATEW
;
#define LPDLGTEMPLATE WINELIB_NAME_AW(LPDLGTEMPLATE)
typedef
const
DLGTEMPLATE
*
LPCDLGTEMPLATEA
;
typedef
const
DLGTEMPLATE
*
LPCDLGTEMPLATEW
;
#define LPCDLGTEMPLATE WINELIB_NAME_AW(LPCDLGTEMPLATE)
/* Fixme: use this instaed of LPCVOID for CreateDialogIndirectParam and DialogBoxIndirectParam*/
typedef
struct
tagDLGITEMTEMPLATE
{
...
...
@@ -1655,9 +1662,15 @@ typedef struct tagDLGITEMTEMPLATE
short
cx
;
short
cy
;
WORD
id
;
}
DLGITEMTEMPLATE
,
*
LPDLGITEMTEMPLATE
;
}
DLGITEMTEMPLATE
;
typedef
DLGITEMTEMPLATE
*
LPDLGITEMTEMPLATEA
;
typedef
DLGITEMTEMPLATE
*
LPDLGITEMTEMPLATEW
;
#define LPDLGITEMTEMPLATE WINELIB_NAME_AW(LPDLGITEMTEMPLATE)
typedef
const
DLGITEMTEMPLATE
*
LPCDLGITEMTEMPLATEA
;
typedef
const
DLGITEMTEMPLATE
*
LPCDLGITEMTEMPLATEW
;
#define LPCDLGITEMTEMPLATE WINELIB_NAME_AW(LPCDLGITEMTEMPLATE)
typedef
const
DLGITEMTEMPLATE
*
LPCDLGITEMTEMPLATE
;
/* CBT hook values */
#define HCBT_MOVESIZE 0
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment