mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
499 B
33 lines
499 B
#ifndef __SECURITY_H
|
|
#define __SECURITY_H
|
|
|
|
class CDialUpSheet;
|
|
|
|
class CSecurityPage : public PropertyPage
|
|
{
|
|
// Constructors/Destructors
|
|
public:
|
|
|
|
CSecurityPage(CDialUpSheet* pSheet);
|
|
~CSecurityPage();
|
|
|
|
//Attributes
|
|
public:
|
|
|
|
// Interface
|
|
public:
|
|
virtual BOOL OnInitDialog(); // must call the base
|
|
virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
|
|
|
|
// Page notifications
|
|
public:
|
|
virtual int OnApply();
|
|
virtual void OnHelp();
|
|
|
|
// Implementation
|
|
public:
|
|
};
|
|
|
|
|
|
|
|
#endif
|