WebKitVersion.h | WebKitVersion.h | |||
---|---|---|---|---|
skipping to change at line 56 | skipping to change at line 56 | |||
*/ | */ | |||
#define WEBKIT_MINOR_VERSION (4) | #define WEBKIT_MINOR_VERSION (4) | |||
/** | /** | |||
* WEBKIT_MICRO_VERSION: | * WEBKIT_MICRO_VERSION: | |||
* | * | |||
* Like webkit_get_micro_version(), but from the headers used at | * Like webkit_get_micro_version(), but from the headers used at | |||
* application compile time, rather than from the library linked | * application compile time, rather than from the library linked | |||
* against at application run time. | * against at application run time. | |||
*/ | */ | |||
#define WEBKIT_MICRO_VERSION (0) | #define WEBKIT_MICRO_VERSION (1) | |||
/** | /** | |||
* WEBKIT_CHECK_VERSION: | * WEBKIT_CHECK_VERSION: | |||
* @major: major version (e.g. 1 for version 1.2.5) | * @major: major version (e.g. 1 for version 1.2.5) | |||
* @minor: minor version (e.g. 2 for version 1.2.5) | * @minor: minor version (e.g. 2 for version 1.2.5) | |||
* @micro: micro version (e.g. 5 for version 1.2.5) | * @micro: micro version (e.g. 5 for version 1.2.5) | |||
* | * | |||
* Returns: %TRUE if the version of the WebKit header files | * Returns: %TRUE if the version of the WebKit header files | |||
* is the same as or newer than the passed-in version. | * is the same as or newer than the passed-in version. | |||
*/ | */ | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
webkitversion.h | webkitversion.h | |||
---|---|---|---|---|
skipping to change at line 30 | skipping to change at line 30 | |||
#ifndef webkitversion_h | #ifndef webkitversion_h | |||
#define webkitversion_h | #define webkitversion_h | |||
#include <glib.h> | #include <glib.h> | |||
#include <webkit/webkitdefines.h> | #include <webkit/webkitdefines.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
#define WEBKIT_MAJOR_VERSION (2) | #define WEBKIT_MAJOR_VERSION (2) | |||
#define WEBKIT_MINOR_VERSION (4) | #define WEBKIT_MINOR_VERSION (4) | |||
#define WEBKIT_MICRO_VERSION (0) | #define WEBKIT_MICRO_VERSION (1) | |||
#define WEBKIT_USER_AGENT_MAJOR_VERSION (538) | #define WEBKIT_USER_AGENT_MAJOR_VERSION (538) | |||
#define WEBKIT_USER_AGENT_MINOR_VERSION (15) | #define WEBKIT_USER_AGENT_MINOR_VERSION (15) | |||
/** | /** | |||
* WEBKITGTK_API_VERSION: (skip) | * WEBKITGTK_API_VERSION: (skip) | |||
*/ | */ | |||
#define WEBKITGTK_API_VERSION (3.0) | #define WEBKITGTK_API_VERSION (3.0) | |||
#define WEBKIT_CHECK_VERSION(major, minor, micro) \ | #define WEBKIT_CHECK_VERSION(major, minor, micro) \ | |||
(WEBKIT_MAJOR_VERSION > (major) || \ | (WEBKIT_MAJOR_VERSION > (major) || \ | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||