[go: up one dir, main page]

Menu

[3129c8]: / fixlayouts.h  Maximize  Restore  History

Download this file

43 lines (32 with data), 1.3 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#pragma once
struct ClipboardFormat
{
UINT format;
HANDLE dataHandle;
};
struct ClipboardData
{
int count;
ClipboardFormat* dataArray;
};
// time in milliseconds to allow the target application
// to execute commands simmulated by keystrokes
#define REMOTE_APP_WAIT 20
// The main function that converts the current selected text in the active
// window from one layout to another.
void ConvertSelectedTextInActiveWindow(HKL hklSource, HKL hklTarget);
// Functions to convert UNICODE strings between keyboard layouts
WCHAR LayoutConvertChar(WCHAR ch, HKL hklSource, HKL hklTarget);
size_t LayoutConvertString(const WCHAR* str, WCHAR* buffer,
size_t size, HKL hklSource, HKL hklTarget);
HKL DetectLayoutFromString(const WCHAR* str, BOOL* pmatches);
// Functions to store and restoe all of the data in the clipboard
BOOL StoreClipboardData(ClipboardData* formats);
BOOL RestoreClipboardData(const ClipboardData* formats);
void FreeClipboardData(ClipboardData* formats);
// Convenience functions for the clipboard
WCHAR* GetClipboardText();
BOOL SetClipboardText(const WCHAR* text);
// Functions that simulate key presses in the current window
void SendKey(BYTE vk, BOOL extended);
void SendKeyCombo(BYTE vkModifier, BYTE vk, BOOL extended);