ProjectPSX/ProjectPSX.WinForms/Interop/ExternDll.cs
Pedro Cortés 2f79a50d36
Gdi (#18)
* Push Interop

* GDI Render: UI

* Gdi: Add BltMode

* Winform GDI: Handle y ranges
This is badly handled and X still left
2021-01-24 12:16:01 +01:00

8 lines
176 B
C#

namespace ProjectPSX
{
internal static class ExternDll
{
public const string Gdi32 = "gdi32.dll";
public const string User32 = "user32.dll";
}
}