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.
int main(int argc, char* argv[])
{
HANDLE h;
CONSOLE_CURSOR_INFO cur;
memset(&cur,0,sizeof cur);
h = GetStdHandle(STD_OUTPUT_HANDLE);
if (h == INVALID_HANDLE_VALUE)
{
cout << "*** Can\'t obtain handle..." << endl;
system("pause");
exit(1);
}
if (!GetConsoleCursorInfo(h,&cur))
{
cout << "*** Can't get cursor info..." << endl;
system("pause");
exit(1);
}
cout << "Let\'s try cursor off..." << endl;
system("pause");
cur.bVisible = 0;
SetConsoleCursorInfo(h,&cur);
cout << "Well..." << endl;
system("pause");
cur.bVisible = 1;
SetConsoleCursorInfo(h,&cur);
cout << "Now on..." << endl;
system("pause");
return 0;
}