aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-01-17 09:10:21 +0000
committerGerd Moellmann2000-01-17 09:10:21 +0000
commit98f7f0d7b7a87a0f9c0da211cc45b4080e3af94b (patch)
tree90bfec3c2bcf968a260bd383859cf6248fd57537
parent02512b201fd61213e5d02d4118689a24c1dad636 (diff)
downloademacs-98f7f0d7b7a87a0f9c0da211cc45b4080e3af94b.tar.gz
emacs-98f7f0d7b7a87a0f9c0da211cc45b4080e3af94b.zip
Add prototype for lw_get_widget_instance.
-rw-r--r--lwlib/lwlib-int.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lwlib/lwlib-int.h b/lwlib/lwlib-int.h
index 3649a241738..115cf790345 100644
--- a/lwlib/lwlib-int.h
+++ b/lwlib/lwlib-int.h
@@ -28,6 +28,7 @@ typedef struct _widget_info
28 lw_callback pre_activate_cb; 28 lw_callback pre_activate_cb;
29 lw_callback selection_cb; 29 lw_callback selection_cb;
30 lw_callback post_activate_cb; 30 lw_callback post_activate_cb;
31 lw_callback highlight_cb;
31 struct _widget_instance* instances; 32 struct _widget_instance* instances;
32 struct _widget_info* next; 33 struct _widget_info* next;
33} widget_info; 34} widget_info;
@@ -51,5 +52,6 @@ widget_value*
51lw_get_widget_value_for_widget (); 52lw_get_widget_value_for_widget ();
52 53
53widget_info *lw_get_widget_info (); 54widget_info *lw_get_widget_info ();
55widget_instance * lw_get_widget_instance ();
54 56
55#endif /* LWLIB_INTERNAL_H */ 57#endif /* LWLIB_INTERNAL_H */