2009-11-01 17:02 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* include/hbdefs.h
    * Changed HB_SIZE to ULONG. Added TOFIX to later change it 
      to 'long'. With its current setup it's possible to gradually 
      change 'ULONG' usages to 'HB_SIZE' when used as string/array 
      length ot index. This can be a gradual process.
This commit is contained in:
Viktor Szakats
2009-11-01 16:03:44 +00:00
parent 4c9e523175
commit c7a629f13d
2 changed files with 8 additions and 1 deletions

View File

@@ -17,6 +17,13 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-11-01 17:02 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* include/hbdefs.h
* Changed HB_SIZE to ULONG. Added TOFIX to later change it
to 'long'. With its current setup it's possible to gradually
change 'ULONG' usages to 'HB_SIZE' when used as string/array
length ot index. This can be a gradual process.
2009-11-01 16:58 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* include/hbdefs.h
+ Added HB_MAX[U]INT as new name for HB_[U]LONG.

View File

@@ -713,7 +713,7 @@ typedef unsigned int HB_UINT;
typedef ULONGLONG HB_ULONGLONG;
#endif
typedef double HB_DOUBLE;
typedef long HB_SIZE;
typedef ULONG HB_SIZE; /* TOFIX: Change to 'long' */
typedef void * HB_PTRVAL; /* TOFIX */
/* typedef HB_POINTER; */ /* TOFIX */