linker error: unresolve external

Hello,

I was compiling a project, and this project has a unit called Gamespaceframe, the header file was as follow:

:
#include "Advdgrid.hpp"
:

and the .cpp was as follow:

:
#Pragma link "Advdgrid"
:

When I recompiled this project, I got this linker error:

Linker error: Unresolved external '__Fastcall_Advgrid::TAdvstringGrid::AutosizeCol(const int, const int) referenced from C:MHSSGamespaceframe.OBJ.

Any help or comment is appreciated,

Thanks in advance,

Regards,

David.

Comments

  • From your message, i notice this:
    __Fastcall_Advgrid::TAdvstringGrid::AutosizeCol(const int, const int) referenced from C:MHSSGamespaceframe.OBJ

    is the __Fastcall use 'F' instead 'f'?? because we know that C++ is case sensitive and different character cause different interpretation of compiler. C++ Builder use __fastcall not __Fastcall.

    next, i notice that the __Fastcall and _Advgrid is linked as a word. If it is, then compiler will consider it as one symbol. Maybe you can give a space between them.

    Hope it help you
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories

In this Discussion