On 17/07/06, Kyle Hamilton <[EMAIL PROTECTED]> wrote:

Basically, when you're passing a pointer to a function as a parameter
to another function for callbacks and such.

> http://www.docbook.org/tdg/en/html/funcparams.html

There's an example for qsort in there, but there's a problem: it loses
information between the XML and the output.  Specifically, what's
printed is:

void qsort(     dataptr,
        dataptr,
        left,
        right,
        (* comp));
        dataptr;
        left;
        right;
int (* comp) (void *, void *);

i.e., it loses type information for dataptr, left, and right.

> Is that any help?

It's a great help for exposition of what the problem is! :)

Yes, very clear. I've asked the guru's.
Only parameterization is to use K&R or ANSI format (do you understand
the difference?)

WhenI find out how to get them back I'll let you know.
It may be deliberate, but I can't see why.


regards


--
Dave Pawson
XSLT XSL-FO FAQ.
http://www.dpawson.co.uk
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       [email protected]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to