Server Wait On Clients System - Full Internal Documentation  v1.6.4
Server Wait On Clients System.
internal.h
Go to the documentation of this file.
1 
14 /* **********************************************************************
15  * *
16  * Changelog *
17  * *
18  * Date Author Version Description *
19  * *
20  * 08/07/2015 MG 1.0.1 First release. *
21  * 09/05/2016 MG 1.0.2 Move header files to include directory. *
22  * 11/06/2016 MG 1.0.3 Modified following introduction of *
23  * libswocclient library. *
24  * 13/06/2016 MG 1.0.4 Adopt convention of using void in empty *
25  * function parameter lists. *
26  * 17/07/2016 MG 1.0.5 Move towards kernel coding style. *
27  * 12/11/2017 MG 1.0.6 Add Doxygen comments. *
28  * Add SPDX license tag. *
29  * 22/05/2018 MG 1.0.7 Change name to internal.h and place in *
30  * src directory. *
31  * 18/05/2019 MG 1.0.8 Merge sub-projects into one. *
32  * 27/03/2020 MG 1.0.9 Move into swocclient sub-directory as *
33  * the directory hierarchy needs to be the *
34  * same accross the source tree for *
35  * temporary libraries to work based on *
36  * the search in configure.ac. *
37  * 08/12/2021 MG 1.0.10 Tighten SPDX tag. *
38  * 15/09/2022 MG 1.0.11 Rename portability.h *
39  * Use pkginclude location. *
40  * Flatten directory structure. *
41  * *
42  ************************************************************************
43  */
44 
45 #ifndef SWOCCLIENT_INTERNAL_H
46 #define SWOCCLIENT_INTERNAL_H
47 
48 #include <libmgec/mge-portability.h>
49 
50 BEGIN_C_DECLS
51 
52 char *swocclient_get_pkg_version(void);
53 
54 char *swocclient_get_src_version(void);
55 
57 
59 
60 END_C_DECLS
61 
62 #endif /* ndef SWOCCLIENT_INTERNAL_H */
void swocclient_print_src_version(void)
Print the source version string to stdout.
Definition: version.c:78
char * swocclient_get_src_version(void)
Get the source version.
Definition: version.c:61
BEGIN_C_DECLS char * swocclient_get_pkg_version(void)
Get the git-describe based package version.
Definition: version.c:52
void swocclient_print_pkg_version(void)
Print the package version string to stdout.
Definition: version.c:69