ACTX.obj: unresolved external

Post Reply
Roberto Parisi
Posts: 116
Joined: Thu Oct 13, 2005 5:14 pm
Location: Italy

ACTX.obj: unresolved external

Post by Roberto Parisi »

Hi Antonio,
I need to rebuild FWH with vc2010 and I got the error:
fivehc32.lib(ACTX.obj) : error LNK2019: unresolved external symbol "void __cdecl operator delete(void *,unsigned int)

I can't find ani actx.c to recompile.

Thx in advance,
Roberto Parisi
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: ACTX.obj: unresolved external

Post by Antonio Linares »

Roberto,

You can implement delete this way:

Code: Select all

void __cdecl operator delete( void * p )
{
   hb_xfree( p );   
}
Anyhow please keep in mind that we don't provide FWH full source code, so you will not be able to rebuild it entirely.

If you need FWH for VC2010 then we can help you to build it.
regards, saludos

Antonio Linares
www.fivetechsoft.com
Roberto Parisi
Posts: 116
Joined: Thu Oct 13, 2005 5:14 pm
Location: Italy

Re: ACTX.obj: unresolved external

Post by Roberto Parisi »

Thx, I tried, but I can't compile it:
error C2061: syntax error : identifier 'delete'

I would be grateful if you could send me a VC210 build.

Thx in advance,
Roberto Parisi
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: ACTX.obj: unresolved external

Post by Antonio Linares »

Roberto,

Where to download Visual Studio 2010 from ?

Couldn't you use free Visual Studio Community 2015 ?
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: ACTX.obj: unresolved external

Post by Antonio Linares »

I found Visual Studio 2010 Express,

downloading it...
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: ACTX.obj: unresolved external

Post by Antonio Linares »

Roberto,

I just sent you the FWH libs by email
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply