mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[NTUSER] Implement IntReorderKeyboardLayouts
This function is provided for KLF_REORDER flag. CORE-11700
This commit is contained in:
parent
a4fa5ef435
commit
5bd03d8b97
1 changed files with 13 additions and 3 deletions
|
@ -745,10 +745,20 @@ co_UserActivateKeyboardLayout(
|
|||
VOID FASTCALL
|
||||
IntReorderKeyboardLayouts(
|
||||
_Inout_ PWINSTATION_OBJECT pWinSta,
|
||||
_Inout_ PKL pKL)
|
||||
_Inout_ PKL pNewKL)
|
||||
{
|
||||
/* FIXME */
|
||||
gspklBaseLayout = pKL;
|
||||
PKL pOldKL = gspklBaseLayout;
|
||||
|
||||
if ((pWinSta->Flags & WSS_NOIO) || pNewKL == pOldKL)
|
||||
return;
|
||||
|
||||
pNewKL->pklPrev->pklNext = pNewKL->pklNext;
|
||||
pNewKL->pklNext->pklPrev = pNewKL->pklPrev;
|
||||
pNewKL->pklNext = pOldKL;
|
||||
pNewKL->pklPrev = pOldKL->pklPrev;
|
||||
pOldKL->pklPrev->pklNext = pNewKL;
|
||||
pOldKL->pklPrev = pNewKL;
|
||||
gspklBaseLayout = pNewKL; /* Should we use UserAssignmentLock? */
|
||||
}
|
||||
|
||||
/* Win: xxxActivateKeyboardLayout */
|
||||
|
|
Loading…
Reference in a new issue