prettiness police
[nvi.git] / motif_l / vi_mextern.h
blob6a7c6970fb79fc7e4aa838925d6b8843f04758c2
1 /*-
2 * Copyright (c) 1996
3 * Rob Zimmermann. All rights reserved.
4 * Copyright (c) 1996
5 * Keith Bostic. All rights reserved.
7 * See the LICENSE file for redistribution information.
9 * "$Id: vi_mextern.h,v 8.2 1996/12/12 09:32:27 bostic Exp $ (Berkeley) $Date: 1996/12/12 09:32:27 $";
13 * Globals, the list of names exposed to the outside world by the vi Motif
14 * widget library.
16 * Applications using the Motif vi widget code will have to initialize these
17 * or the library code will fail.
19 extern char *vi_progname; /* Program name. */
20 extern int vi_ofd; /* Output file descriptor. */
23 * RAZ -- anyway we can get the library to do this setup?
25 #ifdef __STDC__
26 Widget vi_create_editor(String, Widget, void (*)(void));
27 Widget vi_create_menubar(Widget);
28 void vi_input_func(XtPointer, int *, XtInputId *);
29 int vi_run(int, char *[], int *, int *, pid_t *);
30 #else
31 Widget vi_create_editor();
32 Widget vi_create_menubar();
33 void vi_input_func();
34 void vi_run();
35 #endif