mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
14 lines
340 B
C++
14 lines
340 B
C++
#include <precomp.h>
|
|
#include "skinitem.h"
|
|
|
|
#ifdef CBCLASS
|
|
#undef CBCLASS
|
|
#endif
|
|
#define CBCLASS SkinItemI
|
|
START_DISPATCH;
|
|
CB(SKINITEM_GETXMLROOTPATH, getXmlRootPath);
|
|
CB(SKINITEM_GETNAME, getName);
|
|
CB(SKINITEM_GETPARAMS, getParams);
|
|
CB(SKINITEM_GETSKINPARTID, getSkinPartId);
|
|
CB(SKINITEM_GETANCESTOR, getAncestor);
|
|
END_DISPATCH;
|