Search found 48 matches: chkstk

Return to advanced search

Re: Compilar código Harbour con gcc en 64 BITS

He instalado MinGW para 63 bits, versión: \mingw-w64\x86_64-8.1.0-posix-sjlj-rt_v6-rev0 Y utilizo para compilar el siguiente BAT: cls@set HB_INSTALL=C:\harbour64%HB_INSTALL%\bin\harbour %1.prg -n -i%HB_INSTALL%\include -iC:\MinGW-64\mingw32\i686-w64-mingw32\include  gcc -Wall -o%1.exe %1.c -I%H...
by Verhoven
Sat May 26, 2018 11:14 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Compilar código Harbour con gcc en 64 BITS
Replies: 8
Views: 2006

Error 9015

... 119 and FWH 13.02. Is this verison of xharbour compatible with this verison of FWH? In the past I've had to link send32.lib and mem32.lib and chkstk.prg. Are these files still required or do I need updated FWH libs/files to work with this verison of FWH? Any way to track down where this error ...
by Randal
Tue Mar 15, 2016 6:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error 9015
Replies: 4
Views: 837

New FTDN March/Marzo 2013 (FWH 13.03)

March 2013 ============ * Enhancement: function ReadComm() has been enhanced to use an optional timeout value expressed in milliseconds: ReadComm(<nComm>,@<cBuffer> [,<nTimeout>] ) http://forums.fivetechsupport.com/viewtopic.php?p=140480#p140480 * New: samples/xmlreader.prg provide...
by Antonio Linares
Thu Mar 28, 2013 11:33 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN March/Marzo 2013 (FWH 13.03)
Replies: 0
Views: 2502

Re: Unresolved external symbol '__chkstk (solved)

George, The differences are explained in Harbour/doc/xhb-diff.txt I have uploaded it to: https://code.google.com/p/harbour-and-xharbour-builds/downloads/detail?name=xhb-diff.txt Regarding the make utility, Harbour provides a hbmk2.exe utility that automatizes the creation of an EXE, ...
by Antonio Linares
Sun Mar 17, 2013 10:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unresolved external symbol '__chkstk (solved)
Replies: 15
Views: 3164

Re: Unresolved external symbol '__chkstk (solved)

Antonio, For some time I have been considering changing from [x] Harbour to harbour. However, due to the ease of integrating different type of files and the fact that I do not have to use any *.mak file, I have decided to continue using [x] Harbour. What other(s) software do you recommend that I cou...
by George
Sun Mar 17, 2013 4:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unresolved external symbol '__chkstk (solved)
Replies: 15
Views: 3164

Re: Unresolved external symbol '__chkstk (solved)

Frank, It seems to me as Harbour also provide the same funcionality on DbUseArea(), see this from Harbour: As you see, nConnection parameter is there also. /* dbUseArea( [<lNewArea>], [<cDriver>], <cName>, [<xcAlias>], [<lShared>], [<lReadonly>], [<cCodePage>...
by Antonio Linares
Sun Mar 17, 2013 3:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unresolved external symbol '__chkstk (solved)
Replies: 15
Views: 3164

Re: Unresolved external symbol '__chkstk (solved)

Frank,

AFAIK there is no comparable replacement for Visual xDebugger


Have you used the FWH built in debugger ? To use it simply use the /b flag to compile your PRGs. In example:

buildh.bat tutor02 /b

What missing features do you find comparing it with Visual xDebugger ? thanks
by Antonio Linares
Sun Mar 17, 2013 3:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unresolved external symbol '__chkstk (solved)
Replies: 15
Views: 3164

Re: Unresolved external symbol '__chkstk (solved)

Frank,

We have solved it moving FWH functions GetProcAddress() and GetLastError() to harbour.prg, so they don't get included for xHarbour :-)

It will be available in next FWH build.
by Antonio Linares
Sun Mar 17, 2013 3:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unresolved external symbol '__chkstk (solved)
Replies: 15
Views: 3164

Re: Unresolved external symbol '__chkstk (solved)

Frank, The problem with these two warnings is only for xHarbour, with Harbour is fine as Harbour does not implement these functions: xLINK: warning: Symbol 'C:\xHBJan13\lib\xhb.lib(dllcall.obj)->_HB_FUN_GETPROCADDRESS previously defined at C:\fwh13_02\lib\FiveHCM.lib(GETPROCA.obj)' is multiply de...
by Antonio Linares
Sun Mar 17, 2013 3:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unresolved external symbol '__chkstk (solved)
Replies: 15
Views: 3164

Re: Unresolved external symbol '__chkstk (solved)

Frank, This enhancement on Class TScintilla solves the call to __chkstk() when using MSVC compiler: FWH/source/classes/scintila.prg #define BUFSIZE 131072HB_FUNC( SCI_OPENFILE ){   HWND hWnd = ( HWND ) hb_parnl( 1 );   char * fileName = ( char * &...
by Antonio Linares
Sun Mar 17, 2013 2:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unresolved external symbol '__chkstk (solved)
Replies: 15
Views: 3164

Re: Unresolved external symbol '__chkstk (solved)

Elvira, tried to switch to Harbour very hard, but there are some drawbacks, like - Using RMDBFCDX for local users, it's very fast, I don't want to miss it - AFAIK there is no comparable replacement for Visual xDebugger - I'm using some function only available in xHarbour, e.g. DbUseArea( [&l...
by frose
Sun Mar 17, 2013 10:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unresolved external symbol '__chkstk (solved)
Replies: 15
Views: 3164

Re: Unresolved external symbol '__chkstk

Antonio, George,

with the c-function 'void _chkstk' it's linking again without error :D

Thank you very much
by frose
Sun Mar 17, 2013 10:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unresolved external symbol '__chkstk (solved)
Replies: 15
Views: 3164

Re: Unresolved external symbol '__chkstk

George,

I recommend you to change to Harbour.

You will quit having those issues with xHarbour.com and their lack of support. Timm, for example, moved to Harbour and he is very happy and proud of that change.
by elvira
Sun Mar 17, 2013 10:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unresolved external symbol '__chkstk (solved)
Replies: 15
Views: 3164
Next

Return to advanced search