Files
easy7zip/CPP/Windows/Control/Edit.h
Igor Pavlov f08f4dcc3c 9.34
2016-05-28 00:16:51 +01:00

20 lines
287 B
C++

// Windows/Control/Edit.h
#ifndef __WINDOWS_CONTROL_EDIT_H
#define __WINDOWS_CONTROL_EDIT_H
#include "../Window.h"
namespace NWindows {
namespace NControl {
class CEdit: public CWindow
{
public:
void SetPasswordChar(WPARAM c) { SendMessage(EM_SETPASSWORDCHAR, c); }
};
}}
#endif