Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Provjera konekcije za bruta Fizija!
- #include "stdafx.h"
- #include <stdio.h>
- #include <windows.h>
- #include <iostream>
- #include <wininet.h>
- #pragma comment(lib, "Wininet.lib")
- using namespace std;
- bool check_connection() {
- if (InternetCheckConnection(L"http://www.google.com", FLAG_ICC_FORCE_CONNECTION, 0))
- return true;
- else
- return false;
- }
- int _tmain(int argc, _TCHAR* argv[])
- {
- int count = 0, scr_size = 20;
- while (true) {
- if (check_connection())
- {
- if (count > scr_size) {
- system("cls");
- scr_size += count;
- }
- cout << "Konekcija ok! [ " << count << " ] " << endl;
- count++;
- }
- else {
- cout << "GRESKA! KONEKCIJA NIJE AKTIVNA!" << endl;
- cout << "Pokrece se program xyz.exe" << endl;
- system("xyz.exe");
- break;
- }
- Sleep(3000);
- }
- getchar();
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement