Advertisement
Lauda

conn check

Nov 25th, 2013
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.83 KB | None | 0 0
  1. // Provjera konekcije za bruta Fizija!
  2.  
  3. #include "stdafx.h"
  4. #include <stdio.h>
  5. #include <windows.h>
  6. #include <iostream>
  7. #include <wininet.h>
  8. #pragma comment(lib, "Wininet.lib")
  9.  
  10. using namespace std;
  11.  
  12. bool check_connection() {
  13.     if (InternetCheckConnection(L"http://www.google.com", FLAG_ICC_FORCE_CONNECTION, 0))
  14.         return true;
  15.     else
  16.         return false;
  17. }
  18.  
  19. int _tmain(int argc, _TCHAR* argv[])
  20. {
  21.     int count = 0, scr_size = 20;
  22.     while (true) {
  23.         if (check_connection())
  24.         {
  25.             if (count > scr_size) {
  26.                 system("cls");
  27.                 scr_size += count;
  28.             }
  29.  
  30.             cout << "Konekcija ok! [ " << count << " ] " << endl;
  31.             count++;
  32.         }
  33.         else {
  34.             cout << "GRESKA! KONEKCIJA NIJE AKTIVNA!" << endl;
  35.             cout << "Pokrece se program xyz.exe" << endl;
  36.             system("xyz.exe");
  37.             break;
  38.         }
  39.         Sleep(3000);
  40.     }
  41.     getchar();
  42.     return 0;
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement