git-subtree-dir: NotifyIconWpf git-subtree-split: f64d48ec604eef26e5dc1e7c2d5e1e91b329ffac
20 lines
463 B
C#
20 lines
463 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Hardcodet.Wpf.TaskbarNotification.Interop
|
|
{
|
|
/// <summary>
|
|
/// Win API struct providing coordinates for a single point.
|
|
/// </summary>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public struct Point
|
|
{
|
|
/// <summary>
|
|
/// X coordinate.
|
|
/// </summary>
|
|
public int X;
|
|
/// <summary>
|
|
/// Y coordinate.
|
|
/// </summary>
|
|
public int Y;
|
|
}
|
|
} |