For those that use FWH 64 bits and want to use Harbour 1.0.1 from Harbour website:
http://sourceforge.net/projects/harbour-project/files/binaries-windows/harbour-1.0.1-win64-msvs2008cpp.zip/download
( C++ mode )
you have to add this code to the bottom of your PRG:
and modify these lines in FWH64\samples\build64.bat:
With these changes FWH 64 bits is nicely working on Windows 7 64 bits too
http://sourceforge.net/projects/harbour-project/files/binaries-windows/harbour-1.0.1-win64-msvs2008cpp.zip/download
( C++ mode )
you have to add this code to the bottom of your PRG:
#pragma BEGINDUMP
extern "C"
{
void __GSHandlerCheck( void ) {}
};
#pragma ENDDUMPand modify these lines in FWH64\samples\build64.bat:
echo %hdir%\lib\hbrtl.lib  >> msvc.tmp
echo %hdir%\lib\hbvm.lib  >> msvc.tmp
echo %hdir%\lib\gtgui.lib  >> msvc.tmp
echo %hdir%\lib\hblang.lib  >> msvc.tmp
echo %hdir%\lib\hbmacro.lib  >> msvc.tmp
echo %hdir%\lib\hbrdd.lib  >> msvc.tmp
echo %hdir%\lib\rddntx.lib  >> msvc.tmp
echo %hdir%\lib\rddcdx.lib  >> msvc.tmp
echo %hdir%\lib\rddfpt.lib  >> msvc.tmp
echo %hdir%\lib\hbsix.lib  >> msvc.tmp
echo %hdir%\lib\hbdebug.lib  >> msvc.tmp
echo %hdir%\lib\hbcommon.lib  >> msvc.tmp
echo %hdir%\lib\hbpp.lib  >> msvc.tmp
echo %hdir%\lib\hbw32.lib  >> msvc.tmp
echo %hdir%\lib\hbcpage.lib  >> msvc.tmpWith these changes FWH 64 bits is nicely working on Windows 7 64 bits too