Mercurial > hg > xemacs-beta
annotate src/symsinit.h @ 5650:7fa8667cdaa7
Imitate GNU Emacs API for `batch-byte-recompile-directory'.
2012-04-23 Michael Sperber <mike@xemacs.org>
* bytecomp.el (batch-byte-recompile-directory): Accept an optional
argument that's passed on to `byte-recompile-directory' as the
prefix argument, thus imitating GNU Emacs's API.
| author | Mike Sperber <sperber@deinprogramm.de> |
|---|---|
| date | Mon, 23 Apr 2012 10:06:39 +0200 |
| parents | 1a507c4c6c42 |
| children |
| rev | line source |
|---|---|
| 428 | 1 /* Various initialization function prototypes. |
| 2 Copyright (C) 1995 Board of Trustees, University of Illinois. | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
3 Copyright (C) 2001, 2002, 2010 Ben Wing. |
| 428 | 4 |
| 5 This file is part of XEmacs. | |
| 6 | |
|
5405
2aa9cd456ae7
Move src/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
5256
diff
changeset
|
7 XEmacs is free software: you can redistribute it and/or modify it |
| 428 | 8 under the terms of the GNU General Public License as published by the |
|
5405
2aa9cd456ae7
Move src/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
5256
diff
changeset
|
9 Free Software Foundation, either version 3 of the License, or (at your |
|
2aa9cd456ae7
Move src/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
5256
diff
changeset
|
10 option) any later version. |
| 428 | 11 |
| 12 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
| 13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
| 14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
| 15 for more details. | |
| 16 | |
| 17 You should have received a copy of the GNU General Public License | |
|
5405
2aa9cd456ae7
Move src/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
5256
diff
changeset
|
18 along with XEmacs. If not, see <http://www.gnu.org/licenses/>. */ |
| 428 | 19 |
| 20 /* Synched up with: Not in FSF. */ | |
| 21 | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
22 /* There is no need to put ifdefs around the prototypes here. Extra |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
23 prototypes won't hurt anything. */ |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
24 |
| 440 | 25 #ifndef INCLUDED_symsinit_h_ |
| 26 #define INCLUDED_symsinit_h_ | |
| 428 | 27 |
| 28 /* Earliest environment initializations (dump-time and run-time). */ | |
| 29 | |
| 2367 | 30 void init_win32_very_very_early (void); |
| 31 | |
| 428 | 32 void init_data_very_early (void); |
| 33 void init_floatfns_very_early (void); | |
| 34 void init_free_hook (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
35 void init_mswindows_dde_very_early (void); |
| 428 | 36 void init_process_times_very_early (void); |
| 37 void init_ralloc (void); | |
| 38 void init_signals_very_early (void); | |
| 39 | |
| 814 | 40 /* Early Lisp-engine initialization -- dump-time only for init, dump-time |
| 41 and post-pdump-load-time for reinit. We call the reinit() routine | |
| 42 ourselves at post-pdump-load-time, but the init_() routine calls the | |
| 43 reinit() routine itself. (This is because sometimes the timing of when | |
| 44 to call the routine is tricky -- the init routine might need to do some | |
| 45 stuff, call the reinit() routine, and do some more stuff.) */ | |
| 428 | 46 |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
47 void reinit_alloc_early (void); |
| 428 | 48 void init_alloc_once_early (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
49 void reinit_eistring_early (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
50 void init_eistring_once_early (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
51 void init_elhash_once_early (void); |
| 428 | 52 void init_errors_once_early (void); |
| 1204 | 53 void reinit_opaque_early (void); |
| 428 | 54 void init_opaque_once_early (void); |
|
5256
6c8f5574d4a1
Fix the C++, Visual Studio 2005 builds.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5231
diff
changeset
|
55 void reinit_process_early (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
56 void reinit_symbols_early (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
57 void init_symbols_once_early (void); |
| 814 | 58 |
| 59 /* Reset the Lisp engine. Called both at dump-time, run-time and | |
| 60 run-temacs-time; at dump-time, it's called early, before any of the | |
| 61 vars() or complex_vars() routines. Currently does almost nothing. */ | |
| 62 | |
| 63 void init_alloc_early (void); | |
| 64 | |
| 65 /* Called somewhat randomly -- at dump-time, in the middle of the vars() | |
| 66 calls, and at run-time, just before the late initializations. */ | |
| 67 | |
| 68 void init_eval_semi_early (void); | |
| 428 | 69 |
| 70 /* Declare the built-in symbols and primitives (dump-time only). */ | |
| 71 | |
| 72 void syms_of_abbrev (void); | |
| 73 void syms_of_alloc (void); | |
|
5168
cf900a2f1fa3
extract gap array from extents.c, use in range tables
Ben Wing <ben@xemacs.org>
parents:
5158
diff
changeset
|
74 void syms_of_array (void); |
| 428 | 75 void syms_of_balloon_x (void); |
| 76 void syms_of_buffer (void); | |
| 77 void syms_of_bytecode (void); | |
| 78 void syms_of_callint (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
79 EXTERN_C void syms_of_canna_api (void); |
| 428 | 80 void syms_of_casefiddle (void); |
| 81 void syms_of_casetab (void); | |
| 82 void syms_of_chartab (void); | |
| 83 void syms_of_cmdloop (void); | |
| 84 void syms_of_cmds (void); | |
| 771 | 85 void syms_of_console (void); |
| 428 | 86 void syms_of_console_mswindows (void); |
| 771 | 87 void syms_of_console_tty (void); |
| 428 | 88 void syms_of_data (void); |
| 89 void syms_of_database (void); | |
| 90 void syms_of_debug (void); | |
| 771 | 91 void syms_of_device (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
92 void syms_of_device_gtk (void); |
| 428 | 93 void syms_of_device_mswindows (void); |
| 771 | 94 void syms_of_device_tty (void); |
| 428 | 95 void syms_of_device_x (void); |
| 771 | 96 void syms_of_dialog (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
97 void syms_of_dialog_gtk (void); |
| 442 | 98 void syms_of_dialog_mswindows (void); |
| 428 | 99 void syms_of_dialog_x (void); |
| 100 void syms_of_dired (void); | |
| 101 void syms_of_dired_mswindows (void); | |
| 102 void syms_of_doc (void); | |
| 103 void syms_of_dragdrop (void); | |
| 104 void syms_of_editfns (void); | |
| 1706 | 105 EXTERN_C void syms_of_eldap (void); |
| 428 | 106 void syms_of_elhash (void); |
| 107 void syms_of_emacs (void); | |
| 108 void syms_of_eval (void); | |
| 771 | 109 void syms_of_event_Xt (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
110 void syms_of_event_gtk (void); |
| 428 | 111 void syms_of_event_mswindows (void); |
| 771 | 112 void syms_of_event_stream (void); |
| 428 | 113 void syms_of_events (void); |
| 114 void syms_of_extents (void); | |
| 115 void syms_of_faces (void); | |
| 771 | 116 void syms_of_file_coding (void); |
| 428 | 117 void syms_of_fileio (void); |
| 118 void syms_of_filelock (void); | |
| 119 void syms_of_floatfns (void); | |
| 120 void syms_of_fns (void); | |
| 121 void syms_of_font_lock (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
122 void syms_of_font_mgr (void); |
| 428 | 123 void syms_of_frame (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
124 void syms_of_frame_gtk (void); |
| 428 | 125 void syms_of_frame_mswindows (void); |
| 771 | 126 void syms_of_frame_tty (void); |
| 428 | 127 void syms_of_frame_x (void); |
| 128 void syms_of_free_hook (void); | |
| 129 void syms_of_general (void); | |
| 771 | 130 void syms_of_glyphs (void); |
| 428 | 131 void syms_of_glyphs_eimage (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
132 void syms_of_glyphs_gtk (void); |
| 771 | 133 void syms_of_glyphs_mswindows (void); |
| 563 | 134 void syms_of_glyphs_shared (void); |
| 428 | 135 void syms_of_glyphs_widget (void); |
| 771 | 136 void syms_of_glyphs_x (void); |
| 137 void syms_of_gpmevent (void); | |
| 138 void syms_of_gui (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
139 void syms_of_gui_gtk (void); |
| 440 | 140 void syms_of_gui_mswindows (void); |
| 428 | 141 void syms_of_gui_x (void); |
| 142 void syms_of_gutter (void); | |
| 143 void syms_of_indent (void); | |
| 144 void syms_of_input_method_xlib (void); | |
| 145 void syms_of_intl (void); | |
| 771 | 146 void syms_of_intl_win32 (void); |
| 147 void syms_of_intl_x (void); | |
| 428 | 148 void syms_of_keymap (void); |
| 149 void syms_of_lread (void); | |
|
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5127
diff
changeset
|
150 void syms_of_lstream (void); |
| 428 | 151 void syms_of_macros (void); |
| 152 void syms_of_marker (void); | |
| 2720 | 153 void syms_of_mc_alloc (void); |
| 428 | 154 void syms_of_md5 (void); |
| 155 void syms_of_menubar (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
156 void syms_of_menubar_gtk (void); |
| 428 | 157 void syms_of_menubar_mswindows (void); |
| 771 | 158 void syms_of_menubar_x (void); |
| 428 | 159 void syms_of_minibuf (void); |
| 160 void syms_of_module (void); | |
| 161 void syms_of_mule_ccl (void); | |
| 162 void syms_of_mule_charset (void); | |
| 771 | 163 void syms_of_mule_coding (void); |
| 428 | 164 void syms_of_mule_wnn (void); |
| 771 | 165 void syms_of_nt (void); |
| 1983 | 166 void syms_of_number (void); |
|
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
4921
diff
changeset
|
167 void syms_of_fontcolor (void); |
|
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
4921
diff
changeset
|
168 void syms_of_fontcolor_gtk (void); |
|
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
4921
diff
changeset
|
169 void syms_of_fontcolor_mswindows (void); |
|
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
4921
diff
changeset
|
170 void syms_of_fontcolor_tty (void); |
|
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
4921
diff
changeset
|
171 void syms_of_fontcolor_x (void); |
| 1706 | 172 EXTERN_C void syms_of_postgresql (void); |
| 428 | 173 void syms_of_print (void); |
| 174 void syms_of_process (void); | |
| 175 void syms_of_process_nt (void); | |
| 176 void syms_of_profile (void); | |
| 177 void syms_of_ralloc (void); | |
| 178 void syms_of_rangetab (void); | |
| 179 void syms_of_redisplay (void); | |
| 180 void syms_of_scrollbar (void); | |
| 181 void syms_of_scrollbar_mswindows(void); | |
| 182 void syms_of_search (void); | |
| 183 void syms_of_select (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
184 void syms_of_select_gtk (void); |
| 428 | 185 void syms_of_select_mswindows (void); |
| 771 | 186 void syms_of_select_x (void); |
|
5607
1a507c4c6c42
Refactor out sequence-oriented builtins from fns.c to the new sequence.c.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5560
diff
changeset
|
187 void syms_of_sequence (void); |
| 428 | 188 void syms_of_signal (void); |
| 189 void syms_of_sound (void); | |
| 190 void syms_of_specifier (void); | |
| 191 void syms_of_sunpro (void); | |
| 192 void syms_of_symbols (void); | |
| 193 void syms_of_syntax (void); | |
| 440 | 194 void syms_of_tests (void); |
| 771 | 195 void syms_of_text (void); |
| 428 | 196 void syms_of_toolbar (void); |
| 197 void syms_of_tooltalk (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
198 void syms_of_ui_byhand (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
199 void syms_of_ui_gtk (void); |
| 428 | 200 void syms_of_undo (void); |
| 771 | 201 void syms_of_unicode (void); |
| 428 | 202 void syms_of_widget (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
203 void syms_of_widget_accessors (void); |
| 771 | 204 void syms_of_win32 (void); |
| 428 | 205 void syms_of_window (void); |
| 206 | |
|
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5127
diff
changeset
|
207 /* Initialize dynamic properties of objects (i.e. those properties not |
|
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5127
diff
changeset
|
208 initialized statically through a DEFINE_*_LISP_OBJECT declaration). |
|
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5127
diff
changeset
|
209 Dump time and post-pdump-load-time. */ |
|
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5127
diff
changeset
|
210 |
|
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5127
diff
changeset
|
211 void buffer_objects_create (void); |
|
5560
58b38d5b32d0
Implement print-circle, allowing recursive and circular structures to be read.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5405
diff
changeset
|
212 void bytecode_objects_create (void); |
|
5170
5ddbab03b0e6
various fixes to memory-usage stats
Ben Wing <ben@xemacs.org>
parents:
5168
diff
changeset
|
213 void casetab_objects_create (void); |
|
5560
58b38d5b32d0
Implement print-circle, allowing recursive and circular structures to be read.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5405
diff
changeset
|
214 void chartab_objects_create (void); |
|
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5127
diff
changeset
|
215 void extent_objects_create (void); |
|
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5127
diff
changeset
|
216 void face_objects_create (void); |
|
5158
9e0b43d3095c
more cleanups to object-memory-usage stuff
Ben Wing <ben@xemacs.org>
parents:
5157
diff
changeset
|
217 void frame_objects_create (void); |
|
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5127
diff
changeset
|
218 void glyph_objects_create (void); |
|
5158
9e0b43d3095c
more cleanups to object-memory-usage stuff
Ben Wing <ben@xemacs.org>
parents:
5157
diff
changeset
|
219 void hash_table_objects_create (void); |
|
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5127
diff
changeset
|
220 void lstream_objects_create (void); |
|
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5127
diff
changeset
|
221 void mule_charset_objects_create (void); |
|
5560
58b38d5b32d0
Implement print-circle, allowing recursive and circular structures to be read.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5405
diff
changeset
|
222 void rangetab_objects_create (void); |
|
5170
5ddbab03b0e6
various fixes to memory-usage stats
Ben Wing <ben@xemacs.org>
parents:
5168
diff
changeset
|
223 void scrollbar_objects_create (void); |
|
5179
14fda1dbdb26
add memory usage info for specifiers
Ben Wing <ben@xemacs.org>
parents:
5170
diff
changeset
|
224 void specifier_objects_create (void); |
|
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5127
diff
changeset
|
225 void ui_gtk_objects_create (void); |
|
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5127
diff
changeset
|
226 void window_objects_create (void); |
|
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5127
diff
changeset
|
227 |
| 771 | 228 /* Initialize the console types (dump-time only for console_type_(), |
| 229 post-pdump-load-time only for reinit_). */ | |
| 428 | 230 |
| 231 void console_type_create (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
232 void console_type_create_device_gtk (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
233 void console_type_create_device_mswindows (void); |
| 428 | 234 void console_type_create_device_tty (void); |
| 235 void console_type_create_device_x (void); | |
| 236 void reinit_console_type_create_device_x (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
237 void console_type_create_dialog_gtk (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
238 void console_type_create_dialog_mswindows (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
239 void console_type_create_dialog_x (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
240 void console_type_create_frame_gtk (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
241 void console_type_create_frame_mswindows (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
242 void console_type_create_frame_tty (void); |
| 428 | 243 void console_type_create_frame_x (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
244 void console_type_create_glyphs_gtk (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
245 void console_type_create_glyphs_mswindows (void); |
| 428 | 246 void console_type_create_glyphs_x (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
247 void console_type_create_gtk (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
248 void reinit_console_type_create_gtk (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
249 void console_type_create_menubar_gtk (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
250 void console_type_create_menubar_mswindows (void); |
| 428 | 251 void console_type_create_menubar_x (void); |
| 252 void console_type_create_mswindows (void); | |
| 253 void reinit_console_type_create_mswindows (void); | |
|
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
4921
diff
changeset
|
254 void console_type_create_fontcolor_gtk (void); |
|
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
4921
diff
changeset
|
255 void console_type_create_fontcolor_mswindows (void); |
|
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
4921
diff
changeset
|
256 void console_type_create_fontcolor_tty (void); |
|
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
4921
diff
changeset
|
257 void console_type_create_fontcolor_x (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
258 void console_type_create_redisplay_gtk (void); |
| 428 | 259 void console_type_create_redisplay_mswindows (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
260 void console_type_create_redisplay_tty (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
261 void console_type_create_redisplay_x (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
262 void console_type_create_scrollbar_gtk (void); |
| 428 | 263 void console_type_create_scrollbar_mswindows (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
264 void console_type_create_scrollbar_x (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
265 void console_type_create_select_gtk (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
266 void console_type_create_select_mswindows (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
267 void console_type_create_select_x (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
268 void console_type_create_stream (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
269 void reinit_console_type_create_stream (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
270 void console_type_create_toolbar_gtk (void); |
| 428 | 271 void console_type_create_toolbar_mswindows (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
272 void console_type_create_toolbar_x (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
273 void console_type_create_tty (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
274 void reinit_console_type_create_tty (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
275 void console_type_create_x (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
276 void reinit_console_type_create_x (void); |
| 428 | 277 |
| 771 | 278 /* Initialize the specifier types (dump-time only for specifier_type_(), |
| 279 post-pdump-load-time only for reinit_). */ | |
| 428 | 280 |
| 281 void specifier_type_create (void); | |
| 282 void reinit_specifier_type_create (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
283 void specifier_type_create_gutter (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
284 void reinit_specifier_type_create_gutter (void); |
| 428 | 285 void specifier_type_create_image (void); |
| 286 void reinit_specifier_type_create_image (void); | |
|
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
4921
diff
changeset
|
287 void specifier_type_create_fontcolor (void); |
|
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
4921
diff
changeset
|
288 void reinit_specifier_type_create_fontcolor (void); |
| 428 | 289 void specifier_type_create_toolbar (void); |
| 290 void reinit_specifier_type_create_toolbar (void); | |
| 291 | |
| 771 | 292 /* Initialize the coding system types (dump-time only for |
| 293 coding_system_type_(), post-pdump-load-time only for reinit_). */ | |
| 294 | |
| 295 void coding_system_type_create (void); | |
| 296 void reinit_coding_system_type_create (void); | |
| 297 void coding_system_type_create_intl_win32 (void); | |
| 298 void reinit_coding_system_type_create_intl_win32 (void); | |
| 299 void coding_system_type_create_mule_coding (void); | |
| 300 void reinit_coding_system_type_create_mule_coding (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
301 void coding_system_type_create_unicode (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
302 void reinit_coding_system_type_create_unicode (void); |
| 771 | 303 |
| 428 | 304 /* Initialize the structure types (dump-time only). */ |
| 305 | |
| 306 void structure_type_create (void); | |
| 307 void structure_type_create_chartab (void); | |
| 308 void structure_type_create_faces (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
309 void structure_type_create_hash_table (void); |
| 428 | 310 void structure_type_create_rangetab (void); |
| 311 | |
| 312 /* Initialize the image instantiator types (dump-time only). */ | |
| 313 | |
| 314 void image_instantiator_format_create (void); | |
| 315 void image_instantiator_format_create_glyphs_eimage (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
316 void image_instantiator_format_create_glyphs_gtk (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
317 void image_instantiator_format_create_glyphs_mswindows (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
318 void image_instantiator_format_create_glyphs_tty (void); |
| 428 | 319 void image_instantiator_format_create_glyphs_widget (void); |
| 320 void image_instantiator_format_create_glyphs_x (void); | |
| 321 | |
| 322 /* Initialize the lstream types (dump-time only). */ | |
| 323 | |
| 324 void lstream_type_create (void); | |
| 325 void lstream_type_create_file_coding (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
326 void lstream_type_create_mswindows_selectable (void); |
| 428 | 327 void lstream_type_create_print (void); |
| 328 | |
| 329 /* Initialize process types */ | |
| 330 | |
| 331 void process_type_create_nt (void); | |
| 332 void process_type_create_unix (void); | |
| 333 | |
| 334 /* Allow for Fprovide() (dump-time only). */ | |
| 335 | |
| 336 void init_provide_once (void); | |
| 337 | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
338 /* Lisp interactive function to sort groups of initialization functions by |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
339 name, ignoring any reinit_ or init_ at the beginning. Put the cursor |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
340 after the last right paren, type C-x C-e, then select some text and |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
341 M-x sort-symsinit. |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
342 |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
343 (defun sort-symsinit (start end) |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
344 (interactive "r") |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
345 (sort-regexp-fields nil "^.*?void \\(?:re\\)?\\(init_\\)?\\([A-Za-z0-9_]+\\).*$" "\\2" |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
346 start end)) |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
347 |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
348 */ |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
349 |
| 771 | 350 /* Initialize most variables (dump-time for vars_, dump-time and |
| 2367 | 351 post-pdump-load-time for reinit_vars). */ |
| 428 | 352 |
| 353 void vars_of_abbrev (void); | |
| 354 void vars_of_alloc (void); | |
|
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5127
diff
changeset
|
355 void reinit_vars_of_alloc (void); |
| 428 | 356 void vars_of_balloon_x (void); |
| 357 void vars_of_buffer (void); | |
| 358 void reinit_vars_of_buffer (void); | |
| 359 void vars_of_bytecode (void); | |
|
4921
17362f371cc2
add more byte-code assertions and better failure output
Ben Wing <ben@xemacs.org>
parents:
4908
diff
changeset
|
360 void reinit_vars_of_bytecode (void); |
| 428 | 361 void vars_of_callint (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
362 EXTERN_C void vars_of_canna_api (void); |
|
5170
5ddbab03b0e6
various fixes to memory-usage stats
Ben Wing <ben@xemacs.org>
parents:
5168
diff
changeset
|
363 void vars_of_casetab (void); |
| 428 | 364 void vars_of_chartab (void); |
| 365 void vars_of_cmdloop (void); | |
| 366 void vars_of_cmds (void); | |
| 367 void vars_of_console (void); | |
| 368 void reinit_vars_of_console (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
369 void vars_of_console_gtk (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
370 void vars_of_console_mswindows (void); |
| 428 | 371 void vars_of_console_stream (void); |
| 372 void vars_of_console_tty (void); | |
| 3381 | 373 void vars_of_console_x (void); |
| 428 | 374 void vars_of_data (void); |
| 375 void vars_of_database (void); | |
| 376 void vars_of_debug (void); | |
| 377 void reinit_vars_of_debug (void); | |
| 378 void vars_of_device (void); | |
| 379 void reinit_vars_of_device (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
380 void vars_of_device_gtk (void); |
| 428 | 381 void vars_of_device_mswindows (void); |
| 382 void vars_of_device_x (void); | |
| 383 void reinit_vars_of_device_x (void); | |
| 384 void vars_of_dialog (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
385 void vars_of_dialog_gtk (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
386 void vars_of_dialog_mswindows (void); |
| 428 | 387 void vars_of_dialog_x (void); |
| 388 void vars_of_dired (void); | |
| 389 void vars_of_dired_mswindows (void); | |
| 390 void vars_of_doc (void); | |
| 391 void vars_of_dragdrop (void); | |
| 392 void vars_of_editfns (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
393 EXTERN_C void vars_of_eldap (void); |
|
5158
9e0b43d3095c
more cleanups to object-memory-usage stuff
Ben Wing <ben@xemacs.org>
parents:
5157
diff
changeset
|
394 void vars_of_elhash (void); |
| 428 | 395 void vars_of_emacs (void); |
| 396 void vars_of_eval (void); | |
| 397 void reinit_vars_of_eval (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
398 void vars_of_event_Xt (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
399 void reinit_vars_of_event_Xt (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
400 void vars_of_event_gtk (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
401 void reinit_vars_of_event_gtk (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
402 void vars_of_event_mswindows (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
403 void reinit_vars_of_event_mswindows (void); |
| 428 | 404 void vars_of_event_stream (void); |
| 405 void reinit_vars_of_event_stream (void); | |
| 406 void vars_of_event_tty (void); | |
| 407 void reinit_vars_of_event_tty (void); | |
| 408 void vars_of_events (void); | |
| 409 void reinit_vars_of_events (void); | |
| 410 void vars_of_extents (void); | |
| 411 void vars_of_faces (void); | |
| 771 | 412 void vars_of_file_coding (void); |
| 413 void reinit_vars_of_file_coding (void); | |
| 428 | 414 void vars_of_fileio (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
415 #ifdef USE_C_FONT_LOCK |
| 442 | 416 void reinit_vars_of_fileio (void); |
| 428 | 417 void vars_of_filelock (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
418 #endif /* USE_C_FONT_LOCK */ |
| 428 | 419 void vars_of_floatfns (void); |
| 771 | 420 void vars_of_fns (void); |
| 428 | 421 void vars_of_font_lock (void); |
| 422 void reinit_vars_of_font_lock (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
423 void vars_of_font_mgr (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
424 void reinit_vars_of_font_mgr (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
425 void vars_of_frame (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
426 void vars_of_frame_gtk (void); |
| 428 | 427 void vars_of_frame_mswindows (void); |
| 438 | 428 void reinit_vars_of_frame_mswindows (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
429 void vars_of_frame_tty (void); |
| 428 | 430 void vars_of_frame_x (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
431 void vars_of_glyphs (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
432 void reinit_vars_of_glyphs (void); |
| 428 | 433 void vars_of_glyphs_eimage (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
434 void vars_of_glyphs_gtk (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
435 void vars_of_glyphs_mswindows (void); |
| 428 | 436 void vars_of_glyphs_widget (void); |
| 437 void reinit_vars_of_glyphs_widget (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
438 void vars_of_glyphs_x (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
439 void vars_of_gpmevent (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
440 void vars_of_gui (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
441 void vars_of_gui_gtk (void); |
| 428 | 442 void vars_of_gui_x (void); |
| 443 void reinit_vars_of_gui_x (void); | |
| 444 void vars_of_gutter (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
445 void vars_of_indent (void); |
| 428 | 446 void vars_of_input_method_motif (void); |
| 447 void vars_of_input_method_xlib (void); | |
| 448 void vars_of_insdel (void); | |
| 449 void reinit_vars_of_insdel (void); | |
| 450 void vars_of_intl (void); | |
| 771 | 451 void vars_of_intl_win32 (void); |
| 428 | 452 void vars_of_keymap (void); |
| 453 void vars_of_lread (void); | |
| 454 void reinit_vars_of_lread (void); | |
| 455 void vars_of_lstream (void); | |
| 456 void reinit_vars_of_lstream (void); | |
| 457 void vars_of_macros (void); | |
| 458 void vars_of_md5 (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
459 void vars_of_menubar (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
460 void vars_of_menubar_gtk (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
461 void reinit_vars_of_menubar_gtk (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
462 void vars_of_menubar_mswindows (void); |
| 428 | 463 void vars_of_menubar_x (void); |
| 464 void reinit_vars_of_menubar_x (void); | |
| 465 void vars_of_minibuf (void); | |
| 466 void reinit_vars_of_minibuf (void); | |
| 467 void vars_of_module (void); | |
| 468 void reinit_vars_of_module (void); | |
| 469 void vars_of_mule_ccl(void); | |
| 470 void vars_of_mule_charset (void); | |
| 771 | 471 void vars_of_mule_coding (void); |
| 472 void reinit_vars_of_mule_coding (void); | |
| 428 | 473 void vars_of_mule_wnn (void); |
| 442 | 474 void reinit_vars_of_mule_wnn (void); |
| 440 | 475 void vars_of_nt (void); |
| 1983 | 476 void vars_of_number (void); |
|
4802
2fc0e2f18322
Don't create any bignums before pdumping. Add bignum, ratio, and bigfloat
Jerry James <james@xemacs.org>
parents:
3381
diff
changeset
|
477 void reinit_vars_of_number (void); |
|
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
4921
diff
changeset
|
478 void reinit_vars_of_fontcolor_mswindows (void); |
|
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
4921
diff
changeset
|
479 void vars_of_fontcolor (void); |
|
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
4921
diff
changeset
|
480 void reinit_vars_of_fontcolor (void); |
|
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
4921
diff
changeset
|
481 void vars_of_fontcolor_gtk (void); |
|
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
4921
diff
changeset
|
482 void vars_of_fontcolor_mswindows (void); |
|
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
4921
diff
changeset
|
483 void vars_of_fontcolor_tty (void); |
|
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
4921
diff
changeset
|
484 void vars_of_fontcolor_x (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
485 EXTERN_C void vars_of_postgresql (void); |
| 428 | 486 void vars_of_print (void); |
| 487 void reinit_vars_of_print (void); | |
| 488 void vars_of_process (void); | |
| 489 void vars_of_process_nt (void); | |
| 490 void vars_of_process_unix (void); | |
| 491 void vars_of_profile (void); | |
| 492 void vars_of_ralloc (void); | |
| 2526 | 493 void vars_of_realpath (void); |
| 428 | 494 void vars_of_redisplay (void); |
| 814 | 495 void vars_of_regex (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
496 void vars_of_scrollbar (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
497 void vars_of_scrollbar_gtk (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
498 void vars_of_scrollbar_mswindows (void); |
| 428 | 499 void vars_of_scrollbar_x (void); |
| 500 void reinit_vars_of_scrollbar_x (void); | |
| 501 void vars_of_search (void); | |
| 502 void reinit_vars_of_search (void); | |
| 503 void vars_of_select (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
504 void vars_of_select_gtk (void); |
| 428 | 505 void vars_of_select_mswindows (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
506 void vars_of_select_x (void); |
|
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
507 void reinit_vars_of_select_x (void); |
| 428 | 508 void vars_of_sound (void); |
| 509 void vars_of_specifier (void); | |
| 510 void vars_of_sunpro (void); | |
| 511 void vars_of_symbols (void); | |
| 512 void vars_of_syntax (void); | |
| 440 | 513 void vars_of_tests (void); |
| 771 | 514 void vars_of_text (void); |
| 515 void reinit_vars_of_text (void); | |
| 428 | 516 void vars_of_toolbar (void); |
| 517 void vars_of_tooltalk (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
518 void vars_of_ui_gtk (void); |
| 428 | 519 void vars_of_undo (void); |
| 520 void reinit_vars_of_undo (void); | |
| 771 | 521 void vars_of_unicode (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
522 void vars_of_win32 (void); |
| 428 | 523 void vars_of_window (void); |
| 524 void reinit_vars_of_window (void); | |
| 525 | |
| 526 /* Initialize specifier variables (dump-time only). */ | |
| 527 | |
| 528 void specifier_vars_of_glyphs (void); | |
| 863 | 529 void specifier_vars_of_glyphs_widget (void); |
| 428 | 530 void specifier_vars_of_gutter (void); |
| 531 void specifier_vars_of_menubar (void); | |
| 532 void specifier_vars_of_redisplay (void); | |
| 533 void specifier_vars_of_scrollbar (void); | |
| 534 void specifier_vars_of_toolbar (void); | |
| 535 void specifier_vars_of_window (void); | |
| 536 | |
| 771 | 537 /* Initialize variables with complex dependencies on other variables |
| 538 (dump-time for complex_vars_, dump-time and post-pdump-load-time | |
| 539 for reinit_(), pdump-load-time-only for reinit_..._runtime_only()). | |
| 540 #### The reinit_() functions should be called from emacs.c, not the | |
| 541 corresponding complex_vars_of_(). */ | |
| 428 | 542 |
| 543 void complex_vars_of_alloc (void); | |
|
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
544 void complex_vars_of_buffer (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
545 void reinit_complex_vars_of_buffer_runtime_only (void); |
| 428 | 546 void complex_vars_of_casetab (void); |
| 547 void complex_vars_of_chartab (void); | |
| 548 void complex_vars_of_console (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
549 void reinit_complex_vars_of_console_runtime_only (void); |
| 428 | 550 void complex_vars_of_emacs (void); |
|
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
551 void complex_vars_of_faces (void); |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
552 void complex_vars_of_file_coding (void); |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
553 void complex_vars_of_font_mgr (void); |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
554 void complex_vars_of_frame (void); |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
555 void complex_vars_of_glyphs (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
556 void complex_vars_of_glyphs_gtk (void); |
|
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
557 void complex_vars_of_glyphs_mswindows (void); |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
558 void complex_vars_of_glyphs_x (void); |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
559 void complex_vars_of_intl_win32 (void); |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
560 void complex_vars_of_keymap (void); |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
561 void complex_vars_of_menubar (void); |
| 428 | 562 void complex_vars_of_minibuf (void); |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
563 void reinit_complex_vars_of_minibuf (void); |
|
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
564 void complex_vars_of_mule_charset (void); |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
565 void complex_vars_of_scrollbar (void); |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
566 void complex_vars_of_syntax (void); |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
567 void complex_vars_of_unicode (void); |
| 428 | 568 |
| 569 /* Late initialization -- stuff pertaining only to interactive usage, | |
| 771 | 570 I/O, or Lisp reading. (Dump-time and run-time, but the code itself |
| 571 may conditionalize on this by checking the `initialized' variable.) */ | |
| 428 | 572 |
| 771 | 573 void init_buffer_1 (void); |
| 574 void init_buffer_2 (void); | |
| 442 | 575 void init_console_stream (int reinit); |
| 428 | 576 void init_device_tty (void); |
| 577 void init_editfns (void); | |
| 578 void init_event_Xt_late (void); | |
|
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
579 void init_event_gtk_late (void); |
| 814 | 580 void init_event_mswindows_late (void); |
| 428 | 581 void init_event_stream (void); |
| 582 void init_event_tty_late (void); | |
| 583 void init_event_unixoid (void); | |
| 771 | 584 void init_file_coding (void); |
| 428 | 585 void init_hpplay (void); |
| 771 | 586 void init_intl (void); |
| 587 void init_intl_win32 (void); | |
| 428 | 588 void init_lread (void); |
| 589 void init_macros (void); | |
| 814 | 590 void init_mswindows_environment (void); |
| 591 void init_nt (void); | |
| 771 | 592 void init_postgresql_from_environment (void); |
| 428 | 593 void init_redisplay (void); |
| 771 | 594 void init_select_mswindows (void); |
| 428 | 595 void init_sunpro (void); |
| 442 | 596 void init_win32 (void); |
| 814 | 597 void init_xemacs_process (void); |
| 428 | 598 |
| 1983 | 599 /* Enhanced number initialization: must be done only at runtime due to complex |
| 600 interactions with the supporting libraries. */ | |
| 601 void init_number (void); | |
| 602 | |
| 440 | 603 #endif /* INCLUDED_symsinit_h_ */ |
