Re: DLL Interface
- Posted by scooby Nov 06, 2008
- 970 views
I made a mistake in slow_peek_string() it should be:
function slow_peek_string(atom ptr) sequence s integer c c = peek(ptr) while (c != 0) do s &= c ptr += 1 c = peek(ptr) end while return s end function