Quote:
|
What about “CArray<byte>”? Is it declaration of dynamic byte array?
|
That is neither part of the STL or boost, it is MFC-Bullshit.
First hit Google:
Quote:
|
And how can I rewrite “ %= “, “>>= “ ?
|
The first:
"var %= 4" means "var = var modulo 4" (I think "mod" is the expression in Delphi)
Second:
"var >>= 4" means "var = var >> 4", shifting 4 bits to the right, guess "shr" shifts to the right in Delphi.