>From VS2008SP1

cmserr.c(96) : warning C4133: 'function' : incompatible types - from
'char [1024]' to 'LPCWSTR'
cmserr.c(96) : warning C4133: 'function' : incompatible types - from
'char [11]' to 'LPCWSTR'
cmserr.c(106) : warning C4133: 'function' : incompatible types - from
'char [32]' to 'LPCWSTR'
cmsintrp.c(425) : warning C4740: flow in or out of inline asm code
suppresses global optimization

Suggested change for cmsintrp.c
From:

WORD cmsLinearInterpLUT16(WORD Value, WORD LutTable[], LPL16PARAMS p)
{
       ...
       ASM {
              xor       eax, eax
              ...
              add       eax, ebx                       // Done!
              }
              RET((WORD) _EAX);
       IsNegative:
              ASM {
              neg       eax
              ...
              add       eax, ebx                       // Done!
              }
              RET((WORD) _EAX);
}

To:

WORD cmsLinearInterpLUT16(WORD Value, WORD LutTable[], LPL16PARAMS p)
{
       ...
       ASM {
              xor       eax, eax
              ...
              add       eax, ebx                       // Done!
                  jmp end
       IsNegative:
              neg       eax
              ...
              add       eax, ebx                       // Done!
end:
              }
              RET((WORD) _EAX);
}

Louis Solomon
www.SteelBytes.com

-----Original Message-----
From: marti.ma...@littlecms.com [mailto:marti.ma...@littlecms.com] 
Sent: Tuesday, 3 November 2009 3:09 AM
To: lcms-user@lists.sourceforge.net
Subject: [Lcms-user] Beta of LittleCMS 1.19 available. Status of
lcms-2.0


Dear Little CMS community,

As usual in that dates, it is time to do a release.

I've uploaded a beta of lcms-1.19 at:

http://www.littlecms.com/lcms-1.19beta1.tar.gz

This is a maintenance release, which fixes some minor bugs,
adresses typos in licenses and has no new functionality.

I would appreciate if you can give a check to 1.19
Final 1.19 release will be in two weeks.

Please note that will be the _last_ release on 1.xx series.

Also, I have uploaded a snapshot of incoming lcms 2.0 in

http://www.littlecms.com/lcms-2.0-Nov-2.tar.gz

This is the last drop in alpha stage, next one will be beta code.
That means code and functionality in lcms 2.0 is now complete, but
the current drop misses some things:

   - Documentation is still incomplete, although the tutorial and
     the plug-in API are there. The API reference needs some work.
   - Utilities are pretty unchecked, code and options on utilities
     may vary on beta release.
   - pthread code has to be reviewed/replaced (TBD)
   - testbed program misses some checks.

Otherwise all the rest is up and working. I'm working hard on
qualification, and hopefully first beta will be available really soon.
Any feedback will be appreciated.

Best regards
Marti Maria
The LittleCMS project.

------------------------------------------------------------------------
------
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and
stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
_______________________________________________
Lcms-user mailing list
Lcms-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/lcms-user

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Lcms-user mailing list
Lcms-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/lcms-user

Reply via email to