xref: /aosp_15_r20/external/lzma/CPP/Windows/Control/Edit.h (revision f6dc9357d832569d4d1f5d24eacdb3935a1ae8e6)
1 // Windows/Control/Edit.h
2 
3 #ifndef ZIP7_INC_WINDOWS_CONTROL_EDIT_H
4 #define ZIP7_INC_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