Registry / utility / winlamb

winlamb

JSON →
library2020-10-15vcpkgunverified

A lightweight modern C++11 library for Win32 API, using lambdas to handle Windows messages.

vcpkg install winlamb
INSTALL
IMPORT
SIG · WINLAMB
W
winlamb
utilitycppv2020-10-15
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

winlamb/winlamb.h
#include <winlamb/winlamb.h>

Create a basic Windows window using winlamb.

#include <winlamb/winlamb.h> int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE, LPSTR, int nCmdShow) { winlamb::window wnd; wnd.create(L"MyWindow", L"Hello", WS_OVERLAPPEDWINDOW); wnd.show(nCmdShow); MSG msg; while (GetMessage(&msg, NULL, 0, 0)) { TranslateMessage(&msg); DispatchMessage(&msg); } return 0; }
Debug
Known issues
gotchaWindows-only library.
fix
Use only on Windows platforms.
affects: all
Upgrade
Version history
2020-10-15latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
8 hits · last 30 days
node
8
Resources

No resource links recorded.

winlamb — pip install winlamb · libregistry