Source code of Windows XP (NT5)
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.

59 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. dcomputer.h
  5. Abstract:
  6. This header prototypes the computer selection dialog.
  7. Environment:
  8. WIN32 User Mode
  9. Author:
  10. Darwin Ouyang (t-darouy) 30-Sept-1997
  11. --*/
  12. #ifndef __DIALOG_COMPUTER_H_
  13. #define __DIALOG_COMPUTER_H_
  14. #include "resource.h"
  15. class CInternalRoot; // forward declaration
  16. class CFaxSelectComputerPropSheet
  17. {
  18. public:
  19. CFaxSelectComputerPropSheet( HINSTANCE hInstance, LONG_PTR hMmcNotify, CInternalRoot * glob );
  20. ~CFaxSelectComputerPropSheet();
  21. HPROPSHEETPAGE GetHandle() { return _hPropSheet; }
  22. private:
  23. static INT_PTR APIENTRY DlgProc( HWND hwndDlg,
  24. UINT message,
  25. WPARAM wParam,
  26. LPARAM lParam );
  27. //
  28. // NOTE: The following **must** be consecutive.
  29. //
  30. PROPSHEETPAGE _PropSheet;
  31. BOOL _fFirstActive;
  32. LONG_PTR _hMmcNotify;
  33. HPROPSHEETPAGE _hPropSheet;
  34. CInternalRoot * _globalRoot;
  35. };
  36. #endif