1.2.4.15 DLL_DATA_IND_CALLBACK Typedef
C
typedef void ( *DLL_DATA_IND_CALLBACK )( DLL_DATA_IND_PARAMS *indParams );
Summary
Pointer to a Meters And More DLL module DL_Data.indication Function Pointer.
Description
This data type defines the required function signature for the Meters And More DLL module DL_Data.indication callback function. A client must register a pointer using the callback register function whose function signature (parameter and return value types) match the types specified by this function pointer in order to receive related event callbacks from the module.
Parameters
| Param | Description |
|---|---|
|
indParams |
Pointer to the object containing any data necessary to process the DL_Data.indication primitive. See DLL_DATA_IND_PARAMS Struct |
Returns
None.
Example
void APP_MyDataIndEventHandler( DLL_DATA_IND_PARAMS *indParams )
{
if(indParams->lsduLen > 0)
{
/* Process Data */
}
}
Remarks
None.
