mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
13 lines
263 B
C++
13 lines
263 B
C++
#ifndef _UIOPTIONS_H
|
|
#define _UIOPTIONS_H
|
|
|
|
#include <api/config/items/cfgitemi.h>
|
|
|
|
#define UIOPTIONS_PARENT CfgItemI
|
|
class UIOptions : public UIOPTIONS_PARENT {
|
|
public:
|
|
UIOptions(const wchar_t *name=NULL);
|
|
static void onTimerRefreshRate(int rate);
|
|
};
|
|
|
|
#endif
|