2010-06-10 00:27 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/src/rdd/dbf1.c
    + allow to open DBF files with 0x07 and 0x87 signature created by
      CA-VO DBFNTX when ANSI encoding is enabled.
      Thanks to Vitomir Cvitanovic for CA-VO tests.
      Warning! After any modifications in such files Harbour DBF* RDDs
      will correct above signatures to standard DBASE ones (0x03 and 0x83).
This commit is contained in:
Przemyslaw Czerpak
2010-06-09 22:27:14 +00:00
parent b602644e09
commit 011da193bf
2 changed files with 10 additions and 0 deletions

View File

@@ -16,6 +16,14 @@
The license applies to all entries newer than 2009-04-28.
*/
2010-06-10 00:27 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/rdd/dbf1.c
+ allow to open DBF files with 0x07 and 0x87 signature created by
CA-VO DBFNTX when ANSI encoding is enabled.
Thanks to Vitomir Cvitanovic for CA-VO tests.
Warning! After any modifications in such files Harbour DBF* RDDs
will correct above signatures to standard DBASE ones (0x03 and 0x83).
2010-06-10 00:03 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* examples/uhttpd2/umain.prg
* examples/uhttpd2/uhttpd2.hbp

View File

@@ -5058,9 +5058,11 @@ static HB_ERRCODE hb_dbfReadDBHeader( DBFAREAP pArea )
break;
case 0x03:
case 0x07: /* CA-VO DBFNTX and ANSI CP */
break;
case 0x83:
case 0x87: /* CA-VO DBFNTX+MEMO and ANSI CP */
pArea->fHasMemo = HB_TRUE;
pArea->bMemoType = DB_MEMO_DBT;
break;