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.
 
 
 
 
 
 

26 lines
558 B

// COnlineAuthority
// helper class for interfacing with the online authority interfaces
// note that this is not actually an interface, just a tool to use them
class COnlineAuthority
{
public:
COnlineAuthority();
~COnlineAuthority();
// initialize the class with an interface string
BOOL FInitSZ( CString szGUID );
// stored property strings
BOOL FSetPropertyString( BSTR bstr );
BOOL FGetPropertyString( BSTR* pBstr );
// the interfaces
ICertGetConfig *pIConfig;
ICertRequest *pIRequest;
};