Getting Started with EasyWinGui
Welcome to EasyWinGui — a simple header-only gui library for c++ ---windows only.
Installation
include the include/easywingui.h directory.
Create Your First Window
Use the EasyWinGui class to quickly create a main window.
#include <easywingui.h>
using namespace easywingui;easyw app;
int main() {
app.creatw(L"title",1920,1200);
app.loopAndStopProcessing(); /* or while(1){app.runMessage(a-no-parameter-void);Sleep(1);}*/
}