blob: ce540f4a14615a3a071d1ab824b8b4bf7a106b99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef QR_VERSION_H
#define QR_VERSION_H
#ifdef __cplusplus
extern "C" {
#endif
#define QR_VERSION_MAJOR 0
#define QR_VERSION_MINOR 3
#define QR_VERSION "0.3"
#ifdef __cplusplus
}
#endif
#endif
|