Page 1 of 1

Longer TPrinter document name

PostPosted: Fri Jan 26, 2018 11:09 am
by Enrico Maria Giordano
Can we have longer TPrinter document name, please?

From printdc.c:

Code: Select all  Expand view
  char szDocName[ 32 ];
   int iLen = MIN( 31, hb_parclen( 2 ) );


64 should be enough:

Code: Select all  Expand view
  char szDocName[ 64 ];
   int iLen = MIN( 63, hb_parclen( 2 ) );


Thank you.

EMG