xref: /php-src/ext/dom/lexbor/lexbor/dom/base.h (revision bffab33a)
1 /*
2  * Copyright (C) 2019-2023 Alexander Borisov
3  *
4  * Author: Alexander Borisov <borisov@lexbor.com>
5  */
6 
7 #ifndef LEXBOR_DOM_BASE_H
8 #define LEXBOR_DOM_BASE_H
9 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 
15 #include "lexbor/core/base.h"
16 
17 
18 #define LXB_DOM_VERSION_MAJOR 1
19 #define LXB_DOM_VERSION_MINOR 7
20 #define LXB_DOM_VERSION_PATCH 0
21 
22 #define LXB_DOM_VERSION_STRING                                                 \
23     LEXBOR_STRINGIZE(LXB_DOM_VERSION_MAJOR) "."                                \
24     LEXBOR_STRINGIZE(LXB_DOM_VERSION_MINOR) "."                                \
25     LEXBOR_STRINGIZE(LXB_DOM_VERSION_PATCH)
26 
27 
28 #ifdef __cplusplus
29 } /* extern "C" */
30 #endif
31 
32 #endif /* LEXBOR_DOM_BASE_H */
33