Esempio n. 1
0
/** 
 * \fn     txnQ_ConnectCB
 * \brief  Pending Connection completion CB
 * 
 *  txnQ_ConnectBus CB
 * 
 * \note   
 * \param  hTxnQ - The module's object
 * \param  pTxn  - The completed transaction object 
 * \return void
 * \sa     
 */ 
static void txnQ_ConnectCB (TI_HANDLE hTxnQ, void *hTxn)
{
    TTxnQObj   *pTxnQ   = (TTxnQObj*)hTxnQ;

    /* Call the Client Connect CB */
    pTxnQ->fConnectCb (pTxnQ->hConnectCb, NULL);
}
/** 
 * \fn     txnQ_ConnectCB
 * \brief  Pending Connection completion CB
 * 
 *  txnQ_ConnectBus CB
 * 
 * \note   
 * \param  hTxnQ - The module's object
 * \param  pTxn  - The completed transaction object 
 * \return void
 * \sa     
 */ 
static void txnQ_ConnectCB (handle_t hTxnQ, void *hTxn)
{
    TTxnQObj   *pTxnQ   = (TTxnQObj*)hTxnQ;

	MCPF_UNUSED_PARAMETER(hTxn);

	/* Call the Client Connect CB */
    pTxnQ->fConnectCb (pTxnQ->hConnectCb, NULL);
}