29 #include "taglib_config.h" 31 #define TAGLIB_MAJOR_VERSION 1 32 #define TAGLIB_MINOR_VERSION 13 33 #define TAGLIB_PATCH_VERSION 1 35 #if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 1)) || defined(__clang__) 36 #define TAGLIB_IGNORE_MISSING_DESTRUCTOR _Pragma("GCC diagnostic ignored \"-Wnon-virtual-dtor\"") 38 #define TAGLIB_IGNORE_MISSING_DESTRUCTOR 41 #if (defined(_MSC_VER) && _MSC_VER >= 1600) 42 #define TAGLIB_CONSTRUCT_BITSET(x) static_cast<unsigned long long>(x) 44 #define TAGLIB_CONSTRUCT_BITSET(x) static_cast<unsigned long>(x) 47 #if __cplusplus >= 201402 48 #define TAGLIB_DEPRECATED [[deprecated]] 49 #elif defined(__GNUC__) || defined(__clang__) 50 #define TAGLIB_DEPRECATED __attribute__((deprecated)) 51 #elif defined(_MSC_VER) 52 #define TAGLIB_DEPRECATED __declspec(deprecated) 54 #define TAGLIB_DEPRECATED 75 typedef wchar_t wchar;
86 typedef std::basic_string<wchar_t>
wstring;
std::basic_string< wchar_t > wstring
Definition: taglib.h:86
unsigned int uint
Definition: taglib.h:78
unsigned short ushort
Definition: taglib.h:77
wchar_t wchar
Definition: taglib.h:71
A wide string class suitable for unicode.
Definition: tstring.h:84
unsigned char uchar
Definition: taglib.h:76
unsigned long ulong
Definition: taglib.h:79
unsigned long long ulonglong
Definition: taglib.h:80
A namespace for all TagLib related classes and functions.
Definition: apefile.h:41