This is a search engine friendly CGI program that outputs help documents.
The LufDoc (Live User Fed Documentation) comment system will be implemented soon.

PSP Help Doc Indexer System

(Version 1.4.1)


Declaration:

function file_mark_read(const fname: string; var key: word): boolean;

Arguments:

fname Target file name
key Variable to contain unique flag identifier. It will be used for unlocking.

Description:

Sets unique file reading flag. Call it before opening file for reading.

Returns:

TRUE on success, FALSE on error.

Usage:

file_mark_read('filename.ext', wk);
assign(fh, 'filename.ext');
reset(fh);
// Some actions
close(fh);
file_unmark_read('filename.ext', wk);

See also:

file_unmark_read, file_mark_write.

PSP Help documents