Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (299 Bytes)

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