Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Edit.h « Control « Windows « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d1af3644987b98732c71fde85a1f765c59ff02d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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