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
7caa1f6b
Commit
7caa1f6b
authored
Mar 02, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Beginnings of inter-process GetDC support.
Use a standard list for the DCE list. Small cleanups.
parent
a9e0fb1b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
97 additions
and
107 deletions
+97
-107
dce.h
include/dce.h
+4
-14
dce.c
windows/dce.c
+93
-93
No files found.
include/dce.h
View file @
7caa1f6b
...
...
@@ -36,21 +36,11 @@ typedef enum
DCE_WINDOW_DC
/* This is a window DC (style CS_OWNDC) */
}
DCE_TYPE
;
struct
tagDCE
;
typedef
struct
tagDCE
{
struct
tagDCE
*
next
;
HDC
hDC
;
HWND
hwndCurrent
;
HWND
hwndDC
;
HRGN
hClipRgn
;
DCE_TYPE
type
;
DWORD
DCXflags
;
}
DCE
;
extern
DCE
*
DCE_AllocDCE
(
HWND
hWnd
,
DCE_TYPE
type
);
extern
DCE
*
DCE_FreeDCE
(
DCE
*
dce
);
extern
void
DCE_FreeWindowDCE
(
HWND
);
extern
struct
tagDCE
*
DCE_AllocDCE
(
HWND
hWnd
,
DCE_TYPE
type
);
extern
void
DCE_FreeDCE
(
struct
tagDCE
*
dce
);
extern
void
DCE_FreeWindowDCE
(
HWND
);
extern
BOOL
DCE_InvalidateDCE
(
HWND
,
const
RECT
*
);
#endif
/* __WINE_DCE_H */
windows/dce.c
View file @
7caa1f6b
This diff is collapsed.
Click to expand it.
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