Files
easy7zip/CPP/Windows/Control/Edit.h
Tino Reichardt c3967fe27a Initialer Commit
2016-06-25 21:15:50 +02:00

20 lines
302 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) { SendMsg(EM_SETPASSWORDCHAR, c); }
};
}}
#endif