On 02-Mar-2003, Wolfgang Thaller <[EMAIL PROTECTED]> wrote:
> >I have a C function:
> >
> >f_setCallback( void (funptr*) () );

That is a very bad design.
You should change the interface of your C function to

        f_setCallback( void (funptr*) (void *), void * );

-- 
Fergus Henderson <[EMAIL PROTECTED]>  |  "I have always known that the pursuit
The University of Melbourne         |  of excellence is a lethal habit"
WWW: <http://www.cs.mu.oz.au/~fjh>  |     -- the last words of T. S. Garp.
_______________________________________________
FFI mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/ffi

Reply via email to