forked from wireshark/wireshark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathws_version.h.in
24 lines (19 loc) · 859 Bytes
/
ws_version.h.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* ws_version.h.in */
#ifndef __WS_VERSION_H__
#define __WS_VERSION_H__
#define WIRESHARK_VERSION_MAJOR @PROJECT_MAJOR_VERSION@
#define WIRESHARK_VERSION_MINOR @PROJECT_MINOR_VERSION@
#define WIRESHARK_VERSION_MICRO @PROJECT_PATCH_VERSION@
/* ABI version for plugin compatibility. */
#define WIRESHARK_ABI_VERSION_EPAN @PROJECT_ABI_VERSION_EPAN@
#define WIRESHARK_ABI_VERSION_WIRETAP @PROJECT_ABI_VERSION_WIRETAP@
#define WIRESHARK_ABI_VERSION_CODEC @PROJECT_ABI_VERSION_CODEC@
/*
* API level for codec plugins
*/
/* The minimum level is the minimum API requirement for a codec
* to be used with this version of Wireshark (possibly with reduced functionality). */
#define WIRESHARK_API_MIN_LEVEL_CODEC 1
/* The maximum level supported for this version of Wireshark. */
#define WIRESHARK_API_MAX_LEVEL_CODEC 1
#endif /* __WS_VERSION_H__ */