Anatomy
What goes into the Capture File
-
fopen
The success 'status' of the operation.
-
fclose
Nothing needs to be stored.
-
fread
The number of bytes read, and the data that was read.
-
fwrite
Nothing. Writes are not captured.
Writing during capture is an error.
-
ftell
The current file position, as returned by ftell.
-
fseek
The success 'status' of the operation.
-
fgets
The number of bytes read, and, and the data that was read.
|