milsko/examples/basic/color_picker.c

14 lines
258 B
C
Raw Normal View History

/* $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");
(void)cpicker;
MwLoop(w);
}