12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Runtime.InteropServices;
- namespace Microsoft.Win32
- {
-
-
-
- public static partial class NativeMethods
- {
-
-
-
- [StructLayout(LayoutKind.Sequential)]
- public struct NMHDR
- {
-
-
-
- public IntPtr hwndFrom;
-
-
-
- public IntPtr idFrom;
-
-
-
- public int code;
- }
- }
- }
|