common/log.c: minor whitespace change
[nvi.git] / motif_l / vi_mextern.h
blob959795b37c4b0351e54d4f03ff8412348847cd27
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.6 2000/07/05 11:33:19 skimo Exp $ (Berkeley) $Date: 2000/07/05 11:33:19 $";
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. */
21 extern IPVIWIN *ipvi_motif;
22 extern IPSIOPS ipsi_ops_motif;
26 * RAZ -- anyway we can get the library to do this setup?
28 #if 0
29 #ifdef __STDC__
30 Widget vi_create_editor(String, Widget, void (*)(void));
31 Widget vi_create_menubar(Widget);
32 void vi_input_func(XtPointer, int *, XtInputId *);
33 int vi_run(int, char *[], int *, int *, pid_t *);
34 int vi_send(char *, IP_BUF *);
35 int vi_translate(char *, size_t *, IP_BUF *);
36 #else
37 Widget vi_create_editor();
38 Widget vi_create_menubar();
39 void vi_input_func();
40 void vi_run();
41 int vi_send();
42 int vi_translate();
43 #endif
44 #endif