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.

20 lines
351 B

  1. // implements the exported CService
  2. #include "stdafx.h"
  3. #include "KeyObjs.h"
  4. IMPLEMENT_DYNCREATE(CService, CTreeItem);
  5. //---------------------------------------------------------
  6. void CService::CloseConnection()
  7. {
  8. CKey* pKey;
  9. // delete all the keys
  10. while( pKey = (CKey*)GetFirstChild() )
  11. {
  12. pKey->FRemoveFromTree();
  13. delete pKey;
  14. }
  15. }