aboutsummaryrefslogtreecommitdiff
path: root/CPP/Windows/Control/Edit.h
blob: 51a22c537406a437ef70e67d3c5b6ebd1551a3f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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