mirror of
https://github.com/ckaczor/wpf-notifyicon.git
synced 2026-01-19 17:29:00 -05:00
Migrated the project to dotnet core 3.0
This commit is contained in:
20
src/NotifyIconWpf/Interop/Point.cs
Normal file
20
src/NotifyIconWpf/Interop/Point.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user