mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
15 lines
155 B
C
15 lines
155 B
C
|
#ifndef _COMBOSKIN_H
|
||
|
#define _COMBOSKIN_H
|
||
|
|
||
|
#include <windows.h>
|
||
|
|
||
|
class ComboSkin
|
||
|
{
|
||
|
public:
|
||
|
ComboSkin(HWND hwnd);
|
||
|
~ComboSkin();
|
||
|
|
||
|
int token;
|
||
|
};
|
||
|
|
||
|
#endif
|