mirror of
https://github.com/kangyu-california/PersistentWindows.git
synced 2025-05-11 04:55:39 +02:00
14 lines
332 B
C#
14 lines
332 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace PersistentWindows.Common.WinApiBridge
|
|
{
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public struct CallWindowProcedureParam
|
|
{
|
|
public IntPtr lparam;
|
|
public IntPtr wparam;
|
|
public WindowsMessage message;
|
|
public IntPtr hwnd;
|
|
}
|
|
}
|