Go Back   Rhinocerus > Newsgroup > Newsgroup comp.lang.* 1 > Newsgroup comp.lang.xharbour

Reply
 
Thread Tools Display Modes
  #1 (permalink)  
Old 05-23-2011, 01:27 PM
macgyber
Guest
 
Posts: n/a
Default libreria caos.lib como la paso de 16 bits a 32 bits

tengo varios programas hechos en clipper y he usado la libreria
caos.lib de grupo eidos
he conseguido los fuentes pero no se como generarla para 32 bits, por
lo que me han dicho lo puedo hacer con borland c ++,
tengo instalada la version 5.5 para usarla con xailer 2 y xharbour

atentos saludos desde uruguay
Reply With Quote
Alt Today
Advertising
 
and become member of Rhinocerus
Standard Sponsored Links

  #2 (permalink)  
Old 05-23-2011, 02:06 PM
dlzc
Guest
 
Posts: n/a
Default Re: libreria caos.lib como la paso de 16 bits a 32 bits

On May 23, 6:27*am, macgyber <americasoftw...@gmail.com> wrote:
> tengo varios programas hechos en clipper y he usado la libreria
> caos.lib de grupo eidos
> he conseguido los fuentes pero no se como generarla para 32 bits, por
> lo que me han dicho lo puedo hacer con borland c ++,
> tengo instalada la version 5.5 para usarla con xailer 2 y xharbour
>
> atentos saludos desde uruguay


English:
You cannot use 16-bit libraries in a 32-bit binary.

You can write a Clipper program using this library. Have your
(x)Harbour program call it.

Or write your own functions to do those things.

Spanish (Google translate):
Usted no puede usar las bibliotecas de 16 bits en un sistema binario
de 32 bits.

Usted puede escribir un programa Clipper usando esta biblioteca. Haga
que su (x) del programa Puerto llaman.

O escribir sus propias funciones para hacer esas cosas.

David A. Smith
Reply With Quote
  #3 (permalink)  
Old 05-23-2011, 03:37 PM
macgyber
Guest
 
Posts: n/a
Default Re: libreria caos.lib como la paso de 16 bits a 32 bits

On 23 mayo, 11:06, dlzc <dl...@cox.net> wrote:
> On May 23, 6:27*am, macgyber <americasoftw...@gmail.com> wrote:
>
> > tengo varios programas hechos en clipper y he usado la libreria
> > caos.lib de grupo eidos
> > he conseguido los fuentes pero no se como generarla para 32 bits, por
> > lo que me han dicho lo puedo hacer con borland c ++,
> > tengo instalada la version 5.5 para usarla con xailer 2 y xharbour

>
> > atentos saludos desde uruguay

>
> English:
> You cannot use 16-bit libraries in a 32-bit binary.
>
> You can write a Clipper program using this library. *Have your
> (x)Harbour program call it.
>
> Or write your own functions to do those things.
>
> Spanish (Google translate):
> Usted no puede usar las bibliotecas de 16 bits en un sistema binario
> de 32 bits.
>
> Usted puede escribir un programa Clipper usando esta biblioteca. Haga
> que su (x) del programa Puerto llaman.
>
> O escribir sus propias funciones para hacer esas cosas.
>
> David A. Smith


I need convert 16bit library to 32bit.
I have borland c++ 5.5 to do that.
as i can do this ?
Reply With Quote
  #4 (permalink)  
Old 05-23-2011, 05:37 PM
dlzc
Guest
 
Posts: n/a
Default Re: libreria caos.lib como la paso de 16 bits a 32 bits

Dear macgyber:

On May 23, 8:37*am, macgyber <americasoftw...@gmail.com> wrote:
> On 23 mayo, 11:06, dlzc <dl...@cox.net> wrote:
> > On May 23, 6:27*am, macgyber <americasoftw...@gmail.com> wrote:

>
> > > tengo varios programas hechos en clipper y he
> > > usado la libreria caos.lib de grupo eidos
> > > he conseguido los fuentes pero no se como
> > > generarla para 32 bits, por lo que me han
> > > dicho lo puedo hacer con borland c ++,
> > > tengo instalada la version 5.5 para usarla con
> > > xailer 2 y xharbour

>
> > > atentos saludos desde uruguay

>
> > English:
> > You cannot use 16-bit libraries in a 32-bit binary.

>
> > You can write a Clipper program using this
> > library. *Have your (x)Harbour program call it.

>
> > Or write your own functions to do those things.

>
> > Spanish (Google translate):
> > Usted no puede usar las bibliotecas de 16 bits
> > en un sistema binario de 32 bits.

>
> > Usted puede escribir un programa Clipper
> > usando esta biblioteca. Haga que su (x) de
> >l programa Puerto llaman.

>
> > O escribir sus propias funciones para hacer
> > esas cosas.

>
> I need convert 16bit library to 32bit.
> I have borland c++ 5.5 to do that.
> as i can do this ?


No. You need the source code to do this. The source code to the
library.

What I have done:
- compile without the library
- note the function names that are missing (may have "hbfunc" added to
the beginning of the name)
- write wrapper functions with those names, that use only the
functions built into (x)harbour.
- Link the module with these wrappers.

You can add more and change what your wrappers do, and not have to
visit all your code.

Good luck!

David A. Smith
Reply With Quote
  #5 (permalink)  
Old 05-23-2011, 06:00 PM
Ella-Ilona Stern
Guest
 
Posts: n/a
Default Re: libreria caos.lib como la paso de 16 bits a 32 bits

Macgyber,

On 23 mai, 16:27, macgyber <americasoftw...@gmail.com> wrote:
> tengo varios programas hechos en clipper y he usado la libreria
> caos.lib de grupo eidos
> he conseguido los fuentes pero no se como generarla para 32 bits, por
> lo que me han dicho lo puedo hacer con borland c ++,
> tengo instalada la version 5.5 para usarla con xailer 2 y xharbour
>
> atentos saludos desde uruguay


Lo siento, no he usado ni Borland C, ni Xailer.

Si tiene todo el codigo fuente para la libreria, y le gustaria probar
xBuilder, aquí se encuentran unas peliculas para mostrar, como se
genera un LIB y como se agrega con un programa.

http://www.youtube.com/xharbourmovie...1F7656B3E8D3C3

Ella
Reply With Quote
  #6 (permalink)  
Old 05-23-2011, 06:18 PM
macgyber
Guest
 
Posts: n/a
Default Re: libreria caos.lib como la paso de 16 bits a 32 bits

On 23 mayo, 14:37, dlzc <dl...@cox.net> wrote:
> Dear macgyber:
>
> On May 23, 8:37*am, macgyber <americasoftw...@gmail.com> wrote:
>
>
>
>
>
>
>
>
>
> > On 23 mayo, 11:06, dlzc <dl...@cox.net> wrote:
> > > On May 23, 6:27*am, macgyber <americasoftw...@gmail.com> wrote:

>
> > > > tengo varios programas hechos en clipper y he
> > > > usado la libreria caos.lib de grupo eidos
> > > > he conseguido los fuentes pero no se como
> > > > generarla para 32 bits, por lo que me han
> > > > dicho lo puedo hacer con borland c ++,
> > > > tengo instalada la version 5.5 para usarla con
> > > > xailer 2 y xharbour

>
> > > > atentos saludos desde uruguay

>
> > > English:
> > > You cannot use 16-bit libraries in a 32-bit binary.

>
> > > You can write a Clipper program using this
> > > library. *Have your (x)Harbour program call it.

>
> > > Or write your own functions to do those things.

>
> > > Spanish (Google translate):
> > > Usted no puede usar las bibliotecas de 16 bits
> > > en un sistema binario de 32 bits.

>
> > > Usted puede escribir un programa Clipper
> > > usando esta biblioteca. Haga que su (x) de
> > >l programa Puerto llaman.

>
> > > O escribir sus propias funciones para hacer
> > > esas cosas.

>
> > I need convert 16bit library to 32bit.
> > I have borland c++ 5.5 to do that.
> > as i can do this ?

>
> No. *You need the source code to do this. *The source code to the
> library.
>
> What I have done:
> - compile without the library
> - note the function names that are missing (may have "hbfunc" added to
> the beginning of the name)
> - write wrapper functions with those names, that use only the
> functions built into (x)harbour.
> - Link the module with these wrappers.
>
> You can add more and change what your wrappers do, and not have to
> visit all your code.
>
> Good luck!
>
> David A. Smith


I have de code of the library

Reply With Quote
  #7 (permalink)  
Old 05-23-2011, 06:26 PM
Qatan
Guest
 
Posts: n/a
Default Re: libreria caos.lib como la paso de 16 bits a 32 bits

Hello David,

I think I understand Macgyber.
He has the source code for that library.
He wants to know how to build it 32bits from the sources.

Qatan

"dlzc" <dlzc1@cox.net> wrote in message
news:b9bc14c3-a447-4339-8515-be0662015c26@x38g2000pri.googlegroups.com...
Dear macgyber:

On May 23, 8:37 am, macgyber <americasoftw...@gmail.com> wrote:
> On 23 mayo, 11:06, dlzc <dl...@cox.net> wrote:
> > On May 23, 6:27 am, macgyber <americasoftw...@gmail.com> wrote:

>
> > > tengo varios programas hechos en clipper y he
> > > usado la libreria caos.lib de grupo eidos
> > > he conseguido los fuentes pero no se como
> > > generarla para 32 bits, por lo que me han
> > > dicho lo puedo hacer con borland c ++,
> > > tengo instalada la version 5.5 para usarla con
> > > xailer 2 y xharbour

>
> > > atentos saludos desde uruguay

>
> > English:
> > You cannot use 16-bit libraries in a 32-bit binary.

>
> > You can write a Clipper program using this
> > library. Have your (x)Harbour program call it.

>
> > Or write your own functions to do those things.

>
> > Spanish (Google translate):
> > Usted no puede usar las bibliotecas de 16 bits
> > en un sistema binario de 32 bits.

>
> > Usted puede escribir un programa Clipper
> > usando esta biblioteca. Haga que su (x) de
> >l programa Puerto llaman.

>
> > O escribir sus propias funciones para hacer
> > esas cosas.

>
> I need convert 16bit library to 32bit.
> I have borland c++ 5.5 to do that.
> as i can do this ?


No. You need the source code to do this. The source code to the
library.

What I have done:
- compile without the library
- note the function names that are missing (may have "hbfunc" added to
the beginning of the name)
- write wrapper functions with those names, that use only the
functions built into (x)harbour.
- Link the module with these wrappers.

You can add more and change what your wrappers do, and not have to
visit all your code.

Good luck!

David A. Smith


Reply With Quote
  #8 (permalink)  
Old 05-23-2011, 06:48 PM
dlzc
Guest
 
Posts: n/a
Default Re: libreria caos.lib como la paso de 16 bits a 32 bits

Dear macgyber:

On May 23, 11:18*am, macgyber <americasoftw...@gmail.com> wrote:
> On 23 mayo, 14:37, dlzc <dl...@cox.net> wrote:
> > On May 23, 8:37*am, macgyber <americasoftw...@gmail.com> wrote:

>
> > > On 23 mayo, 11:06, dlzc <dl...@cox.net> wrote:
> > > > On May 23, 6:27*am, macgyber <americasoftw...@gmail.com> wrote:

>
> > > > > tengo varios programas hechos en clipper y he
> > > > > usado la libreria caos.lib de grupo eidos
> > > > > he conseguido los fuentes pero no se como
> > > > > generarla para 32 bits, por lo que me han
> > > > > dicho lo puedo hacer con borland c ++,
> > > > > tengo instalada la version 5.5 para usarla con
> > > > > xailer 2 y xharbour

>
> > > > > atentos saludos desde uruguay

>
> > > > English:
> > > > You cannot use 16-bit libraries in a 32-bit binary.

>
> > > > You can write a Clipper program using this
> > > > library. *Have your (x)Harbour program call it.

>
> > > > Or write your own functions to do those things.

>
> > > > Spanish (Google translate):
> > > > Usted no puede usar las bibliotecas de 16 bits
> > > > en un sistema binario de 32 bits.

>
> > > > Usted puede escribir un programa Clipper
> > > > usando esta biblioteca. Haga que su (x) de
> > > >l programa Puerto llaman.

>
> > > > O escribir sus propias funciones para hacer
> > > > esas cosas.

>
> > > I need convert 16bit library to 32bit.
> > > I have borland c++ 5.5 to do that.
> > > as i can do this ?

>
> > No. *You need the source code to do this. *The
> > source code to the library.

....
> I have de code of the library


Oh, excellent. Then you would use a C compiler (borland C++ will
output C-compliant object files) to compile the code.

One of the flags that can be set is to make a library (skips the
linking step), or just rename the .OBJ file created through normal
processing.

Your only difficulty will be in fixing the source code to be
acceptable to your compiler.

David A. Smith
Reply With Quote
  #9 (permalink)  
Old 07-11-2012, 09:45 AM
orojod@gmail.com
Guest
 
Posts: n/a
Default Re: libreria caos.lib como la paso de 16 bits a 32 bits

El lunes, 23 de mayo de 2011 15:27:01 UTC+2, macgyber escribió:
> tengo varios programas hechos en clipper y he usado la libreria
> caos.lib de grupo eidos
> he conseguido los fuentes pero no se como generarla para 32 bits, por
> lo que me han dicho lo puedo hacer con borland c ++,
> tengo instalada la version 5.5 para usarla con xailer 2 y xharbour
>
> atentos saludos desde uruguay


Hola Macgyber;

Perdone qye le moleste. ¿No tendrá Vd. las fuentes de la libreria caos?

En espera de sus noticias, reciba un saludo
Reply With Quote
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




All times are GMT. The time now is 08:17 PM.


Copyright ©2009

LinkBacks Enabled by vBSEO 3.3.0 RC2 © 2009, Crawlability, Inc.