Untitled
public cpp v1 · immutableLRESULT CALLBACK Fen::WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam){ switch(msg) { case WM_DESTROY: is_run = false; return (0); default: break; } LRESULT res = DefWindowProc(hwnd, msg, wParam, lParam); return (res);}