16 lines
302 B
C
16 lines
302 B
C
#ifndef COMMON_H
|
|
#define COMMON_H
|
|
|
|
#define DELETE(x) { if(x) delete x, x=0; }
|
|
|
|
#define THUMB_WIDTH 220
|
|
#define THUMB_HEIGHT 390
|
|
#define FANART_WIDTH 480
|
|
#define FANART_HEIGHT 270
|
|
#define POSTER_WIDTH 220
|
|
#define POSTER_HEIGHT 390
|
|
#define BANNER_WIDTH 480
|
|
#define BANNER_HEIGHT 90
|
|
|
|
#endif // COMMON_H
|