2010-06-23 13:02 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* src/vm/runner.c
    * Changed to use hex notation instead of octal in recent change.
      (see: 2010-02-20 01:03 UTC+0100, 2009-06-05 20:59 UTC+0200, 
      2008-11-09 11:48 UTC+0100)

  * include/hbdefs.h
    - Deleted HB_RECNO.
This commit is contained in:
Viktor Szakats
2010-06-23 11:03:05 +00:00
parent 46e9900a91
commit 3d52caf679
3 changed files with 11 additions and 2 deletions

View File

@@ -16,6 +16,15 @@
The license applies to all entries newer than 2009-04-28.
*/
2010-06-23 13:02 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* src/vm/runner.c
* Changed to use hex notation instead of octal in recent change.
(see: 2010-02-20 01:03 UTC+0100, 2009-06-05 20:59 UTC+0200,
2008-11-09 11:48 UTC+0100)
* include/hbdefs.h
- Deleted HB_RECNO.
2010-06-23 12:47 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/include/hbextern.ch
* harbour/src/vm/runner.c

View File

@@ -258,7 +258,7 @@ typedef unsigned int HB_UINT;
#endif
/* Harbour abstract types */
typedef HB_RECNO HB_ULONG;
/* ...add them here... */
/* Convenience */
typedef HB_UCHAR HB_BYTE;

View File

@@ -90,7 +90,7 @@ typedef struct
PHB_SYMBOLS pModuleSymbols;
} HRB_BODY, * PHRB_BODY;
static const char s_szHead[ 4 ] = { '\300', 'H', 'R', 'B' };
static const char s_szHead[ 4 ] = { '\xC0', 'H', 'R', 'B' };
#define SYM_NOLINK 0 /* symbol does not have to be linked */