Files
harbour-core/harbour/source/rdd/delim1.c

185 lines
7.0 KiB
C

/*
* $Id$
*/
/*
* Harbour Project source code:
* DELIMITED RDD module
*
* Copyright 1999 Bruno Cantero <bruno@issnet.net>
* 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/).
*
*/
#include "hbapi.h"
#include "hbinit.h"
#include "hbvm.h"
#include "hbapirdd.h"
#include "hbapiitm.h"
#include "hbrdddel.h"
HB_FUNC( _DELIMC );
HB_FUNC( DELIM_GETFUNCTABLE );
HB_INIT_SYMBOLS_BEGIN( delim1__InitSymbols )
{ "_DELIMC", HB_FS_PUBLIC, HB_FUNCNAME( _DELIMC ), NULL },
{ "DELIM_GETFUNCTABLE", HB_FS_PUBLIC, HB_FUNCNAME( DELIM_GETFUNCTABLE ), NULL }
HB_INIT_SYMBOLS_END( delim1__InitSymbols )
#if defined(_MSC_VER)
#if _MSC_VER >= 1010
#pragma data_seg( ".CRT$XIY" )
#pragma comment( linker, "/Merge:.CRT=.data" )
#else
#pragma data_seg( "XIY" )
#endif
static HB_$INITSYM hb_vm_auto_delim1__InitSymbols = delim1__InitSymbols;
#pragma data_seg()
#elif ! defined(__GNUC__)
#pragma startup delim1__InitSymbols
#endif
static RDDFUNCS delimSuper = { NULL };
static RDDFUNCS delimTable = { hb_delimBof,
hb_delimEof,
hb_delimFound,
hb_delimGoBottom,
hb_delimGoTo,
hb_delimGoToId,
hb_delimGoTop,
hb_delimSeek,
hb_delimSkip,
hb_delimSkipFilter,
hb_delimSkipRaw,
hb_delimAddField,
hb_delimAppend,
hb_delimCreateFields,
hb_delimDeleteRec,
hb_delimDeleted,
hb_delimFieldCount,
hb_delimFieldDisplay,
hb_delimFieldInfo,
hb_delimFieldName,
hb_delimFlush,
hb_delimGetRec,
hb_delimGetValue,
hb_delimGetVarLen,
hb_delimGoCold,
hb_delimGoHot,
hb_delimPutRec,
hb_delimPutValue,
hb_delimRecall,
hb_delimRecCount,
hb_delimRecInfo,
hb_delimRecNo,
hb_delimSetFieldExtent,
hb_delimAlias,
hb_delimClose,
hb_delimCreate,
hb_delimInfo,
hb_delimNewArea,
hb_delimOpen,
hb_delimRelease,
hb_delimStructSize,
hb_delimSysName,
hb_delimEval,
hb_delimPack,
hb_delimPackRec,
hb_delimSort,
hb_delimTrans,
hb_delimTransRec,
hb_delimZap,
hb_delimChildEnd,
hb_delimChildStart,
hb_delimChildSync,
hb_delimSyncChildren,
hb_delimClearRel,
hb_delimForceRel,
hb_delimRelArea,
hb_delimRelEval,
hb_delimRelText,
hb_delimSetRel,
hb_delimOrderListAdd,
hb_delimOrderListClear,
hb_delimOrderListDelete,
hb_delimOrderListFocus,
hb_delimOrderListRebuild,
hb_delimOrderCondition,
hb_delimOrderCreate,
hb_delimOrderDestroy,
hb_delimOrderInfo,
hb_delimClearFilter,
hb_delimClearLocate,
hb_delimClearScope,
hb_delimCountScope,
hb_delimFilterText,
hb_delimScopeInfo,
hb_delimSetFilter,
hb_delimSetLocate,
hb_delimSetScope,
hb_delimSkipScope,
hb_delimCompile,
hb_delimError,
hb_delimEvalBlock,
hb_delimRawLock,
hb_delimLock,
hb_delimUnLock,
hb_delimCloseMemFile,
hb_delimCreateMemFile,
hb_delimGetValueFile,
hb_delimOpenMemFile,
hb_delimPutValueFile,
hb_delimReadDBHeader,
hb_delimWriteDBHeader,
hb_delimWhoCares
};
/*
* -- DELIM METHODS --
*/
HB_FUNC( _DELIMC )
{
}
HB_FUNC( DELIM_GETFUNCTABLE )
{
RDDFUNCS * pTable;
USHORT * uiCount;
uiCount = ( USHORT * ) hb_itemGetPtr( hb_param( 1, HB_IT_POINTER ) );
* uiCount = RDDFUNCSCOUNT;
pTable = ( RDDFUNCS * ) hb_itemGetPtr( hb_param( 2, HB_IT_POINTER ) );
HB_TRACE(HB_TR_DEBUG, ("DELIM_GETFUNCTABLE(%i, %p)", uiCount, pTable));
if( pTable )
hb_retni( hb_rddInherit( pTable, &delimTable, &delimSuper, 0 ) );
else
hb_retni( FAILURE );
}