mirror of
https://github.com/greenshot/greenshot
synced 2025-07-30 19:50:11 -07:00
13 lines
No EOL
319 B
C#
13 lines
No EOL
319 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace GreenshotPlugin.UnmanagedHelpers.Structs
|
|
{
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public struct CursorInfo {
|
|
public int cbSize;
|
|
public int flags;
|
|
public IntPtr hCursor;
|
|
public POINT ptScreenPos;
|
|
}
|
|
} |