chdman/3rdparty/lzma/CPP/Windows/Control/Edit.h

20 lines
283 B
C
Raw Normal View History

2021-12-14 11:06:18 +00:00
// 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