Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
Msg.cs
Go to the documentation of this file.
2
3internal static class Msg
4{
5 public const int WM_SETFOCUS = 7;
6
7 public const int WM_KILLFOCUS = 8;
8
9 public const int WM_INPUTLANGCHANGE = 81;
10
11 public const int WM_KEYDOWN = 256;
12
13 public const int WM_CHAR = 258;
14
15 public const int WM_IME_STARTCOMPOSITION = 269;
16
17 public const int WM_IME_ENDCOMPOSITION = 270;
18
19 public const int WM_IME_COMPOSITION = 271;
20
21 public const int WM_IME_SETCONTEXT = 641;
22
23 public const int WM_IME_NOTIFY = 642;
24}