mirror of
https://gitea.nishi.boats/pyrite-dev/milsko
synced 2025-12-31 06:30:52 +00:00
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@546 b9cfdab3-6d41-4d17-bbe4-086880011989
17 lines
275 B
C
17 lines
275 B
C
/* $Id$ */
|
|
|
|
#include <Mw/Milsko.h>
|
|
|
|
int main() {
|
|
MwWidget w = MwVaCreateWidget(MwWindowClass, "main", NULL, MwDEFAULT,
|
|
MwDEFAULT, 640, 480, MwNtitle, "test", NULL);
|
|
|
|
MwWidget cpicker = MwColorPicker(w, "cpicker");
|
|
|
|
printf("!\n");
|
|
|
|
(void)cpicker;
|
|
|
|
MwLoop(w);
|
|
}
|