This commit is contained in:
Andi Jahja
2001-11-12 21:46:20 +00:00
parent 49ee8d1700
commit b0019110f0
3 changed files with 9 additions and 4 deletions

View File

@@ -1,3 +1,9 @@
2001-13-11 04:45 GMT+0700 Andi Jahja <harbour@cbn.net.id>
* contrib/libnf/descend.c
! added type casts for MsVC
* contrib/libnf/mouse.c
! some clean-ups
2001-12-11 20:00 GMT+0700 Andi Jahja <harbour@cbn.net.id>
* contrib/rdd_ads/ads1.c
! added type casts for MsVC (but still got warning on line 2086)

View File

@@ -75,7 +75,7 @@ HB_FUNC( FT_DESCEND)
else if ( uiType & HB_IT_STRING )
{
uiLen = hb_itemSize( iP );
uiLen = (USHORT) hb_itemSize( iP );
pDescend = ( char *) hb_xgrab( uiLen );

View File

@@ -423,10 +423,9 @@ HB_FUNC( _M_MSETCOORD)
HB_FUNC( _M_MXLIMIT)
{
#if defined(HB_OS_DOS)
int iMaxRow;
int iMinRow;
#if defined(HB_OS_DOS)
{
union REGS regs;
iMaxRow=hb_parni(2);
@@ -444,9 +443,9 @@ HB_FUNC( _M_MXLIMIT)
HB_FUNC( _M_MYLIMIT)
{
#if defined(HB_OS_DOS)
int iMaxCol;
int iMinCol;
#if defined(HB_OS_DOS)
{
union REGS regs;
iMaxCol=hb_parni(2);