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_write(const fname: string): boolean;

Arguments:

fname Target file name

Description:

Sets file writing flag. Call it before opening file for writing.

Returns:

TRUE on success, FALSE on error.

Usage:

file_mark_write('filename.ext');
assign(fh, 'filename.ext');
rewrite(fh);
// Some actions
close(fh);
file_unmark_write('filename.ext');

See also:

file_unmark_write, file_mark_read.

PSP Help documents