- modified DeleteCallbackChain interface

- fixed killNode message to be sent for every node killed
This commit is contained in:
zolliker
2008-06-13 11:18:14 +00:00
parent 0305826724
commit d75eee789b
3 changed files with 15 additions and 14 deletions

View File

@ -352,11 +352,11 @@ void *FindHdbCallbackData(pHdb node, void *userPtr);
*/
int InvokeCallbackChain(pHdb node, pHdbMessage message);
/**
* Deletes a callback chain. This is internal, normal users
* should nto use this function. Or you create a mess!
* @param root The callback chain to remove
* Deletes the callback chain of a node. This is internal, normal users
* should not use this function. Or you create a mess!
* @param node The node
*/
void DeleteCallbackChain(pHdbCallback root);
void DeleteCallbackChain(pHdb node);
/**
* apply message to the node and all its children
* @param node Th node where to start recursing