Newer
Older
Microsoft / screendoor / BDEMO3.C
@tundra tundra on 24 May 2012 479 bytes Initial revision
#include		<stdio.h>
#include		<system.h>
#include		<t&r.h>
#include		<vstruct.h>
#include		<stdmsgs.h>


main()

{
static	char	resp0[200]={"x"};

static	struct VSTRUCT screen0[]={
									clrinp,clrprmt,7,15,FALSE,NULL,clrresp,15,0,TRUE,resp0,199,'*',TRUE,0,NULL,FALSE,FALSE,TRUE,NULL,TRUE
								};

struct VSTRUCT *vptr;
static	char	time[9],date[9];

scr_setup();
scr_clr();
vptr=screen0;
vdsply(vptr);
cursorblk(FALSE);
vkeyin(vptr,0,FALSE);

}