blob: 499f5a96e355e127d88a5427e2f1d737ff8c532f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/** \file
* \brief Library Management
*
* See Copyright Notice in im_lib.h
* $Id: im_lib.cpp,v 1.8 2010/06/22 13:26:01 scuri Exp $
*/
#include <stdlib.h>
#include <string.h>
#include "im_lib.h"
/* This appears only here to avoid changing the im_lib.h header for bug fixes */
#define IM_VERSION_FIX ".2"
#define IM_VERSION_FIX_NUMBER 2
#define IM_VERSION_FIX_DATE "2010/06/22"
static char *iVersion = "TECVERID.str:IM:LIB:" IM_VERSION IM_VERSION_FIX;
const char iIdent[] =
"$IM: " IM_VERSION IM_VERSION_FIX " " IM_COPYRIGHT " $\n"
"$URL: www.tecgraf.puc-rio.br/im $\n";
const char* imVersion(void)
{
(void)iVersion;
(void)iIdent;
return IM_VERSION IM_VERSION_FIX;
}
const char* imVersionDate(void)
{
#ifdef IM_VERSION_FIX_DATE
return IM_VERSION_FIX_DATE;
#else
return IM_VERSION_DATE;
#endif
}
int imVersionNumber(void)
{
return IM_VERSION_NUMBER+IM_VERSION_FIX_NUMBER;
}
|