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.

37 lines
486 B

  1. #ifndef _CDELETEDLG_H
  2. #define _CDELETEDLG_H
  3. #include "inetxcv.h"
  4. #include "xcvdlg.h"
  5. class TDeletePortDlg: public TXcvDlg {
  6. public:
  7. TDeletePortDlg (
  8. LPCTSTR pServerName,
  9. HWND hWnd,
  10. LPCTSTR pszPortName);
  11. ~TDeletePortDlg (void);
  12. virtual BOOL
  13. PromptDialog (
  14. HINSTANCE hInst);
  15. private:
  16. BOOL
  17. GetString (
  18. LPWSTR lpszBuf,
  19. DWORD dwSize,
  20. UINT iStringID);
  21. BOOL
  22. DoDeletePort ();
  23. };
  24. #endif