zaafar / ClickableTransparentOverlay

A library for creating transparent overlay using windows API & ImGui.NET
Apache License 2.0
97 stars 32 forks source link

Reduce low level win32 code by using following CsWin32 lib. #40

Open zaafar opened 2 years ago

zaafar commented 2 years ago

Current the lib is in beta mode and new. Let's check it again after 1 year (Dec 2023). https://github.com/microsoft/CsWin32

currently the lib isn't C# friendly e.g.

following change: User32.SetCursor(User32.LoadCursor(IntPtr.Zero, new IntPtr((int)cursor))); into: PInvoke.SetCursor(PInvoke.LoadCursor(HINSTANCE.Null, (char*)(int)cursor));