*** empty log message ***

This commit is contained in:
Paul Tucker
1999-07-30 13:36:50 +00:00
parent f6ff79b80a
commit 4b0936e628
3 changed files with 13 additions and 4 deletions

View File

@@ -1,7 +1,12 @@
19990730-08:50 EDT Paul Tucker <ptucker@sympatico.ca>
19990730-09:20 EDT Paul Tucker <ptucker@sympatico.ca>
* makefile.vc
+ added sdf and delim support
* changed natmsg\msgxxx to msgxxx
* source/hbpp/hbpplib.c
+ added typecasts to 2 xgrab calls
* source/rdd/dbcmd.c
+ added typecasts at line 337 but wrapped this one in an
#if defined(_MSC_VER)
19990730-14:55 CET Victor Szel <info@szelvesz.hu>
! source/hbpp/preproc.c - defines _pFileName.

View File

@@ -59,8 +59,8 @@ HARBOUR HB_PREPROCESS(void)
{
if (ISCHAR(1))
{
char *pText = hb_xgrab(STR_SIZE);
char *pOut = hb_xgrab(STR_SIZE);
char *pText = (char *)hb_xgrab(STR_SIZE);
char *pOut = (char *)hb_xgrab(STR_SIZE);
char *ptr = pText;
int resParse;

View File

@@ -333,8 +333,12 @@ ERRCODE hb_rddInherit( PRDDFUNCS pTable, PRDDFUNCS pSubTable, PRDDFUNCS pSuperTa
memcpy( pTable, &defTable, sizeof( RDDFUNCS ) );
else
{
#if defined(_MSC_VER)
szDrvName = (PBYTE)hb_strUpper( (char *)szDrvName, strlen( (const char *)szDrvName ) );
#else
szDrvName = hb_strUpper( szDrvName, strlen( szDrvName ) );
if( !( pRddNode = hb_FindRddNode( szDrvName ) ) )
#endif
if( !( pRddNode = hb_FindRddNode( (char *)szDrvName ) ) )
return FAILURE;
memcpy( pTable, &pRddNode->pTable, sizeof( RDDFUNCS ) );
}