Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
LRESULT CALLBACK WindowProcedure(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) {
switch(msg)
{
case WM_MOVE:
MessageBox(hWnd, "WM_MOVE: The Window Moved", "Goodbye!", MB_OK);
return 0;
}
return DefWindowProc(hWnd, msg, wParam, lParam);
}
CPostfilterDlg::LRESULT CALLBACK WindowProcedure(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
...
return CDialog::DefWindowProc(hWnd, msg, wParam, lParam);