Anyone seen an error like this before with the @@ in?

Post Reply
jono659
Posts: 59
Joined: Sat Mar 24, 2018 1:01 pm

Anyone seen an error like this before with the @@ in?

Post by jono659 » Wed Apr 25, 2018 11:31 am

Playing with fishing at the moment, can't trace actually where this error is getting thrown, anyone seen anything like it before?

Error LNK2019 unresolved external symbol "void cdecl fishingutils::FishingAction(class CCharEntity *,enum FISHACTION,unsigned short,unsigned int)" (?FishingAction@fishingutils@@YAXPAVCCharEntity@@W4FISHACTION@@GI@Z) referenced in function "void cdecl SmallPacket0x066(struct map_session_data_t *,class CCharEntity *,class CBasicPacket)" (?SmallPacket0x066@@YAXPAUmap_session_data_t@@PAVCCharEntity@@VCBasicPacket@@@Z)

Avatarati
Posts: 53
Joined: Mon Jun 30, 2014 2:51 pm

Re: Anyone seen an error like this before with the @@ in?

Post by Avatarati » Wed Apr 25, 2018 4:10 pm

Unresolved external error can mean a few different things. Most likely something is declared but not defined. In your case, I'd be looking at that fishing action function and making sure I call it correctly. I think missing a colon in the scope resolution operator will trigger that as well. : vs ::

See this:

https://stackoverflow.com/questions/992 ... ject-files

jono659
Posts: 59
Joined: Sat Mar 24, 2018 1:01 pm

Re: Anyone seen an error like this before with the @@ in?

Post by jono659 » Thu Apr 26, 2018 1:37 am

Many thanks.

Post Reply