SDL3-CS/SDL3-CS/SDL3/SDL_system.Windows.cs

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;
}
}