I came across this struct declaration and I do not now what is the last pointer doing here?
typedef const struct
{
//Ommiting the members for stackoverflow!!!
} PWMnCurrFdbkParams_t, *pPWMnCurrFdbkParams_t;
So the question is
- what is the effect of
,
here? - what is type of
*pPWMnCurrFdbkParams_t
- what usecase there is to it?