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.
|
|
#ifndef NETPAGE_H
#define NETPAGE_H
class CNetworkUserWizardPage: public CPropertyPage { public: CNetworkUserWizardPage(CUserInfo* pUserInfo);
protected: // Message handlers
virtual INT_PTR DialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam); BOOL OnInitDialog(HWND hwnd, HWND hwndFocus, LPARAM lParam); BOOL OnNotify(HWND hwnd, int idCtrl, LPNMHDR pnmh); BOOL OnCommand(HWND hwnd, int id, HWND hwndCtl, UINT codeNotify);
private: // Data
CUserInfo* m_pUserInfo;
private: // Functions
void SetWizardButtons(HWND hwnd, HWND hwndPropSheet); HRESULT GetUserAndDomain(HWND hwnd); };
#endif //!NETPAGE_H
|