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

21 lines
351 B
C++

// implements the exported CService
#include "stdafx.h"
#include "KeyObjs.h"
IMPLEMENT_DYNCREATE(CService, CTreeItem);
//---------------------------------------------------------
void CService::CloseConnection()
{
CKey* pKey;
// delete all the keys
while( pKey = (CKey*)GetFirstChild() )
{
pKey->FRemoveFromTree();
delete pKey;
}
}