summaryrefslogtreecommitdiff
path: root/plugins/ChangeKeyboardLayout/src/text_operations.h
blob: a8fe87770c87b776c7b687794e1a73e212b6aece (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef M_CKL_TEXT_OPERATIONS_H
#define M_CKL_TEXT_OPERATIONS_H

#include "stdafx.h"

LPSTR GetNameOfLayout(HKL hklLayout);
wchar_t *GetShortNameOfLayout(HKL hklLayout);
wchar_t *GenerateLayoutString(HKL hklLayout);
wchar_t *GetLayoutString(HKL hklLayout);
HKL GetLayoutOfText(LPCTSTR ptzsInText);
wchar_t *ChangeTextCase(LPCTSTR ptszInText);
wchar_t *ChangeTextLayout(LPCTSTR ptzsInText, HKL hklCurLay, HKL hklToLay, BOOL TwoWay);
int ChangeLayout(HWND hTextWnd, uint8_t bTextOperation, BOOL CurrentWord);

#endif