common.h   common.h 
skipping to change at line 48 skipping to change at line 48
*/ */
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#ifdef __cplusplus #ifdef __cplusplus
extern "C" extern "C"
{ {
#endif #endif
#ifdef _MSC_VER #if defined(_MSC_VER) && _MSC_VER < 1600
typedef __int8 int8_t; typedef __int8 int8_t;
typedef unsigned __int8 uint8_t; typedef unsigned __int8 uint8_t;
typedef __int16 int16_t; typedef __int16 int16_t;
typedef unsigned __int16 uint16_t; typedef unsigned __int16 uint16_t;
typedef __int32 int32_t; typedef __int32 int32_t;
typedef unsigned __int32 uint32_t; typedef unsigned __int32 uint32_t;
typedef __int64 int64_t; typedef __int64 int64_t;
typedef unsigned __int64 uint64_t; typedef unsigned __int64 uint64_t;
#else #else
# include <stdint.h> # include <stdint.h>
 End of changes. 1 change blocks. 
1 lines changed or deleted 1 lines changed or added


 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.3" #define EXTTEXTCAT_VERSION "3.4.4"
#define EXTTEXTCAT_VERSION_MAJOR 3 #define EXTTEXTCAT_VERSION_MAJOR 3
#define EXTTEXTCAT_VERSION_MINOR 4 #define EXTTEXTCAT_VERSION_MINOR 4
#define EXTTEXTCAT_VERSION_MICRO 3 #define EXTTEXTCAT_VERSION_MICRO 4
#endif #endif
 End of changes. 2 change blocks. 
2 lines changed or deleted 2 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/