2011-01-23 17:26 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* contrib/hbhpdf/harupdf.c
    + Added wrapper for HPDF_UseUTFEncodings().
      It requires 2.3.0 which is not released yet, so it's also not
      the version hosted in Harbour SVN.
This commit is contained in:
Viktor Szakats
2011-01-23 16:27:54 +00:00
parent fa950fae9c
commit 37999ce922
2 changed files with 19 additions and 0 deletions

View File

@@ -16,6 +16,12 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-01-23 17:26 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbhpdf/harupdf.c
+ Added wrapper for HPDF_UseUTFEncodings().
It requires 2.3.0 which is not released yet, so it's also not
the version hosted in Harbour SVN.
2011-01-23 10:23 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* utils/hbmk2/hbmk2.prg
! Minor typo in help text.

View File

@@ -2706,3 +2706,16 @@ HB_FUNC( HPDF_PDFA_GENERATEID )
}
/*----------------------------------------------------------------------*/
/*
HPDF_EXPORT(HPDF_STATUS)
HPDF_UseUTFEncodings (HPDF_Doc pdf);
*/
HB_FUNC( HPDF_USEUTFENCODINGS )
{
#if HB_HPDF_VERS( 2, 3, 0 )
hb_retnl( HPDF_UseUTFEncodings( HPDF_Doc_par( 1 ) ) );
#else
hb_retnl( -1 );
#endif
}