2021-10-11 18:37:13 -03:00

90 lines
2.2 KiB
C

/*
* Copyright (c) 1986, 1987, 1988, 1989 by Sun Microsystems, Inc.
* Permission to use, copy, modify, and distribute this software for any
* purpose and without fee is hereby granted, provided that the above
* copyright notice appear in all copies and that both that copyright
* notice and this permission notice are retained, and that the name
* of Sun Microsystems, Inc., not be used in advertising or publicity
* pertaining to this software without specific, written prior permission.
* Sun Microsystems, Inc., makes no representations about the suitability
* of this software or the interface defined in this software for any
* purpose. It is provided "as is" without express or implied warranty.
*/
#ifndef lint
static char sccsid[] = "@(#)view_surfpas.c 1.1 94/10/31 Copyr 1984 Sun Micro";
#endif
/*
Copyright (c) 1983 by Sun Microsystems, Inc.
*/
#define DEVNAMESIZE 20
typedef struct {
char screenname[DEVNAMESIZE];
char windowname[DEVNAMESIZE];
int fd;
int (*dd)();
int instance;
int cmapsize;
char cmapname[DEVNAMESIZE];
int flags;
char *ptr;
} vwsurf;
int deselect_view_surface();
int initialize_view_surface();
int select_view_surface();
int terminate_view_surface();
int deselectvwsurf(surfname)
vwsurf *surfname;
{
return(deselect_view_surface(surfname));
}
int initializevwsurf(surfname, flag)
vwsurf *surfname;
int flag;
{
char *sptr,*wptr,*cptr;
int i,is,iw,ic;
is = iw = ic = 0;
sptr = surfname->screenname;
while ((*sptr++) != ' ');
*--sptr = '\0';
wptr = surfname->windowname;
while ((*wptr++) != ' ');
*--wptr = '\0';
cptr = surfname->cmapname;
while ((*cptr++) != ' ');
*--cptr = '\0';
i = initialize_view_surface(surfname, flag);
sptr = surfname->screenname;
while ((*sptr++) != '\0') is++;
*--sptr = ' ';
while (++is < DEVNAMESIZE) *sptr++ = ' ';
wptr = surfname->windowname;
while ((*wptr++) != '\0') iw++;
*--wptr = ' ';
while (++iw < DEVNAMESIZE) *wptr++ = ' ';
cptr = surfname->cmapname;
while ((*cptr++) != '\0') ic++;
*--cptr = ' ';
while (++ic < DEVNAMESIZE) *cptr++ = ' ';
return(i);
}
int selectvwsurf(surfname)
vwsurf *surfname;
{
return(select_view_surface(surfname));
}
int terminatevwsurf(surfname)
vwsurf *surfname;
{
return(terminate_view_surface(surfname));
}