mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-12-24 06:34:50 +01:00
19 lines
225 B
C++
19 lines
225 B
C++
#ifndef __TOOLTIP_H
|
|
#define __TOOLTIP_H
|
|
|
|
#include <api/service/svcs/svc_tooltips.h>
|
|
|
|
class Tooltip {
|
|
|
|
public:
|
|
|
|
Tooltip(const wchar_t *txt);
|
|
virtual ~Tooltip();
|
|
|
|
private:
|
|
|
|
svc_toolTipsRenderer *svc;
|
|
};
|
|
|
|
#endif
|