Page 1 of 1
13.08 Error w/ xHarbour ( .com ) vmPushSize
Posted: Tue Sep 17, 2013 4:06 pm
by TimStone
Building with xHarbour (.com ) and 13.08.
The following error occurs: _hb_vmPushSize Unresolved External symbol
Re: 13.08 Error w/ xHarbour ( .com ) vmPushSize
Posted: Tue Sep 17, 2013 7:56 pm
by Antonio Linares
Tim,
Please add this function to your app:
Code: Select all
#pragma BEGINDUMP
#include <hbapi.h>
void hb_vmPushSize( LONG l )
{
hb_vmPushLong( l );
}
#pragma ENDDUMP
Re: 13.08 Error w/ xHarbour ( .com ) vmPushSize
Posted: Wed Sep 18, 2013 9:14 am
by Antonio Linares
We are publishing a revised FWH 13.08 that solves it
Re: 13.08 Error w/ xHarbour ( .com ) vmPushSize
Posted: Wed Sep 18, 2013 3:52 pm
by TimStone
The function you posted worked.
I just rebuilt with the latest 13.08 download, without the additional function, and it built normally.
Thank you.
Re: 13.08 Error w/ xHarbour ( .com ) vmPushSize
Posted: Wed Sep 18, 2013 5:22 pm
by Antonio Linares
Tim,
thanks for your feedback
Re: 13.08 Error w/ xHarbour ( .com ) vmPushSize
Posted: Wed Sep 18, 2013 7:00 pm
by Patrick Mast
Hey Tim,
TimStone wrote:I just rebuilt with the latest 13.08 download, without the additional function, and it built normally.
Is this with latest xHarbour Builder posted yesterday?
Thanks!
Patrick
Re: 13.08 Error w/ xHarbour ( .com ) vmPushSize
Posted: Wed Sep 18, 2013 7:38 pm
by TimStone
No ! Its with the latest FWH 13.08 updated release.
Sadly, I had to make a few "business decisions" regarding ongoing expenses, and the ROI for xHarbour ( .com ) was not sufficient to continue the subscription. So, I'm using the build from 8/21/2010. At the time all of the work seemed to be going into the Visual xHarbour which I was not using.
I also wanted to use Microsoft Visual Studio as the compiler. Therefore I now have a parallel version of my application built with Harbour and MSVC 2012.
Tim