2000-09-02 07:56 GMT+1 Bruno Cantero <bruno@issnet.net>

This commit is contained in:
Bruno Cantero
2000-09-02 05:55:30 +00:00
parent 5dd62675ed
commit 632bde4ab4
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2000-09-02 07:56 GMT+1 Bruno Cantero <bruno@issnet.net>
+ Added ( BYTE * ) casting to hb_gt_AdjustPos() parameter calls.
+ Added ( char * ) casting to out_stdout() parameter calls.
2000-09-02 00:08 GMT+1 Bruno Cantero <bruno@issnet.net>
+ include/hbdbf.h
+ include/hbrddcdx.h

View File

@@ -237,7 +237,7 @@ static void hb_gt_xPutch( USHORT uiRow, USHORT uiCol, BYTE byAttr, BYTE byChar )
szBuffer[ 1 ] = '\0';
out_stdout( szBuffer, 1 );
hb_gt_AdjustPos( szBuffer, 1 );
hb_gt_AdjustPos( ( BYTE * ) szBuffer, 1 );
}
void hb_gt_Puts( USHORT uiRow, USHORT uiCol, BYTE byAttr, BYTE * pbyStr, ULONG ulLen )
@@ -248,7 +248,7 @@ void hb_gt_Puts( USHORT uiRow, USHORT uiCol, BYTE byAttr, BYTE * pbyStr, ULONG u
hb_gt_SetPos( uiRow, uiCol, HB_GT_SET_POS_BEFORE );
out_stdout( pbyStr, ulLen );
out_stdout( ( char * ) pbyStr, ulLen );
hb_gt_AdjustPos( pbyStr, ulLen );
}