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 @@
MWDECL void MwSetVoid (
+ MwWidget handle,
+ const char* key,
+ void* value
+);
+handle
+key
+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
-