Files
easy7zip/CPP/Windows/Control/Edit.h
Igor Pavlov 2eb60a0598 9.17
2016-05-28 00:16:04 +01:00

20 lines
292 B
C++
Executable File

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