winex11: Remove some unused functions.

This commit is contained in:
Alexandre Julliard 2008-12-03 12:10:21 +01:00
parent 1abff5afef
commit e48283bedd
4 changed files with 0 additions and 27 deletions

View File

@ -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;

View File

@ -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);

View File

@ -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). */

View File

@ -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 ****************************************************