Very good news
![Wink ;)](./images/smilies/icon_wink.gif)
Is there any class non compatible with FWH64 bits?.
Also, did you were able to try BCC 64 bits?.
Thank you for your very effective and quick support and atention Antonio.
Great! Good news. Thanks, Antonio.Antonio Linares wrote:Class TImage for 64 bits seems to be ready
Lucas,lucasdebeltran wrote:Thanks Antonio.
I thought .rc files were only for Borland BCC 32 bits. How are they compiled into 64 bits?.
PD. What are your feelings about BCC 64 BITS?.
Microsoft Windows [Version 6.2.9200]
(c) 2012 Microsoft Corporation. All rights reserved.
c:\vc64\bin>rc
Microsoft (R) Windows (R) Resource Compiler Version 6.1.7600.16385
Copyright (C) Microsoft Corporation. All rights reserved.
fatal error RC1107: invalid usage; use RC /? for Help
This will not happen by now, as we sell them as different products, and we don't have a plan to change itHope you could merge FWH and FWH64 installer to install it one time, thanks!!.
There is no increase of speed in 64 bits, thats a common missunderstandingAlso, the increase of speed and performance is it noticeable?
Code: Select all
#ifdef __BORLANDC__
asm push ax;
#elif defined( _MSC_VER )
_asm { push ax }
#elif defined( __GNUC__ )
asm( "push ax" );
From an easy of use point of view, sadly the current make files based on bcc32 will have to be modified.The C++ 64-bit Windows compiler (BCC64) is based on the open-source Clang compiler, which is the front end for the LLVM compiler, described at http://clang.llvm.org/ and http://www.llvm.org/ respectively.
BCC64 is an entirely new code base, so there are significant differences between BCC64 and BCC32.