On Tuesday 09 September 2014 16:14:29 Patrick Goupell wrote:
>
> fpdoc gets an error in module
> lib/common/fpccompatibilityjmorecfg_del.pas at line 224
>
>    RGB_PIXELSIZE = ??;   { Nomssi: deliberate syntax error. Set this value
> }
>
> I cnaged it to -1 for now to resolve the fpdoc error.  Let me know what
> should be.
>
"
unit jmorecfg_del;

{ This file contains additional configuration options that customize the
  JPEG software for special applications or support machine-dependent
  optimizations.  Most users will not need to touch this file. }

{ Source: jmorecfg.h; Copyright (C) 1991-1996, Thomas G. Lane. }
//modified 2013 by Martin Schreiber

interface

{$I jconfig_del.inc} <<<<<----
[...]
{$ifdef RGB_PIXELSIZE_IS_3}  <<<<<----
const
  RGB_PIXELSIZE = 3;    { JSAMPLEs per RGB scanline element }
{$else}
const
  RGB_PIXELSIZE = ??;   { Nomssi: deliberate syntax error. Set this value }
{$endif}

"
In jconfig_del.inc:
"
{$define RGB_PIXELSIZE_IS_3}
"
-> "  RGB_PIXELSIZE = ??;" should not be compiled.
A bug in fpdoc parser?

Martin

------------------------------------------------------------------------------
Want excitement?
Manually upgrade your production database.
When you want reliability, choose Perforce.
Perforce version control. Predictably reliable.
http://pubads.g.doubleclick.net/gampad/clk?id=157508191&iu=/4140/ostg.clktrk
_______________________________________________
mseide-msegui-talk mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Reply via email to