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
63df733a
Commit
63df733a
authored
Feb 25, 2002
by
Gavriel State
Committed by
Alexandre Julliard
Feb 25, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added XVisualIDFromVisual to tsx11 list.
parent
019ae8a2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
0 deletions
+11
-0
ts_xlib.h
include/ts_xlib.h
+1
-0
X11_calls
tsx11/X11_calls
+1
-0
ts_xlib.c
tsx11/ts_xlib.c
+9
-0
No files found.
include/ts_xlib.h
View file @
63df733a
...
...
@@ -42,6 +42,7 @@ extern KeySym TSXKeycodeToKeysym(Display*, unsigned int, int);
extern
KeySym
TSXLookupKeysym
(
XKeyEvent
*
,
int
);
extern
KeySym
*
TSXGetKeyboardMapping
(
Display
*
,
unsigned
int
,
int
,
int
*
);
extern
char
*
TSXResourceManagerString
(
Display
*
);
extern
VisualID
TSXVisualIDFromVisual
(
Visual
*
);
extern
int
TSXInitThreads
(
void
);
extern
XPixmapFormatValues
*
TSXListPixmapFormats
(
Display
*
,
int
*
);
extern
int
*
TSXListDepths
(
Display
*
,
int
,
int
*
);
...
...
tsx11/X11_calls
View file @
63df733a
...
...
@@ -175,6 +175,7 @@ XUnionRectWithRegion
XUnionRegion
XUniqueContext
XUnmapWindow
XVisualIDFromVisual
XWarpPointer
XXorRegion
XrmGetFileDatabase
...
...
tsx11/ts_xlib.c
View file @
63df733a
...
...
@@ -226,6 +226,15 @@ char * TSXResourceManagerString(Display* a0)
return
r
;
}
VisualID
TSXVisualIDFromVisual
(
Visual
*
a0
)
{
VisualID
r
;
wine_tsx11_lock
();
r
=
XVisualIDFromVisual
(
a0
);
wine_tsx11_unlock
();
return
r
;
}
int
TSXInitThreads
(
void
)
{
int
r
;
...
...
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