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
f63ceec4
Commit
f63ceec4
authored
Jan 29, 2009
by
Andrew Talbot
Committed by
Alexandre Julliard
Jan 30, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11.drv: Declare some functions static.
parent
3fc04148
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
6 deletions
+3
-6
graphics.c
dlls/winex11.drv/graphics.c
+1
-1
window.c
dlls/winex11.drv/window.c
+2
-2
x11drv.h
dlls/winex11.drv/x11drv.h
+0
-3
No files found.
dlls/winex11.drv/graphics.c
View file @
f63ceec4
...
...
@@ -286,7 +286,7 @@ BOOL X11DRV_SetupGCForBrush( X11DRV_PDEVICE *physDev )
* Setup physDev->gc for drawing operations using current pen.
* Return FALSE if pen is PS_NULL, TRUE otherwise.
*/
BOOL
X11DRV_SetupGCForPen
(
X11DRV_PDEVICE
*
physDev
)
static
BOOL
X11DRV_SetupGCForPen
(
X11DRV_PDEVICE
*
physDev
)
{
XGCValues
val
;
UINT
rop2
=
GetROP2
(
physDev
->
hdc
);
...
...
dlls/winex11.drv/window.c
View file @
f63ceec4
...
...
@@ -1226,7 +1226,7 @@ void make_window_embedded( Display *display, struct x11drv_win_data *data )
*
* Convert a rect from client to X window coordinates
*/
void
X11DRV_window_to_X_rect
(
struct
x11drv_win_data
*
data
,
RECT
*
rect
)
static
void
X11DRV_window_to_X_rect
(
struct
x11drv_win_data
*
data
,
RECT
*
rect
)
{
RECT
rc
;
...
...
@@ -1827,7 +1827,7 @@ Window X11DRV_get_whole_window( HWND hwnd )
*
* Return the X window associated with the client area of a window
*/
Window
X11DRV_get_client_window
(
HWND
hwnd
)
static
Window
X11DRV_get_client_window
(
HWND
hwnd
)
{
struct
x11drv_win_data
*
data
=
X11DRV_get_win_data
(
hwnd
);
...
...
dlls/winex11.drv/x11drv.h
View file @
f63ceec4
...
...
@@ -247,7 +247,6 @@ extern RGNDATA *X11DRV_GetRegionData( HRGN hrgn, HDC hdc_lptodp );
extern
BOOL
X11DRV_SetupGCForPatBlt
(
X11DRV_PDEVICE
*
physDev
,
GC
gc
,
BOOL
fMapColors
);
extern
BOOL
X11DRV_SetupGCForBrush
(
X11DRV_PDEVICE
*
physDev
);
extern
BOOL
X11DRV_SetupGCForPen
(
X11DRV_PDEVICE
*
physDev
);
extern
BOOL
X11DRV_SetupGCForText
(
X11DRV_PDEVICE
*
physDev
);
extern
INT
X11DRV_XWStoDS
(
X11DRV_PDEVICE
*
physDev
,
INT
width
);
extern
INT
X11DRV_YWStoDS
(
X11DRV_PDEVICE
*
physDev
,
INT
height
);
...
...
@@ -718,7 +717,6 @@ struct x11drv_win_data
extern
struct
x11drv_win_data
*
X11DRV_get_win_data
(
HWND
hwnd
);
extern
struct
x11drv_win_data
*
X11DRV_create_win_data
(
HWND
hwnd
);
extern
Window
X11DRV_get_whole_window
(
HWND
hwnd
);
extern
Window
X11DRV_get_client_window
(
HWND
hwnd
);
extern
XIC
X11DRV_get_ic
(
HWND
hwnd
);
extern
int
pixelformat_from_fbconfig_id
(
XID
fbconfig_id
);
...
...
@@ -753,7 +751,6 @@ typedef int (*x11drv_error_callback)( Display *display, XErrorEvent *event, void
extern
void
X11DRV_expect_error
(
Display
*
display
,
x11drv_error_callback
callback
,
void
*
arg
);
extern
int
X11DRV_check_error
(
void
);
extern
void
X11DRV_window_to_X_rect
(
struct
x11drv_win_data
*
data
,
RECT
*
rect
);
extern
void
X11DRV_X_to_window_rect
(
struct
x11drv_win_data
*
data
,
RECT
*
rect
);
extern
void
xinerama_init
(
unsigned
int
width
,
unsigned
int
height
);
...
...
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