mirror of https://github.com/BOINC/boinc.git
Fix build break introduced when windows_x86_64 support was added.
svn path=/trunk/boinc/; revision=12456
This commit is contained in:
parent
86ca5333be
commit
3307404373
|
@ -74,7 +74,9 @@ CLIENT_STATE::CLIENT_STATE() {
|
||||||
core_client_version.minor = BOINC_MINOR_VERSION;
|
core_client_version.minor = BOINC_MINOR_VERSION;
|
||||||
core_client_version.release = BOINC_RELEASE;
|
core_client_version.release = BOINC_RELEASE;
|
||||||
platform_name = HOSTTYPE;
|
platform_name = HOSTTYPE;
|
||||||
|
#ifdef _WIN64
|
||||||
alt_platform_name = HOSTTYPEALT;
|
alt_platform_name = HOSTTYPEALT;
|
||||||
|
#endif
|
||||||
exit_after_app_start_secs = 0;
|
exit_after_app_start_secs = 0;
|
||||||
app_started = 0;
|
app_started = 0;
|
||||||
exit_before_upload = false;
|
exit_before_upload = false;
|
||||||
|
|
|
@ -157,7 +157,9 @@ public:
|
||||||
bool run_by_updater;
|
bool run_by_updater;
|
||||||
double now;
|
double now;
|
||||||
const char* platform_name;
|
const char* platform_name;
|
||||||
|
#ifdef _WIN64
|
||||||
const char* alt_platform_name;
|
const char* alt_platform_name;
|
||||||
|
#endif
|
||||||
bool initialized;
|
bool initialized;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
Loading…
Reference in New Issue