NTK and The NTK Project
are properties of Jn Dechereux
Home | Documentation | FAQ.

Vanilla 1.1.8 is a product of Lussumo. More Information: Documentation, Community Support.

Welcome Guest!
Want to take part in these discussions? If you have an account, sign in now.
If you don't have an account, apply for one now.
    •  
      CommentAuthorReece
    • CommentTimeJul 31st 2013
     
    Hi everyone

    I modified menueasy and ran the MK.BAT file. There is an apparent Unresolved External missing. Here is the output :

    // -------- quote --------

    C:\ASco32\intro>mk menueasy
    xHarbour Compiler build 1.2.1 (SimpLex) (Rev. 6406)
    Copyright 1999-2009, http://www.xharbour.org http://www.harbour-project.org/

    Compiling 'menueasy.PRG'...
    Lines 450, Functions/Procedures 6
    Generating C source output to 'menueasy.c'...
    Done.

    Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland
    menueasy.c:

    Press any key to continue ou CTRL+C to stop this process now...

    Turbo Incremental Link 5.00 Copyright (c) 1997, 2000 Borland
    Error: Unresolved external '_HB_FUN___DBGENTRY' referenced from C:\ASCO32\INTRO\MENUEASY.OBJ

    // -------- unquote --------

    Any ideas?

    Reece
    •  
      CommentAuthorAbbougaga
    • CommentTimeJul 31st 2013
     
    Hi Reece,

    It just means the '__DBGENTRY' function is not part of your program and has not been found in any static librairies defined into the MK.BAT builder. So, either you remove each call to this func from your source code - or - you adjust the link section of your MK.Bat in order to specify the fullpathname of the static library that contains __dbgentry().

    Hope this helps.
    Cheers,
    Ab
    •  
      CommentAuthorxbasefan
    • CommentTimeJul 31st 2013
     
    hmmm, sounds like the debug option is enabled somewhere. imo, you should check first your mk.bat and if so, remove any /b flags.
    wilson
    •  
      CommentAuthorLucas
    • CommentTimeAug 1st 2013
     
    +1 Wilson. I've already encountered this problem a couple months ago when porting an old console app to gui. I just had to remove -b options from the compilation batch and hey presto!

    Lucas
    •  
      CommentAuthorReece
    • CommentTimeAug 6th 2013
     
    Thanks guys. I removed /b from the batch file and the problem vanished.