1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

win32u: Remove now unnecessary ImeToAsciiEx driver entry.

This commit is contained in:
Rémi Bernon 2024-01-17 08:20:57 +01:00 committed by Alexandre Julliard
parent f341b8003c
commit 746de31897
3 changed files with 0 additions and 15 deletions

View file

@ -729,11 +729,6 @@ static UINT nulldrv_ImeProcessKey( HIMC himc, UINT wparam, UINT lparam, const BY
return 0;
}
static UINT nulldrv_ImeToAsciiEx( UINT vkey, UINT vsc, const BYTE *state, COMPOSITIONSTRING *compstr, HIMC himc )
{
return STATUS_NOT_IMPLEMENTED;
}
static void nulldrv_NotifyIMEStatus( HWND hwnd, UINT status )
{
}
@ -1138,11 +1133,6 @@ static UINT loaderdrv_ImeProcessKey( HIMC himc, UINT wparam, UINT lparam, const
return load_driver()->pImeProcessKey( himc, wparam, lparam, state );
}
static UINT loaderdrv_ImeToAsciiEx( UINT vkey, UINT vsc, const BYTE *state, COMPOSITIONSTRING *compstr, HIMC himc )
{
return load_driver()->pImeToAsciiEx( vkey, vsc, state, compstr, himc );
}
static void loaderdrv_NotifyIMEStatus( HWND hwnd, UINT status )
{
return load_driver()->pNotifyIMEStatus( hwnd, status );
@ -1292,7 +1282,6 @@ static const struct user_driver_funcs lazy_load_driver =
loaderdrv_KbdLayerDescriptor,
loaderdrv_ReleaseKbdTables,
loaderdrv_ImeProcessKey,
loaderdrv_ImeToAsciiEx,
loaderdrv_NotifyIMEStatus,
/* cursor/icon functions */
nulldrv_DestroyCursorIcon,
@ -1384,7 +1373,6 @@ void __wine_set_user_driver( const struct user_driver_funcs *funcs, UINT version
SET_USER_FUNC(KbdLayerDescriptor);
SET_USER_FUNC(ReleaseKbdTables);
SET_USER_FUNC(ImeProcessKey);
SET_USER_FUNC(ImeToAsciiEx);
SET_USER_FUNC(NotifyIMEStatus);
SET_USER_FUNC(DestroyCursorIcon);
SET_USER_FUNC(SetCursor);

View file

@ -590,8 +590,6 @@ LRESULT ime_driver_call( HWND hwnd, enum wine_ime_call call, WPARAM wparam, LPAR
return res;
}
case WINE_IME_TO_ASCII_EX:
res = user_driver->pImeToAsciiEx( wparam, lparam, params->state, params->compstr, params->himc );
if ((NTSTATUS)res != STATUS_NOT_IMPLEMENTED) return res;
return ime_to_tascii_ex( wparam, lparam, params->state, params->compstr, params->himc );
case WINE_IME_POST_UPDATE:
post_ime_update( hwnd, wparam, (WCHAR *)lparam, (WCHAR *)params );

View file

@ -299,7 +299,6 @@ struct user_driver_funcs
void (*pReleaseKbdTables)(const KBDTABLES *);
/* IME functions */
UINT (*pImeProcessKey)(HIMC,UINT,UINT,const BYTE*);
UINT (*pImeToAsciiEx)(UINT,UINT,const BYTE*,COMPOSITIONSTRING*,HIMC);
void (*pNotifyIMEStatus)(HWND,UINT);
/* cursor/icon functions */
void (*pDestroyCursorIcon)(HCURSOR);