mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
20 lines
314 B
C++
20 lines
314 B
C++
struct X {
|
|
int x, y;
|
|
}
|
|
point[] = { {1, 2}, {3, 4} };
|
|
|
|
String test[] = { "ahoj", "kamarade" };
|
|
|
|
struct String {
|
|
void Test();
|
|
};
|
|
|
|
StatusBar::StatusBar()
|
|
{
|
|
String x;
|
|
Height(5 + max(16, Draw::GetStdFontCy()));
|
|
frame.style = frame.style = &StyleDefault();
|
|
SetFrame(frame);
|
|
AddFrame(grip);
|
|
}
|
|
|