Leaked source code of windows server 2003
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.
 
 
 
 
 
 

34 lines
625 B

#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