mirror of
https://github.com/holub/mame
synced 2025-05-06 22:35:43 +03:00
20 lines
283 B
C++
20 lines
283 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
|