blob: 7541ce32c1cf05701926a6605ac837b7e45a2b10 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 */
8
9/*
10 * proto.h: include the (automatically generated) function prototypes
11 */
12
13/*
14 * Don't include these while generating prototypes. Prevents problems when
15 * files are missing.
16 */
17#if !defined(PROTO) && !defined(NOPROTO)
18
19/*
20 * Machine-dependent routines.
21 */
22/* avoid errors in function prototypes */
Bram Moolenaar843ee412004-06-30 16:16:41 +000023# if !defined(FEAT_X11) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_KDE)
Bram Moolenaar071d4272004-06-13 20:20:40 +000024# define Display int
25# define Widget int
26# endif
27# ifndef FEAT_GUI_GTK
28# define GdkEvent int
29# define GdkEventKey int
30# endif
31# ifndef FEAT_X11
32# define XImage int
33# endif
34
35# ifdef AMIGA
36# include "os_amiga.pro"
37# endif
38# if defined(UNIX) || defined(__EMX__) || defined(VMS)
39# include "os_unix.pro"
40# endif
41# if defined(MSDOS) || defined(WIN16)
42# include "os_msdos.pro"
43# endif
44# ifdef WIN16
45 typedef LPSTR LPWSTR;
46 typedef LPCSTR LPCWSTR;
47 typedef int LPBOOL;
48# include "os_win16.pro"
49# include "os_mswin.pro"
50# endif
51# ifdef WIN3264
52# include "os_win32.pro"
53# include "os_mswin.pro"
54# if (defined(__GNUC__) && !defined(__MINGW32__)) \
55 || (defined(__BORLANDC__) && __BORLANDC__ < 0x502)
56extern int _stricoll __ARGS((char *a, char *b));
57# endif
58# endif
59# ifdef VMS
60# include "os_vms.pro"
61# endif
62# ifdef __BEOS__
63# include "os_beos.pro"
64# endif
65# ifdef MACOS
66# include "os_mac.pro"
67# endif
68# ifdef RISCOS
69# include "os_riscos.pro"
70# endif
71# ifdef __QNX__
72# include "os_qnx.pro"
73# endif
74
75# include "buffer.pro"
76# include "charset.pro"
77# ifdef FEAT_CSCOPE
78# include "if_cscope.pro"
79# endif
80# include "diff.pro"
81# include "digraph.pro"
82# include "edit.pro"
83# include "eval.pro"
84# include "ex_cmds.pro"
85# include "ex_cmds2.pro"
86# include "ex_docmd.pro"
87# include "ex_eval.pro"
88# include "ex_getln.pro"
89# include "fileio.pro"
90# include "fold.pro"
91# include "getchar.pro"
92# ifdef FEAT_HANGULIN
93# include "hangulin.pro"
94# endif
Bram Moolenaar58d98232005-07-23 22:25:46 +000095# include "hardcopy.pro"
Bram Moolenaar383f9bc2005-01-19 22:18:32 +000096# include "hashtable.pro"
Bram Moolenaar071d4272004-06-13 20:20:40 +000097# include "main.pro"
98# include "mark.pro"
Bram Moolenaar071d4272004-06-13 20:20:40 +000099# include "memfile.pro"
100# include "memline.pro"
101# ifdef FEAT_MENU
102# include "menu.pro"
103# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +0000104
105# if !defined MESSAGE_FILE || defined(HAVE_STDARG_H)
106 /* These prototypes cannot be produced automatically and conflict with
107 * the old-style prototypes in message.c. */
108int
109# ifdef __BORLANDC__
110_RTLENTRYF
111# endif
112smsg __ARGS((char_u *, ...));
113int
114# ifdef __BORLANDC__
115_RTLENTRYF
116# endif
117smsg_attr __ARGS((int, char_u *, ...));
118int
119# ifdef __BORLANDC__
120_RTLENTRYF
121# endif
122vim_snprintf __ARGS((char *, size_t, char *, ...));
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000123int vim_vsnprintf(char *str, size_t str_m, char *fmt, va_list ap, typval_T *tvs);
Bram Moolenaar9c13b352005-05-19 20:53:52 +0000124# endif
125
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126# include "message.pro"
127# include "misc1.pro"
128# include "misc2.pro"
129#ifndef HAVE_STRPBRK /* not generated automatically from misc2.c */
130char_u *vim_strpbrk __ARGS((char_u *s, char_u *charset));
131#endif
132#ifndef HAVE_QSORT
133/* Use our own qsort(), don't define the prototype when not used. */
134void qsort __ARGS((void *base, size_t elm_count, size_t elm_size, int (*cmp)(const void *, const void *)));
135#endif
136# include "move.pro"
137# if defined(FEAT_MBYTE) || defined(FEAT_XIM) || defined(FEAT_KEYMAP) \
138 || defined(FEAT_POSTSCRIPT)
139# include "mbyte.pro"
140# endif
141# include "normal.pro"
142# include "ops.pro"
143# include "option.pro"
144# include "quickfix.pro"
145# include "regexp.pro"
146# include "screen.pro"
147# include "search.pro"
Bram Moolenaar2e4096b2005-03-20 22:25:45 +0000148# include "spell.pro"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149# include "syntax.pro"
150# include "tag.pro"
151# include "term.pro"
152# if defined(HAVE_TGETENT) && (defined(AMIGA) || defined(VMS))
153# include "termlib.pro"
154# endif
155# include "ui.pro"
156# include "undo.pro"
157# include "version.pro"
158# include "window.pro"
159
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000160# ifdef FEAT_MZSCHEME
161# include "if_mzsch.pro"
162# endif
163
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164# ifdef FEAT_PYTHON
165# include "if_python.pro"
166# endif
167
168# ifdef FEAT_TCL
169# include "if_tcl.pro"
170# endif
171
172# ifdef FEAT_RUBY
173# include "if_ruby.pro"
174# endif
175
176# ifdef FEAT_GUI
177# include "gui.pro"
178# if defined(UNIX) || defined(MACOS)
179# include "pty.pro"
180# endif
181# if !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) && !defined(VMS)
182extern int putenv __ARGS((const char *string)); /* from pty.c */
183# ifdef USE_VIMPTY_GETENV
184extern char_u *vimpty_getenv __ARGS((const char_u *string)); /* from pty.c */
185# endif
186# endif
187# ifdef FEAT_GUI_W16
188# include "gui_w16.pro"
189# endif
190 /* Ugly solution for "BalloonEval" not being defined while it's used in
191 * the prototypes. */
192# ifndef FEAT_BEVAL
193# define BalloonEval int
194# endif
195# ifdef FEAT_GUI_W32
196# include "gui_w32.pro"
197# endif
Bram Moolenaar843ee412004-06-30 16:16:41 +0000198# ifdef FEAT_GUI_KDE
199# include "gui_kde.pro"
200# include "gui_kde_x11.pro"
201# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202# ifdef FEAT_GUI_GTK
203# include "gui_gtk.pro"
204# include "gui_gtk_x11.pro"
205# endif
206# ifdef FEAT_GUI_MOTIF
207# include "gui_motif.pro"
Bram Moolenaardfccaf02004-12-31 20:56:11 +0000208# include "gui_xmdlg.pro"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000209# endif
210# ifdef FEAT_GUI_ATHENA
211# include "gui_athena.pro"
212# ifdef FEAT_BROWSE
213extern char *vim_SelFile __ARGS((Widget toplevel, char *prompt, char *init_path, int (*show_entry)(), int x, int y, guicolor_T fg, guicolor_T bg, guicolor_T scroll_fg, guicolor_T scroll_bg));
214# endif
215# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000216# ifdef FEAT_GUI_MAC
217# include "gui_mac.pro"
218# endif
219# ifdef FEAT_GUI_X11
220# include "gui_x11.pro"
221# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222# ifdef RISCOS
223# include "gui_riscos.pro"
224# endif
225# ifdef FEAT_GUI_PHOTON
226# include "gui_photon.pro"
227# endif
228# ifdef FEAT_SUN_WORKSHOP
229# include "workshop.pro"
230# endif
231# ifdef FEAT_NETBEANS_INTG
232# include "netbeans.pro"
233# endif
234# endif /* FEAT_GUI */
235
236# ifdef FEAT_OLE
237# include "if_ole.pro"
238# endif
239# if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
240# include "if_xcmdsrv.pro"
241# endif
242
243/*
244 * The perl include files pollute the namespace, therfore proto.h must be
245 * included before the perl include files. But then CV is not defined, which
246 * is used in if_perl.pro. To get around this, the perl prototype files are
247 * not included here for the perl files. Use a dummy define for CV for the
248 * other files.
249 */
250#if defined(FEAT_PERL) && !defined(IN_PERL_FILE)
251# define CV void
252# ifdef __BORLANDC__
Bram Moolenaaraab21c32005-01-25 21:46:35 +0000253 #pragma option -pc
Bram Moolenaar071d4272004-06-13 20:20:40 +0000254# endif
255# include "if_perl.pro"
256# ifdef __BORLANDC__
Bram Moolenaaraab21c32005-01-25 21:46:35 +0000257 #pragma option -p.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000258# endif
259# include "if_perlsfio.pro"
260#endif
261
262#ifdef __BORLANDC__
263# define _PROTO_H
264#endif
265#endif /* !PROTO && !NOPROTO */