Re: [racket-users] Mutually recursive struct pointers in FFI?

2015-04-15 Thread Matthew Flatt
I don't think you're missing anything. I don't often run into this problem, maybe because libraries I've used tend to keep structs private. When the problem does show up, I have resorted to using `_pointer`, too. At Tue, 14 Apr 2015 17:04:38 -0700 (PDT), Ian Johnson wrote: I'm trying to

Re: [racket-users] Mutually recursive struct pointers in FFI?

2015-04-15 Thread Hendrik Boom
On Wed, Apr 15, 2015 at 09:55:11AM -0600, Matthew Flatt wrote: I don't think you're missing anything. I don't often run into this problem, maybe because libraries I've used tend to keep structs private. When the problem does show up, I have resorted to using `_pointer`, too. Looks like the