summaryrefslogtreecommitdiffstats
path: root/src/libs/7zip/unix/CPP/Windows/Control/Static.h
blob: 36469c18ff6b27efa6a941acf80fcf3006316020 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Windows/Control/Static.h

#ifndef __WINDOWS_CONTROL_STATIC_H
#define __WINDOWS_CONTROL_STATIC_H

#include "Windows/Window.h"
#include "Windows/Defs.h"

typedef void * HICON;

namespace NWindows {
namespace NControl {

class CStatic : public CWindow
{
public:

	HICON SetIcon(HICON icon) { return 0; } // FIXME
};

}}

#endif