mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 16:51:39 +00:00
[MSCTF][SDK] Implement InitLangChangeHotKey (#6234)
Supporting TIPs and Language Bar... JIRA issue: CORE-19361 - Implement InitLangChangeHotKey function. - Add some global variables about hot-keys. - Fix CicRegKey in <cicero/cicreg.h>.
This commit is contained in:
parent
7f1df040ed
commit
ec0695c26b
2 changed files with 130 additions and 5 deletions
|
@ -46,7 +46,7 @@ public:
|
|||
return ::RegSetValueEx(m_hKey, pszValueName, 0, REG_DWORD, (LPBYTE)&dwValue, sizeof(dwValue));
|
||||
}
|
||||
|
||||
LSTATUS QuerySz(LPCTSTR pszValueName, LPWSTR pszValue, DWORD cchValueMax);
|
||||
LSTATUS QuerySz(LPCTSTR pszValueName, LPTSTR pszValue, DWORD cchValueMax);
|
||||
|
||||
LSTATUS SetSz(LPCTSTR pszValueName, LPCTSTR pszValue)
|
||||
{
|
||||
|
@ -124,7 +124,7 @@ CicRegKey::Create(
|
|||
}
|
||||
|
||||
inline LSTATUS
|
||||
CicRegKey::QuerySz(LPCTSTR pszValueName, LPWSTR pszValue, DWORD cchValueMax)
|
||||
CicRegKey::QuerySz(LPCTSTR pszValueName, LPTSTR pszValue, DWORD cchValueMax)
|
||||
{
|
||||
DWORD cchSaveMax = cchValueMax;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue