File: libjodycode_check.h

package info (click to toggle)
libjodycode 4.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,664 kB
  • sloc: ansic: 2,810; makefile: 368; sh: 153; xml: 18
file content (26 lines) | stat: -rw-r--r-- 623 bytes parent folder | download | duplicates (4)
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
/* libjodycode version check headear
 * See libjodycode_check.c for license information */

#ifndef LIBJODYCODE_CHECK_H
#define LIBJODYCODE_CHECK_H

#ifdef __cplusplus
extern "C" {
#endif

/* Set this to the minimum feature level required by your program */
#define MY_FEATURELEVEL_REQ 4

extern const int jc_build_api_major;
extern const int jc_build_api_minor;
extern const char *jc_build_version;
extern const char *jc_build_featurelevel;
extern const unsigned char jc_build_api_versiontable[];

extern int libjodycode_version_check(int verbose, int bail);

#ifdef __cplusplus
}
#endif

#endif /* LIBJODYCODE_CHECK_H */