comparison src/symsinit.h @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children 131b0175ea99
comparison
equal deleted inserted replaced
-1:000000000000 0:376386a54a3c
1 /* Various initialization function prototypes.
2 Copyright (C) 1995 Board of Trustees, University of Illinois.
3
4 This file is part of XEmacs.
5
6 XEmacs is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option) any
9 later version.
10
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with XEmacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21 /* Synched up with: Not in FSF. */
22
23 #ifndef _XEMACS_SYMSINIT_H_
24 #define _XEMACS_SYMSINIT_H_
25
26 /* Earliest environment initializations (dump-time and run-time). */
27
28 void init_data_very_early (void);
29 void init_floatfns_very_early (void);
30 void init_free_hook (void);
31 void init_intl_very_early (void);
32 void init_process_times_very_early (void);
33 void init_ralloc (void);
34 void init_signals_very_early (void);
35
36 /* Early Lisp-engine initialization (dump-time only). */
37
38 void init_alloc_once_early (void);
39 void init_symbols_once_early (void);
40 void init_errors_once_early (void);
41 void init_opaque_once_early (void);
42
43 /* Declare the built-in symbols and primitives (dump-time only). */
44
45 void syms_of_abbrev (void);
46 void syms_of_alloc (void);
47 void syms_of_buffer (void);
48 void syms_of_bytecode (void);
49 void syms_of_callint (void);
50 void syms_of_callproc (void);
51 void syms_of_casefiddle (void);
52 void syms_of_casetab (void);
53 void syms_of_cmdloop (void);
54 void syms_of_cmds (void);
55 void syms_of_console_tty (void);
56 void syms_of_console (void);
57 void syms_of_data (void);
58 void syms_of_dbm (void);
59 void syms_of_debug (void);
60 void syms_of_device_tty (void);
61 void syms_of_device_x (void);
62 void syms_of_device (void);
63 void syms_of_dialog_x (void);
64 void syms_of_dialog (void);
65 void syms_of_dired (void);
66 void syms_of_doc (void);
67 void syms_of_editfns (void);
68 void syms_of_elhash (void);
69 void syms_of_emacs (void);
70 void syms_of_energize (void);
71 void syms_of_epoch (void);
72 void syms_of_eval (void);
73 void syms_of_event_stream (void);
74 void syms_of_event_Xt (void);
75 void syms_of_events (void);
76 void syms_of_extents (void);
77 void syms_of_faces (void);
78 void syms_of_fileio (void);
79 void syms_of_filelock (void);
80 void syms_of_floatfns (void);
81 void syms_of_fns (void);
82 void syms_of_font_lock (void);
83 void syms_of_frame_x (void);
84 void syms_of_frame (void);
85 void syms_of_free_hook (void);
86 void syms_of_general (void);
87 void syms_of_glyphs_x (void);
88 void syms_of_glyphs (void);
89 void syms_of_gui_x (void);
90 void syms_of_gui (void);
91 void syms_of_indent (void);
92 void syms_of_intl (void);
93 void syms_of_keymap (void);
94 void syms_of_lread (void);
95 void syms_of_macros (void);
96 void syms_of_marker (void);
97 void syms_of_md5 (void);
98 void syms_of_menubar_x (void);
99 void syms_of_menubar (void);
100 void syms_of_minibuf (void);
101 void syms_of_mocklisp (void);
102 void syms_of_objects_tty (void);
103 void syms_of_objects_x (void);
104 void syms_of_objects (void);
105 void syms_of_print (void);
106 void syms_of_process (void);
107 void syms_of_profile (void);
108 void syms_of_ralloc (void);
109 void syms_of_rangetab (void);
110 void syms_of_redisplay (void);
111 void syms_of_scrollbar (void);
112 void syms_of_search (void);
113 void syms_of_signal (void);
114 void syms_of_sound (void);
115 void syms_of_specifier (void);
116 void syms_of_sunpro (void);
117 void syms_of_symbols (void);
118 void syms_of_syntax (void);
119 void syms_of_toolbar (void);
120 void syms_of_tooltalk (void);
121 void syms_of_undo (void);
122 void syms_of_vmsfns (void);
123 void syms_of_vmsproc (void);
124 void syms_of_window (void);
125 void syms_of_xselect (void);
126
127 /* Initialize the console types (dump-time only). */
128
129 void console_type_create (void);
130 void console_type_create_stream (void);
131 void console_type_create_tty (void);
132 void console_type_create_device_tty (void);
133 void console_type_create_frame_tty (void);
134 void console_type_create_objects_tty (void);
135 void console_type_create_redisplay_tty (void);
136 void console_type_create_x (void);
137 void console_type_create_device_x (void);
138 void console_type_create_frame_x (void);
139 void console_type_create_glyphs_x (void);
140 void console_type_create_menubar_x (void);
141 void console_type_create_objects_x (void);
142 void console_type_create_redisplay_x (void);
143 void console_type_create_scrollbar_x (void);
144 void console_type_create_toolbar_x (void);
145
146 /* Initialize the specifier types (dump-time only). */
147
148 void specifier_type_create (void);
149 void specifier_type_create_image (void);
150 void specifier_type_create_objects (void);
151 void specifier_type_create_toolbar (void);
152
153 /* Initialize the structure types (dump-time only). */
154
155 void structure_type_create (void);
156 void structure_type_create_faces (void);
157 void structure_type_create_rangetab (void);
158
159 /* Initialize the image instantiator types (dump-time only). */
160
161 void image_instantiator_format_create (void);
162 void image_instantiator_format_create_glyphs_x (void);
163
164 /* Initialize the lstream types (dump-time only). */
165
166 void lstream_type_create (void);
167 void lstream_type_create_print (void);
168
169 /* Allow for Fprovide() (dump-time only). */
170
171 void init_provide_once (void);
172
173 /* Initialize most variables (dump-time only). */
174
175 void vars_of_abbrev (void);
176 void vars_of_alloc (void);
177 void vars_of_buffer (void);
178 void vars_of_bytecode (void);
179 void vars_of_callint (void);
180 void vars_of_callproc (void);
181 void vars_of_cmdloop (void);
182 void vars_of_cmds (void);
183 void vars_of_console (void);
184 void vars_of_console_stream (void);
185 void vars_of_console_tty (void);
186 void vars_of_data (void);
187 void vars_of_dbm (void);
188 void vars_of_debug (void);
189 void vars_of_device_x (void);
190 void vars_of_device (void);
191 void vars_of_dialog_x (void);
192 void vars_of_dialog (void);
193 void vars_of_dired (void);
194 void vars_of_doc (void);
195 void vars_of_editfns (void);
196 void vars_of_elhash (void);
197 void vars_of_emacs (void);
198 void vars_of_energize (void);
199 void vars_of_epoch (void);
200 void vars_of_eval (void);
201 void vars_of_event_stream (void);
202 void vars_of_event_tty (void);
203 void vars_of_event_Xt (void);
204 void vars_of_events (void);
205 void vars_of_extents (void);
206 void vars_of_faces (void);
207 void vars_of_fileio (void);
208 void vars_of_filelock (void);
209 void vars_of_floatfns (void);
210 void vars_of_font_lock (void);
211 void vars_of_frame_tty (void);
212 void vars_of_frame_x (void);
213 void vars_of_frame (void);
214 void vars_of_glyphs_x (void);
215 void vars_of_glyphs (void);
216 void vars_of_gui_x (void);
217 void vars_of_gui (void);
218 void vars_of_indent (void);
219 void vars_of_insdel (void);
220 void vars_of_intl (void);
221 void vars_of_keymap (void);
222 void vars_of_lread (void);
223 void vars_of_lstream (void);
224 void vars_of_macros (void);
225 void vars_of_md5 (void);
226 void vars_of_menubar_x (void);
227 void vars_of_menubar (void);
228 void vars_of_minibuf (void);
229 void vars_of_mocklisp (void);
230 void vars_of_objects (void);
231 void vars_of_objects_tty (void);
232 void vars_of_objects_x (void);
233 void vars_of_print (void);
234 void vars_of_process (void);
235 void vars_of_profile (void);
236 void vars_of_ralloc (void);
237 void vars_of_redisplay (void);
238 void vars_of_scrollbar_x (void);
239 void vars_of_scrollbar (void);
240 void vars_of_search (void);
241 void vars_of_sound (void);
242 void vars_of_specifier (void);
243 void vars_of_sunpro (void);
244 void vars_of_symbols (void);
245 void vars_of_syntax (void);
246 void vars_of_toolbar (void);
247 void vars_of_tooltalk (void);
248 void vars_of_undo (void);
249 void vars_of_window (void);
250 void vars_of_xselect (void);
251
252 /* Initialize specifier variables (dump-time only). */
253
254 void specifier_vars_of_glyphs (void);
255 void specifier_vars_of_menubar (void);
256 void specifier_vars_of_redisplay (void);
257 void specifier_vars_of_scrollbar (void);
258 void specifier_vars_of_toolbar (void);
259 void specifier_vars_of_window (void);
260
261 /* Initialize variables with complex dependencies
262 on other variables (dump-time only). */
263
264 void complex_vars_of_regex (void);
265 void complex_vars_of_search (void);
266 void complex_vars_of_event_stream (void);
267 void complex_vars_of_extents (void);
268 void complex_vars_of_faces (void);
269 void complex_vars_of_glyphs (void);
270 void complex_vars_of_glyphs_x (void);
271 void complex_vars_of_alloc (void);
272 void complex_vars_of_menubar (void);
273 void complex_vars_of_scrollbar (void);
274 void complex_vars_of_frame (void);
275 void complex_vars_of_energize (void);
276 void complex_vars_of_casetab (void);
277 void complex_vars_of_syntax (void);
278 void complex_vars_of_buffer (void);
279 void complex_vars_of_console (void);
280 void complex_vars_of_minibuf (void);
281 void complex_vars_of_callproc (void);
282 void complex_vars_of_filelock (void);
283 void complex_vars_of_keymap (void);
284
285 /* Reset the Lisp engine (run-time only). */
286
287 void reinit_alloc (void);
288 void reinit_eval (void);
289
290 /* Late initialization -- stuff pertaining only to interactive usage,
291 I/O, or Lisp reading. (Dump-time and run-time.) */
292
293 void init_buffer (void);
294 void init_callproc (void);
295 void init_console_stream (void);
296 void init_device_tty (void);
297 void init_dosfns (void);
298 void init_editfns (void);
299 void init_environment (void);
300 void init_event_Xt_late (void);
301 void init_event_stream (void);
302 void init_event_tty_late (void);
303 void init_event_unixoid (void);
304 void init_gif_err (void);
305 void init_lread (void);
306 void init_macros (void);
307 /* Not named init_process in order to avoid conflict with NS 3.3 */
308 void init_xemacs_process (void);
309 void init_redisplay (void);
310 void init_sunpro (void);
311 void init_vms_input (void);
312 void init_vmsfns (void);
313 void init_vmsproc (void);
314
315 #endif /* _XEMACS_SYMSINIT_H_ */