summaryrefslogtreecommitdiff
path: root/plugins/ChangeKeyboardLayout/text_operations.h
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2012-06-06 19:11:34 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2012-06-06 19:11:34 +0000
commit3dfe76ebba2cc8264d5548db3446587fd08f032e (patch)
tree6354fc3c57cf56b182d0b3e58654f6855fa71d8c /plugins/ChangeKeyboardLayout/text_operations.h
parent46a53191c1ad11a41c948594e972568e62d155b4 (diff)
ChangeKeyboardLayout added
git-svn-id: http://svn.miranda-ng.org/main/trunk@333 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ChangeKeyboardLayout/text_operations.h')
-rw-r--r--plugins/ChangeKeyboardLayout/text_operations.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/plugins/ChangeKeyboardLayout/text_operations.h b/plugins/ChangeKeyboardLayout/text_operations.h
new file mode 100644
index 0000000000..a770e845fb
--- /dev/null
+++ b/plugins/ChangeKeyboardLayout/text_operations.h
@@ -0,0 +1,16 @@
+#ifndef M_CKL_TEXT_OPERATIONS_H
+#define M_CKL_TEXT_OPERATIONS_H
+
+#include "commonheaders.h"
+
+BOOL CopyTextToClipboard(LPTSTR ptszText);
+LPTSTR GetNameOfLayout(HKL hklLayout);
+LPTSTR GetShortNameOfLayout(HKL hklLayout);
+LPTSTR GenerateLayoutString(HKL hklLayout);
+LPTSTR GetLayoutString(HKL hklLayout);
+HKL GetLayoutOfText(LPCTSTR ptzsInText);
+LPTSTR ChangeTextCase(LPCTSTR ptszInText);
+LPTSTR ChangeTextLayout(LPCTSTR ptzsInText,HKL hklCurLay, HKL hklToLay, BOOL TwoWay);
+int ChangeLayout(HWND hTextWnd,BYTE bTextOperation,BOOL CurrentWord);
+
+#endif \ No newline at end of file