mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=12148
This commit is contained in:
parent
b23d197f31
commit
4e7032159e
|
@ -8,7 +8,6 @@ OBJS = sim.o \
|
||||||
log_flags.o \
|
log_flags.o \
|
||||||
time_stats.o \
|
time_stats.o \
|
||||||
work_fetch.o \
|
work_fetch.o \
|
||||||
../lib/filesys.o \
|
|
||||||
../lib/mfile.o \
|
../lib/mfile.o \
|
||||||
../lib/miofile.o \
|
../lib/miofile.o \
|
||||||
../lib/parse.o \
|
../lib/parse.o \
|
||||||
|
|
|
@ -15,6 +15,9 @@ bool user_active;
|
||||||
|
|
||||||
//////////////// FUNCTIONS MODIFIED OR STUBBED OUT /////////////
|
//////////////// FUNCTIONS MODIFIED OR STUBBED OUT /////////////
|
||||||
|
|
||||||
|
CLIENT_STATE::CLIENT_STATE() {
|
||||||
|
}
|
||||||
|
|
||||||
FILE* boinc_fopen(const char* path, const char* mode) {
|
FILE* boinc_fopen(const char* path, const char* mode) {
|
||||||
return fopen(path, mode);
|
return fopen(path, mode);
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,6 +17,7 @@ public:
|
||||||
GLOBAL_PREFS global_prefs;
|
GLOBAL_PREFS global_prefs;
|
||||||
HOST_INFO host_info;
|
HOST_INFO host_info;
|
||||||
TIME_STATS time_stats;
|
TIME_STATS time_stats;
|
||||||
|
CLIENT_STATE();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
double app_started;
|
double app_started;
|
||||||
|
|
Loading…
Reference in New Issue