diff options
| author | Richard M. Stallman | 1995-04-10 00:34:00 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-04-10 00:34:00 +0000 |
| commit | 30bc62fa77073f3e7270fa7384a31d815dbf7446 (patch) | |
| tree | 6c65e1d9d3726403c9464c3b0df1bcc65c1132c1 | |
| parent | 656cdd8daf249345a25abf0fac99e4a95808d810 (diff) | |
| download | emacs-30bc62fa77073f3e7270fa7384a31d815dbf7446.tar.gz emacs-30bc62fa77073f3e7270fa7384a31d815dbf7446.zip | |
Remove function prototypes.
| -rw-r--r-- | lwlib/lwlib-Xm.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/lwlib/lwlib-Xm.h b/lwlib/lwlib-Xm.h index 0be261c09c3..08c3d76f6ce 100644 --- a/lwlib/lwlib-Xm.h +++ b/lwlib/lwlib-Xm.h | |||
| @@ -6,35 +6,35 @@ | |||
| 6 | extern widget_creation_entry xm_creation_table []; | 6 | extern widget_creation_entry xm_creation_table []; |
| 7 | 7 | ||
| 8 | Widget | 8 | Widget |
| 9 | xm_create_dialog (widget_instance* instance); | 9 | xm_create_dialog (/* widget_instance* instance */); |
| 10 | 10 | ||
| 11 | Boolean | 11 | Boolean |
| 12 | lw_motif_widget_p (Widget widget); | 12 | lw_motif_widget_p (/* Widget widget */); |
| 13 | 13 | ||
| 14 | void | 14 | void |
| 15 | xm_update_one_widget (widget_instance* instance, Widget widget, | 15 | xm_update_one_widget (/* widget_instance* instance, Widget widget, |
| 16 | widget_value* val, Boolean deep_p); | 16 | widget_value* val, Boolean deep_p */); |
| 17 | 17 | ||
| 18 | void | 18 | void |
| 19 | xm_update_one_value (widget_instance* instance, Widget widget, | 19 | xm_update_one_value (/* widget_instance* instance, Widget widget, |
| 20 | widget_value* val); | 20 | widget_value* val */); |
| 21 | 21 | ||
| 22 | void | 22 | void |
| 23 | xm_destroy_instance (widget_instance* instance); | 23 | xm_destroy_instance (/* widget_instance* instance */); |
| 24 | 24 | ||
| 25 | void | 25 | void |
| 26 | xm_set_keyboard_focus (Widget parent, Widget w); | 26 | xm_set_keyboard_focus (/* Widget parent, Widget w */); |
| 27 | 27 | ||
| 28 | void | 28 | void |
| 29 | xm_popup_menu (Widget widget); | 29 | xm_popup_menu (/* Widget widget */); |
| 30 | 30 | ||
| 31 | void | 31 | void |
| 32 | xm_pop_instance (widget_instance* instance, Boolean up); | 32 | xm_pop_instance (/* widget_instance* instance, Boolean up */); |
| 33 | 33 | ||
| 34 | void | 34 | void |
| 35 | xm_set_main_areas (Widget parent, Widget menubar, Widget work_area); | 35 | xm_set_main_areas (/* Widget parent, Widget menubar, Widget work_area */); |
| 36 | 36 | ||
| 37 | void | 37 | void |
| 38 | xm_manage_resizing (Widget w, Boolean flag); | 38 | xm_manage_resizing (/* Widget w, Boolean flag */); |
| 39 | 39 | ||
| 40 | #endif /* LWLIB_XM_H */ | 40 | #endif /* LWLIB_XM_H */ |