Windows NT 4.0 source code leak
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.
 
 
 
 
 
 

34 lines
732 B

#ifndef __TCPSHT_H
#define __TCPSHT_H
#include "tcpwins.h"
#include "tcpsec.h"
#include "advdlg.h"
#include "tcpdns.h"
#include "bootp.h"
#include "tcproute.h"
#include "tcpgen.h"
extern HINSTANCE hTcpCfgInstance;
class CTcpSheet : public PropertySht
{
// Constructors/Destructors
public:
CTcpSheet(HWND hwnd, HINSTANCE hInstance, LPCTSTR lpszHelpFile);
~CTcpSheet();
virtual void DestroySheet();
public:
CTcpGenPage m_general;
CTcpDNSPage m_dns;
CTcpWinsPage m_wins;
CRoutePage m_routing;
CBootpPage m_bootp;
GLOBAL_INFO m_globalInfo;
ADAPTER_INFO* m_pAdapterInfo;
ADAPTER_DHCP_INFO* m_pAdapterDhcpInfo;
};
#endif