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.
RECT crect, wrect;
LONG borderwidth;
POINT tlc;
GetClientRect (hwnd, &crect);
GetWindowRect (hwnd, &wrect);
borderwidth = ((wrect.right - wrect.left) - (crect.right - crect.left))/2;
tlc.x = wrect.left + borderwidth;
tlc.y = wrect.bottom - (crect.bottom - crect.top + borderwidth);