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
60ffc296
Commit
60ffc296
authored
Jul 14, 2011
by
Francois Gouget
Committed by
Alexandre Julliard
Jul 14, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11.drv: Make some DC functions static.
parent
e33e31a7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
init.c
dlls/winex11.drv/init.c
+4
-4
No files found.
dlls/winex11.drv/init.c
View file @
60ffc296
...
...
@@ -118,7 +118,7 @@ void X11DRV_GDI_Finalize(void)
/**********************************************************************
* X11DRV_CreateDC
*/
BOOL
X11DRV_CreateDC
(
HDC
hdc
,
PHYSDEV
*
pdev
,
LPCWSTR
driver
,
LPCWSTR
device
,
static
BOOL
X11DRV_CreateDC
(
HDC
hdc
,
PHYSDEV
*
pdev
,
LPCWSTR
driver
,
LPCWSTR
device
,
LPCWSTR
output
,
const
DEVMODEW
*
initData
)
{
X11DRV_PDEVICE
*
physDev
;
...
...
@@ -166,7 +166,7 @@ BOOL X11DRV_CreateDC( HDC hdc, PHYSDEV *pdev, LPCWSTR driver, LPCWSTR device,
/**********************************************************************
* X11DRV_DeleteDC
*/
BOOL
X11DRV_DeleteDC
(
PHYSDEV
dev
)
static
BOOL
X11DRV_DeleteDC
(
PHYSDEV
dev
)
{
X11DRV_PDEVICE
*
physDev
=
get_x11drv_dev
(
dev
);
...
...
@@ -184,7 +184,7 @@ BOOL X11DRV_DeleteDC( PHYSDEV dev )
/***********************************************************************
* GetDeviceCaps (X11DRV.@)
*/
INT
X11DRV_GetDeviceCaps
(
PHYSDEV
dev
,
INT
cap
)
static
INT
X11DRV_GetDeviceCaps
(
PHYSDEV
dev
,
INT
cap
)
{
switch
(
cap
)
{
...
...
@@ -285,7 +285,7 @@ INT X11DRV_GetDeviceCaps( PHYSDEV dev, INT cap )
/**********************************************************************
* ExtEscape (X11DRV.@)
*/
INT
X11DRV_ExtEscape
(
PHYSDEV
dev
,
INT
escape
,
INT
in_count
,
LPCVOID
in_data
,
static
INT
X11DRV_ExtEscape
(
PHYSDEV
dev
,
INT
escape
,
INT
in_count
,
LPCVOID
in_data
,
INT
out_count
,
LPVOID
out_data
)
{
X11DRV_PDEVICE
*
physDev
=
get_x11drv_dev
(
dev
);
...
...
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