Files
easy7zip/CPP/Windows/Control/Edit.h
Igor Pavlov d9666cf046 4.44 beta
2016-05-28 00:15:49 +01:00

21 lines
321 B
C++
Executable File

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