Server Wait On Clients System - Full Internal Documentation  v1.4.2
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  * 22/06/2015 MG 1.0.1 First release. *
21  * 10/05/2016 MG 1.0.2 Move header files to include directory. *
22  * 13/06/2016 MG 1.0.3 Use new more unique library function *
23  * names. *
24  * 17/07/2016 MG 1.0.4 Move towards kernel coding style. *
25  * 27/09/2016 MG 1.0.5 Further coding style changes. *
26  * Improve in-source documentation. *
27  * Use more informative name - sws_err. *
28  * 12/11/2017 MG 1.0.6 Add Doxygen comments. *
29  * Add SPDX license tag. *
30  * 22/05/2018 MG 1.0.7 Change from swocserver.h to internal.h *
31  * 18/05/2019 MG 1.0.8 Merge sub-projects into one. *
32  * *
33  ************************************************************************
34  */
35 
36 #ifndef SWOCSERVER_INTERNAL_H
37 #define SWOCSERVER_INTERNAL_H
38 
39 #include <libswocserver.h>
40 #include <portability.h>
41 
42 BEGIN_C_DECLS
43 
44 extern int sws_err;
45 
46 char *swocserver_get_pkg_version(void);
47 
48 char *swocserver_get_src_version(void);
49 
51 
53 
54 END_C_DECLS
55 
56 #endif /* ndef SWOCSERVER_INTERNAL_H */
57 
char * swocserver_get_src_version(void)
Get the source version.
Definition: version.c:50
void swocserver_print_pkg_version(void)
Print the package version string to stdout.
Definition: version.c:58
char * swocserver_get_pkg_version(void)
Get the git-describe based package version.
Definition: version.c:41
BEGIN_C_DECLS int sws_err
Global swocserver error flag.
Definition: main.c:72
Header file for Server Wait on Clients server-side library.
void swocserver_print_src_version(void)
Print the source version string to stdout.
Definition: version.c:67