From 461c106c08372ea93cb8a0cc94d6edc338b9bf2e Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Wed, 1 Oct 2025 00:51:28 +0000 Subject: [PATCH] update document git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@86 b9cfdab3-6d41-4d17-bbe4-086880011989 --- doc/index.html | 101 +++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 98 insertions(+), 3 deletions(-) diff --git a/doc/index.html b/doc/index.html index 5196869..45cb019 100644 --- a/doc/index.html +++ b/doc/index.html @@ -47,12 +47,18 @@
MwSetText
+
+ MwSetVoid +
MwGetInteger
MwGetText
+
+ MwGetVoid +
MwSetDefault
@@ -104,6 +110,9 @@
MwDrawText
+
+ MwLoadImage +
Mw/Error.h
@@ -539,6 +548,35 @@
+
MWDECL void MwSetVoid (
+	MwWidget handle,
+	const char* key,
+	void* value
+);
+
+
+ Sets a void pointer property. +
+
+ Parameter handle +
+
+ Widget. +
+
+ Parameter key +
+
+ Key. +
+
+ Parameter value +
+
+ Value. +
+
+
MWDECL int MwGetInteger (
 	MwWidget handle,
 	const char* key
@@ -595,6 +633,34 @@
 
 
 
+
MWDECL void* MwGetVoid (
+	MwWidget handle,
+	const char* key
+);
+
+
+ Gets the void pointer property. +
+
+ Parameter handle +
+
+ Widget. +
+
+ Parameter key +
+
+ Key. +
+
+ Returns +
+
+ Value. +
+
+
MWDECL void MwSetDefault (
 	MwWidget handle
 );
@@ -775,8 +841,9 @@
-
MWDECL jmp_buf MwGetBeforeStep (
-	MwWidget handle
+
MWDECL void MwGetBeforeStep (
+	MwWidget handle,
+	jmp_buf* jmpbuf
 );
@@ -789,7 +856,7 @@ Widget.
- Returns + Parameter jmpbuf
jmp_buf. @@ -1008,6 +1075,34 @@

+
MWDECL MwLLPixmap MwLoadImage (
+	MwWidget handle,
+	const char* path
+);
+
+
+ Creates a pixmap from image. +
+
+ Parameter handle +
+
+ Widget. +
+
+ Parameter path +
+
+ Path. +
+
+ Returns +
+
+ Pixmap. +
+
+

Mw/Error.h