January 29, 2006
This might sound dumb.. but..

what is a far - and what do I do when i am porting C to D and it uses a far ?

I am porting (litterally writing the whole thing in D) libpng - or something close that will read PNG images... Very ambitious - I know..

Thanks,
Trevor Parscal
January 29, 2006
Trevor Parscal wrote:

> what is a far - and what do I do when i am porting C to D and it uses a far ?

Just delete it. It's for 16-bit code, and D doesn't support that...

> I am porting (litterally writing the whole thing in D) libpng - or something
> close that will read PNG images... Very ambitious - I know..

Why not use libpng instead ? Are you making an OOP wrapper or so ?
Otherwise, porting the *header* to an import module is more useful.

--anders