I have a routine that reads data from a disk file from one file
8 bytes at a time into a quad variable. It then encrypts the
quad variable and then writes it to a different file. I would
like to speed the process by reading the data 32000 bytes at a
time and then process through the data using pointers, only I
can't get any code to work.
Does anyone have an experience with this or better yet a piece
of example code demonstrating something like this. I can read
and write the data into strings using GET# and Put# on a file
OPEN in binary mode. The problem is I haven't found a way of
getting real quad data variables out of the strings to
manipulate.
------------------
8 bytes at a time into a quad variable. It then encrypts the
quad variable and then writes it to a different file. I would
like to speed the process by reading the data 32000 bytes at a
time and then process through the data using pointers, only I
can't get any code to work.
Does anyone have an experience with this or better yet a piece
of example code demonstrating something like this. I can read
and write the data into strings using GET# and Put# on a file
OPEN in binary mode. The problem is I haven't found a way of
getting real quad data variables out of the strings to
manipulate.
------------------
Comment