Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
WindowsMessage.cs
Go to the documentation of this file.
1namespace ReLogic.OS.Windows;
2
3internal static class WindowsMessage
4{
5 public const int SETFOCUS = 7;
6
7 public const int KILLFOCUS = 8;
8
9 public const int IME_STARTCOMPOSITION = 269;
10
11 public const int IME_ENDCOMPOSITION = 270;
12
13 public const int IME_COMPOSITION = 271;
14
15 public const int IME_SETCONTEXT = 641;
16
17 public const int IME_NOTIFY = 642;
18
19 public const int IME_CONTROL = 643;
20
21 public const int IME_COMPOSITIONFULL = 644;
22
23 public const int IME_SELECT = 645;
24
25 public const int IME_CHAR = 646;
26
27 public const int IME_KEYDOWN = 656;
28
29 public const int IME_KEYUP = 657;
30
31 public const int INPUTLANGCHANGE = 81;
32
33 public const int KEYDOWN = 256;
34
35 public const int CHAR = 258;
36
37 public const int ACTIVATE = 6;
38}