Files
harbour-core/harbour/include/hbclip.ch
2000-03-07 02:34:29 +00:00

75 lines
3.0 KiB
Plaintext

/*
* $Id$
*/
/*
* Harbour Project source code:
* Header file to help compile Harbour source files with Clipper
*
* Copyright 1999 Paul Tucker <ptucker@sympatico.ca>
* www - http://www.harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version, with one exception:
*
* The exception is that if you link the Harbour Runtime Library (HRL)
* and/or the Harbour Virtual Machine (HVM) with other files to produce
* an executable, this does not by itself cause the resulting executable
* to be covered by the GNU General Public License. Your use of that
* executable is in no way restricted on account of linking the HRL
* and/or HVM code into it.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA (or visit
* their web site at http://www.gnu.org/).
*
*/
/*
* NOTE: This file is meant to be included in CA-Clipper applications
* that were written to take advantage of specific Harbour extensions
* or platform dependent features.
*/
/*
* TODO: Extend as needed.
*/
#ifndef __HARBOUR__
#ifndef HB_CLIP_CH_
#define HB_CLIP_CH_
#xtranslate HB_ARGCHECK( <s> ) => ( .F. )
#xtranslate HB_ARGSTRING( <s> ) => ""
#xtranslate HB_ARGC() => 0
#xtranslate HB_ARGV( <n> ) => ""
#xtranslate HB_PVALUE( <n> ) => NIL
#xtranslate HB_OSNEWLINE() => ( Chr( 13 ) + Chr( 10 ) )
#xtranslate HB_SHADOW => dbgShadow
#xtranslate HB_COLORINDEX( <s>[, <n>] ) => ""
#xtranslate HB_STOD( <s> ) => CToD( "" )
#xtranslate HB_FNAMESPLIT( <s> ) => NIL
#xtranslate HB_FNAMEMERGE( <s1>[, <s2>[, <s3>[, <s4>]]] ) => ""
#xtranslate HB_KEYPUT( <n> ) => NIL
#xtranslate HB_ANSITOOEM( <s> ) => ( s )
#xtranslate HB_OEMTOANSI( <s> ) => ( s )
#xtranslate HB_VALTOSTR( <x> ) => ""
#xtranslate HB_TRACESTATE( [<n>] ) => 0
#xtranslate HB_TRACELEVEL( [<n>] ) => 0
#xtranslate HB_SETKEYGET( [<n>][, <b>] ) => NIL
#xtranslate HB_SETKEYSAVE( [<a>] ) => ( {} )
#xtranslate HB_SETKEYCHECK( <n>[, <x1>[, <x2>[, <x3>]]] ) => ( .F. )
#endif /* HB_CLIP_CH_ */
#endif