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
0e8e45cf
Commit
0e8e45cf
authored
Oct 08, 2013
by
Ken Thomases
Committed by
Alexandre Julliard
Oct 08, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winemac: Use unsigned type for bitfields.
parent
5da10c9a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
macdrv.h
dlls/winemac.drv/macdrv.h
+6
-6
No files found.
dlls/winemac.drv/macdrv.h
View file @
0e8e45cf
...
...
@@ -131,12 +131,12 @@ struct macdrv_win_data
macdrv_view
gl_view
;
/* view for GL */
RECT
gl_rect
;
/* GL view rectangle relative to whole_rect */
COLORREF
color_key
;
/* color key for layered window; CLR_INVALID is not color keyed */
BOOL
on_screen
:
1
;
/* is window ordered in? (minimized or not) */
BOOL
shaped
:
1
;
/* is window using a custom region shape? */
BOOL
layered
:
1
;
/* is window layered and with valid attributes? */
BOOL
ulw_layered
:
1
;
/* has UpdateLayeredWindow() been called for window? */
BOOL
per_pixel_alpha
:
1
;
/* is window using per-pixel alpha? */
BOOL
minimized
:
1
;
/* is window minimized? */
unsigned
int
on_screen
:
1
;
/* is window ordered in? (minimized or not) */
unsigned
int
shaped
:
1
;
/* is window using a custom region shape? */
unsigned
int
layered
:
1
;
/* is window layered and with valid attributes? */
unsigned
int
ulw_layered
:
1
;
/* has UpdateLayeredWindow() been called for window? */
unsigned
int
per_pixel_alpha
:
1
;
/* is window using per-pixel alpha? */
unsigned
int
minimized
:
1
;
/* is window minimized? */
struct
window_surface
*
surface
;
struct
window_surface
*
unminimized_surface
;
};
...
...
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