Added RCSID tags

svn path=/trunk/boinc/; revision=4862
This commit is contained in:
Bruce Allen 2004-12-16 03:28:40 +00:00
parent 0329a35667
commit fdb0556fa6
5 changed files with 30 additions and 1 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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