winamp/Src/Wasabi/api/skin/cursormgr.h

19 lines
271 B
C
Raw Normal View History

2024-09-24 12:54:57 +00:00
#ifndef __CURSORMGR_H
#define __CURSORMGR_H
#include <bfc/platform/platform.h>
#include <api/wnd/cursor.h>
class ifc_window;
class CursorMgr
{
public:
CursorMgr() {}
virtual ~CursorMgr() {}
static OSCURSOR requestCursor(const wchar_t *id);
};
#endif