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