11 lines
279 B
C#
11 lines
279 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Pilz.UI
|
|
{
|
|
public static class User32Bridge
|
|
{
|
|
[DllImport("user32.dll", CharSet = CharSet.Auto)]
|
|
internal static extern int SendMessage(IntPtr hWnd, int Msg, bool wParam, int lParam);
|
|
}
|
|
} |