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

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

void	vdsply(vptr)

struct VSTRUCT *vptr;

{

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,(vptr+x)->parray,(vptr+x)->pattrib);
				if (((vptr+x)->rarray)!=NULL)
					dsplylin((vptr+x)->rvert,(vptr+x)->rhoriz,(vptr+x)->rarray,(vptr+x)->rattrib);
			}

}