blob: 50e64b47e0f3d5d333fb29c2b99167a0c1816cd4 [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 Moolenaar383f9bc2005-01-19 22:18:32 +000095# include "hashtable.pro"
Bram Moolenaar071d4272004-06-13 20:20:40 +000096# include "main.pro"
97# include "mark.pro"
98# if !defined MESSAGE_FILE || defined(HAVE_STDARG_H)
99 /* These prototypes cannot be produced automatically and conflict with
100 * the old-style prototypes in message.c. */
101int
102#ifdef __BORLANDC__
103_RTLENTRYF
104#endif
105smsg __ARGS((char_u *, ...));
106int
107#ifdef __BORLANDC__
108_RTLENTRYF
109#endif
110smsg_attr __ARGS((int, char_u *, ...));
111# endif
112# include "memfile.pro"
113# include "memline.pro"
114# ifdef FEAT_MENU
115# include "menu.pro"
116# endif
117# include "message.pro"
118# include "misc1.pro"
119# include "misc2.pro"
120#ifndef HAVE_STRPBRK /* not generated automatically from misc2.c */
121char_u *vim_strpbrk __ARGS((char_u *s, char_u *charset));
122#endif
123#ifndef HAVE_QSORT
124/* Use our own qsort(), don't define the prototype when not used. */
125void qsort __ARGS((void *base, size_t elm_count, size_t elm_size, int (*cmp)(const void *, const void *)));
126#endif
127# include "move.pro"
128# if defined(FEAT_MBYTE) || defined(FEAT_XIM) || defined(FEAT_KEYMAP) \
129 || defined(FEAT_POSTSCRIPT)
130# include "mbyte.pro"
131# endif
132# include "normal.pro"
133# include "ops.pro"
134# include "option.pro"
135# include "quickfix.pro"
136# include "regexp.pro"
137# include "screen.pro"
138# include "search.pro"
139# include "syntax.pro"
140# include "tag.pro"
141# include "term.pro"
142# if defined(HAVE_TGETENT) && (defined(AMIGA) || defined(VMS))
143# include "termlib.pro"
144# endif
145# include "ui.pro"
146# include "undo.pro"
147# include "version.pro"
148# include "window.pro"
149
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000150# ifdef FEAT_MZSCHEME
151# include "if_mzsch.pro"
152# endif
153
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154# ifdef FEAT_PYTHON
155# include "if_python.pro"
156# endif
157
158# ifdef FEAT_TCL
159# include "if_tcl.pro"
160# endif
161
162# ifdef FEAT_RUBY
163# include "if_ruby.pro"
164# endif
165
166# ifdef FEAT_GUI
167# include "gui.pro"
168# if defined(UNIX) || defined(MACOS)
169# include "pty.pro"
170# endif
171# if !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) && !defined(VMS)
172extern int putenv __ARGS((const char *string)); /* from pty.c */
173# ifdef USE_VIMPTY_GETENV
174extern char_u *vimpty_getenv __ARGS((const char_u *string)); /* from pty.c */
175# endif
176# endif
177# ifdef FEAT_GUI_W16
178# include "gui_w16.pro"
179# endif
180 /* Ugly solution for "BalloonEval" not being defined while it's used in
181 * the prototypes. */
182# ifndef FEAT_BEVAL
183# define BalloonEval int
184# endif
185# ifdef FEAT_GUI_W32
186# include "gui_w32.pro"
187# endif
Bram Moolenaar843ee412004-06-30 16:16:41 +0000188# ifdef FEAT_GUI_KDE
189# include "gui_kde.pro"
190# include "gui_kde_x11.pro"
191# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192# ifdef FEAT_GUI_GTK
193# include "gui_gtk.pro"
194# include "gui_gtk_x11.pro"
195# endif
196# ifdef FEAT_GUI_MOTIF
197# include "gui_motif.pro"
Bram Moolenaardfccaf02004-12-31 20:56:11 +0000198# include "gui_xmdlg.pro"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199# endif
200# ifdef FEAT_GUI_ATHENA
201# include "gui_athena.pro"
202# ifdef FEAT_BROWSE
203extern 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));
204# endif
205# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206# ifdef FEAT_GUI_MAC
207# include "gui_mac.pro"
208# endif
209# ifdef FEAT_GUI_X11
210# include "gui_x11.pro"
211# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212# ifdef RISCOS
213# include "gui_riscos.pro"
214# endif
215# ifdef FEAT_GUI_PHOTON
216# include "gui_photon.pro"
217# endif
218# ifdef FEAT_SUN_WORKSHOP
219# include "workshop.pro"
220# endif
221# ifdef FEAT_NETBEANS_INTG
222# include "netbeans.pro"
223# endif
224# endif /* FEAT_GUI */
225
226# ifdef FEAT_OLE
227# include "if_ole.pro"
228# endif
229# if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
230# include "if_xcmdsrv.pro"
231# endif
232
233/*
234 * The perl include files pollute the namespace, therfore proto.h must be
235 * included before the perl include files. But then CV is not defined, which
236 * is used in if_perl.pro. To get around this, the perl prototype files are
237 * not included here for the perl files. Use a dummy define for CV for the
238 * other files.
239 */
240#if defined(FEAT_PERL) && !defined(IN_PERL_FILE)
241# define CV void
242# ifdef __BORLANDC__
Bram Moolenaaraab21c32005-01-25 21:46:35 +0000243 #pragma option -pc
Bram Moolenaar071d4272004-06-13 20:20:40 +0000244# endif
245# include "if_perl.pro"
246# ifdef __BORLANDC__
Bram Moolenaaraab21c32005-01-25 21:46:35 +0000247 #pragma option -p.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000248# endif
249# include "if_perlsfio.pro"
250#endif
251
252#ifdef __BORLANDC__
253# define _PROTO_H
254#endif
255#endif /* !PROTO && !NOPROTO */