Initial community commit

This commit is contained in:
Jef 2024-09-24 14:54:57 +02:00
parent 537bcbc862
commit fc06254474
16440 changed files with 4239995 additions and 2 deletions

8
Src/nu/DialogSkinner.cpp Normal file
View file

@ -0,0 +1,8 @@
#include "DialogSkinner.h"
DialogSkinner dialogSkinner;
COLORREF GetHTMLColor(int color)
{
return ( ( color >> 16 ) & 0xff | ( color & 0xff00 ) | ( ( color << 16 ) & 0xff0000 ) );
}