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.

27 lines
690 B

  1. #ifndef NETPAGE_H
  2. #define NETPAGE_H
  3. class CNetworkUserWizardPage: public CPropertyPage
  4. {
  5. public:
  6. CNetworkUserWizardPage(CUserInfo* pUserInfo);
  7. protected:
  8. // Message handlers
  9. virtual INT_PTR DialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
  10. BOOL OnInitDialog(HWND hwnd, HWND hwndFocus, LPARAM lParam);
  11. BOOL OnNotify(HWND hwnd, int idCtrl, LPNMHDR pnmh);
  12. BOOL OnCommand(HWND hwnd, int id, HWND hwndCtl, UINT codeNotify);
  13. private:
  14. // Data
  15. CUserInfo* m_pUserInfo;
  16. private:
  17. // Functions
  18. void SetWizardButtons(HWND hwnd, HWND hwndPropSheet);
  19. HRESULT GetUserAndDomain(HWND hwnd);
  20. };
  21. #endif //!NETPAGE_H