mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
parent
97f4c3c3af
commit
6541c423f4
3 changed files with 8 additions and 0 deletions
|
@ -214,6 +214,7 @@ Imm32CompClauseWideToAnsi(const DWORD *source, INT slen, LPCWSTR text,
|
|||
#define CS_DoAttr CS_DoStrA
|
||||
#define CS_DoClause CS_DoStrA
|
||||
|
||||
// Win: InternalGetCompositionStringA
|
||||
LONG APIENTRY
|
||||
Imm32GetCompStrA(HIMC hIMC, const COMPOSITIONSTRING *pCS, DWORD dwIndex,
|
||||
LPVOID lpBuf, DWORD dwBufLen, BOOL bAnsiClient, UINT uCodePage)
|
||||
|
@ -364,6 +365,7 @@ Imm32GetCompStrA(HIMC hIMC, const COMPOSITIONSTRING *pCS, DWORD dwIndex,
|
|||
return dwBufLen;
|
||||
}
|
||||
|
||||
// Win: InternalGetCompositionStringW
|
||||
LONG APIENTRY
|
||||
Imm32GetCompStrW(HIMC hIMC, const COMPOSITIONSTRING *pCS, DWORD dwIndex,
|
||||
LPVOID lpBuf, DWORD dwBufLen, BOOL bAnsiClient, UINT uCodePage)
|
||||
|
|
|
@ -179,6 +179,7 @@ BOOL APIENTRY Imm32KEnglish(HIMC hIMC)
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
// Win: HotKeyIDDispatcher
|
||||
BOOL APIENTRY Imm32ProcessHotKey(HWND hWnd, HIMC hIMC, HKL hKL, DWORD dwHotKeyID)
|
||||
{
|
||||
PIMEDPI pImeDpi;
|
||||
|
|
|
@ -27,6 +27,7 @@ Imm32StrToUInt(LPCWSTR pszText, LPDWORD pdwValue, ULONG nBase)
|
|||
return S_OK;
|
||||
}
|
||||
|
||||
// Win: UIntToStr
|
||||
HRESULT APIENTRY
|
||||
Imm32UIntToStr(DWORD dwValue, ULONG nBase, LPWSTR pszBuff, USHORT cchBuff)
|
||||
{
|
||||
|
@ -115,6 +116,7 @@ LONG APIENTRY IchAnsiFromWide(LONG cchWide, LPCWSTR pchWide, UINT uCodePage)
|
|||
return cchAnsi;
|
||||
}
|
||||
|
||||
// Win: InternalGetSystemPathName
|
||||
BOOL Imm32GetSystemLibraryPath(LPWSTR pszPath, DWORD cchPath, LPCWSTR pszFileName)
|
||||
{
|
||||
if (!pszFileName[0] || !GetSystemDirectoryW(pszPath, cchPath))
|
||||
|
@ -124,6 +126,7 @@ BOOL Imm32GetSystemLibraryPath(LPWSTR pszPath, DWORD cchPath, LPCWSTR pszFileNam
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
// Win: LFontAtoLFontW
|
||||
VOID APIENTRY LogFontAnsiToWide(const LOGFONTA *plfA, LPLOGFONTW plfW)
|
||||
{
|
||||
size_t cch;
|
||||
|
@ -136,6 +139,7 @@ VOID APIENTRY LogFontAnsiToWide(const LOGFONTA *plfA, LPLOGFONTW plfW)
|
|||
plfW->lfFaceName[cch] = 0;
|
||||
}
|
||||
|
||||
// Win: LFontWtoLFontA
|
||||
VOID APIENTRY LogFontWideToAnsi(const LOGFONTW *plfW, LPLOGFONTA plfA)
|
||||
{
|
||||
size_t cch;
|
||||
|
@ -615,6 +619,7 @@ BOOL APIENTRY Imm32LoadImeLangAndDesc(PIMEINFOEX pInfoEx, LPCVOID pVerInfo)
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
// Win: LoadVersionInfo
|
||||
BOOL APIENTRY Imm32LoadImeVerInfo(PIMEINFOEX pImeInfoEx)
|
||||
{
|
||||
HINSTANCE hinstVersion;
|
||||
|
|
Loading…
Reference in a new issue