*** empty log message ***

svn path=/trunk/boinc/; revision=12148
This commit is contained in:
David Anderson 2007-02-24 04:29:58 +00:00
parent b23d197f31
commit 4e7032159e
3 changed files with 4 additions and 1 deletions

View File

@ -8,7 +8,6 @@ OBJS = sim.o \
log_flags.o \
time_stats.o \
work_fetch.o \
../lib/filesys.o \
../lib/mfile.o \
../lib/miofile.o \
../lib/parse.o \

View File

@ -15,6 +15,9 @@ bool user_active;
//////////////// FUNCTIONS MODIFIED OR STUBBED OUT /////////////
CLIENT_STATE::CLIENT_STATE() {
}
FILE* boinc_fopen(const char* path, const char* mode) {
return fopen(path, mode);
}

View File

@ -17,6 +17,7 @@ public:
GLOBAL_PREFS global_prefs;
HOST_INFO host_info;
TIME_STATS time_stats;
CLIENT_STATE();
private:
double app_started;