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

  1. #ifndef CPROPERTYSHEETAUTODELETE_INCLUDED
  2. #define CPROPERTYSHEETAUTODELETE_INCLUDED
  3. #include "cookie.h" // Cookie
  4. #include "resource.h" // IDD_CLASS_MEMBERSHIP
  5. UINT CALLBACK PropSheetPageProc
  6. (
  7. HWND hwnd,
  8. UINT uMsg,
  9. LPPROPSHEETPAGE ppsp
  10. );
  11. class CPropertyPageAutoDelete:public CPropertyPage
  12. {
  13. public:
  14. CPropertyPageAutoDelete
  15. (
  16. UINT nIDTemplate
  17. );
  18. friend UINT CALLBACK PropSheetPageProc
  19. (
  20. HWND hwnd,
  21. UINT uMsg,
  22. LPPROPSHEETPAGE ppsp
  23. );
  24. private:
  25. LPFNPSPCALLBACK m_pfnOldPropCallback;
  26. };
  27. #endif