mirror of https://github.com/ppy/SDL3-CS.git
35 lines
928 B
C#
35 lines
928 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using System;
|
|
|
|
namespace SDL
|
|
{
|
|
// https://learn.microsoft.com/en-us/dotnet/standard/native-interop/best-practices#common-windows-data-types
|
|
using LONG = int;
|
|
using DWORD = uint;
|
|
using UINT = uint;
|
|
using HWND = IntPtr;
|
|
using WPARAM = UIntPtr;
|
|
using LPARAM = IntPtr;
|
|
|
|
// https://learn.microsoft.com/en-us/windows/win32/api/windef/ns-windef-point
|
|
public struct POINT
|
|
{
|
|
public LONG x;
|
|
public LONG y;
|
|
}
|
|
|
|
// https://learn.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-msg
|
|
public struct MSG
|
|
{
|
|
public HWND hwnd;
|
|
public UINT message;
|
|
public WPARAM wParam;
|
|
public LPARAM lParam;
|
|
public DWORD time;
|
|
public POINT pt;
|
|
public DWORD lPrivate;
|
|
}
|
|
}
|