Hi,
i have two pointer to structures named *currMB and *PrevMB and i want to assign PrevMB into currMB.
will the C++ code below work.

struct Macroblock *currMB;
struct Macroblock *PrevMB;
...