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
e48283be
Commit
e48283be
authored
Dec 03, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Remove some unused functions.
parent
1abff5af
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
27 deletions
+0
-27
ime.c
dlls/winex11.drv/ime.c
+0
-16
x11drv.h
dlls/winex11.drv/x11drv.h
+0
-1
x11font.h
dlls/winex11.drv/x11font.h
+0
-1
xfont.c
dlls/winex11.drv/xfont.c
+0
-9
No files found.
dlls/winex11.drv/ime.c
View file @
e48283be
...
...
@@ -985,22 +985,6 @@ void IME_SetOpenStatus(BOOL fOpen)
ImmSetOpenStatus
(
RealIMC
(
FROM_X11
),
fOpen
);
}
LRESULT
IME_SendMessageToSelectedHWND
(
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
)
{
LPINPUTCONTEXT
lpIMC
;
LRESULT
rc
=
0
;
if
(
!
hSelectedFrom
)
return
rc
;
lpIMC
=
LockRealIMC
(
FROM_X11
);
if
(
lpIMC
)
rc
=
SendMessageW
(
lpIMC
->
hWnd
,
msg
,
wParam
,
lParam
);
UnlockRealIMC
(
FROM_X11
);
return
rc
;
}
INT
IME_GetCursorPos
(
void
)
{
LPINPUTCONTEXT
lpIMC
;
...
...
dlls/winex11.drv/x11drv.h
View file @
e48283be
...
...
@@ -278,7 +278,6 @@ extern BOOL destroy_glxpixmap(Display *display, XID glxpixmap);
/* IME support */
extern
void
IME_UnregisterClasses
(
void
);
extern
void
IME_SetOpenStatus
(
BOOL
fOpen
);
extern
LRESULT
IME_SendMessageToSelectedHWND
(
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
);
extern
INT
IME_GetCursorPos
();
extern
void
IME_SetCursorPos
(
DWORD
pos
);
extern
void
IME_UpdateAssociation
(
HWND
focus
);
...
...
dlls/winex11.drv/x11font.h
View file @
e48283be
...
...
@@ -221,7 +221,6 @@ typedef struct
extern
fontObject
*
XFONT_GetFontObject
(
X_PHYSFONT
pFont
);
extern
XFontStruct
*
XFONT_GetFontStruct
(
X_PHYSFONT
pFont
);
extern
LPIFONTINFO16
XFONT_GetFontInfo
(
X_PHYSFONT
pFont
);
/* internal charset(hibyte must be set) */
/* lobyte is DEFAULT_CHARSET(=0). */
...
...
dlls/winex11.drv/xfont.c
View file @
e48283be
...
...
@@ -3180,15 +3180,6 @@ XFontStruct* XFONT_GetFontStruct( X_PHYSFONT pFont )
return
NULL
;
}
/***********************************************************************
* XFONT_GetFontInfo
*/
LPIFONTINFO16
XFONT_GetFontInfo
(
X_PHYSFONT
pFont
)
{
if
(
CHECK_PFONT
(
pFont
)
)
return
&
(
__PFONT
(
pFont
)
->
fi
->
df
);
return
NULL
;
}
/* X11DRV Interface ****************************************************
...
...
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