File: pxversion.h

package info (click to toggle)
pxlib 0.6.9-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,684 kB
  • sloc: ansic: 5,373; sh: 4,873; makefile: 127
file content (30 lines) | stat: -rw-r--r-- 545 bytes parent folder | download
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
/*
 * pxversion.h : compile-time version informations for the pslib.
 *
 * See Copyright for the status of this software.
 *
 * Uwe@steinmann.cx
 */

#ifndef __PXLIB_VERSION_H__
#define __PXLIB_VERSION_H__

#ifdef __cplusplus
extern "C" {
#endif

/*
 * use those to be sure nothing nasty will happen if
 * your library and includes mismatch
 */
#define PXLIB_DOTTED_VERSION "@PXLIB_DOTTED_VERSION@"
#define PXLIB_MAJOR_VERSION 0
#define PXLIB_MINOR_VERSION 6
#define PXLIB_MICRO_VERSION 9

#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif