Metropoli BBS
VIEWER: fastkb.c MODE: TEXT (ASCII)
/***************************************************************************
*	NAME:  FASTKB.H
**	COPYRIGHT:
**	"Copyright (c) 1992, by FORTE
**
**       "This software is furnished under a license and may be used,
**       copied, or disclosed only in accordance with the terms of such
**       license and with the inclusion of the above copyright notice.
**       This software or any other copies thereof may not be provided or
**       otherwise made available to any other person. No title to and
**       ownership of the software is hereby transfered."
****************************************************************************
*  CREATION DATE: 11/18/92
*--------------------------------------------------------------------------*
*     VERSION	DATE	   NAME		DESCRIPTION
*>	1.0	6/01/93		Original
***************************************************************************/
#include <dos.h>
#include "forte.h"

int   	far *head_keys  = (int far *)0x0040001aL;
int   	far *tail_keys  = (int far *)0x0040001cL;

int
fast_kbhit()
{

if( *head_keys != *tail_keys )
	return(TRUE);
else
	return(FALSE);
}


[ RETURN TO DIRECTORY ]