This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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 );
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user