ConfigPropertySheet.h [plain text]
#ifndef _ConfigPropertySheet_h
#define _ConfigPropertySheet_h
#include "stdafx.h"
#include "ServicesPage.h"
#include "RegistrationPage.h"
#include "BrowsingPage.h"
#include <RegNames.h>
#include <dns_sd.h>
#include <list>
class CConfigPropertySheet : public CPropertySheet
{
public:
CConfigPropertySheet();
virtual ~CConfigPropertySheet();
typedef std::list<CString> StringList;
StringList m_browseDomains;
protected:
CServicesPage m_firstPage;
CRegistrationPage m_secondPage;
CBrowsingPage m_thirdPage;
DECLARE_DYNCREATE(CConfigPropertySheet)
DECLARE_MESSAGE_MAP()
afx_msg BOOL OnInitDialog();
afx_msg BOOL OnCommand( WPARAM wParam, LPARAM lParam );
afx_msg LRESULT OnDataReady( WPARAM inWParam, LPARAM inLParam );
afx_msg LRESULT OnRegistryChanged( WPARAM inWParam, LPARAM inLParam );
void OnEndDialog();
private:
OSStatus
SetupBrowsing();
OSStatus
TearDownBrowsing();
OSStatus
DecodeDomainName( const char * raw, CString & decoded );
static void DNSSD_API
BrowseDomainsReply
(
DNSServiceRef sdRef,
DNSServiceFlags flags,
uint32_t interfaceIndex,
DNSServiceErrorType errorCode,
const char * replyDomain,
void * context
);
static unsigned WINAPI
WatchRegistry
(
LPVOID inParam
);
HKEY m_statusKey;
HANDLE m_thread;
HANDLE m_threadExited;
DNSServiceRef m_browseDomainsRef;
CRITICAL_SECTION m_lock;
};
#endif