Warning W8057 source\compiler\genc.c 1546: Parameter 'szSourceFile' is
never used in function hb_writeEndInit
For Luiz: please, activate warning detection of your compiler! There is
an unused parameter. Can it be removed?
EMG
--
http://www.emagsoftware.it
http://www.emagsoftware.it/emgmusic
ht
Warning W8080 contrib\gtwvw\gtwvw.c 11987: 'hb_gt_wvw_Scroll' is declared
but never used
EMG
--
EMAG Software Homepage: http://www.emagsoftware.it
The EMG's ZX-Spectrum Page: http://www.emagsoftware.it/spectrum
The Best of Spectrum Games: http://www.emagsoftware.it/tbosg
The EMG Music page:
-Messaggio Originale-
Da: "Andi Jahja"
A: "Enrico Maria Giordano"
Cc: "xHarbour Developers Mailing List"
Data invio: lunedì 7 dicembre 2009 1.07
Oggetto: Re: [xHarbour-developers] Warning in gtclip.c
> > The following code from hb_gt_w32_s
On Sun, 6 Dec 2009 18:58:49 +0100
"Enrico Maria Giordano" wrote:
> The following code from hb_gt_w32_setClipboard() doesn't make sense, if I'm
> not wrong:
>
> DWORD lcid = (DWORD) GlobalLock( hglbLocale );
> lcid = LOCALE_USER_DEFAULT;
It translated into something by the following macros:
#d
The following code from hb_gt_w32_setClipboard() doesn't make sense, if I'm
not wrong:
DWORD lcid = (DWORD) GlobalLock( hglbLocale );
lcid = LOCALE_USER_DEFAULT;
EMG
--
EMAG Software Homepage: http://www.emagsoftware.it
The EMG's ZX-Spectrum Page: http://www.emagsoftware.it/spectrum
The Bes
Warning W8004 source\rtl\gtclip.c 132: 'lcid' is assigned a value that is
never used in function hb_gt_w32_setClipboard
EMG
--
EMAG Software Homepage: http://www.emagsoftware.it
The EMG's ZX-Spectrum Page: http://www.emagsoftware.it/spectrum
The Best of Spectrum Games: http://www.emagsoftwar
-Messaggio Originale-
Da: "Xharbour suporte"
A: "Enrico Maria Giordano"
Data invio: lunedì 17 agosto 2009 3.20
Oggetto: Re: [xHarbour-developers] Warning and errors in latest CVS
> Fixed
Thank you. The following warning are still present:
Warning W800
Warning W8004 source\tip\utils.c 94: 'minutes' is assigned a value that is
never used in function HB_FUN_TIP_TIMESTAMP
Warning W8004 source\tip\utils.c 94: 'hours' is assigned a value that is
never used in function HB_FUN_TIP_TIMESTAMP
source\tip\ftpcln.prg(166) Error E0030 Syntax error: "synta
Warning W8004 source\\rtl\\win32ole.prg 2852: 'pDisp' is assigned a value
that is never used in function HB_FUN_TOLEAUTO_ONERROR
EMG
--
EMAG Software Homepage: http://www.emagsoftware.it
The EMG's ZX-Spectrum Page: http://www.emagsoftware.it/spectrum
The Best of Spectrum Games: http://www.em
-Messaggio Originale-
Da: "Jose F. Gimenez"
A: "xHarbour Developers Mailing List"
Data invio: lunedì 15 giugno 2009 13.59
Oggetto: Re: [xHarbour-developers] Warning 1.6478
> It should be fixed now. Thanks for your input.
Yes, many thanks.
EMG
--
EMAG Soft
Enrico,
> Warning W8075 source\\rtl\\win32ole.prg 828: Suspicious pointer conversion
> in function hb_oleAnsiToSysString
It should be fixed now. Thanks for your input.
Regards,
Jose F. Gimenez
--
Crystal Reports - N
Warning W8075 source\\rtl\\win32ole.prg 828: Suspicious pointer conversion
in function hb_oleAnsiToSysString
EMG
--
EMAG Software Homepage: http://www.emagsoftware.it
The EMG's ZX-Spectrum Page: http://www.emagsoftware.it/spectrum
The Best of Spectrum Games: http://www.emagsoftware.it/tbosg
Warning W8080 source\rdd\wafunc.c 498: 'pDyn' is declared but never used in
function hb_rddSelectWorkAreaSymbol
EMG
--
EMAG Software Homepage: http://www.emagsoftware.it
The EMG's ZX-Spectrum Page: http://www.emagsoftware.it/spectrum
The Best of Spectrum Games: http://www.emagsoftware.it/tbo
Warning W8004 source\vm\hvm.c 3063: 'pLocal' is assigned a value that is
never used in function hb_vmExecute
EMG
--
EMAG Software Homepage: http://www.emagsoftware.it
The EMG's ZX-Spectrum Page: http://www.emagsoftware.it/spectrum
The Best of Spectrum Games: http://www.emagsoftware.it/tbosg
Warning W8004 source\vm\errorapi.c 916: '_pStack_' is assigned a value that
is never used in function hb_errNew
EMG
--
EMAG Software Homepage: http://www.emagsoftware.it
The EMG's ZX-Spectrum Page: http://www.emagsoftware.it/spectrum
The Best of Spectrum Games: http://www.emagsoftware.it/tbo
Warning W8004 source\rtl\filesys.c 893: 'hRet' is assigned a value that is
never used in function hb_fsOpenProcess
I already had a look at it but I'm not sure how to pacify the warning.
EMG
--
EMAG Software Homepage: http://www.emagsoftware.it
The EMG's ZX-Spectrum Page: http://www.emagsoft
> These are my settings:
>
> SET CFLAGS=/Od /EHsc /RTC1 /MTd /Gs /GS /Gy /GR /Zi /DHB_FM_STATISTICS
> /D_CRT_SECURE_NO_DEPRECATE /D_CRT_NONSTDC_NO_DEPRECATE
> SET LFLAGS=-DEBUG -DEBUGTYPE:CV
Sorry, this is non-standard as per CVS. Please look into MSVC docs ;-)
--
Andi
--
Hey Andi,
>> When compiling with MSVC there are many warnings like these:
>> cl : Command line warning D9025 : overriding '/O1' with '/Od'
> You can always disable a certain warning in MSVC by warning number, eg.
> -wd9025 (meaning "warning 9025 disabled").
Ok.
> But how did you arrive at such w
On Sun, 11 Jan 2009 11:18:50 +0100
"Patrick Mast" wrote:
> Hello,
>
> When compiling with MSVC there are many warnings like these:
> cl : Command line warning D9025 : overriding '/O1' with '/Od'
>
> Can we avoid them?
> Thanks!
>
> Andi? ;-)
You can always disable a certain warning in MSVC by
Hello,
When compiling with MSVC there are many warnings like these:
cl : Command line warning D9025 : overriding '/O1' with '/Od'
Can we avoid them?
Thanks!
Andi? ;-)
Patrick
--
Check out the new SourceForge.net Market
-Messaggio Originale-
Da: "Enrico Maria Giordano" <[EMAIL PROTECTED]>
A: "Xharbour-Developers"
Data invio: venerdì 28 novembre 2008 9.37
Oggetto: [xHarbour-developers] Warning and an error in speedtst.prg
> SPEEDTST.prg(56) Error E0003 Duplicate variable
SPEEDTST.prg(56) Error E0003 Duplicate variable declaration: 'M_C'
SPEEDTST.prg(462) Warning W0003 Variable: 'X' declared but not used in
function: 'F0(459)'
SPEEDTST.prg(468) Warning W0003 Variable: 'S' declared but not used in
function: 'F2(465)'
SPEEDTST.prg(471) Warning W0003 Variable: 'A
d then give an error inside
hbsetup.ch?
Enrico Maria Giordano wrote:
> -Messaggio Originale-
> Da: "Eduardo Fernandes" <[EMAIL PROTECTED]>
> A: "Xharbour-Developers" ;
> "Enrico Maria Giordano" <[EMAIL PROTECTED]>
> Data invi
-Messaggio Originale-
Da: "Eduardo Fernandes" <[EMAIL PROTECTED]>
A: "Xharbour-Developers" ;
"Enrico Maria Giordano" <[EMAIL PROTECTED]>
Data invio: domenica 13 luglio 2008 19.01
Oggetto: Re: [xHarbour-developers] Warning
> Enrico,
>
Enrico,
Strange, this flag is not defined by default. Maybe you already have defined on
your local makefile.
regards,
Eduardo
--- Em sáb, 12/7/08, Enrico Maria Giordano <[EMAIL PROTECTED]> escreveu:
> De: Enrico Maria Giordano <[EMAIL PROTECTED]>
> Assunto: [xHarbour-d
include\hbsetup.ch(88) Warning W0001 Redefinition or duplicate definition
of #define HB_EXT_INKEY
EMG
--
EMAG Software Homepage: http://www.emagsoftware.it
The EMG's ZX-Spectrum Page: http://www.emagsoftware.it/spectrum
The Best of Spectrum Games: http://www.emagsoftware.it/tbosg
The EMG Mu
26 matches
Mail list logo