exttextcat-version.h | exttextcat-version.h | |||
---|---|---|---|---|
#ifndef EXTTEXTCAT_VERSION_H | #ifndef EXTTEXTCAT_VERSION_H | |||
#define EXTTEXTCAT_VERSION_H | #define EXTTEXTCAT_VERSION_H | |||
#define EXTTEXTCAT_VERSION "3.4.1" | #define EXTTEXTCAT_VERSION "3.4.3" | |||
#define EXTTEXTCAT_VERSION_MAJOR 3 | #define EXTTEXTCAT_VERSION_MAJOR 3 | |||
#define EXTTEXTCAT_VERSION_MINOR 4 | #define EXTTEXTCAT_VERSION_MINOR 4 | |||
#define EXTTEXTCAT_VERSION_MICRO 1 | #define EXTTEXTCAT_VERSION_MICRO 3 | |||
#endif | #endif | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||
textcat.h | textcat.h | |||
---|---|---|---|---|
skipping to change at line 48 | skipping to change at line 48 | |||
*/ | */ | |||
#include "exttextcat-version.h" | #include "exttextcat-version.h" | |||
#include "common.h" | #include "common.h" | |||
#include "textcat_properties.h" | #include "textcat_properties.h" | |||
#define TEXTCAT_RESULT_UNKNOWN_STR "UNKNOWN" | #define TEXTCAT_RESULT_UNKNOWN_STR "UNKNOWN" | |||
#define TEXTCAT_RESULT_SHORT_STR "SHORT" | #define TEXTCAT_RESULT_SHORT_STR "SHORT" | |||
#define TEXTCAT_RESULT_UNKNOWN 0 | #define TEXTCAT_RESULT_UNKNOWN 0 | |||
#define TEXTCAT_RESULT_SHORT -2 | #define TEXTCAT_RESULT_SHORT -2 | |||
/* Old deprecated bad spelling. */ | ||||
#define _TEXTCAT_RESULT_UNKOWN TEXTCAT_RESULT_UNKNOWN_STR | ||||
#define _TEXTCAT_RESULT_SHORT TEXTCAT_RESULT_SHORT_STR | ||||
#define TEXTCAT_RESULT_UNKOWN TEXTCAT_RESULT_UNKNOWN | ||||
#ifdef __cplusplus | #ifdef __cplusplus | |||
extern "C" | extern "C" | |||
{ | { | |||
#endif | #endif | |||
typedef struct | typedef struct | |||
{ | { | |||
int score; | int score; | |||
const char *name; | const char *name; | |||
} candidate_t; | } candidate_t; | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 5 lines changed or added | |||