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