mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-12-19 15:55:52 +01:00
19 lines
237 B
C++
19 lines
237 B
C++
#ifndef _PAINTSETS_H
|
|
#define _PAINTSETS_H
|
|
|
|
namespace Paintset {
|
|
enum {
|
|
BUTTONUP,
|
|
BUTTONDOWN,
|
|
TRAY,
|
|
BUTTONDISABLED,
|
|
TITLESTREAK,
|
|
APPFRAME,
|
|
LABEL,
|
|
FOCUSRECT,
|
|
};
|
|
const int NUM_PAINTSETS = 8;
|
|
};
|
|
|
|
#endif
|