1// Windows/Control/Edit.h
2
3#ifndef __WINDOWS_CONTROL_EDIT_H
4#define __WINDOWS_CONTROL_EDIT_H
5
6#include "../Window.h"
7
8namespace NWindows {
9namespace NControl {
10
11class CEdit: public CWindow
12{
13public:
14  void SetPasswordChar(WPARAM c) { SendMessage(EM_SETPASSWORDCHAR, c); }
15};
16
17}}
18
19#endif
20