EXTENDED WINDOWS API
This library is a fork of the SL-Windows-API, but with additional features.
The functions you can use can be found in winapi/WIndowsAPI.hx
How to use this:
For functions where something related to the window is modified, it is necessary to use this function to define the window title (it is recommended to leave this in an update function).
// import the library
import winapi.WindowsAPI;
// Set the title of the main window
WindowsAPI.reDefineMainWindowTitle(lime.app.Application.current.window.title);
Examples:
Set a custom color for the main window border
import winapi.WindowsAPI;
WindowsAPI.setWindowBorderColor(255, 0, 0);
WARNING
Windows GDI functions may not work, i'll fix it soon.
Credits
Slushi, AlejoGDOfficial - Original code L1ghtlyVun - Added new features