windows-nt/Source/XPSP1/NT/inetsrv/iis/ui/itools/keyring/onlnauth.h
2020-09-26 16:20:57 +08:00

27 lines
558 B
C++

// 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;
};