mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 03:14:59 -06:00
20 lines
292 B
C++
Executable File
20 lines
292 B
C++
Executable File
// Windows/Control/Edit.h
|
|
|
|
#ifndef __WINDOWS_CONTROL_EDIT_H
|
|
#define __WINDOWS_CONTROL_EDIT_H
|
|
|
|
#include "Windows/Window.h"
|
|
|
|
namespace NWindows {
|
|
namespace NControl {
|
|
|
|
class CEdit: public CWindow
|
|
{
|
|
public:
|
|
void SetPasswordChar(WPARAM c) { SendMessage(EM_SETPASSWORDCHAR, c); }
|
|
};
|
|
|
|
}}
|
|
|
|
#endif
|