Fix build break introduced when windows_x86_64 support was added.

svn path=/trunk/boinc/; revision=12456
This commit is contained in:
Rom Walton 2007-04-23 22:25:19 +00:00
parent 86ca5333be
commit 3307404373
2 changed files with 4 additions and 0 deletions

View File

@ -74,7 +74,9 @@ CLIENT_STATE::CLIENT_STATE() {
core_client_version.minor = BOINC_MINOR_VERSION;
core_client_version.release = BOINC_RELEASE;
platform_name = HOSTTYPE;
#ifdef _WIN64
alt_platform_name = HOSTTYPEALT;
#endif
exit_after_app_start_secs = 0;
app_started = 0;
exit_before_upload = false;

View File

@ -157,7 +157,9 @@ public:
bool run_by_updater;
double now;
const char* platform_name;
#ifdef _WIN64
const char* alt_platform_name;
#endif
bool initialized;
private: