Auto Pots Detection

Results 1 to 2 of 2
  1. #1
    Account Upgraded | Title Enabled! kenn14 is offline
    MemberRank
    Dec 2009 Join Date
    PhilippinesLocation
    359Posts

    Auto Pots Detection

    Good day!

    I have a problem with my basec, session, field, agent and login after i add the separated source code for Auto pots detection and suddenly after compilation this errors pops up.

    Basic error LNK2019: unresolved external symbol "public: long __thiscall GLCharacter::ReqDetectAP(int,unsigned long)" (?ReqDetectAP@GLCharacter@@QAEJHK@Z) referenced in function "public: long __thiscall GLCharacter::FrameMove(float,float)" (?FrameMove@GLCharacter@@QAEJMM@Z)
    Thank you in advanced for those people who will give some tips or ideas on how to solved this problem.
    Attached Thumbnails Attached Thumbnails untitled.jpg  


  2. #2
    Proficient Member Cabalife is offline
    MemberRank
    Apr 2017 Join Date
    179Posts

    Auto Pots Detection

    An unresolved symbol is one that you've declared somewhere but never defined. Usually, it means you've #included some third party library's header file but not told the linker where to find the corresponding .obj files for the library.

    Pretty common mistake is that you define a function as a standalone and forget the class selector in your .cpp file:
    You do this (wrong):
    void myFunc() { /* do stuff */ }
    Instead of
    this (right):
    void A::myFunc() { /* do stuff */ } –


    Sent from iPhone via Tapatalk send



Advertisement