Re: [Harbour] How can i replace module getsys?

2009-04-29 Thread Adam Lubszczyk

Hi!

Massimo Belgrano-3 wrote:
 
 How can i replace module getsys?
 i have simply passed to hbmk2 my personalised getsys.prg (basically
 from original getsys)
 

Copy source getsys.prg to Your program folder.
Modify it,  do not delete not modifed function from source
(in your copy of getsys.prg must be all function from original).
To Your program add line: SET PROCEDURE TO getsys.prg 

Adam
-- 
View this message in context: 
http://www.nabble.com/How-can-i-replace-module-getsys--tp23282710p23291515.html
Sent from the Harbour - Dev mailing list archive at Nabble.com.

___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] How can i replace module getsys?

2009-04-29 Thread Massimo Belgrano
So i have tried copy \source\drt\getsys53.prg and add my dummyfunc()
now i compile fine but when running i receive
Error base/1004 no exported method: HB_GTINFO


2009/4/29 Massimo Belgrano mbelgr...@deltain.it:
 compiling a sample with
 hbmk2 mysource.prg getsys.prg errsys.prg -m -w0 -gtwvt -gui
 getsys is from source\rtl\getsys.prg with a dummy func added to local
 getsys.prg
 i think that my problem is due to getsys53.prg instead getsys.prg

___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] How can i replace module getsys?

2009-04-29 Thread Massimo Belgrano
compiling a sample with
hbmk2 mysource.prg getsys.prg errsys.prg -m -w0 -gtwvt -gui
getsys is from source\rtl\getsys.prg with a dummy func added to local
getsys.prg
i think that my problem is due to getsys53.prg instead getsys.prg

c:/harbour/mingw/lib/libhbrtl.a(getsys.o):getsys.c:(.text+0x40): multiple defini
tion of `HB_FUN_READMODAL'
getsys.o:getsys.c:(.text+0xa0): first defined here
c:/harbour/mingw/lib/libhbrtl.a(getsys.o):getsys.c:(.text+0x350): multiple defin
ition of `HB_FUN_GETREADER'
getsys.o:getsys.c:(.text+0xc0): first defined here
c:/harbour/mingw/lib/libhbrtl.a(getsys.o):getsys.c:(.text+0x3c0): multiple defin
ition of `HB_FUN_GETACTIVE'
getsys.o:getsys.c:(.text+0xe0): first defined here
c:/harbour/mingw/lib/libhbrtl.a(getsys.o):getsys.c:(.text+0x500): multiple defin
ition of `HB_FUN_GETDOSETKEY'
getsys.o:getsys.c:(.text+0x100): first defined here
c:/harbour/mingw/lib/libhbrtl.a(getsys.o):getsys.c:(.text+0x5e0): multiple defin
ition of `HB_FUN_GETAPPLYKEY'
getsys.o:getsys.c:(.text+0x120): first defined here
c:/harbour/mingw/lib/libhbrtl.a(getsys.o):getsys.c:(.text+0x710): multiple defin
ition of `HB_FUN_GETPREVALIDATE'
getsys.o:getsys.c:(.text+0x140): first defined here
c:/harbour/mingw/lib/libhbrtl.a(getsys.o):getsys.c:(.text+0x800): multiple defin
ition of `HB_FUN_GETPOSTVALIDATE'
getsys.o:getsys.c:(.text+0x160): first defined here
c:/harbour/mingw/lib/libhbrtl.a(getsys.o):getsys.c:(.text+0x8f0): multiple defin
ition of `HB_FUN_READEXIT'
getsys.o:getsys.c:(.text+0x180): first defined here
c:/harbour/mingw/lib/libhbrtl.a(getsys.o):getsys.c:(.text+0x950): multiple defin
ition of `HB_FUN_READINSERT'
getsys.o:getsys.c:(.text+0x1a0): first defined here
c:/harbour/mingw/lib/libhbrtl.a(getsys.o):getsys.c:(.text+0x9b0): multiple defin
ition of `HB_FUN_UPDATED'
getsys.o:getsys.c:(.text+0x1c0): first defined here
c:/harbour/mingw/lib/libhbrtl.a(getsys.o):getsys.c:(.text+0xa80): multiple defin
ition of `HB_FUN___KILLREAD'
getsys.o:getsys.c:(.text+0x1e0): first defined here
c:/harbour/mingw/lib/libhbrtl.a(getsys.o):getsys.c:(.text+0xb50): multiple defin
ition of `HB_FUN_READUPDATED'
getsys.o:getsys.c:(.text+0x200): first defined here
c:/harbour/mingw/lib/libhbrtl.a(getsys.o):getsys.c:(.text+0xca0): multiple defin
ition of `HB_FUN_READKILL'
getsys.o:getsys.c:(.text+0x220): first defined here
c:/harbour/mingw/lib/libhbrtl.a(getsys.o):getsys.c:(.text+0xdf0): multiple defin
ition of `HB_FUN_READFORMAT'
getsys.o:getsys.c:(.text+0x240): first defined here
c:/harbour/mingw/lib/libhbrtl.a(getsys.o):getsys.c:(.text+0xf30): multiple defin
ition of `HB_FUN___SETFORMAT'
getsys.o:getsys.c:(.text+0x260): first defined here
c:/harbour/mingw/lib/libhbrtl.a(getsys.o):getsys.c:(.text+0x1070): multiple defi
nition of `HB_FUN_RANGECHECK'
getsys.o:getsys.c:(.text+0x280): first defined here
arcadel5.o:arcadel5.c:(.data+0x1738): undefined reference to `HB_FUN_ERRORMENU'
collect2: ld returned 1 exit status
hbmk: Error: Running linker. 1:


2009/4/29 Adam Lubszczyk ada...@poczta.onet.pl:

 Hi!

 Massimo Belgrano-3 wrote:

 How can i replace module getsys?
 i have simply passed to hbmk2 my personalised getsys.prg (basically
 from original getsys)


 Copy source getsys.prg to Your program folder.
 Modify it,  do not delete not modifed function from source
 (in your copy of getsys.prg must be all function from original).
 To Your program add line: SET PROCEDURE TO getsys.prg

 Adam
 --
 View this message in context: 
 http://www.nabble.com/How-can-i-replace-module-getsys--tp23282710p23291515.html
 Sent from the Harbour - Dev mailing list archive at Nabble.com.

 ___
 Harbour mailing list
 Harbour@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour




-- 
Massimo Belgrano
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] How can i replace module getsys?

2009-04-28 Thread Massimo Belgrano
How can i replace module getsys?
i have simply passed to hbmk2 my personalised getsys.prg (basically
from original getsys)

hbrtl.lib(getsys.obj) : error LNK2005: _HB_FUN_READMODAL già definito
in getsys.obj
hbrtl.lib(getsys.obj) : error LNK2005: _HB_FUN_GETREADER già definito
in getsys.obj
hbrtl.lib(getsys.obj) : error LNK2005: _HB_FUN_GETACTIVE già definito
in getsys.obj
hbrtl.lib(getsys.obj) : error LNK2005: _HB_FUN_GETDOSETKEY già
definito in getsys.obj
hbrtl.lib(getsys.obj) : error LNK2005: _HB_FUN_GETAPPLYKEY già
definito in getsys.obj
hbrtl.lib(getsys.obj) : error LNK2005: _HB_FUN_GETPREVALIDATE già
definito in getsys.obj
hbrtl.lib(getsys.obj) : error LNK2005: _HB_FUN_GETPOSTVALIDATE già
definito in getsys.obj
hbrtl.lib(getsys.obj) : error LNK2005: _HB_FUN_READEXIT già definito
in getsys.obj
hbrtl.lib(getsys.obj) : error LNK2005: _HB_FUN_READINSERT già definito
in getsys.obj
hbrtl.lib(getsys.obj) : error LNK2005: _HB_FUN_UPDATED già definito in
getsys.obj
hbrtl.lib(getsys.obj) : error LNK2005: _HB_FUN___KILLREAD già definito
in getsys.obj
hbrtl.lib(getsys.obj) : error LNK2005: _HB_FUN_READUPDATED già
definito in getsys.obj
hbrtl.lib(getsys.obj) : error LNK2005: _HB_FUN_READKILL già definito
in getsys.obj
hbrtl.lib(getsys.obj) : error LNK2005: _HB_FUN_READFORMAT già definito
in getsys.obj
hbrtl.lib(getsys.obj) : error LNK2005: _HB_FUN___SETFORMAT già
definito in getsys.obj
hbrtl.lib(getsys.obj) : error LNK2005: _HB_FUN_RANGECHECK già definito
in getsys.obj
arcahhd.exe : fatal error LNK1169: rilevato uno o più simboli definiti più volte
-- 
Massimo Belgrano
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour