what means:
Assembling: Mail.asm
Mail.asm(56) : error A2004: symbol type conflict : wsprintfA
Mail.asm(56) : error A2192: symbol language attribute conflict : wsprintfA
Make error(s) occured.
when I 'Buil' this application where line 56 , I have:
EXTRN wsprintfA:PROC
merci
Assembling: Mail.asm
Mail.asm(56) : error A2004: symbol type conflict : wsprintfA
Mail.asm(56) : error A2192: symbol language attribute conflict : wsprintfA
Make error(s) occured.
when I 'Buil' this application where line 56 , I have:
EXTRN wsprintfA:PROC
merci
Hi Franlou,
Assuming from the error number you are using MASM32, I think wsprintfA is defined in Windows.inc as:
wsprintfA PROTO C :DWORD,:VARARG
so if you include that file you should not declare it as an external function. Or give it the same calling convention and parameter difinitions.
Assuming from the error number you are using MASM32, I think wsprintfA is defined in Windows.inc as:
wsprintfA PROTO C :DWORD,:VARARG
so if you include that file you should not declare it as an external function. Or give it the same calling convention and parameter difinitions.
symbol language attribute conflict
Two declarations for the same symbol have conflicting language attributes (such as C and PASCAL). The attributes should be identical or compatible.
Two declarations for the same symbol have conflicting language attributes (such as C and PASCAL). The attributes should be identical or compatible.