сохранение 2
This commit is contained in:
parent
b4f9e28164
commit
86eac6490b
@ -161,6 +161,14 @@ void logo5(HDC hdc) {
|
|||||||
x += 130;
|
x += 130;
|
||||||
} while (y < 400, x < 800);
|
} while (y < 400, x < 800);
|
||||||
}
|
}
|
||||||
|
void logo6(HDC hdc) {
|
||||||
|
int y = 0, x = 0;
|
||||||
|
do {
|
||||||
|
logo(hdc, x, y);
|
||||||
|
y += 60;
|
||||||
|
x += 130;
|
||||||
|
} while (y < 400, x < 800);
|
||||||
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// ЦЕЛЬ: Обрабатывает сообщения в главном окне.
|
// ЦЕЛЬ: Обрабатывает сообщения в главном окне.
|
||||||
|
Loading…
Reference in New Issue
Block a user