See ChangeLog entry 19990917-21:10 EDT David G. Holm <dholm@jsd-llc.com>
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
19990917-21:10 EDT David G. Holm <dholm@jsd-llc.com>
|
||||
* include/extend.h
|
||||
% Changed local pointers in hb_xmemcpy() and hb_xmemset()
|
||||
from void * to BYTE * to keep Borland C compiler happy.
|
||||
|
||||
|
||||
19990917-18:00 EDT David G. Holm <dholm@jsd-llc.com>
|
||||
|
||||
* include/extend.h
|
||||
|
||||
@@ -676,8 +676,8 @@ void hb_stornd( double dNumber, int iParam, ... )
|
||||
|
||||
void * hb_xmemcpy( void * pDestArg, void * pSourceArg, ULONG ulLen )
|
||||
{
|
||||
void * pDest = pDestArg;
|
||||
void * pSource = pSourceArg;
|
||||
BYTE * pDest = ( BYTE * ) pDestArg;
|
||||
BYTE * pSource = ( BYTE * ) pSourceArg;
|
||||
ULONG ulRemaining = ulLen;
|
||||
int iCopySize;
|
||||
|
||||
@@ -703,7 +703,7 @@ void * hb_xmemcpy( void * pDestArg, void * pSourceArg, ULONG ulLen )
|
||||
|
||||
void * hb_xmemset( void * pDestArg, int iFill, ULONG ulLen )
|
||||
{
|
||||
void * pDest = pDestArg;
|
||||
BYTE * pDest = ( BYTE * ) pDestArg;
|
||||
ULONG ulRemaining = ulLen;
|
||||
int iSetSize;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user