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.
41 lines
958 B
41 lines
958 B
/**********************************************************************/
|
|
/** Microsoft Passport **/
|
|
/** Copyright(c) Microsoft Corporation, 1999 - 2001 **/
|
|
/**********************************************************************/
|
|
|
|
/*
|
|
ppnexusclient.h
|
|
implement the method for collection nexus settings, and fetch
|
|
nexus database from internet
|
|
|
|
|
|
FILE HISTORY:
|
|
|
|
*/
|
|
|
|
#ifndef __PPNEXUSCLIENT_H
|
|
#define __PPNEXUSCLIENT_H
|
|
|
|
#include <msxml.h>
|
|
#include "tstring"
|
|
|
|
#include "nexus.h"
|
|
|
|
class PpNexusClient : public IConfigurationUpdate
|
|
{
|
|
public:
|
|
PpNexusClient();
|
|
|
|
HRESULT FetchCCD(tstring& strURL, IXMLDocument** ppiXMLDocument);
|
|
|
|
void LocalConfigurationUpdated(void);
|
|
|
|
private:
|
|
|
|
void ReportBadDocument(tstring& strURL, IStream* piStream);
|
|
|
|
tstring m_strAuthHeader;
|
|
tstring m_strParam;
|
|
};
|
|
|
|
#endif // __PPNEXUSCLIENT_H
|