mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-12-04 04:42:06 -05:00
18 lines
237 B
C++
18 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
|