In your version of WinOOT, there may be a bug in the
strintok function, which we used in the driver. There is no
need to worry, since we use the corrected version of this function in
our driver. Here is a fix provided by Tom West of Holt
Software.
Replace the call to strintok with mystrintok and add
the following at the beginning of the program:
function mystrintok (s : string) : boolean
for i : 1 .. length (s)
if s (i) < "0" or s (i) > "9" then
result false
end if
end for
result true
end mystrintok