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.
TRACKMOUSEEVENT m_sTME;
m_sTME.cbSize = sizeof(TRACKMOUSEEVENT);
m_sTME.dwFlags = TME_LEAVE; // leave event only
m_sTME.hwndTrack = GetSafeHwnd(); //window handle to track
m_sTME.dwHoverTime = 0;
_TrackMouseEvent(&m_sTME);