Windows NT 4.0 source code leak
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

#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