mirror of https://github.com/BOINC/boinc.git
18 lines
383 B
C
18 lines
383 B
C
|
/* $Id$ */
|
||
|
/* Platform independent version definitions... */
|
||
|
|
||
|
#ifndef BOINC_VERSION_H
|
||
|
#define BOINC_VERSION_H
|
||
|
|
||
|
/* Major part of BOINC version number */
|
||
|
#define BOINC_MAJOR_VERSION 4
|
||
|
|
||
|
/* Minor part of BOINC version number */
|
||
|
#define BOINC_MINOR_VERSION 57
|
||
|
|
||
|
/* String representation of BOINC version number */
|
||
|
#define BOINC_VERSION_STRING "4.57"
|
||
|
|
||
|
#endif /* #ifndef BOINC_VERSION_H */
|
||
|
|