Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ InternalWndProc()

bool ReLogic.OS.Windows.WindowsMessageHook.InternalWndProc ( ref Message message)
inlineprivate

Definition at line 50 of file WindowsMessageHook.cs.

51 {
52 foreach (IMessageFilter filter in _filters)
53 {
54 if (filter.PreFilterMessage(ref message))
55 {
56 return true;
57 }
58 }
59 return false;
60 }

References ReLogic.OS.Windows.WindowsMessageHook._filters.

Referenced by ReLogic.OS.Windows.WindowsMessageHook.WndProc().