TPackageInfoProc is a call-back procedure invoked by GetPackageInfo.
TPackageInfoProc = procedure (const Name: string; NameType: TNameType; Flags: Byte; Param: Pointer);
(const Name: string; NameType: TNameType; Flags: Byte; Param: Pointer) ( TPackageInfoProc)();
SysUtils
The TPackageInfoProc type declares the procedure that is invoked by GetPackageInfo to retrieve package information. It is called for every unit in the package, and every package required by that package.
The following table lists the information provided in these call back invocations of your TPackageInfoProc variable.
Parameter name |
Parameter value |
Name |
Unit or required package name |
NameType |
Indicates if this call is for a contained unit, required package or DcpBpiName. |
Flags |
|
Param |
|
NameType
Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
|
What do you think about this topic? Send feedback!
|