Statistics
| Branch: | Revision:

root / trunk / NotifyIconWpf / Interop / Point.cs @ 9bae55d1

History | View | Annotate | Download (299 Bytes)

1
using System.Runtime.InteropServices;
2

    
3
namespace Hardcodet.Wpf.TaskbarNotification.Interop
4
{
5
  /// <summary>
6
  /// Win API struct providing coordinates for a single point.
7
  /// </summary>
8
  [StructLayout(LayoutKind.Sequential)]
9
  public struct Point
10
  {
11
    public int X;
12
    public int Y;
13
  }
14
}