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.

31 lines
790 B

  1. #if !defined __COMPSPP_H__
  2. #define __COMPSPP_H__
  3. #include "cproppg.h"
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CCompsPP dialog
  6. class CCompsPP:CHlprPropPage
  7. {
  8. // Construction
  9. public:
  10. CCompsPP();
  11. ~CCompsPP();
  12. HPROPSHEETPAGE Initialize(DWORD dwPageType, LPGPOBROWSEINFO pGBI, void ** ppActive);
  13. virtual BOOL DialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
  14. // Dialog Data
  15. LPCWSTR m_szComputer;
  16. int m_iSelection;
  17. LPGPOBROWSEINFO m_pGBI;
  18. protected:
  19. DWORD m_dwPageType;
  20. void ** m_ppActive;
  21. private: //private helper functions
  22. void OnBrowseComputers (HWND hwndDlg);
  23. };
  24. #endif // __COMPSPP_H__