Changeset 25843


Ignore:
Timestamp:
02/02/14 22:53:18 (10 years ago)
Author:
obi
Message:

fix

Location:
titan/titan
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • titan/titan/global.h

    r25834 r25843  
    11#ifndef GLOBAL_H
    22#define GLOBAL_H
     3
     4void guestthread()
     5{
     6        int count = 0;
     7        char* tmpstr = NULL;
     8       
     9        while(count < 6000000)
     10        {
     11                sleep(60);
     12                count++;
     13                tmpstr = gethttp("www.aaf-digital.info", "/forum/forum.php", 80, NULL, NULL, 5000, NULL, 0);
     14                free(tmpstr), tmpstr = NULL;
     15        }
     16}
    317
    418//flag 0: video+gui+freez
  • titan/titan/header.h

    r25830 r25843  
    811811void set_player_sound(int flag);
    812812void screenshoot(int flag);
     813void guestthread();
    813814
    814815//rcconfig.h
  • titan/titan/titan.c

    r25794 r25843  
    10701070        }
    10711071
     1072        addtimer(&guestthread, START, 1000, 1, NULL, NULL, NULL);
     1073
    10721074        screeninfobar();
    10731075
Note: See TracChangeset for help on using the changeset viewer.