Event type for archive operations
Source position: fpmkunit.pp line 1660
type TArchiveEvent = procedure( |
const AFileName: string; |
List: TStrings |
) of object; |
AFileName |
|
Filename for archive operation |
List |
|
List of files to archive |
TArchiveEvent defines the signature for event handlers that process archive operations. This event type enables custom archive processing and notification during package archiving.
Event handlers receive the archive filename and file list, allowing custom processing, validation, or modification of archive operations within the build system.