milsko/example.c

14 lines
254 B
C
Raw Normal View History

/* $Id$ */
#include <Milsko/Milsko.h>
int main(){
MilskoWidget window = MilskoCreateWidget(MilskoWindowClass, "main", NULL, 0, 0, 640, 480);
MilskoApply(window,
MilskoNwidth, 480 * 2,
MilskoNtitle, "hello world",
NULL);
MilskoLoop(window);
}