Hi,
Thanks Vadim
But i dont know how to accomplish all this in the wengo code:

"To fix the remaining link errors with CxxFrameHandler3 and alloca use the
following:



.386
.model flat
;
; vc8-to-vc6 bridge assembly code.
;
; This module patches up gaps in order to a build a bridge to connect our
code
; compiled with the VC8 compiler and with the code in the VC6 runtime
library.
;
; Trampoline from ___CxxFrameHandler3 --> ___CxxFrameHandler
;
; ___CxxFrameHandler[n] is called for try/catch blocks (C++)
;
; See "How a C++ compiler implements exception handling"
; http://www.codeproject.com/cpp/exceptionhandler.asp

;

; MSVCRT.DLL
extrn __imp____CxxFrameHandler:dword ; external memory addr

public ___CxxFrameHandler3

___CxxFrameHandler3 proc near

; Jump indirect: Jumps to (*__imp__CxxFrameHandler)
jmp __imp____CxxFrameHandler ; Trampoline bounce

___CxxFrameHandler3 endp

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

extrn __chkstk:abs ; Absolute external constant

public __alloca_probe_16
__alloca_probe_16 proc near

arg_0 = dword ptr 8
push ecx
lea ecx, [esp+arg_0]
sub ecx, eax
and ecx, 0Fh
add eax, ecx
sbb ecx, ecx
or eax, ecx
pop ecx
jmp near ptr __chkstk

__alloca_probe_16 endp

public __alloca_probe_8
__alloca_probe_8 proc near
arg_0 = dword ptr 8
push ecx
lea ecx, [esp+arg_0]
sub ecx, eax
and ecx, 7
add eax, ecx
sbb ecx, ecx
or eax, ecx
pop ecx
jmp near ptr __chkstk

__alloca_probe_8 endp
"

Any help on this?
What do you recomend?
Thanks
CJC




From: Vadim Lebedev <[EMAIL PROTECTED]>
To: Christopher Jimenez <[EMAIL PROTECTED]>
CC: [EMAIL PROTECTED],  [email protected]
Subject: Re: [Wengophone-devel] Compiling Wengo with qt 4.2 and vs2003
Date: Mon, 05 Mar 2007 19:05:41 +0100

Christopher Jimenez wrote:

Yeah,
Non of the answers help.
Does anyone have succesfully compile wengo with qt 4.2 and vs 2003?
Or you need visual studio 2005?
Thanks
CJC

Please read following:

http://www.adras.com/Using-VS2005-to-ship-legacy-code-for-XP-and-Windows-2000.t6558-27.html

Vadim




From: Philippe BERNERY <[EMAIL PROTECTED]>
To: Christopher Jimenez <[EMAIL PROTECTED]>
CC: [email protected]
Subject: Re: [Wengophone-devel] Compiling Wengo with qt 4.2 and vs2003
Date: Mon, 5 Mar 2007 11:23:31 +0100

Hi Christopher,

Le 4 mars 07 à 04:50, Christopher Jimenez a écrit :

QAxContainer.lib(qaxtypes.obj) : error LNK2001: unresolved external symbol ___Cx
xFrameHandler3

Anyone have find this same error? Or know some kind of solutions_
Any help will be much appreciated


I never had this issue but googling on ___CxxFrameHandler3 may give you some answers.

Regards.

--
Philippe BERNERY <[EMAIL PROTECTED]>
http://dev.openwengo.org



_________________________________________________________________
Find what you need at prices you’ll love. Compare products and save at MSN® Shopping. http://shopping.msn.com/default/shp/?ptnrid=37,ptnrdata=24102&tcode=T001MSN20A0701


_______________________________________________
Wengophone-devel mailing list
[email protected]
http://dev.openwengo.com/mailman/listinfo/wengophone-devel




_________________________________________________________________
Mortgage rates as low as 4.625% - Refinance $150,000 loan for $579 a month. Intro*Terms https://www2.nextag.com/goto.jsp?product=100000035&url=%2fst.jsp&tm=y&search=mortgage_text_links_88_h27f6&disc=y&vers=743&s=4056&p=5117

_______________________________________________
Wengophone-devel mailing list
[email protected]
http://dev.openwengo.com/mailman/listinfo/wengophone-devel

Reply via email to