[MSCTF][SDK] Implement multi-language handling (#6587)

Implementing the back-end of
the Language bar...
JIRA issue: CORE-19361
- Add mlng.cpp and mlng.h.
- Modify msctf.spec.
- Implement MLNGINFO
  structure and CStaticIconList
  class.
- Implement TF_InitMlngInfo,
  TF_MlngInfoCount,
  TF_InatExtractIcon,
  TF_GetMlngIconIndex, and
  TF_GetMlngHKL functions.
This commit is contained in:
Katayama Hirofumi MZ 2024-03-10 11:35:05 +09:00 committed by GitHub
parent efa86fff9f
commit e25d7d724d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 679 additions and 7 deletions

View file

@ -697,6 +697,7 @@ HRESULT WINAPI TF_CreateLangBarItemMgr(ITfLangBarItemMgr **pplbim)
return E_NOTIMPL;
}
#ifndef __REACTOS__ /* See mlng.cpp */
/***********************************************************************
* TF_InitMlngInfo (MSCTF.@)
*/
@ -705,3 +706,4 @@ HRESULT WINAPI TF_InitMlngInfo(void)
FIXME("stub\n");
return S_OK;
}
#endif