mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
7 lines
220 B
C#
7 lines
220 B
C#
namespace Dalamud.Hooking.WndProcHook;
|
|
|
|
/// <summary>
|
|
/// Delegate for overriding WndProc.
|
|
/// </summary>
|
|
/// <param name="args">The arguments.</param>
|
|
internal delegate void WndProcEventDelegate(WndProcEventArgs args);
|