Files
FlatLaf/flatlaf-natives/flatlaf-natives-windows
John Platts a1d1e221ae Remove operator new and operator delete overloads from Runtime.cpp
The ```operator new``` and ```operator delete``` overloads in Runtime.cpp are replaced by placement ```operator new``` and ```operator delete``` operators in AllocRoutines.h that take a const FlatLafNoThrowT& placement parameter.

Using ```new (FlatLafNoThrow) FlatWndProc``` instead of ```new FlatWndProc``` also allows for inlining by the C++ compiler.
2022-09-19 14:23:16 -05:00
..

FlatLaf Windows 10 Native Library

This sub-project contains the source code for the FlatLaf Windows 10 native library (DLL).

The native library can be built only on Windows and requires a C++ compiler. Tested only with Microsoft Visual C++ 2019 (comes with Visual Studio 2019).

To be able to build FlatLaf on any platform, and without C++ compiler, the pre-built DLL is checked into Git at flatlaf-core/src/main/resources/com/formdev/flatlaf/natives/.

The DLL was built on a GitHub server with the help of GitHub Actions. See: Native Libraries workflow. Then the produced Artifacts ZIP was downloaded and the DLL checked into Git.