Adding a busy cursor to indicate something is happening

This commit is contained in:
dougt%meer.net 2005-11-16 18:16:11 +00:00
Родитель aaca3215c8
Коммит b2357d2718
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -5,6 +5,8 @@
int main(int argc, char *argv[])
{
SetCursor(LoadCursor(NULL,IDC_WAIT));
HWND h = FindWindowW(NULL, L"Minimo");
if (h)
{
@ -37,6 +39,8 @@ int main(int argc, char *argv[])
NULL,
NULL,
&pi);
SetCursor(NULL);
return 0;
}