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.

46 lines
995 B

  1. // Copyright (c) 2001 Microsoft Corporation
  2. //
  3. // File: DisconnectedNICDialog.h
  4. //
  5. // Synopsis: Declares the DisconnectedNICDialog class
  6. // which presents the user with options
  7. // to cancel or continue when disconnected
  8. // NICs are detected
  9. //
  10. // History: 09/27/2001 JeffJon Created
  11. #ifndef __CYS_DISCONNECTEDNICDIALOG_H
  12. #define __CYS_DISCONNECTEDNICDIALOG_H
  13. class DisconnectedNICDialog : public Dialog
  14. {
  15. public:
  16. // constructor
  17. DisconnectedNICDialog();
  18. virtual
  19. void
  20. OnInit();
  21. protected:
  22. virtual
  23. bool
  24. OnCommand(
  25. HWND windowFrom,
  26. unsigned controlIdFrom,
  27. unsigned code);
  28. private:
  29. // not defined: no copying allowed
  30. DisconnectedNICDialog(const DisconnectedNICDialog&);
  31. const DisconnectedNICDialog& operator=(const DisconnectedNICDialog&);
  32. };
  33. #endif // __CYS_DISCONNECTEDNICDIALOG_H