Files
harbour-core/contrib/hbnf/ctrl.c
vszakats a4a357a18b 2013-03-15 11:12 UTC+0100 Viktor Szakats (harbour syenar.net)
* /harbour/* -> /*
    * moved whole Harbour source tree one level up to
      avoid single 'harbour' top dir
2013-03-15 11:13:30 +01:00

46 lines
981 B
C

/*
* $Id$
*/
/*
* Author....: Ted Means
* CIS ID....: 73067,3332
*
* This function is an original work by Ted Means and is placed in the
* public domain.
*
* Modification history:
* ---------------------
*
* Rev 1.4 15 Jul 1993 23:51:28 GLENN
* Dropped _MK_FP for preferred 0x00400017
*
* Rev 1.3 13 Jul 1993 22:20:22 GLENN
* Modified to use _MK_FP for compatibility in protected mode.
*
* Rev 1.2 15 Aug 1991 23:08:10 GLENN
* Forest Belt proofread/edited/cleaned up doc
*
* Rev 1.1 14 Jun 1991 19:53:40 GLENN
* Minor edit to file header
*
* Rev 1.0 01 Apr 1991 01:02:44 GLENN
* Nanforum Toolkit
*
*
*/
#include "hbapigt.h"
#include "hbapiitm.h"
HB_FUNC( FT_CTRL )
{
HB_GT_INFO gtInfo;
memset( &gtInfo, 0, sizeof( gtInfo ) );
hb_gtInfo( HB_GTI_KBDSHIFTS, &gtInfo );
hb_retl( ( hb_itemGetNI( gtInfo.pResult ) & HB_GTI_KBD_CTRL ) != 0 );
if( gtInfo.pResult )
hb_itemRelease( gtInfo.pResult );
}