Windows2003-3790/admin/snapin/schmmgmt/cpropertypageautodelete.hpp
2020-09-30 16:53:55 +02:00

35 lines
625 B
C++

#ifndef CPROPERTYSHEETAUTODELETE_INCLUDED
#define CPROPERTYSHEETAUTODELETE_INCLUDED
#include "cookie.h" // Cookie
#include "resource.h" // IDD_CLASS_MEMBERSHIP
UINT CALLBACK PropSheetPageProc
(
HWND hwnd,
UINT uMsg,
LPPROPSHEETPAGE ppsp
);
class CPropertyPageAutoDelete:public CPropertyPage
{
public:
CPropertyPageAutoDelete
(
UINT nIDTemplate
);
friend UINT CALLBACK PropSheetPageProc
(
HWND hwnd,
UINT uMsg,
LPPROPSHEETPAGE ppsp
);
private:
LPFNPSPCALLBACK m_pfnOldPropCallback;
};
#endif