mirror of
https://gitea.nishi.boats/pyrite-dev/milsko
synced 2026-01-01 15:10:50 +00:00
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@680 b9cfdab3-6d41-4d17-bbe4-086880011989
19 lines
365 B
C
19 lines
365 B
C
#include <Mw/Milsko.h>
|
|
|
|
int main() {
|
|
MwWidget w, p;
|
|
|
|
MwLibraryInit();
|
|
|
|
w = MwVaCreateWidget(MwWindowClass, "main", NULL, MwDEFAULT, MwDEFAULT, 5 + 640 + 5, 5 + 32 + 5,
|
|
MwNtitle, "progress bar",
|
|
NULL);
|
|
p = MwVaCreateWidget(MwProgressBarClass, "progress", w, 5, 5, 640, 32,
|
|
MwNvalue, 25,
|
|
NULL);
|
|
|
|
(void)p;
|
|
|
|
MwLoop(w);
|
|
}
|