mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 01:08:39 +09:00
18 lines
355 B
C
18 lines
355 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);
|
||
|
|
}
|