Double bracket pointer syntax

Viewed 85

I have a C++ program that initializes variables in a struct.

typedef struct
{
        LONGLONG    llSeekPos;
        BOOL        bSeekActive;
    
} WavPLAYBACK; 

I am confused of the double bracket syntax (WavPLAYBACK*) what does that do?

WavPLAYBACK     *pPlayBack;
pPlayBack = (WavPLAYBACK*)pParam;
0 Answers
Related