there is something i want to ask about this
LPDIRECT3D9 pdirectX9;
I understand this is a pointer but why do we not use the * like this
LPDIRECT3D9 *pdirectX9;
when i look over my code it confuses me with a struct
EDIT: doing some reading into this, is it because a typedef structure? like
typedef DIRECT3DVERTEXBUFFER9* LPDIRECT3D9; ?
just renaming this reference? why not just call it direct like
DIRECT3DVERTEXBUFFER9 *pdirectX9;
Thanks