Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
97c1c836
Commit
97c1c836
authored
Feb 14, 1999
by
Paul Quinn
Committed by
Alexandre Julliard
Feb 14, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some Winelib names.
parent
b36c6fb1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
11 deletions
+19
-11
winuser.h
include/winuser.h
+15
-7
main.c
misc/main.c
+4
-4
No files found.
include/winuser.h
View file @
97c1c836
...
...
@@ -18,19 +18,23 @@
#define HCF_HOTKEYSOUND 0x00000010
#define HCF_INDICATOR 0x00000020
#define HCF_HOTKEYAVAILABLE 0x00000040
typedef
struct
tagHIGHCONTRASTA
typedef
struct
tagHIGHCONTRAST32A
{
UINT32
cbSize
;
DWORD
dwFlags
;
LPSTR
lpszDefaultScheme
;
}
HIGHCONTRASTA
,
*
LPHIGHCONTRAST
A
;
}
HIGHCONTRAST32A
,
*
LPHIGHCONTRAST32
A
;
typedef
struct
tagHIGHCONTRASTW
typedef
struct
tagHIGHCONTRAST
32
W
{
UINT32
cbSize
;
DWORD
dwFlags
;
LPWSTR
lpszDefaultScheme
;
}
HIGHCONTRASTW
,
*
LPHIGHCONTRASTW
;
}
HIGHCONTRAST32W
,
*
LPHIGHCONTRAST32W
;
DECL_WINELIB_TYPE_AW
(
HIGHCONTRAST
)
DECL_WINELIB_TYPE_AW
(
LPHIGHCONTRAST
)
typedef
struct
{
...
...
@@ -52,9 +56,10 @@ typedef struct
HWND32
hwnd
;
UINT32
wHitTestCode
;
DWORD
dwExtraInfo
;
}
MOUSEHOOKSTRUCT32
,
*
LPMOUSEHOOKSTRUCT32
;
}
MOUSEHOOKSTRUCT32
,
*
PMOUSEHOOKSTRUCT32
,
*
LPMOUSEHOOKSTRUCT32
;
DECL_WINELIB_TYPE
(
MOUSEHOOKSTRUCT
)
DECL_WINELIB_TYPE
(
PMOUSEHOOKSTRUCT
)
DECL_WINELIB_TYPE
(
LPMOUSEHOOKSTRUCT
)
/* Hardware hook structure */
...
...
@@ -797,9 +802,11 @@ typedef struct
POINT32
ptMaxPosition
;
POINT32
ptMinTrackSize
;
POINT32
ptMaxTrackSize
;
}
MINMAXINFO32
;
}
MINMAXINFO32
,
*
PMINMAXINFO32
,
*
LPMINMAXINFO32
;
DECL_WINELIB_TYPE
(
MINMAXINFO
)
DECL_WINELIB_TYPE
(
PMINMAXINFO
)
DECL_WINELIB_TYPE
(
LPMINMAXINFO
)
/* RedrawWindow() flags */
#define RDW_INVALIDATE 0x0001
...
...
@@ -831,9 +838,10 @@ typedef struct
INT32
cx
;
INT32
cy
;
UINT32
flags
;
}
WINDOWPOS32
,
*
LPWINDOWPOS32
;
}
WINDOWPOS32
,
*
PWINDOWPOS32
,
*
LPWINDOWPOS32
;
DECL_WINELIB_TYPE
(
WINDOWPOS
)
DECL_WINELIB_TYPE
(
PWINDOWPOS
)
DECL_WINELIB_TYPE
(
LPWINDOWPOS
)
/* WM_MOUSEACTIVATE return values */
...
...
misc/main.c
View file @
97c1c836
...
...
@@ -1012,11 +1012,11 @@ BOOL32 WINAPI SystemParametersInfo32A( UINT32 uAction, UINT32 uParam,
case
SPI_GETHIGHCONTRAST
:
{
LPHIGHCONTRAST
A
lpHighContrastA
=
(
LPHIGHCONTRAST
A
)
lpvParam
;
LPHIGHCONTRAST
32A
lpHighContrastA
=
(
LPHIGHCONTRAST32
A
)
lpvParam
;
FIXME
(
system
,
"SPI_GETHIGHCONTRAST not fully implemented
\n
"
);
if
(
lpHighContrastA
->
cbSize
==
sizeof
(
HIGHCONTRASTA
)
)
if
(
lpHighContrastA
->
cbSize
==
sizeof
(
HIGHCONTRAST
32
A
)
)
{
/* Indicate that there is no high contrast available */
lpHighContrastA
->
dwFlags
=
0
;
...
...
@@ -1295,11 +1295,11 @@ BOOL32 WINAPI SystemParametersInfo32W( UINT32 uAction, UINT32 uParam,
case
SPI_GETHIGHCONTRAST
:
{
LPHIGHCONTRAST
W
lpHighContrastW
=
(
LPHIGHCONTRAST
W
)
lpvParam
;
LPHIGHCONTRAST
32W
lpHighContrastW
=
(
LPHIGHCONTRAST32
W
)
lpvParam
;
FIXME
(
system
,
"SPI_GETHIGHCONTRAST not fully implemented
\n
"
);
if
(
lpHighContrastW
->
cbSize
==
sizeof
(
HIGHCONTRASTW
)
)
if
(
lpHighContrastW
->
cbSize
==
sizeof
(
HIGHCONTRAST
32
W
)
)
{
/* Indicate that there is no high contrast available */
lpHighContrastW
->
dwFlags
=
0
;
...
...
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