Boxer icon indicating copy to clipboard operation
Boxer copied to clipboard

Boxer is a simple library that allows for easy cross-platform creation of message boxes / alerts / what have you.

Results 1 Boxer issues
Sort by recently updated
recently updated
newest added

Update of boxer_win.cpp (Bug fix) ` #include #ifndef WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN #endif #include namespace boxer { namespace { UINT getIcon(Style style) { switch (style) { case Style::Info: return MB_ICONINFORMATION; case...