Mercurial > hg > xemacs-beta
annotate lwlib/lwlib-Xlw.h @ 4413:dc84ec90b463
Fix build problems on Windows.
Also: regenerate dependencies, update ignored files
2008-01-24 Mike Sperber <mike@xemacs.org>
* config.inc.samp: Fix URL for optional libraries.
* xemacs.mak (PATH_PREFIX): Set PATH_PREFIX to the value of INSTALL_DIR.
* xemacs.mak (PATH_DEFINES): Fix setting of PATH_DEFINES.
* xemacs.mak (DEBUG_FLAG_COMPILE_DEBUG): Comment out -RTC1: it
even crashes with VC 8.
* xemacs.mak: Comment out echo line that leads to
command-line-too-long error on some Windowses.
2008-01-24 Mike Sperber <mike@xemacs.org>
* make-src-depend (PrintDeps): Fix Perl code that no longer works
with Perl 5.10.
author | Mike Sperber <sperber@deinprogramm.de> |
---|---|
date | Mon, 28 Jan 2008 08:13:37 +0100 |
parents | 98528da0b7fc |
children | ade4c7e2c6cb |
rev | line source |
---|---|
0 | 1 #ifndef LWLIB_XLW_H |
2 #define LWLIB_XLW_H | |
3 | |
4 #include "lwlib-internal.h" | |
5 | |
450 | 6 extern const widget_creation_entry xlw_creation_table []; |
0 | 7 extern widget_creation_function xlw_create_dialog; |
8 | |
9 Boolean | |
10 lw_lucid_widget_p (Widget widget); | |
11 | |
12 void | |
13 xlw_update_one_widget (widget_instance* instance, Widget widget, | |
14 widget_value* val, Boolean deep_p); | |
15 | |
16 void | |
17 xlw_update_one_value (widget_instance* instance, Widget widget, | |
18 widget_value* val); | |
19 | |
20 void | |
21 xlw_destroy_instance (widget_instance* instance); | |
22 | |
23 void | |
24 xlw_pop_instance (widget_instance* instance, Boolean up); | |
25 | |
26 void | |
27 xlw_popup_menu (Widget widget, XEvent *event); | |
28 | |
29 #endif /* LWLIB_XLW_H */ |