2013-12-06 12:04:52 +01:00
|
|
|
/* $NetBSD: vi_mextern.h,v 1.2 2013/11/22 15:52:06 christos Exp $ */
|
2013-01-22 12:03:53 +01:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1996
|
|
|
|
* Rob Zimmermann. All rights reserved.
|
|
|
|
* Copyright (c) 1996
|
|
|
|
* Keith Bostic. All rights reserved.
|
|
|
|
*
|
|
|
|
* See the LICENSE file for redistribution information.
|
|
|
|
*
|
2013-12-06 12:04:52 +01:00
|
|
|
* "Id: vi_mextern.h,v 8.6 2000/07/05 11:33:19 skimo Exp (Berkeley) Date: 2000/07/05 11:33:19 ";
|
2013-01-22 12:03:53 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Globals, the list of names exposed to the outside world by the vi Motif
|
|
|
|
* widget library.
|
|
|
|
*
|
|
|
|
* Applications using the Motif vi widget code will have to initialize these
|
|
|
|
* or the library code will fail.
|
|
|
|
*/
|
|
|
|
extern char *vi_progname; /* Program name. */
|
|
|
|
extern int vi_ofd; /* Output file descriptor. */
|
|
|
|
extern IPVIWIN *ipvi_motif;
|
|
|
|
extern IPSIOPS ipsi_ops_motif;
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* RAZ -- anyway we can get the library to do this setup?
|
|
|
|
*/
|
|
|
|
#if 0
|
|
|
|
#ifdef __STDC__
|
|
|
|
Widget vi_create_editor(String, Widget, void (*)(void));
|
|
|
|
Widget vi_create_menubar(Widget);
|
|
|
|
void vi_input_func(XtPointer, int *, XtInputId *);
|
|
|
|
int vi_run(int, char *[], int *, int *, pid_t *);
|
|
|
|
int vi_send(char *, IP_BUF *);
|
|
|
|
int vi_translate(char *, size_t *, IP_BUF *);
|
|
|
|
#else
|
|
|
|
Widget vi_create_editor();
|
|
|
|
Widget vi_create_menubar();
|
|
|
|
void vi_input_func();
|
|
|
|
void vi_run();
|
|
|
|
int vi_send();
|
|
|
|
int vi_translate();
|
|
|
|
#endif
|
|
|
|
#endif
|