Newer
Older
Microsoft / screendoor / VUNDSPLY.C
@tundra tundra on 24 May 2012 695 bytes Initial revision
/*  VUNDSPLY.C - Un-Displays Prompts And Responses Per A VSTRUCT Structure
				Last Modified: 06/30/86
				Copyright (C) 1986,  T.A. Daneliuk
*/

#include	<stdio.h>
#include	<system.h>
#include	<vstruct.h>
#include        <t&r.h>

void	vundsply(vptr,attr,fill)

struct VSTRUCT *vptr;
int		attr;
char	fill;
{

int	x;

	for (x=0;(x==0 ? TRUE : ((vptr+x-1)->lastfld)!=TRUE);x++)
			{
				if (((vptr+x)->pdsply)==TRUE && ((vptr+x)->parray)!=NULL)
					dsplylin((vptr+x)->pvert,(vptr+x)->phoriz,mkstr(fill,strlen((vptr+x)->parray)),attr);
				if (((vptr+x)->rarray)!=NULL)
					dsplylin((vptr+x)->rvert,(vptr+x)->rhoriz,mkstr(fill,strlen((vptr+x)->rarray)),attr);
			}

}