#include <nitro/wm.h>
WMErrCode WM_EndParent( WMCallbackFunc callback );
callback |
Designates the callback function to call when the asynchronous process completes. This callback is called from within the interrupt handler. |
Returns the results of the WMErrCode
enumerated type process.
Ends communication with all connected children After this function disconnects from all connected children, it returns to the IDLE
state. If the return value for this function is WM_ERRCODE_OPERATING
, a callback is generated after the communication termination process is complete. Unlike WM_Reset
which deletes all connect information, WM_EndParent
does not delete the information that existed when the systems were connected.
WM_SetParentParameter
, WM_StartParent
06/08/2005 Added statement about callbacks being called from the interrupt handler.
10/22/2004 Changed return value type.
07/28/2004 Added to Description
07/23/2004 Initial version