mame/3rdparty/lzma/CPP/Windows/Control/Edit.h
2023-12-06 07:58:49 +11:00

20 lines
297 B
C++

// Windows/Control/Edit.h
#ifndef ZIP7_INC_WINDOWS_CONTROL_EDIT_H
#define ZIP7_INC_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