|
3 | 3 | /* This program is free software; you can redistribute it and/or modify it |
4 | 4 | * under the terms of the license (GNU LGPL) which comes with this package. */ |
5 | 5 |
|
6 | | -#ifndef DTLMOD_VERSION_HPP |
7 | | -#define DTLMOD_VERSION_HPP |
| 6 | +#ifndef __DTLMOD_VERSION_HPP__ |
| 7 | +#define __DTLMOD_VERSION_HPP__ |
8 | 8 |
|
9 | 9 | #define DTLMOD_GIT_VERSION "@GIT_VERSION@" |
10 | 10 |
|
11 | | -/** Define the version numbers of the used header files. |
12 | | - See dtlmod_version_get() to retrieve the version of the dynamic library. */ |
| 11 | +/// Define the version numbers of the used header files. |
| 12 | +/// See dtlmod_version_get() to retrieve the version of the dynamic library. |
13 | 13 | #define DTLMOD_VERSION_MAJOR @DTLMOD_VERSION_MAJOR@ |
14 | 14 | #define DTLMOD_VERSION_MINOR @DTLMOD_VERSION_MINOR@ |
15 | 15 | #define DTLMOD_VERSION_PATCH @DTLMOD_VERSION_PATCH@ |
16 | 16 | #define DTLMOD_INSTALL_PREFIX "@CMAKE_INSTALL_PREFIX@" |
17 | 17 |
|
18 | | -/** Retrieves the version numbers of the used dynamic library (so, DLL or dynlib), while |
19 | | - DTLMOD_VERSION_MAJOR and friends give the version numbers of the used header files */ |
| 18 | +/// Retrieves the version numbers of the used dynamic library (so, DLL or dynlib), while |
| 19 | +/// DTLMOD_VERSION_MAJOR and friends give the version numbers of the used header files |
20 | 20 | void dtlmod_version_get(int* major, int* minor, int* patch); |
21 | 21 |
|
22 | | -#endif /* DTLMOD_VERSION_HPP */ |
| 22 | +#endif // __DTLMOD_VERSION_HPP__ |
0 commit comments