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