te
This commit is contained in:
parent
01151e679b
commit
57b2f0400e
265 changed files with 22828 additions and 6 deletions
29
Unused/Decal.Adapter/WindowMessageEventArgs.cs
Normal file
29
Unused/Decal.Adapter/WindowMessageEventArgs.cs
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
namespace Decal.Adapter;
|
||||
|
||||
public class WindowMessageEventArgs : EatableEventArgs
|
||||
{
|
||||
private int myHwnd;
|
||||
|
||||
private short myMsg;
|
||||
|
||||
private int mywParam;
|
||||
|
||||
private int mylParam;
|
||||
|
||||
public int Hwnd => myHwnd;
|
||||
|
||||
public short Msg => myMsg;
|
||||
|
||||
public int WParam => mywParam;
|
||||
|
||||
public int LParam => mylParam;
|
||||
|
||||
internal WindowMessageEventArgs(int hwnd, short uMsg, int wParam, int lParam)
|
||||
: base(eat: false)
|
||||
{
|
||||
myHwnd = hwnd;
|
||||
myMsg = uMsg;
|
||||
mywParam = wParam;
|
||||
mylParam = lParam;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue