16 lines
416 B
C
16 lines
416 B
C
/* Useful version constants for iTunes version checking. */
|
|
|
|
// guard against exporting features that are not in earlier versions
|
|
#define ITUNES_7_3 0x0730
|
|
#define ITUNES_7_2 0x0720
|
|
#define ITUNES_7_1 0x0710
|
|
#define ITUNES_7_0_1 0x0701
|
|
#define ITUNES_6_0_2 0x0602
|
|
#define ITUNES_6_0_1 0x0601
|
|
#define ITUNES_6_0 0x0600
|
|
#define ITUNES_4_0 0x0400
|
|
|
|
// Enable all features by default.
|
|
#define ITUNES_VERSION 0xffff
|
|
|