Files
milsko/example.c
NishiOwO 5170d6c0db example
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@16 b9cfdab3-6d41-4d17-bbe4-086880011989
2025-09-28 09:08:53 +00:00

15 lines
241 B
C

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