Top | ![]() |
![]() |
![]() |
![]() |
#define | LIBRDF_VERSION |
#define | LIBRDF_VERSION_MAJOR |
#define | LIBRDF_VERSION_MINOR |
#define | LIBRDF_VERSION_RELEASE |
#define | LIBRDF_VERSION_STRING |
extern const unsigned int | librdf_version_decimal |
extern const unsigned int | librdf_version_major |
extern const unsigned int | librdf_version_release |
extern const unsigned int | librdf_version_minor |
extern const char * const | librdf_version_string |
extern const char * const | librdf_copyright_string |
extern const char * const | librdf_short_copyright_string |
extern const char * const | librdf_license_string |
extern const char * const | librdf_home_url_string |
#define | REDLAND_DEPRECATED |
void *
librdf_alloc_memory (size_t size
);
Allocate memory inside the library similar to malloc()
.
Required for some runtimes where memory must be freed within the same shared object it was allocated in.
void * librdf_calloc_memory (size_t nmemb
,size_t size
);
Allocate zeroed array of items inside the library similar to calloc()
.
Required for some runtimes where memory must be freed within the same shared object it was allocated in.
#define LIBRDF_VERSION 10017
Redland librdf library version number
Format: major * 10000 + minor * 100 + release
extern const unsigned int librdf_version_decimal;
Library full version as a decimal integer.
See also librdf_version_string.
extern const unsigned int librdf_version_major;
Library major version number as a decimal integer.
extern const unsigned int librdf_version_release;
Library release version number as a decimal integer.
extern const unsigned int librdf_version_minor;
Library minor version number as a decimal integer.
extern const char * const librdf_version_string;
Library full version as a string.
See also librdf_version_decimal.
extern const char * const librdf_copyright_string;
Copyright string (multiple lines).
extern const char * const librdf_short_copyright_string;
Short copyright string (one line).
extern const char * const librdf_license_string;
Redland librdf license string.
extern const char * const librdf_home_url_string;
Redland librdf home page URL.