Procedure type for archive operations
Source position: fpmkunit.pp line 1661
type TArchiveProc = procedure( |
const AFileName: string; |
List: TStrings |
); |
AFileName |
|
Filename for archive procedure |
List |
|
List of files to archive |
TArchiveProc defines the signature for procedural archive handlers that process file archiving operations. This procedure type enables pluggable archive implementations and custom archiving logic.
Archive procedures receive the target filename and file list, implementing the actual compression and archive creation functionality for the build system.