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

#ifndef _CDELETEDLG_H
#define _CDELETEDLG_H
#include "inetxcv.h"
#include "xcvdlg.h"
class TDeletePortDlg: public TXcvDlg {
public:
TDeletePortDlg (
LPCTSTR pServerName,
HWND hWnd,
LPCTSTR pszPortName);
~TDeletePortDlg (void);
virtual BOOL
PromptDialog (
HINSTANCE hInst);
private:
BOOL
GetString (
LPWSTR lpszBuf,
DWORD dwSize,
UINT iStringID);
BOOL
DoDeletePort ();
};
#endif