mirror of https://github.com/BOINC/boinc.git
parent
0329a35667
commit
fdb0556fa6
|
@ -184,3 +184,9 @@ void DIB_BITMAP::FreeDIB_BMP()
|
||||||
// Deconstructor
|
// Deconstructor
|
||||||
DIB_BITMAP::~DIB_BITMAP() { FreeDIB_BMP(); }
|
DIB_BITMAP::~DIB_BITMAP() { FreeDIB_BMP(); }
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __GNUC__
|
||||||
|
static volatile const char __attribute__((unused)) *BOINCrcsid="$Id$";
|
||||||
|
#else
|
||||||
|
static volatile const char *BOINCrcsid="$Id$";
|
||||||
|
#endif
|
||||||
|
|
|
@ -21,3 +21,9 @@ int boinc_init_options_graphics(BOINC_OPTIONS& opt, void (*worker)()) {
|
||||||
init_main_state();
|
init_main_state();
|
||||||
return boinc_init_options_graphics_impl(opt, worker, &boinc_main_state);
|
return boinc_init_options_graphics_impl(opt, worker, &boinc_main_state);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef __GNUC__
|
||||||
|
static volatile const char __attribute__((unused)) *BOINCrcsid="$Id$";
|
||||||
|
#else
|
||||||
|
static volatile const char *BOINCrcsid="$Id$";
|
||||||
|
#endif
|
||||||
|
|
|
@ -153,3 +153,9 @@ no_graphics:
|
||||||
// never get here...
|
// never get here...
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef __GNUC__
|
||||||
|
static volatile const char __attribute__((unused)) *BOINCrcsid="$Id$";
|
||||||
|
#else
|
||||||
|
static volatile const char *BOINCrcsid="$Id$";
|
||||||
|
#endif
|
||||||
|
|
|
@ -236,4 +236,9 @@ tImageTGA *LoadTGA(const char *filename)
|
||||||
|
|
||||||
// Return the TGA data (remember, you must free this data after you are done)
|
// Return the TGA data (remember, you must free this data after you are done)
|
||||||
return pImageData;
|
return pImageData;
|
||||||
}
|
}
|
||||||
|
#ifdef __GNUC__
|
||||||
|
static volatile const char __attribute__((unused)) *BOINCrcsid="$Id$";
|
||||||
|
#else
|
||||||
|
static volatile const char *BOINCrcsid="$Id$";
|
||||||
|
#endif
|
||||||
|
|
|
@ -106,3 +106,9 @@ int mem_usage(double& vm_usage, double& resident_set) {
|
||||||
return ERR_NOT_IMPLEMENTED;
|
return ERR_NOT_IMPLEMENTED;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef __GNUC__
|
||||||
|
static volatile const char __attribute__((unused)) *BOINCrcsid="$Id$";
|
||||||
|
#else
|
||||||
|
static volatile const char *BOINCrcsid="$Id$";
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue