git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@16 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-09-28 09:08:53 +00:00
parent 09ae765d0a
commit 5170d6c0db
6 changed files with 31 additions and 0 deletions

14
example.c Normal file
View File

@@ -0,0 +1,14 @@
/* $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);
}