netfinpg.h
Upload User: xhy777
Upload Date: 2007-02-14
Package Size: 24088k
Code Size: 1k
Category:

Windows Kernel

Development Platform:

Visual C++

  1. #ifndef PAGE3_H_INCLUDED
  2. #define PAGE3_H_INCLUDED
  3. #include "dialog.h"
  4. class CNetPlacesWizardPage3 : public CPropertyPage
  5. {
  6. public:
  7.     CNetPlacesWizardPage3(NETPLACESWIZARDDATA* pdata): m_pdata(pdata) {}
  8. protected:
  9.     // Message handlers
  10.     virtual INT_PTR DialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
  11.     BOOL OnCommand(HWND hwnd, int id, HWND hwndCtl, UINT codeNotify);
  12.     BOOL OnInitDialog(HWND hwnd, HWND hwndFocus, LPARAM lParam);
  13.     BOOL OnNotify(HWND hwnd, int idCtrl, LPNMHDR pnmh);
  14.     // Helpers
  15.     BOOL IsReconnectSet();
  16.     
  17.     // Data
  18.     NETPLACESWIZARDDATA* m_pdata;
  19. };
  20. #endif // !PAGE3_H_INCLUDED