Subversion Repositories Vertical

Rev

Rev 2 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2 Rev 11
Line 33... Line 33...
33
 * Placed the version string in an independent file to save time on building
33
 * Placed the version string in an independent file to save time on building
34
 * all of the variants of Vertical
34
 * all of the variants of Vertical
35
 *
35
 *
36
 */
36
 */
37
 
37
 
38
#include "version.h"
-
 
39
 
-
 
40
#include <stdio.h>
38
#include <stdio.h>
41
#include <string.h>
39
#include <string.h>
-
 
40
#include "version.h"
42
/* modifications to avoid global variables: using access functions instead */
41
/* modifications to avoid global variables: using access functions instead */
-
 
42
 
-
 
43
char * Vertical_Version;
43
#define VERSION_NUMBER "17.0"
44
char * Vertical_Time;
44
#define VERSION_RELEASE " net rename"
45
char * Vertical_Release;
45
 
46
 
-
 
47
void InitialiseVersionStrings(void)
-
 
48
  {
46
char const Vertical_Version[] = VERSION_NUMBER;
49
  Vertical_Version = VERTICAL_VERSION_NUMBER_STRING;
47
char const Vertical_Time[] = __DATE__ " at " __TIME__;
50
  Vertical_Time    = __DATE__ " at " __TIME__;
48
char const Vertical_Release[] = VERSION_NUMBER VERSION_RELEASE;
51
  Vertical_Release = VERTICAL_VERSION;
-
 
52
  }
49
 
53
 
50
void InitialiseVersionStrings (void)
-
 
51
{
-
 
52
}
-