gss.h | gss.h | |||
---|---|---|---|---|
skipping to change at line 37 | skipping to change at line 37 | |||
extern "C" { | extern "C" { | |||
# endif | # endif | |||
/** | /** | |||
* GSS_VERSION | * GSS_VERSION | |||
* | * | |||
* Pre-processor symbol with a string that describe the header file | * Pre-processor symbol with a string that describe the header file | |||
* version number. Used together with gss_check_version() to verify | * version number. Used together with gss_check_version() to verify | |||
* header file and run-time library consistency. | * header file and run-time library consistency. | |||
*/ | */ | |||
# define GSS_VERSION "0.1.1" | # define GSS_VERSION "0.1.2" | |||
/** | /** | |||
* GSS_VERSION_MAJOR | * GSS_VERSION_MAJOR | |||
* | * | |||
* Pre-processor symbol with a decimal value that describe the major | * Pre-processor symbol with a decimal value that describe the major | |||
* level of the header file version number. For example, when the | * level of the header file version number. For example, when the | |||
* header version is 1.2.3 this symbol will be 1. | * header version is 1.2.3 this symbol will be 1. | |||
* | * | |||
* Since: 0.1.0 | * Since: 0.1.0 | |||
*/ | */ | |||
skipping to change at line 70 | skipping to change at line 70 | |||
/** | /** | |||
* GSS_VERSION_PATCH | * GSS_VERSION_PATCH | |||
* | * | |||
* Pre-processor symbol with a decimal value that describe the patch | * Pre-processor symbol with a decimal value that describe the patch | |||
* level of the header file version number. For example, when the | * level of the header file version number. For example, when the | |||
* header version is 1.2.3 this symbol will be 3. | * header version is 1.2.3 this symbol will be 3. | |||
* | * | |||
* Since: 0.1.0 | * Since: 0.1.0 | |||
*/ | */ | |||
# define GSS_VERSION_PATCH 1 | # define GSS_VERSION_PATCH 2 | |||
/** | /** | |||
* GSS_VERSION_NUMBER | * GSS_VERSION_NUMBER | |||
* | * | |||
* Pre-processor symbol with a hexadecimal value describing the | * Pre-processor symbol with a hexadecimal value describing the | |||
* header file version number. For example, when the header version | * header file version number. For example, when the header version | |||
* is 1.2.3 this symbol will have the value 0x010203. | * is 1.2.3 this symbol will have the value 0x010203. | |||
* | * | |||
* Since: 0.1.0 | * Since: 0.1.0 | |||
*/ | */ | |||
# define GSS_VERSION_NUMBER 0x000101 | # define GSS_VERSION_NUMBER 0x000102 | |||
# include <gss/api.h> | # include <gss/api.h> | |||
# include <gss/ext.h> | # include <gss/ext.h> | |||
# ifdef __cplusplus | # ifdef __cplusplus | |||
} | } | |||
# endif | # endif | |||
#endif /* _GSS_H */ | #endif /* _GSS_H */ | |||
End of changes. 3 change blocks. | ||||
3 lines changed or deleted | 3 lines changed or added | |||