Home > Archive > Clipper > June 2004 > C routines in Clipper and MD5
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
C routines in Clipper and MD5
|
|
| Hilario 2004-06-09, 4:29 pm |
| Hi
I´m Brazilian Clipper Programer, and I need a algorithm for MD5.
I get posts in this forum about this, but I don´t understard how I compile codes in C for Clipper aplications.
I Compile using Turbo C 3.0, but have errors in clipper linker.
I´m searching MS C Compiler 5, ou 7, but not found.
Please, help me.
Send me OBJ with MD5 function or MS C Compiler.
Thanks, and sorry my english...........
Hilario Daufemback | |
| Stephen Quinn 2004-06-10, 3:55 am |
| Hilario
The compiler switches to use with Borland 'C' compilers are listed in the FAQ IIRC
An extract from the VFAQ that's posted here every w
- Tuesday my time, Wednesday Daves time<g>
* Where is the comp.lang.clipper FAQ?
<URL:http://www.davep.org/clipper/FAQ/>
<URL:http://www.the-oasis.net/clipper.html>
--
HTH
Steve Quinn
| |
| Dave Pearson 2004-06-10, 8:55 am |
| * Stephen Quinn <steveqNOSPAM@integritynet.com.au>:
> An extract from the VFAQ that's posted here every w
> - Tuesday my time, Wednesday Daves time<g>
Actually it's posted on a Tuesday my time:
,----
| davep@hagbard:~$ crontab -l | grep faq
| 20 17 * * tue vfaq-poster 2>&1 | mail davep -s "ADMIN: clc VFAQ posting result"
`----
which confuses me 'cos I'd have thought that would be Wednesday your time:
,----
| davep@hagbard:~$ TZ=Australia/Canberra date -R -d "Tue Jun 8 17:20:00 BST 2004"
| Wed, 9 Jun 2004 02:20:00 +1000
`----
Or am I missing the joke?
--
Dave Pearson | OSLib - Timeslice release functions.
http://www.davep.org/ | eg - Norton Guide reader for Linux.
http://www.davep.org/clipper/ | weg - Norton Guide reader for Windows.
http://www.davep.org/norton-guides/ | dgscan - DGROUP scanner for Clipper.
| |
| Stephen Quinn 2004-06-10, 8:55 am |
| Dave
No I just got it wrong.
Sorry for the confusion
--
HTH
Steve Quinn
| |
| Dave Pearson 2004-06-10, 8:55 am |
| * Stephen Quinn <steveqNOSPAM@integritynet.com.au>:
> No I just got it wrong.
>
> Sorry for the confusion
Phew! Glad we've got that cleared up. For a moment then I had this horrible
feeling that *I* was the one who lived in Australia and I'd just never
realised it! ;>
--
Dave Pearson | OSLib - Timeslice release functions.
http://www.davep.org/ | eg - Norton Guide reader for Linux.
http://www.davep.org/clipper/ | weg - Norton Guide reader for Windows.
http://www.davep.org/norton-guides/ | dgscan - DGROUP scanner for Clipper.
| |
| Hilario 2004-06-10, 11:06 am |
| Hi
Thanks for help-me.
I´m compile with switches, as described on davep.org, but when i link on clipper with exospace, it´s say a undefined externals, and N_LXLSH@ and N_LXURS@.
what is this. how i do for resolve this?
Thanks, and again sorry my poor english.
Hilario Daufemback
quote: Originally posted by Dave Pearson
* Stephen Quinn <steveqNOSPAM@integritynet.com.au>:
> No I just got it wrong.
>
> Sorry for the confusion
Phew! Glad we've got that cleared up. For a moment then I had this horrible
feeling that *I* was the one who lived in Australia and I'd just never
realised it! ;>
--
Dave Pearson | OSLib - Timeslice release functions.
http://www.davep.org/ | eg - Norton Guide reader for Linux.
http://www.davep.org/clipper/ | weg - Norton Guide reader for Windows.
http://www.davep.org/norton-guides/ | dgscan - DGROUP scanner for Clipper.
| |
| Ross McKenzie 2004-06-10, 3:55 pm |
| On 10 Jun 2004 10:41:59 GMT, Dave Pearson <davep.news@davep.org>
wrote:
>* Stephen Quinn <steveqNOSPAM@integritynet.com.au>:
>
>
>Phew! Glad we've got that cleared up. For a moment then I had this horrible
>feeling that *I* was the one who lived in Australia and I'd just never
>realised it! ;>
>
Phew, for a moment there, I thought the world was spinning in the
opposite direction <g>. Too much of that 6X stuff.
Regards,
Ross McKenzie
ValuSoft
Melbourne Australia
valusoft AT optushome DOT com DOT au
| |
| Dave Pearson 2004-06-11, 8:55 am |
| * Hilario <Hilario.17nkhm@mail.codecomments.com>:
> I´m compile with switches, as described on davep.org, but when i link on
> clipper with exospace, it´s say a undefined externals, and N_LXLSH@ and
> N_LXURS@.
>
> what is this. how i do for resolve this?
I'll make a slightly wild guess at this because it looks similar to
something I've seen before: the code in question uses the left-shift and
right-shift operators. Rather than been translated into direct machine
instructions the code is translated into a call to a function in the C
compiler's RTL.
If this is the case the only resolution I ever found was to either a) link
in the CRTL (not really preferable) or to tweak the code so that it emits
code that doesn't need the CRTL.
But, like I say, that's a guess based on previous experiences a long time
ago.
--
Dave Pearson | OSLib - Timeslice release functions.
http://www.davep.org/ | eg - Norton Guide reader for Linux.
http://www.davep.org/clipper/ | weg - Norton Guide reader for Windows.
http://www.davep.org/norton-guides/ | dgscan - DGROUP scanner for Clipper.
|
|
|
|
|