MCPcopy Create free account
hub / github.com/NtQuery/Scylla / _SelectTree

Function _SelectTree

Scylla/multitree.h:252–262  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

250 }
251
252 void _SelectTree(HTREEITEM hItem, HTREEITEM hGoal, int action)
253 {
254 if( !_SelectTreeSub(hItem, hGoal, action) )
255 return;
256 hItem = GetParentItem(hItem);
257 while( (hItem = GetNextSiblingItem(hItem)) != NULL )
258 {
259 if( !_SelectTreeSub(hItem, hGoal, action) )
260 return;
261 }
262 }
263
264 bool _SelectTreeSub(HTREEITEM hItem, HTREEITEM hGoal, int action)
265 {

Callers 2

OnKeyUpFunction · 0.85
OnLButtonDownFunction · 0.85

Calls 1

_SelectTreeSubFunction · 0.85

Tested by

no test coverage detected