Expand PMF_FN_* macros.
[netbsd-mini2440.git] / dist / nvi / motif_l / vi_mextern.h
bloba030040da62eb95074728de7e4e803dc7d73f867
1 /* $NetBSD$ */
3 /*-
4 * Copyright (c) 1996
5 * Rob Zimmermann. All rights reserved.
6 * Copyright (c) 1996
7 * Keith Bostic. All rights reserved.
9 * See the LICENSE file for redistribution information.
11 * "Id: vi_mextern.h,v 8.6 2000/07/05 11:33:19 skimo Exp (Berkeley) Date: 2000/07/05 11:33:19";
15 * Globals, the list of names exposed to the outside world by the vi Motif
16 * widget library.
18 * Applications using the Motif vi widget code will have to initialize these
19 * or the library code will fail.
21 extern char *vi_progname; /* Program name. */
22 extern int vi_ofd; /* Output file descriptor. */
23 extern IPVIWIN *ipvi_motif;
24 extern IPSIOPS ipsi_ops_motif;
28 * RAZ -- anyway we can get the library to do this setup?
30 #if 0
31 #ifdef __STDC__
32 Widget vi_create_editor(String, Widget, void (*)(void));
33 Widget vi_create_menubar(Widget);
34 void vi_input_func(XtPointer, int *, XtInputId *);
35 int vi_run(int, char *[], int *, int *, pid_t *);
36 int vi_send(char *, IP_BUF *);
37 int vi_translate(char *, size_t *, IP_BUF *);
38 #else
39 Widget vi_create_editor();
40 Widget vi_create_menubar();
41 void vi_input_func();
42 void vi_run();
43 int vi_send();
44 int vi_translate();
45 #endif
46 #endif