Couldn't find wdiff. Falling back to builtin diff colouring...
| libconfig.h | | libconfig.h | |
| | | | |
| skipping to change at line 44 | | skipping to change at line 44 | |
| #define LIBCONFIG_API __declspec(dllexport) | | #define LIBCONFIG_API __declspec(dllexport) | |
| #else /* ! LIBCONFIG_EXPORTS */ | | #else /* ! LIBCONFIG_EXPORTS */ | |
| #define LIBCONFIG_API __declspec(dllimport) | | #define LIBCONFIG_API __declspec(dllimport) | |
| #endif /* LIBCONFIG_STATIC */ | | #endif /* LIBCONFIG_STATIC */ | |
| #else /* ! WIN32 */ | | #else /* ! WIN32 */ | |
| #define LIBCONFIG_API | | #define LIBCONFIG_API | |
| #endif /* WIN32 */ | | #endif /* WIN32 */ | |
| | | | |
| #define LIBCONFIG_VER_MAJOR 1 | | #define LIBCONFIG_VER_MAJOR 1 | |
| #define LIBCONFIG_VER_MINOR 4 | | #define LIBCONFIG_VER_MINOR 4 | |
|
| #define LIBCONFIG_VER_REVISION 7 | | #define LIBCONFIG_VER_REVISION 8 | |
| | | | |
| #include <stdio.h> | | #include <stdio.h> | |
| | | | |
| #define CONFIG_TYPE_NONE 0 | | #define CONFIG_TYPE_NONE 0 | |
| #define CONFIG_TYPE_GROUP 1 | | #define CONFIG_TYPE_GROUP 1 | |
| #define CONFIG_TYPE_INT 2 | | #define CONFIG_TYPE_INT 2 | |
| #define CONFIG_TYPE_INT64 3 | | #define CONFIG_TYPE_INT64 3 | |
| #define CONFIG_TYPE_FLOAT 4 | | #define CONFIG_TYPE_FLOAT 4 | |
| #define CONFIG_TYPE_STRING 5 | | #define CONFIG_TYPE_STRING 5 | |
| #define CONFIG_TYPE_BOOL 6 | | #define CONFIG_TYPE_BOOL 6 | |
| | | | |
End of changes. 1 change blocks. |
| 1 lines changed or deleted | | 1 lines changed or added | |
|
| libconfig.h++ | | libconfig.h++ | |
| | | | |
| skipping to change at line 44 | | skipping to change at line 44 | |
| #define LIBCONFIGXX_API __declspec(dllexport) | | #define LIBCONFIGXX_API __declspec(dllexport) | |
| #else /* ! LIBCONFIGXX_EXPORTS */ | | #else /* ! LIBCONFIGXX_EXPORTS */ | |
| #define LIBCONFIGXX_API __declspec(dllimport) | | #define LIBCONFIGXX_API __declspec(dllimport) | |
| #endif /* LIBCONFIGXX_STATIC */ | | #endif /* LIBCONFIGXX_STATIC */ | |
| #else /* ! WIN32 */ | | #else /* ! WIN32 */ | |
| #define LIBCONFIGXX_API | | #define LIBCONFIGXX_API | |
| #endif /* WIN32 */ | | #endif /* WIN32 */ | |
| | | | |
| #define LIBCONFIGXX_VER_MAJOR 1 | | #define LIBCONFIGXX_VER_MAJOR 1 | |
| #define LIBCONFIGXX_VER_MINOR 4 | | #define LIBCONFIGXX_VER_MINOR 4 | |
|
| #define LIBCONFIGXX_VER_REVISION 7 | | #define LIBCONFIGXX_VER_REVISION 8 | |
| | | | |
| struct config_t; // fwd decl | | struct config_t; // fwd decl | |
| struct config_setting_t; // fwd decl | | struct config_setting_t; // fwd decl | |
| | | | |
| namespace libconfig { | | namespace libconfig { | |
| | | | |
| class LIBCONFIGXX_API ConfigException : public std::exception { }; | | class LIBCONFIGXX_API ConfigException : public std::exception { }; | |
| | | | |
| class Setting; // fwd decl | | class Setting; // fwd decl | |
| | | | |
| | | | |
End of changes. 1 change blocks. |
| 1 lines changed or deleted | | 1 lines changed or added | |
|