Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Moin.
Ich möchte eine CRect Array bei der Deklaration vorbelegen.
Ich weiß man eine CRect Variable so vorbelegt: CRect Rect(0, 0, 1, 1);
Kann ich auch solch ein Array vorbelegen: CRect Rect[2]; ?
CRect r[2] = { CRect(0, 0, 1, 1), CRect(0, 0, 1, 1) };