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