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
9980868b
Commit
9980868b
authored
Aug 16, 2012
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Get rid of the X11 locking functions.
parent
3bd185c3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
33 deletions
+0
-33
winex11.drv.spec
dlls/winex11.drv/winex11.drv.spec
+0
-4
x11drv.h
dlls/winex11.drv/x11drv.h
+0
-3
x11drv_main.c
dlls/winex11.drv/x11drv_main.c
+0
-26
No files found.
dlls/winex11.drv/winex11.drv.spec
View file @
9980868b
...
...
@@ -61,10 +61,6 @@
@ cdecl LoadTabletInfo(long) X11DRV_LoadTabletInfo
@ cdecl WTInfoW(long long ptr) X11DRV_WTInfoW
# X11 locks
@ cdecl -norelay wine_tsx11_lock()
@ cdecl -norelay wine_tsx11_unlock()
# Desktop
@ cdecl wine_create_desktop(long long) X11DRV_create_desktop
...
...
dlls/winex11.drv/x11drv.h
View file @
9980868b
...
...
@@ -63,9 +63,6 @@ typedef int Status;
#define WINE_XDND_VERSION 4
extern
void
CDECL
wine_tsx11_lock
(
void
);
extern
void
CDECL
wine_tsx11_unlock
(
void
);
/* X physical pen */
typedef
struct
{
...
...
dlls/winex11.drv/x11drv_main.c
View file @
9980868b
...
...
@@ -56,15 +56,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(x11drv);
WINE_DECLARE_DEBUG_CHANNEL
(
synchronous
);
WINE_DECLARE_DEBUG_CHANNEL
(
winediag
);
static
CRITICAL_SECTION
X11DRV_CritSection
;
static
CRITICAL_SECTION_DEBUG
critsect_debug
=
{
0
,
0
,
&
X11DRV_CritSection
,
{
&
critsect_debug
.
ProcessLocksList
,
&
critsect_debug
.
ProcessLocksList
},
0
,
0
,
{
(
DWORD_PTR
)(
__FILE__
": X11DRV_CritSection"
)
}
};
static
CRITICAL_SECTION
X11DRV_CritSection
=
{
&
critsect_debug
,
-
1
,
0
,
0
,
0
,
0
};
static
Screen
*
screen
;
Visual
*
visual
;
XPixmapFormatValues
**
pixmap_formats
;
...
...
@@ -300,23 +291,6 @@ static int error_handler( Display *display, XErrorEvent *error_evt )
}
/***********************************************************************
* wine_tsx11_lock (X11DRV.@)
*/
void
CDECL
wine_tsx11_lock
(
void
)
{
EnterCriticalSection
(
&
X11DRV_CritSection
);
}
/***********************************************************************
* wine_tsx11_unlock (X11DRV.@)
*/
void
CDECL
wine_tsx11_unlock
(
void
)
{
LeaveCriticalSection
(
&
X11DRV_CritSection
);
}
/***********************************************************************
* init_pixmap_formats
*/
static
void
init_pixmap_formats
(
Display
*
display
)
...
...
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