cpl_plugin.h | cpl_plugin.h | |||
---|---|---|---|---|
skipping to change at line 218 | skipping to change at line 218 | |||
* | * | |||
* Variable contains the copyright and license string applying | * Variable contains the copyright and license string applying | |||
* to the plugin. The returned string must be null-terminated. If no | * to the plugin. The returned string must be null-terminated. If no | |||
* copyright applies this pointer should be set to a @c NULL pointer. | * copyright applies this pointer should be set to a @c NULL pointer. | |||
*/ | */ | |||
const char *copyright; | const char *copyright; | |||
/** | /** | |||
* @brief | * @brief | |||
* Initalizes a plugin instance. | * Initializes a plugin instance. | |||
* | * | |||
* @param plugin The plugin to instantiate. | * @param plugin The plugin to instantiate. | |||
* | * | |||
* @return The function must return 0 on success, and a non-zero value | * @return The function must return 0 on success, and a non-zero value | |||
* if the plugin instatiation failed. | * if the plugin instantiation failed. | |||
* | * | |||
* The function to initialize a plugin instance. This maybe NULL | * The function to initialize a plugin instance. This maybe NULL | |||
* if the initialization of the plugin is not needed. Otherwise it | * if the initialization of the plugin is not needed. Otherwise it | |||
* has to be called before plugin type specific members are accessed. | * has to be called before plugin type specific members are accessed. | |||
*/ | */ | |||
cpl_plugin_func initialize; | cpl_plugin_func initialize; | |||
/** | /** | |||
* @brief | * @brief | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||
cpl_version.h | cpl_version.h | |||
---|---|---|---|---|
skipping to change at line 30 | skipping to change at line 30 | |||
/* | /* | |||
* Do not edit this file! This file was automatically generated. | * Do not edit this file! This file was automatically generated. | |||
* All changes to this file might be lost! | * All changes to this file might be lost! | |||
*/ | */ | |||
#ifndef CPL_VERSION_H | #ifndef CPL_VERSION_H | |||
#define CPL_VERSION_H | #define CPL_VERSION_H | |||
#include <cpl_macros.h> | #include <cpl_macros.h> | |||
#define CPL_VERSION_STRING "6.5" | #define CPL_VERSION_STRING "6.5.1" | |||
#define CPL_VERSION_CODE 394496 | #define CPL_VERSION_CODE 394497 | |||
#define CPL_VERSION(major, minor, micro) \ | #define CPL_VERSION(major, minor, micro) \ | |||
(((major) * 65536) + ((minor) * 256) + (micro)) | (((major) * 65536) + ((minor) * 256) + (micro)) | |||
CPL_BEGIN_DECLS | CPL_BEGIN_DECLS | |||
unsigned int cpl_version_get_major(void) CPL_ATTR_CONST; | unsigned int cpl_version_get_major(void) CPL_ATTR_CONST; | |||
unsigned int cpl_version_get_minor(void) CPL_ATTR_CONST; | unsigned int cpl_version_get_minor(void) CPL_ATTR_CONST; | |||
unsigned int cpl_version_get_micro(void) CPL_ATTR_CONST; | unsigned int cpl_version_get_micro(void) CPL_ATTR_CONST; | |||
End of changes. 1 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||