![]() |
Miam-Player
0.8.0
A nice music player
|
Go to the source code of this file.
Macros | |
#define | QTAV_MAJOR 1 |
#define | QTAV_MINOR 11 |
#define | QTAV_PATCH 0 |
#define | QTAV_VERSION_MAJOR(V) ((V & 0xff0000) >> 16) |
#define | QTAV_VERSION_MINOR(V) ((V & 0xff00) >> 8) |
#define | QTAV_VERSION_PATCH(V) (V & 0xff) |
#define | QTAV_VERSION_CHK(major, minor, patch) (((major&0xff)<<16) | ((minor&0xff)<<8) | (patch&0xff)) |
#define | QTAV_VERSION QTAV_VERSION_CHK(QTAV_MAJOR, QTAV_MINOR, QTAV_PATCH) |
#define | _TOSTR(x) #x |
Stringify x. More... | |
#define | TOSTR(x) _TOSTR(x) |
Stringify x, perform macro expansion. More... | |
#define | QTAV_VERSION_STR TOSTR(QTAV_MAJOR) "." TOSTR(QTAV_MINOR) "." TOSTR(QTAV_PATCH) |
#define _TOSTR | ( | x | ) | #x |
Stringify x.
#define QTAV_MAJOR 1 |
#define QTAV_MINOR 11 |
#define QTAV_PATCH 0 |
#define QTAV_VERSION QTAV_VERSION_CHK(QTAV_MAJOR, QTAV_MINOR, QTAV_PATCH) |
#define QTAV_VERSION_CHK | ( | major, | |
minor, | |||
patch | |||
) | (((major&0xff)<<16) | ((minor&0xff)<<8) | (patch&0xff)) |
#define QTAV_VERSION_MAJOR | ( | V | ) | ((V & 0xff0000) >> 16) |
#define QTAV_VERSION_MINOR | ( | V | ) | ((V & 0xff00) >> 8) |
#define QTAV_VERSION_PATCH | ( | V | ) | (V & 0xff) |
#define QTAV_VERSION_STR TOSTR(QTAV_MAJOR) "." TOSTR(QTAV_MINOR) "." TOSTR(QTAV_PATCH) |
#define TOSTR | ( | x | ) | _TOSTR(x) |
Stringify x, perform macro expansion.