diff --git a/help/Base.dtx b/help/Base.dtx index f0a32b1ee8..3221cc3f03 100644 --- a/help/Base.dtx +++ b/help/Base.dtx @@ -18,11 +18,7 @@ <TOPICORDER 400> -------------------------------------------------------------------------------- -@@BaseServices.FPCCompatibility -<GROUP BaseServices> -<TITLE FPC Compatibility> -<TOPICORDER 600> --------------------------------------------------------------------------------- + @@BaseServices.Int64support <GROUP BaseServices> <TITLE Int64 support> @@ -57,32 +53,8 @@ JclVersionRelease If set to 1 this is an official release. If 0 this is a previ Donator: Marcel van Brakel -------------------------------------------------------------------------------- -@@string -<GROUP BaseServices.FPCCompatibility> -Summary: - ResStringRec is a pointer to a resource string. -Description: - ResStringRec is a pointer to a resource string used with the creation of exceptions. - This type is provided for compatibility with FPC. When compiling with Delphi or - Kylix use the type defined in SysUtils.pas instead. -Donator: - Team JCL --------------------------------------------------------------------------------- -@@SysErrorMessage -<GROUP BaseServices.FPCCompatibility> -Summary: - Converts OS error codes into strings. -Description: - SysErrorMessage returns an error message string that corresponds to the specified - OS error code. This routine is provided for compatibility with FPC. When compiling - with Delphi or Kylix use the SysErrorMessage from the RTL instead (SysUtils.pas). -Parameters: - ErrNo - The Windows API error code for which to retrieve the associated error message. -Result: - Returns the error message string associated with the specified Windows API error code. -Donator: - Team JCL --------------------------------------------------------------------------------- + + @@EJclError <GROUP BaseServices.ErrorHandling> Summary: @@ -508,21 +480,6 @@ See also: Donator: Marcel van Brakel -------------------------------------------------------------------------------- -@@TObjectList -<GROUP BaseServices.Compatibility> -Summary: - TList descendent to maintain a list of TObject descendants. -Description: - TObjectList is a TList descendant adapted to maintain a list of TObject descendants - which can optionally be owned by the class. If the class owns the items, it will - automatically free the objects when the list is cleared. This class is only provided - for backward compatibility and is not a full-fledged implementation of TObjectList - as found in Delphi 5 and up. -Donator: - Petr Vones --------------------------------------------------------------------------------- - - @@RaiseLastOSError <GROUP BaseServices.Compatibility> @@ -746,3 +703,338 @@ Summary: @@TDynWordArray Summary: Type for a dynamic array of Word (unsigned 16-bit integer). + +@@AWSuffix +\ \ +Summary +Suffix for External string function API + + +Description +This constant denotes the suffix for imported string +functions. Windows headers usually have two declarations for +each string function: one is Ansi-flavoured, the other is +unicode-enabled. The two functions have different names: the +names of the Ansi-flavoured functions end with 'A' while +Unicode-enabled functions end with 'W'. + + + +Since Delphi/C++Builder 2009, the built-in string type is +Unicode-enabled. This constant is accordingly set to 'W' +(stands for Wide) for Delphi/C++Builder and newer while it is +set to 'A' (stands for Ansi) for older versions. + + + +This constant is used in various places in the JCL for +specifying the flavour of the function that is being +imported. + +@@BOM_UTF16_LSB +Summary +UTF-16 LSB Text file Byte-Order-Mark (BOM) +Description +These 2 bytes are usually inserted to the beginning of UTF-16 +text files where the least significant byte of each character +is written first. + +@@BOM_UTF16_MSB +Summary +UTF-16 MSB Text file Byte-Order-Mark (BOM) +Description +These 2 bytes are usually inserted to the beginning of UTF-16 +text files where the most significant byte of each character +is written first. + +@@BOM_UTF32_LSB +Summary +UTF-32 LSB Text file Byte-Order-Mark (BOM) +Description +These 4 bytes are usually inserted to the beginning of UTF-32 +text files where the least significant byte of each character +is written first. + +@@BOM_UTF32_MSB +Summary +UTF-32 MSB Text file Byte-Order-Mark (BOM) +Description +These 4 bytes are usually inserted to the beginning of UTF-32 +text files where the most significant byte of each character +is written first. + +@@BOM_UTF8 +Summary +UTF-8 Text file Byte-Order-Mark (BOM) +Description +These 3 bytes are usually inserted to the beginning of UTF-8 +text files. + +@@HexPrefix +Summary +Constants describing the hexadecimal prefix for strings. +Description +The HexPrefix constants are the prefix to be added to strings +denoting hexadecimal values. +<table> +Constant \Description: +---------------- ----------------------------------------------- +HexPrefixC Prefix for C/C++ hexadecimal values +HexPrefixPascal Prefix for Pascal/Delphi hexadecimal values +HexPrefix Language independant prefix, this constant is + automatically set to HexPrefixPascal when the + code is compiled with Delphi and to HexPrefixC + when compiled with C++Builder. +</table> + +@@HexPrefixC +<combine HexPrefix> + +\ \ + +@@HexPrefixPascal +<combine HexPrefix> + +\ \ + +@@MaximumUCS2 +Summary +Maximum value for an UCS-2 encoded character +Description +This constant denotes the maximum value for an UCS-2 +character. Valid UCS-2 characters are included in range +[#0..MaximumUCS2]. + +@@MaximumUCS4 +Summary +Maximum value for an UCS-4 encoded character +Description +This constant denotes the maximum value for an UCS-4 +character. Valid UCS-4 characters are included in range +[#0..MaximumUCS4]. + +@@MaximumUTF16 +Summary +Maximum value for an UTF-16 encoded character +Description +This constant denotes the maximum value for an UTF-16 +character. Valid UTF-16 characters are included in range +[#0..MaximumUTF16], with the exclusion of ranges +[SurrogateLowStart..SurrogateLowEnd] and +[SurrogateHighStart..SurrogateHighEnd]. + + + +In an UTF-16 stream, characters are read per 16-bit wide +chunk. Characters are decoded as follow: + +A first 16-bit chunk is read, if its value is included in +[SurrogateLowStart..SurrogateLowEnd], it is an error. If its +value is not included in +[SurrogateHighStart..SurrogateHighEnd], then the character +value is equal to this first chunk. + +If the value of the first chunk is included in +[SurrogateHighStart..SurrogateHighEnd], a second thunk is +read and its value has to be included in +[SurrogateLowStart..SurrogateLowEnd], it is an error +\otherwise. Finally the value of these two thunk are combined +to make the character value. + +@@SurrogateHighEnd +<combine MaximumUTF16> + +\ \ + +@@SurrogateHighStart +<combine MaximumUTF16> + +\ \ + +@@SurrogateLowEnd +<combine MaximumUTF16> + +\ \ + +@@SurrogateLowStart +<combine MaximumUTF16> + +\ \ + +@@UCS4ReplacementCharacter +Summary +UTF-8/UTF-16/UCS2/UCS4 replacement character +Description +When an UTF-8 or an UTF-16 character fails to be correctly +decoded, it may be replaced by this constant acting as an +error flag. Depending on the code, exceptions might be raised +instead of inserting this constant. See code details. + +@@JclBase.pas +\ \ +Summary +JclBase description + + +Description +The JclBase file contains basic declarations for the JEDI +Code Library. + +@@GetMem@@Longint +\ \ +Summary +GetMem function redeclaration for FPC +Description +FPC emits a lot of warnings while compiling GetMem calls: it +complains about the first argument not being initialized. +This is caused by the declaration of the first parameter as a +variable parameter. We change it to output in order to avoid +all these warnings. + +@@Addr32ToAddr64@TJclAddr32 +\ \ +Summary +32-bit address to 64-bit address conversion +Description +This function converts a 32-bit address to a 64-bit value. + +@@Addr64ToAddr32@TJclAddr64 +Summary +64-bit address to 32-bit address conversion +Description +This function converts a 64-bit address to a 32-bit value. +Exceptions +If the argument address does not fit in the result, an +exception of class EJclAddr64Exception is raised. + +@@AnsiByteArrayStringLen@TBytes +Summary +Computes the length of an AnsiString stored in a TBytes array +Description +This functions computes the length of the AnsiString stored +in the TBytes array. The string ends at the first encountered +null character. +Parameters +Data : Source byte array +Returns +The length of the string, including the ending null +character. +See Also +AnsiByteArrayToString@TBytes@SizeInt + +StringToAnsiByteArray@string + +@@AnsiByteArrayToString@TBytes@SizeInt +Summary +Makes a copy an AnsiString stored in a TBytes array +Description +This functions copies Count characters from the AnsiString +stored in a TBytes array to its result. +Parameters +Data : Source byte array +Count : Number of characters to be copied +Returns +A string of length Count whose data is initialized by the +values read from Data. +See Also +AnsiByteArrayStringLen@TBytes + +StringToAnsiByteArray@string + +@@StringToAnsiByteArray@string +Summary +Create a byte array from an AnsiString +Description +This function serializes all the characters of S to the +resulting byte array. +Parameters +S : String to convert +Returns +Serialized bytes from S. +See Also +AnsiByteArrayToString@TBytes@SizeInt + +AnsiByteArrayStringLen@TBytes + +@@EJclAddr64Exception +Summary +Exception class for address conversion failures +Description +This exception class is raised when a 64-bit address cannot +be stored as a 32-bit value. +See Also +Addr64ToAddr32@TJclAddr64 + +@@PInt64 +\ \ +Summary +Type for pointers to signed 6'-bit integers + +@@TDynWideCharArray +\ \ +Summary +Type for a dynamic array of WideChar. + +@@TDynAnsiCharArray +\ \ +Summary +Type for a dynamic array of AnsiChar. + +@@TDynAnsiStringArray +\ \ +Summary +Type for a dynamic array of AnsiString. + +@@TDynCharArray +\ \ +Summary +Type for a dynamic array of Char. + +@@TDynUnicodeStringArray +\ \ +Summary +Type for a dynamic array of UnicodeString (defined for +Delphi/C++Builder 2009 and newer). + +@@TDynWideStringArray +\ \ +Summary +Type for a dynamic array of WideString. + +@@TJclByteArray +\ \ +Summary +Type for a dynamic array of Byte. + +@@TJclAddr64 +Summary +Integer type for 64-bit addresses. + +@@TJclAddr32 +Summary +Integer type for 32-bit addresses. + +@@TJclAddr +Summary +Integer type for addresses. + + +Description +This type is aliased to TJclAddr32 for 32-bit applications +and it is aliased to TJclAddr64 for 64-bit applications. + + +@@AnsiReplacementCharacter +Summary +ANSI replacement character +Description +When an Unicode character does not have representation in the +current ANSI codepage, it may be replaced by this constant +acting as an error flag. Depending on the code, exceptions +might be raised instead of inserting this constant. See code +details. + +@@PJclAddr +<combine TJclAddr> + +\ \ diff --git a/help/Bitmap32.dtx b/help/Bitmap32.dtx index 9d51a4340e..b3ddb401fa 100644 --- a/help/Bitmap32.dtx +++ b/help/Bitmap32.dtx @@ -1540,7 +1540,7 @@ Summary: Stores the transformation matrix. Description: The matrix is accessed as a field instead of a property in order to make it - Borland C++ Builder compatible. + C++ Builder compatible. Donator: Alex Denissov -------------------------------------------------------------------------------- diff --git a/help/ContainerCopies.dtx b/help/ContainerCopies.dtx new file mode 100644 index 0000000000..0b63c83a76 --- /dev/null +++ b/help/ContainerCopies.dtx @@ -0,0 +1,40968 @@ + + +@@MoveArray@TDynIInterfaceArray@SizeInt@SizeInt@SizeInt +<copy MoveArray@TDynObjectArray@SizeInt@SizeInt@SizeInt> +\ \ +@@MoveArray@TDynAnsiStringArray@SizeInt@SizeInt@SizeInt +<copy MoveArray@TDynObjectArray@SizeInt@SizeInt@SizeInt> +\ \ +@@MoveArray@TDynWideStringArray@SizeInt@SizeInt@SizeInt +<copy MoveArray@TDynObjectArray@SizeInt@SizeInt@SizeInt> +\ \ +@@MoveArray@TDynUnicodeStringArray@SizeInt@SizeInt@SizeInt +<copy MoveArray@TDynObjectArray@SizeInt@SizeInt@SizeInt> +\ \ +@@MoveArray@TDynSingleArray@SizeInt@SizeInt@SizeInt +<copy MoveArray@TDynObjectArray@SizeInt@SizeInt@SizeInt> +\ \ +@@MoveArray@TDynDoubleArray@SizeInt@SizeInt@SizeInt +<copy MoveArray@TDynObjectArray@SizeInt@SizeInt@SizeInt> +\ \ +@@MoveArray@TDynExtendedArray@SizeInt@SizeInt@SizeInt +<copy MoveArray@TDynObjectArray@SizeInt@SizeInt@SizeInt> +\ \ +@@MoveArray@TDynIntegerArray@SizeInt@SizeInt@SizeInt +<copy MoveArray@TDynObjectArray@SizeInt@SizeInt@SizeInt> +\ \ +@@MoveArray@TDynCardinalArray@SizeInt@SizeInt@SizeInt +<copy MoveArray@TDynObjectArray@SizeInt@SizeInt@SizeInt> +\ \ +@@MoveArray@TDynInt64Array@SizeInt@SizeInt@SizeInt +<copy MoveArray@TDynObjectArray@SizeInt@SizeInt@SizeInt> +\ \ +@@MoveArray@TDynPointerArray@SizeInt@SizeInt@SizeInt +<copy MoveArray@TDynObjectArray@SizeInt@SizeInt@SizeInt> +\ \ + + +@@Iterate@IJclIntfIterator@Integer@TIntfIterateProcedure +<copy Iterate@IJclIterator@Integer@TIterateProcedure> +\ \ +@@Iterate@IJclAnsiStrIterator@Integer@TAnsiStrIterateProcedure +<copy Iterate@IJclIterator@Integer@TIterateProcedure> +\ \ +@@Iterate@IJclWideStrIterator@Integer@TWideStrIterateProcedure +<copy Iterate@IJclIterator@Integer@TIterateProcedure> +\ \ +@@Iterate@IJclUnicodeStrIterator@Integer@TUnicodeStrIterateProcedure +<copy Iterate@IJclIterator@Integer@TIterateProcedure> +\ \ +@@Iterate@IJclSingleIterator@Integer@TSingleIterateProcedure +<copy Iterate@IJclIterator@Integer@TIterateProcedure> +\ \ +@@Iterate@IJclDoubleIterator@Integer@TDoubleIterateProcedure +<copy Iterate@IJclIterator@Integer@TIterateProcedure> +\ \ +@@Iterate@IJclExtendedIterator@Integer@TExtendedIterateProcedure +<copy Iterate@IJclIterator@Integer@TIterateProcedure> +\ \ +@@Iterate@IJclIntegerIterator@Integer@TIntegerIterateProcedure +<copy Iterate@IJclIterator@Integer@TIterateProcedure> +\ \ +@@Iterate@IJclCardinalIterator@Integer@TCardinalIterateProcedure +<copy Iterate@IJclIterator@Integer@TIterateProcedure> +\ \ +@@Iterate@IJclInt64Iterator@Integer@TInt64IterateProcedure +<copy Iterate@IJclIterator@Integer@TIterateProcedure> +\ \ +@@Iterate@IJclPtrIterator@Integer@TPtrIterateProcedure +<copy Iterate@IJclIterator@Integer@TIterateProcedure> +\ \ + + +@@Apply@IJclIntfIterator@Integer@TIntfApplyFunction +<copy Apply@IJclIterator@Integer@TApplyFunction> +\ \ +@@Apply@IJclAnsiStrIterator@Integer@TAnsiStrApplyFunction +<copy Apply@IJclIterator@Integer@TApplyFunction> +\ \ +@@Apply@IJclWideStrIterator@Integer@TWideStrApplyFunction +<copy Apply@IJclIterator@Integer@TApplyFunction> +\ \ +@@Apply@IJclUnicodeStrIterator@Integer@TUnicodeStrApplyFunction +<copy Apply@IJclIterator@Integer@TApplyFunction> +\ \ +@@Apply@IJclSingleIterator@Integer@TSingleApplyFunction +<copy Apply@IJclIterator@Integer@TApplyFunction> +\ \ +@@Apply@IJclDoubleIterator@Integer@TDoubleApplyFunction +<copy Apply@IJclIterator@Integer@TApplyFunction> +\ \ +@@Apply@IJclExtendedIterator@Integer@TExtendedApplyFunction +<copy Apply@IJclIterator@Integer@TApplyFunction> +\ \ +@@Apply@IJclIntegerIterator@Integer@TIntegerApplyFunction +<copy Apply@IJclIterator@Integer@TApplyFunction> +\ \ +@@Apply@IJclCardinalIterator@Integer@TCardinalApplyFunction +<copy Apply@IJclIterator@Integer@TApplyFunction> +\ \ +@@Apply@IJclInt64Iterator@Integer@TInt64ApplyFunction +<copy Apply@IJclIterator@Integer@TApplyFunction> +\ \ +@@Apply@IJclPtrIterator@Integer@TPtrApplyFunction +<copy Apply@IJclIterator@Integer@TApplyFunction> +\ \ + + +@@IntfSimpleCompare@IInterface@IInterface +<copy SimpleCompare@TObject@TObject> +\ \ +@@AnsiStrSimpleCompare@AnsiString@AnsiString +<copy SimpleCompare@TObject@TObject> +\ \ +@@WideStrSimpleCompare@WideString@WideString +<copy SimpleCompare@TObject@TObject> +\ \ +@@UnicodeStrSimpleCompare@UnicodeString@UnicodeString +<copy SimpleCompare@TObject@TObject> +\ \ +@@StrSimpleCompare@string@string +<copy SimpleCompare@TObject@TObject> +\ \ +@@SingleSimpleCompare@Single@Single +<copy SimpleCompare@TObject@TObject> +\ \ +@@DoubleSimpleCompare@Double@Double +<copy SimpleCompare@TObject@TObject> +\ \ +@@ExtendedSimpleCompare@Extended@Extended +<copy SimpleCompare@TObject@TObject> +\ \ +@@FloatSimpleCompare@Float@Float +<copy SimpleCompare@TObject@TObject> +\ \ +@@IntegerSimpleCompare@Integer@Integer +<copy SimpleCompare@TObject@TObject> +\ \ +@@CardinalSimpleCompare@Cardinal@Cardinal +<copy SimpleCompare@TObject@TObject> +\ \ +@@Int64SimpleCompare@Int64@Int64 +<copy SimpleCompare@TObject@TObject> +\ \ +@@PtrSimpleCompare@Pointer@Pointer +<copy SimpleCompare@TObject@TObject> +\ \ + + +@@IntfSimpleEqualityCompare@IInterface@IInterface +<copy SimpleEqualityCompare@TObject@TObject> +\ \ +@@AnsiStrSimpleEqualityCompare@AnsiString@AnsiString +<copy SimpleEqualityCompare@TObject@TObject> +\ \ +@@WideStrSimpleEqualityCompare@WideString@WideString +<copy SimpleEqualityCompare@TObject@TObject> +\ \ +@@UnicodeStrSimpleEqualityCompare@UnicodeString@UnicodeString +<copy SimpleEqualityCompare@TObject@TObject> +\ \ +@@StrSimpleEqualityCompare@string@string +<copy SimpleEqualityCompare@TObject@TObject> +\ \ +@@SingleSimpleEqualityCompare@Single@Single +<copy SimpleEqualityCompare@TObject@TObject> +\ \ +@@DoubleSimpleEqualityCompare@Double@Double +<copy SimpleEqualityCompare@TObject@TObject> +\ \ +@@ExtendedSimpleEqualityCompare@Extended@Extended +<copy SimpleEqualityCompare@TObject@TObject> +\ \ +@@FloatSimpleEqualityCompare@Float@Float +<copy SimpleEqualityCompare@TObject@TObject> +\ \ +@@IntegerSimpleEqualityCompare@Integer@Integer +<copy SimpleEqualityCompare@TObject@TObject> +\ \ +@@CardinalSimpleEqualityCompare@Cardinal@Cardinal +<copy SimpleEqualityCompare@TObject@TObject> +\ \ +@@Int64SimpleEqualityCompare@Int64@Int64 +<copy SimpleEqualityCompare@TObject@TObject> +\ \ +@@PtrSimpleEqualityCompare@Pointer@Pointer +<copy SimpleEqualityCompare@TObject@TObject> +\ \ + + +@@IntfSimpleHashConvert@IInterface +<copy SimpleHashConvert@TObject> +\ \ +@@AnsiStrSimpleHashConvert@AnsiString +<copy SimpleHashConvert@TObject> +\ \ +@@WideStrSimpleHashConvert@WideString +<copy SimpleHashConvert@TObject> +\ \ +@@UnicodeStrSimpleHashConvert@UnicodeString +<copy SimpleHashConvert@TObject> +\ \ +@@StrSimpleHashConvert@string +<copy SimpleHashConvert@TObject> +\ \ +@@SingleSimpleHashConvert@Single +<copy SimpleHashConvert@TObject> +\ \ +@@DoubleSimpleHashConvert@Double +<copy SimpleHashConvert@TObject> +\ \ +@@ExtendedSimpleHashConvert@Extended +<copy SimpleHashConvert@TObject> +\ \ +@@FloatSimpleHashConvert@Float +<copy SimpleHashConvert@TObject> +\ \ +@@IntegerSimpleHashConvert@Integer +<copy SimpleHashConvert@TObject> +\ \ +@@CardinalSimpleHashConvert@Cardinal +<copy SimpleHashConvert@TObject> +\ \ +@@Int64SimpleHashConvert@Int64 +<copy SimpleHashConvert@TObject> +\ \ +@@PtrSimpleHashConvert@Pointer +<copy SimpleHashConvert@TObject> +\ \ + + +@@Find@IJclIntfIterator@Integer@IInterface@TIntfCompare +<copy Find@IJclIterator@Integer@TObject@TCompare> +\ \ +@@Find@IJclAnsiStrIterator@Integer@AnsiString@TAnsiStrCompare +<copy Find@IJclIterator@Integer@TObject@TCompare> +\ \ +@@Find@IJclWideStrIterator@Integer@WideString@TWideStrCompare +<copy Find@IJclIterator@Integer@TObject@TCompare> +\ \ +@@Find@IJclUnicodeStrIterator@Integer@UnicodeString@TUnicodeStrCompare +<copy Find@IJclIterator@Integer@TObject@TCompare> +\ \ +@@Find@IJclSingleIterator@Integer@Single@TSingleCompare +<copy Find@IJclIterator@Integer@TObject@TCompare> +\ \ +@@Find@IJclDoubleIterator@Integer@Double@TDoubleCompare +<copy Find@IJclIterator@Integer@TObject@TCompare> +\ \ +@@Find@IJclExtendedIterator@Integer@Extended@TExtendedCompare +<copy Find@IJclIterator@Integer@TObject@TCompare> +\ \ +@@Find@IJclIntegerIterator@Integer@Integer@TIntegerCompare +<copy Find@IJclIterator@Integer@TObject@TCompare> +\ \ +@@Find@IJclCardinalIterator@Integer@Cardinal@TCardinalCompare +<copy Find@IJclIterator@Integer@TObject@TCompare> +\ \ +@@Find@IJclInt64Iterator@Integer@Int64@TInt64Compare +<copy Find@IJclIterator@Integer@TObject@TCompare> +\ \ +@@Find@IJclPtrIterator@Integer@Pointer@TPtrCompare +<copy Find@IJclIterator@Integer@TObject@TCompare> +\ \ + + +@@Find@IJclIntfIterator@Integer@IInterface@TIntfEqualityCompare +<copy Find@IJclIterator@Integer@TObject@TEqualityCompare> +\ \ +@@Find@IJclAnsiStrIterator@Integer@AnsiString@TAnsiStrEqualityCompare +<copy Find@IJclIterator@Integer@TObject@TEqualityCompare> +\ \ +@@Find@IJclWideStrIterator@Integer@WideString@TWideStrEqualityCompare +<copy Find@IJclIterator@Integer@TObject@TEqualityCompare> +\ \ +@@Find@IJclUnicodeStrIterator@Integer@UnicodeString@TUnicodeStrEqualityCompare +<copy Find@IJclIterator@Integer@TObject@TEqualityCompare> +\ \ +@@Find@IJclSingleIterator@Integer@Single@TSingleEqualityCompare +<copy Find@IJclIterator@Integer@TObject@TEqualityCompare> +\ \ +@@Find@IJclDoubleIterator@Integer@Double@TDoubleEqualityCompare +<copy Find@IJclIterator@Integer@TObject@TEqualityCompare> +\ \ +@@Find@IJclExtendedIterator@Integer@Extended@TExtendedEqualityCompare +<copy Find@IJclIterator@Integer@TObject@TEqualityCompare> +\ \ +@@Find@IJclIntegerIterator@Integer@Integer@TIntegerEqualityCompare +<copy Find@IJclIterator@Integer@TObject@TEqualityCompare> +\ \ +@@Find@IJclCardinalIterator@Integer@Cardinal@TCardinalEqualityCompare +<copy Find@IJclIterator@Integer@TObject@TEqualityCompare> +\ \ +@@Find@IJclInt64Iterator@Integer@Int64@TInt64EqualityCompare +<copy Find@IJclIterator@Integer@TObject@TEqualityCompare> +\ \ +@@Find@IJclPtrIterator@Integer@Pointer@TPtrEqualityCompare +<copy Find@IJclIterator@Integer@TObject@TEqualityCompare> +\ \ + + +@@CountObject@IJclIntfIterator@Integer@IInterface@TIntfCompare +<copy CountObject@IJclIterator@Integer@TObject@TCompare> +\ \ +@@CountObject@IJclAnsiStrIterator@Integer@AnsiString@TAnsiStrCompare +<copy CountObject@IJclIterator@Integer@TObject@TCompare> +\ \ +@@CountObject@IJclWideStrIterator@Integer@WideString@TWideStrCompare +<copy CountObject@IJclIterator@Integer@TObject@TCompare> +\ \ +@@CountObject@IJclUnicodeStrIterator@Integer@UnicodeString@TUnicodeStrCompare +<copy CountObject@IJclIterator@Integer@TObject@TCompare> +\ \ +@@CountObject@IJclSingleIterator@Integer@Single@TSingleCompare +<copy CountObject@IJclIterator@Integer@TObject@TCompare> +\ \ +@@CountObject@IJclDoubleIterator@Integer@Double@TDoubleCompare +<copy CountObject@IJclIterator@Integer@TObject@TCompare> +\ \ +@@CountObject@IJclExtendedIterator@Integer@Extended@TExtendedCompare +<copy CountObject@IJclIterator@Integer@TObject@TCompare> +\ \ +@@CountObject@IJclIntegerIterator@Integer@Integer@TIntegerCompare +<copy CountObject@IJclIterator@Integer@TObject@TCompare> +\ \ +@@CountObject@IJclCardinalIterator@Integer@Cardinal@TCardinalCompare +<copy CountObject@IJclIterator@Integer@TObject@TCompare> +\ \ +@@CountObject@IJclInt64Iterator@Integer@Int64@TInt64Compare +<copy CountObject@IJclIterator@Integer@TObject@TCompare> +\ \ +@@CountObject@IJclPtrIterator@Integer@Pointer@TPtrCompare +<copy CountObject@IJclIterator@Integer@TObject@TCompare> +\ \ + + +@@CountObject@IJclIntfIterator@Integer@IInterface@TIntfEqualityCompare +<copy CountObject@IJclIterator@Integer@TObject@TEqualityCompare> +\ \ +@@CountObject@IJclAnsiStrIterator@Integer@AnsiString@TAnsiStrEqualityCompare +<copy CountObject@IJclIterator@Integer@TObject@TEqualityCompare> +\ \ +@@CountObject@IJclWideStrIterator@Integer@WideString@TWideStrEqualityCompare +<copy CountObject@IJclIterator@Integer@TObject@TEqualityCompare> +\ \ +@@CountObject@IJclUnicodeStrIterator@Integer@UnicodeString@TUnicodeStrEqualityCompare +<copy CountObject@IJclIterator@Integer@TObject@TEqualityCompare> +\ \ +@@CountObject@IJclSingleIterator@Integer@Single@TSingleEqualityCompare +<copy CountObject@IJclIterator@Integer@TObject@TEqualityCompare> +\ \ +@@CountObject@IJclDoubleIterator@Integer@Double@TDoubleEqualityCompare +<copy CountObject@IJclIterator@Integer@TObject@TEqualityCompare> +\ \ +@@CountObject@IJclExtendedIterator@Integer@Extended@TExtendedEqualityCompare +<copy CountObject@IJclIterator@Integer@TObject@TEqualityCompare> +\ \ +@@CountObject@IJclIntegerIterator@Integer@Integer@TIntegerEqualityCompare +<copy CountObject@IJclIterator@Integer@TObject@TEqualityCompare> +\ \ +@@CountObject@IJclCardinalIterator@Integer@Cardinal@TCardinalEqualityCompare +<copy CountObject@IJclIterator@Integer@TObject@TEqualityCompare> +\ \ +@@CountObject@IJclInt64Iterator@Integer@Int64@TInt64EqualityCompare +<copy CountObject@IJclIterator@Integer@TObject@TEqualityCompare> +\ \ +@@CountObject@IJclPtrIterator@Integer@Pointer@TPtrEqualityCompare +<copy CountObject@IJclIterator@Integer@TObject@TEqualityCompare> +\ \ + + +@@Copy@IJclIntfIterator@Integer@IJclIntfIterator +<copy Copy@IJclIterator@Integer@IJclIterator> +\ \ +@@Copy@IJclAnsiStrIterator@Integer@IJclAnsiStrIterator +<copy Copy@IJclIterator@Integer@IJclIterator> +\ \ +@@Copy@IJclWideStrIterator@Integer@IJclWideStrIterator +<copy Copy@IJclIterator@Integer@IJclIterator> +\ \ +@@Copy@IJclUnicodeStrIterator@Integer@IJclUnicodeStrIterator +<copy Copy@IJclIterator@Integer@IJclIterator> +\ \ +@@Copy@IJclSingleIterator@Integer@IJclSingleIterator +<copy Copy@IJclIterator@Integer@IJclIterator> +\ \ +@@Copy@IJclDoubleIterator@Integer@IJclDoubleIterator +<copy Copy@IJclIterator@Integer@IJclIterator> +\ \ +@@Copy@IJclExtendedIterator@Integer@IJclExtendedIterator +<copy Copy@IJclIterator@Integer@IJclIterator> +\ \ +@@Copy@IJclIntegerIterator@Integer@IJclIntegerIterator +<copy Copy@IJclIterator@Integer@IJclIterator> +\ \ +@@Copy@IJclCardinalIterator@Integer@IJclCardinalIterator +<copy Copy@IJclIterator@Integer@IJclIterator> +\ \ +@@Copy@IJclInt64Iterator@Integer@IJclInt64Iterator +<copy Copy@IJclIterator@Integer@IJclIterator> +\ \ +@@Copy@IJclPtrIterator@Integer@IJclPtrIterator +<copy Copy@IJclIterator@Integer@IJclIterator> +\ \ + + +@@Generate@IJclIntfList@Integer@IInterface +<copy Generate@IJclList@Integer@TObject> +\ \ +@@Generate@IJclAnsiStrList@Integer@AnsiString +<copy Generate@IJclList@Integer@TObject> +\ \ +@@Generate@IJclWideStrList@Integer@WideString +<copy Generate@IJclList@Integer@TObject> +\ \ +@@Generate@IJclUnicodeStrList@Integer@UnicodeString +<copy Generate@IJclList@Integer@TObject> +\ \ +@@Generate@IJclSingleList@Integer@Single +<copy Generate@IJclList@Integer@TObject> +\ \ +@@Generate@IJclDoubleList@Integer@Double +<copy Generate@IJclList@Integer@TObject> +\ \ +@@Generate@IJclExtendedList@Integer@Extended +<copy Generate@IJclList@Integer@TObject> +\ \ +@@Generate@IJclIntegerList@Integer@Integer +<copy Generate@IJclList@Integer@TObject> +\ \ +@@Generate@IJclCardinalList@Integer@Cardinal +<copy Generate@IJclList@Integer@TObject> +\ \ +@@Generate@IJclInt64List@Integer@Int64 +<copy Generate@IJclList@Integer@TObject> +\ \ +@@Generate@IJclPtrList@Integer@Pointer +<copy Generate@IJclList@Integer@TObject> +\ \ + + +@@Fill@IJclIntfIterator@Integer@IInterface +<copy Fill@IJclIterator@Integer@TObject> +\ \ +@@Fill@IJclAnsiStrIterator@Integer@AnsiString +<copy Fill@IJclIterator@Integer@TObject> +\ \ +@@Fill@IJclWideStrIterator@Integer@WideString +<copy Fill@IJclIterator@Integer@TObject> +\ \ +@@Fill@IJclUnicodeStrIterator@Integer@UnicodeString +<copy Fill@IJclIterator@Integer@TObject> +\ \ +@@Fill@IJclSingleIterator@Integer@Single +<copy Fill@IJclIterator@Integer@TObject> +\ \ +@@Fill@IJclDoubleIterator@Integer@Double +<copy Fill@IJclIterator@Integer@TObject> +\ \ +@@Fill@IJclExtendedIterator@Integer@Extended +<copy Fill@IJclIterator@Integer@TObject> +\ \ +@@Fill@IJclIntegerIterator@Integer@Integer +<copy Fill@IJclIterator@Integer@TObject> +\ \ +@@Fill@IJclCardinalIterator@Integer@Cardinal +<copy Fill@IJclIterator@Integer@TObject> +\ \ +@@Fill@IJclInt64Iterator@Integer@Int64 +<copy Fill@IJclIterator@Integer@TObject> +\ \ +@@Fill@IJclPtrIterator@Integer@Pointer +<copy Fill@IJclIterator@Integer@TObject> +\ \ + + +@@Reverse@IJclIntfIterator@IJclIntfIterator +<copy Reverse@IJclIterator@IJclIterator> +\ \ +@@Reverse@IJclAnsiStrIterator@IJclAnsiStrIterator +<copy Reverse@IJclIterator@IJclIterator> +\ \ +@@Reverse@IJclWideStrIterator@IJclWideStrIterator +<copy Reverse@IJclIterator@IJclIterator> +\ \ +@@Reverse@IJclUnicodeStrIterator@IJclUnicodeStrIterator +<copy Reverse@IJclIterator@IJclIterator> +\ \ +@@Reverse@IJclSingleIterator@IJclSingleIterator +<copy Reverse@IJclIterator@IJclIterator> +\ \ +@@Reverse@IJclDoubleIterator@IJclDoubleIterator +<copy Reverse@IJclIterator@IJclIterator> +\ \ +@@Reverse@IJclExtendedIterator@IJclExtendedIterator +<copy Reverse@IJclIterator@IJclIterator> +\ \ +@@Reverse@IJclIntegerIterator@IJclIntegerIterator +<copy Reverse@IJclIterator@IJclIterator> +\ \ +@@Reverse@IJclCardinalIterator@IJclCardinalIterator +<copy Reverse@IJclIterator@IJclIterator> +\ \ +@@Reverse@IJclInt64Iterator@IJclInt64Iterator +<copy Reverse@IJclIterator@IJclIterator> +\ \ +@@Reverse@IJclPtrIterator@IJclPtrIterator +<copy Reverse@IJclIterator@IJclIterator> +\ \ + + +@@Sort@IJclIntfList@Integer@Integer@TIntfCompare +<copy Sort@IJclList@Integer@Integer@TCompare> +\ \ +@@Sort@IJclAnsiStrList@Integer@Integer@TAnsiStrCompare +<copy Sort@IJclList@Integer@Integer@TCompare> +\ \ +@@Sort@IJclWideStrList@Integer@Integer@TWideStrCompare +<copy Sort@IJclList@Integer@Integer@TCompare> +\ \ +@@Sort@IJclUnicodeStrList@Integer@Integer@TUnicodeStrCompare +<copy Sort@IJclList@Integer@Integer@TCompare> +\ \ +@@Sort@IJclSingleList@Integer@Integer@TSingleCompare +<copy Sort@IJclList@Integer@Integer@TCompare> +\ \ +@@Sort@IJclDoubleList@Integer@Integer@TDoubleCompare +<copy Sort@IJclList@Integer@Integer@TCompare> +\ \ +@@Sort@IJclExtendedList@Integer@Integer@TExtendedCompare +<copy Sort@IJclList@Integer@Integer@TCompare> +\ \ +@@Sort@IJclIntegerList@Integer@Integer@TIntegerCompare +<copy Sort@IJclList@Integer@Integer@TCompare> +\ \ +@@Sort@IJclCardinalList@Integer@Integer@TCardinalCompare +<copy Sort@IJclList@Integer@Integer@TCompare> +\ \ +@@Sort@IJclInt64List@Integer@Integer@TInt64Compare +<copy Sort@IJclList@Integer@Integer@TCompare> +\ \ +@@Sort@IJclPtrList@Integer@Integer@TPtrCompare +<copy Sort@IJclList@Integer@Integer@TCompare> +\ \ + + +@@TJclIntfArrayList +<copy TJclArrayList> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfArrayList +<copy !!MEMBEROVERVIEW_TJclArrayList> +\ \ + +@@TJclIntfArrayList.Add@IInterface +<copy TJclArrayList.Add@TObject> +\ \ + +@@TJclIntfArrayList.AddAll@IJclIntfCollection +<copy TJclArrayList.AddAll@IJclCollection> +\ \ + +@@TJclIntfArrayList.AssignDataTo@TJclAbstractContainerBase +<copy TJclArrayList.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfArrayList.Clear +<copy TJclArrayList.Clear> +\ \ + +@@TJclIntfArrayList.CollectionEquals@IJclIntfCollection +<copy TJclArrayList.CollectionEquals@IJclCollection> +\ \ + +@@TJclIntfArrayList.Contains@IInterface +<copy TJclArrayList.Contains@TObject> +\ \ + +@@TJclIntfArrayList.ContainsAll@IJclIntfCollection +<copy TJclArrayList.ContainsAll@IJclCollection> +\ \ + +@@TJclIntfArrayList.Create@IJclIntfCollection +<copy TJclArrayList.Create@IJclCollection@Boolean> +\ \ + +@@TJclIntfArrayList.Create@Integer +<copy TJclArrayList.Create@Integer@Boolean> +\ \ + +@@TJclIntfArrayList.CreateEmptyContainer +<copy TJclArrayList.CreateEmptyContainer> +\ \ + +@@TJclIntfArrayList.Delete@Integer +<copy TJclArrayList.Delete@Integer> +\ \ + +@@TJclIntfArrayList.Destroy +<copy TJclArrayList.Destroy> +\ \ + +@@TJclIntfArrayList.Extract@IInterface +<copy TJclArrayList.Extract@TObject> +\ \ + +@@TJclIntfArrayList.ExtractAll@IJclIntfCollection +<copy TJclArrayList.ExtractAll@IJclCollection> +\ \ + +@@TJclIntfArrayList.ExtractIndex@Integer +<copy TJclArrayList.ExtractIndex@Integer> +\ \ + +@@TJclIntfArrayList.First +<copy TJclArrayList.First> +\ \ + +@@TJclIntfArrayList.GetEnumerator +<copy TJclArrayList.GetEnumerator> +\ \ + +@@TJclIntfArrayList.GetObject@Integer +<copy TJclArrayList.GetObject@Integer> +\ \ + +@@TJclIntfArrayList.IndexOf@IInterface +<copy TJclArrayList.IndexOf@TObject> +\ \ + +@@TJclIntfArrayList.Insert@Integer@IInterface +<copy TJclArrayList.Insert@Integer@TObject> +\ \ + +@@TJclIntfArrayList.InsertAll@Integer@IJclIntfCollection +<copy TJclArrayList.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclIntfArrayList.IsEmpty +<copy TJclArrayList.IsEmpty> +\ \ + +@@TJclIntfArrayList.Last +<copy TJclArrayList.Last> +\ \ + +@@TJclIntfArrayList.LastIndexOf@IInterface +<copy TJclArrayList.LastIndexOf@TObject> +\ \ + +@@TJclIntfArrayList.Remove@IInterface +<copy TJclArrayList.Remove@TObject> +\ \ + +@@TJclIntfArrayList.RemoveAll@IJclIntfCollection +<copy TJclArrayList.RemoveAll@IJclCollection> +\ \ + +@@TJclIntfArrayList.RetainAll@IJclIntfCollection +<copy TJclArrayList.RetainAll@IJclCollection> +\ \ + +@@TJclIntfArrayList.SetCapacity@Integer +<copy TJclArrayList.SetCapacity@Integer> +\ \ + +@@TJclIntfArrayList.SetObject@Integer@IInterface +<copy TJclArrayList.SetObject@Integer@TObject> +\ \ + +@@TJclIntfArrayList.Size +<copy TJclArrayList.Size> +\ \ + +@@TJclIntfArrayList.SubList@Integer@Integer +<copy TJclArrayList.SubList@Integer@Integer> +\ \ +@@TJclAnsiStrArrayList +<copy TJclArrayList> +\ \ + +@@!!MEMBEROVERVIEW_TJclAnsiStrArrayList +<copy !!MEMBEROVERVIEW_TJclArrayList> +\ \ + +@@TJclAnsiStrArrayList.Add@AnsiString +<copy TJclArrayList.Add@TObject> +\ \ + +@@TJclAnsiStrArrayList.AddAll@IJclAnsiStrCollection +<copy TJclArrayList.AddAll@IJclCollection> +\ \ + +@@TJclAnsiStrArrayList.AssignDataTo@TJclAbstractContainerBase +<copy TJclArrayList.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclAnsiStrArrayList.Clear +<copy TJclArrayList.Clear> +\ \ + +@@TJclAnsiStrArrayList.CollectionEquals@IJclAnsiStrCollection +<copy TJclArrayList.CollectionEquals@IJclCollection> +\ \ + +@@TJclAnsiStrArrayList.Contains@AnsiString +<copy TJclArrayList.Contains@TObject> +\ \ + +@@TJclAnsiStrArrayList.ContainsAll@IJclAnsiStrCollection +<copy TJclArrayList.ContainsAll@IJclCollection> +\ \ + +@@TJclAnsiStrArrayList.Create@IJclAnsiStrCollection +<copy TJclArrayList.Create@IJclCollection@Boolean> +\ \ + +@@TJclAnsiStrArrayList.Create@Integer +<copy TJclArrayList.Create@Integer@Boolean> +\ \ + +@@TJclAnsiStrArrayList.CreateEmptyContainer +<copy TJclArrayList.CreateEmptyContainer> +\ \ + +@@TJclAnsiStrArrayList.Delete@Integer +<copy TJclArrayList.Delete@Integer> +\ \ + +@@TJclAnsiStrArrayList.Destroy +<copy TJclArrayList.Destroy> +\ \ + +@@TJclAnsiStrArrayList.Extract@AnsiString +<copy TJclArrayList.Extract@TObject> +\ \ + +@@TJclAnsiStrArrayList.ExtractAll@IJclAnsiStrCollection +<copy TJclArrayList.ExtractAll@IJclCollection> +\ \ + +@@TJclAnsiStrArrayList.ExtractIndex@Integer +<copy TJclArrayList.ExtractIndex@Integer> +\ \ + +@@TJclAnsiStrArrayList.First +<copy TJclArrayList.First> +\ \ + +@@TJclAnsiStrArrayList.GetEnumerator +<copy TJclArrayList.GetEnumerator> +\ \ + +@@TJclAnsiStrArrayList.GetString@Integer +<copy TJclArrayList.GetObject@Integer> +\ \ + +@@TJclAnsiStrArrayList.IndexOf@AnsiString +<copy TJclArrayList.IndexOf@TObject> +\ \ + +@@TJclAnsiStrArrayList.Insert@Integer@AnsiString +<copy TJclArrayList.Insert@Integer@TObject> +\ \ + +@@TJclAnsiStrArrayList.InsertAll@Integer@IJclAnsiStrCollection +<copy TJclArrayList.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclAnsiStrArrayList.IsEmpty +<copy TJclArrayList.IsEmpty> +\ \ + +@@TJclAnsiStrArrayList.Last +<copy TJclArrayList.Last> +\ \ + +@@TJclAnsiStrArrayList.LastIndexOf@AnsiString +<copy TJclArrayList.LastIndexOf@TObject> +\ \ + +@@TJclAnsiStrArrayList.Remove@AnsiString +<copy TJclArrayList.Remove@TObject> +\ \ + +@@TJclAnsiStrArrayList.RemoveAll@IJclAnsiStrCollection +<copy TJclArrayList.RemoveAll@IJclCollection> +\ \ + +@@TJclAnsiStrArrayList.RetainAll@IJclAnsiStrCollection +<copy TJclArrayList.RetainAll@IJclCollection> +\ \ + +@@TJclAnsiStrArrayList.SetCapacity@Integer +<copy TJclArrayList.SetCapacity@Integer> +\ \ + +@@TJclAnsiStrArrayList.SetString@Integer@AnsiString +<copy TJclArrayList.SetObject@Integer@TObject> +\ \ + +@@TJclAnsiStrArrayList.Size +<copy TJclArrayList.Size> +\ \ + +@@TJclAnsiStrArrayList.SubList@Integer@Integer +<copy TJclArrayList.SubList@Integer@Integer> +\ \ +@@TJclWideStrArrayList +<copy TJclArrayList> +\ \ + +@@!!MEMBEROVERVIEW_TJclWideStrArrayList +<copy !!MEMBEROVERVIEW_TJclArrayList> +\ \ + +@@TJclWideStrArrayList.Add@WideString +<copy TJclArrayList.Add@TObject> +\ \ + +@@TJclWideStrArrayList.AddAll@IJclWideStrCollection +<copy TJclArrayList.AddAll@IJclCollection> +\ \ + +@@TJclWideStrArrayList.AssignDataTo@TJclAbstractContainerBase +<copy TJclArrayList.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclWideStrArrayList.Clear +<copy TJclArrayList.Clear> +\ \ + +@@TJclWideStrArrayList.CollectionEquals@IJclWideStrCollection +<copy TJclArrayList.CollectionEquals@IJclCollection> +\ \ + +@@TJclWideStrArrayList.Contains@WideString +<copy TJclArrayList.Contains@TObject> +\ \ + +@@TJclWideStrArrayList.ContainsAll@IJclWideStrCollection +<copy TJclArrayList.ContainsAll@IJclCollection> +\ \ + +@@TJclWideStrArrayList.Create@IJclWideStrCollection +<copy TJclArrayList.Create@IJclCollection@Boolean> +\ \ + +@@TJclWideStrArrayList.Create@Integer +<copy TJclArrayList.Create@Integer@Boolean> +\ \ + +@@TJclWideStrArrayList.CreateEmptyContainer +<copy TJclArrayList.CreateEmptyContainer> +\ \ + +@@TJclWideStrArrayList.Delete@Integer +<copy TJclArrayList.Delete@Integer> +\ \ + +@@TJclWideStrArrayList.Destroy +<copy TJclArrayList.Destroy> +\ \ + +@@TJclWideStrArrayList.Extract@WideString +<copy TJclArrayList.Extract@TObject> +\ \ + +@@TJclWideStrArrayList.ExtractAll@IJclWideStrCollection +<copy TJclArrayList.ExtractAll@IJclCollection> +\ \ + +@@TJclWideStrArrayList.ExtractIndex@Integer +<copy TJclArrayList.ExtractIndex@Integer> +\ \ + +@@TJclWideStrArrayList.First +<copy TJclArrayList.First> +\ \ + +@@TJclWideStrArrayList.GetEnumerator +<copy TJclArrayList.GetEnumerator> +\ \ + +@@TJclWideStrArrayList.GetString@Integer +<copy TJclArrayList.GetObject@Integer> +\ \ + +@@TJclWideStrArrayList.IndexOf@WideString +<copy TJclArrayList.IndexOf@TObject> +\ \ + +@@TJclWideStrArrayList.Insert@Integer@WideString +<copy TJclArrayList.Insert@Integer@TObject> +\ \ + +@@TJclWideStrArrayList.InsertAll@Integer@IJclWideStrCollection +<copy TJclArrayList.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclWideStrArrayList.IsEmpty +<copy TJclArrayList.IsEmpty> +\ \ + +@@TJclWideStrArrayList.Last +<copy TJclArrayList.Last> +\ \ + +@@TJclWideStrArrayList.LastIndexOf@WideString +<copy TJclArrayList.LastIndexOf@TObject> +\ \ + +@@TJclWideStrArrayList.Remove@WideString +<copy TJclArrayList.Remove@TObject> +\ \ + +@@TJclWideStrArrayList.RemoveAll@IJclWideStrCollection +<copy TJclArrayList.RemoveAll@IJclCollection> +\ \ + +@@TJclWideStrArrayList.RetainAll@IJclWideStrCollection +<copy TJclArrayList.RetainAll@IJclCollection> +\ \ + +@@TJclWideStrArrayList.SetCapacity@Integer +<copy TJclArrayList.SetCapacity@Integer> +\ \ + +@@TJclWideStrArrayList.SetString@Integer@WideString +<copy TJclArrayList.SetObject@Integer@TObject> +\ \ + +@@TJclWideStrArrayList.Size +<copy TJclArrayList.Size> +\ \ + +@@TJclWideStrArrayList.SubList@Integer@Integer +<copy TJclArrayList.SubList@Integer@Integer> +\ \ +@@TJclUnicodeStrArrayList +<copy TJclArrayList> +\ \ + +@@!!MEMBEROVERVIEW_TJclUnicodeStrArrayList +<copy !!MEMBEROVERVIEW_TJclArrayList> +\ \ + +@@TJclUnicodeStrArrayList.Add@UnicodeString +<copy TJclArrayList.Add@TObject> +\ \ + +@@TJclUnicodeStrArrayList.AddAll@IJclUnicodeStrCollection +<copy TJclArrayList.AddAll@IJclCollection> +\ \ + +@@TJclUnicodeStrArrayList.AssignDataTo@TJclAbstractContainerBase +<copy TJclArrayList.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclUnicodeStrArrayList.Clear +<copy TJclArrayList.Clear> +\ \ + +@@TJclUnicodeStrArrayList.CollectionEquals@IJclUnicodeStrCollection +<copy TJclArrayList.CollectionEquals@IJclCollection> +\ \ + +@@TJclUnicodeStrArrayList.Contains@UnicodeString +<copy TJclArrayList.Contains@TObject> +\ \ + +@@TJclUnicodeStrArrayList.ContainsAll@IJclUnicodeStrCollection +<copy TJclArrayList.ContainsAll@IJclCollection> +\ \ + +@@TJclUnicodeStrArrayList.Create@IJclUnicodeStrCollection +<copy TJclArrayList.Create@IJclCollection@Boolean> +\ \ + +@@TJclUnicodeStrArrayList.Create@Integer +<copy TJclArrayList.Create@Integer@Boolean> +\ \ + +@@TJclUnicodeStrArrayList.CreateEmptyContainer +<copy TJclArrayList.CreateEmptyContainer> +\ \ + +@@TJclUnicodeStrArrayList.Delete@Integer +<copy TJclArrayList.Delete@Integer> +\ \ + +@@TJclUnicodeStrArrayList.Destroy +<copy TJclArrayList.Destroy> +\ \ + +@@TJclUnicodeStrArrayList.Extract@UnicodeString +<copy TJclArrayList.Extract@TObject> +\ \ + +@@TJclUnicodeStrArrayList.ExtractAll@IJclUnicodeStrCollection +<copy TJclArrayList.ExtractAll@IJclCollection> +\ \ + +@@TJclUnicodeStrArrayList.ExtractIndex@Integer +<copy TJclArrayList.ExtractIndex@Integer> +\ \ + +@@TJclUnicodeStrArrayList.First +<copy TJclArrayList.First> +\ \ + +@@TJclUnicodeStrArrayList.GetEnumerator +<copy TJclArrayList.GetEnumerator> +\ \ + +@@TJclUnicodeStrArrayList.GetString@Integer +<copy TJclArrayList.GetObject@Integer> +\ \ + +@@TJclUnicodeStrArrayList.IndexOf@UnicodeString +<copy TJclArrayList.IndexOf@TObject> +\ \ + +@@TJclUnicodeStrArrayList.Insert@Integer@UnicodeString +<copy TJclArrayList.Insert@Integer@TObject> +\ \ + +@@TJclUnicodeStrArrayList.InsertAll@Integer@IJclUnicodeStrCollection +<copy TJclArrayList.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclUnicodeStrArrayList.IsEmpty +<copy TJclArrayList.IsEmpty> +\ \ + +@@TJclUnicodeStrArrayList.Last +<copy TJclArrayList.Last> +\ \ + +@@TJclUnicodeStrArrayList.LastIndexOf@UnicodeString +<copy TJclArrayList.LastIndexOf@TObject> +\ \ + +@@TJclUnicodeStrArrayList.Remove@UnicodeString +<copy TJclArrayList.Remove@TObject> +\ \ + +@@TJclUnicodeStrArrayList.RemoveAll@IJclUnicodeStrCollection +<copy TJclArrayList.RemoveAll@IJclCollection> +\ \ + +@@TJclUnicodeStrArrayList.RetainAll@IJclUnicodeStrCollection +<copy TJclArrayList.RetainAll@IJclCollection> +\ \ + +@@TJclUnicodeStrArrayList.SetCapacity@Integer +<copy TJclArrayList.SetCapacity@Integer> +\ \ + +@@TJclUnicodeStrArrayList.SetString@Integer@UnicodeString +<copy TJclArrayList.SetObject@Integer@TObject> +\ \ + +@@TJclUnicodeStrArrayList.Size +<copy TJclArrayList.Size> +\ \ + +@@TJclUnicodeStrArrayList.SubList@Integer@Integer +<copy TJclArrayList.SubList@Integer@Integer> +\ \ +@@TJclSingleArrayList +<copy TJclArrayList> +\ \ + +@@!!MEMBEROVERVIEW_TJclSingleArrayList +<copy !!MEMBEROVERVIEW_TJclArrayList> +\ \ + +@@TJclSingleArrayList.Add@Single +<copy TJclArrayList.Add@TObject> +\ \ + +@@TJclSingleArrayList.AddAll@IJclSingleCollection +<copy TJclArrayList.AddAll@IJclCollection> +\ \ + +@@TJclSingleArrayList.AssignDataTo@TJclAbstractContainerBase +<copy TJclArrayList.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclSingleArrayList.Clear +<copy TJclArrayList.Clear> +\ \ + +@@TJclSingleArrayList.CollectionEquals@IJclSingleCollection +<copy TJclArrayList.CollectionEquals@IJclCollection> +\ \ + +@@TJclSingleArrayList.Contains@Single +<copy TJclArrayList.Contains@TObject> +\ \ + +@@TJclSingleArrayList.ContainsAll@IJclSingleCollection +<copy TJclArrayList.ContainsAll@IJclCollection> +\ \ + +@@TJclSingleArrayList.Create@IJclSingleCollection +<copy TJclArrayList.Create@IJclCollection@Boolean> +\ \ + +@@TJclSingleArrayList.Create@Integer +<copy TJclArrayList.Create@Integer@Boolean> +\ \ + +@@TJclSingleArrayList.CreateEmptyContainer +<copy TJclArrayList.CreateEmptyContainer> +\ \ + +@@TJclSingleArrayList.Delete@Integer +<copy TJclArrayList.Delete@Integer> +\ \ + +@@TJclSingleArrayList.Destroy +<copy TJclArrayList.Destroy> +\ \ + +@@TJclSingleArrayList.Extract@Single +<copy TJclArrayList.Extract@TObject> +\ \ + +@@TJclSingleArrayList.ExtractAll@IJclSingleCollection +<copy TJclArrayList.ExtractAll@IJclCollection> +\ \ + +@@TJclSingleArrayList.ExtractIndex@Integer +<copy TJclArrayList.ExtractIndex@Integer> +\ \ + +@@TJclSingleArrayList.First +<copy TJclArrayList.First> +\ \ + +@@TJclSingleArrayList.GetEnumerator +<copy TJclArrayList.GetEnumerator> +\ \ + +@@TJclSingleArrayList.GetValue@Integer +<copy TJclArrayList.GetObject@Integer> +\ \ + +@@TJclSingleArrayList.IndexOf@Single +<copy TJclArrayList.IndexOf@TObject> +\ \ + +@@TJclSingleArrayList.Insert@Integer@Single +<copy TJclArrayList.Insert@Integer@TObject> +\ \ + +@@TJclSingleArrayList.InsertAll@Integer@IJclSingleCollection +<copy TJclArrayList.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclSingleArrayList.IsEmpty +<copy TJclArrayList.IsEmpty> +\ \ + +@@TJclSingleArrayList.Last +<copy TJclArrayList.Last> +\ \ + +@@TJclSingleArrayList.LastIndexOf@Single +<copy TJclArrayList.LastIndexOf@TObject> +\ \ + +@@TJclSingleArrayList.Remove@Single +<copy TJclArrayList.Remove@TObject> +\ \ + +@@TJclSingleArrayList.RemoveAll@IJclSingleCollection +<copy TJclArrayList.RemoveAll@IJclCollection> +\ \ + +@@TJclSingleArrayList.RetainAll@IJclSingleCollection +<copy TJclArrayList.RetainAll@IJclCollection> +\ \ + +@@TJclSingleArrayList.SetCapacity@Integer +<copy TJclArrayList.SetCapacity@Integer> +\ \ + +@@TJclSingleArrayList.SetValue@Integer@Single +<copy TJclArrayList.SetObject@Integer@TObject> +\ \ + +@@TJclSingleArrayList.Size +<copy TJclArrayList.Size> +\ \ + +@@TJclSingleArrayList.SubList@Integer@Integer +<copy TJclArrayList.SubList@Integer@Integer> +\ \ +@@TJclDoubleArrayList +<copy TJclArrayList> +\ \ + +@@!!MEMBEROVERVIEW_TJclDoubleArrayList +<copy !!MEMBEROVERVIEW_TJclArrayList> +\ \ + +@@TJclDoubleArrayList.Add@Double +<copy TJclArrayList.Add@TObject> +\ \ + +@@TJclDoubleArrayList.AddAll@IJclDoubleCollection +<copy TJclArrayList.AddAll@IJclCollection> +\ \ + +@@TJclDoubleArrayList.AssignDataTo@TJclAbstractContainerBase +<copy TJclArrayList.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclDoubleArrayList.Clear +<copy TJclArrayList.Clear> +\ \ + +@@TJclDoubleArrayList.CollectionEquals@IJclDoubleCollection +<copy TJclArrayList.CollectionEquals@IJclCollection> +\ \ + +@@TJclDoubleArrayList.Contains@Double +<copy TJclArrayList.Contains@TObject> +\ \ + +@@TJclDoubleArrayList.ContainsAll@IJclDoubleCollection +<copy TJclArrayList.ContainsAll@IJclCollection> +\ \ + +@@TJclDoubleArrayList.Create@IJclDoubleCollection +<copy TJclArrayList.Create@IJclCollection@Boolean> +\ \ + +@@TJclDoubleArrayList.Create@Integer +<copy TJclArrayList.Create@Integer@Boolean> +\ \ + +@@TJclDoubleArrayList.CreateEmptyContainer +<copy TJclArrayList.CreateEmptyContainer> +\ \ + +@@TJclDoubleArrayList.Delete@Integer +<copy TJclArrayList.Delete@Integer> +\ \ + +@@TJclDoubleArrayList.Destroy +<copy TJclArrayList.Destroy> +\ \ + +@@TJclDoubleArrayList.Extract@Double +<copy TJclArrayList.Extract@TObject> +\ \ + +@@TJclDoubleArrayList.ExtractAll@IJclDoubleCollection +<copy TJclArrayList.ExtractAll@IJclCollection> +\ \ + +@@TJclDoubleArrayList.ExtractIndex@Integer +<copy TJclArrayList.ExtractIndex@Integer> +\ \ + +@@TJclDoubleArrayList.First +<copy TJclArrayList.First> +\ \ + +@@TJclDoubleArrayList.GetEnumerator +<copy TJclArrayList.GetEnumerator> +\ \ + +@@TJclDoubleArrayList.GetValue@Integer +<copy TJclArrayList.GetObject@Integer> +\ \ + +@@TJclDoubleArrayList.IndexOf@Double +<copy TJclArrayList.IndexOf@TObject> +\ \ + +@@TJclDoubleArrayList.Insert@Integer@Double +<copy TJclArrayList.Insert@Integer@TObject> +\ \ + +@@TJclDoubleArrayList.InsertAll@Integer@IJclDoubleCollection +<copy TJclArrayList.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclDoubleArrayList.IsEmpty +<copy TJclArrayList.IsEmpty> +\ \ + +@@TJclDoubleArrayList.Last +<copy TJclArrayList.Last> +\ \ + +@@TJclDoubleArrayList.LastIndexOf@Double +<copy TJclArrayList.LastIndexOf@TObject> +\ \ + +@@TJclDoubleArrayList.Remove@Double +<copy TJclArrayList.Remove@TObject> +\ \ + +@@TJclDoubleArrayList.RemoveAll@IJclDoubleCollection +<copy TJclArrayList.RemoveAll@IJclCollection> +\ \ + +@@TJclDoubleArrayList.RetainAll@IJclDoubleCollection +<copy TJclArrayList.RetainAll@IJclCollection> +\ \ + +@@TJclDoubleArrayList.SetCapacity@Integer +<copy TJclArrayList.SetCapacity@Integer> +\ \ + +@@TJclDoubleArrayList.SetValue@Integer@Double +<copy TJclArrayList.SetObject@Integer@TObject> +\ \ + +@@TJclDoubleArrayList.Size +<copy TJclArrayList.Size> +\ \ + +@@TJclDoubleArrayList.SubList@Integer@Integer +<copy TJclArrayList.SubList@Integer@Integer> +\ \ +@@TJclExtendedArrayList +<copy TJclArrayList> +\ \ + +@@!!MEMBEROVERVIEW_TJclExtendedArrayList +<copy !!MEMBEROVERVIEW_TJclArrayList> +\ \ + +@@TJclExtendedArrayList.Add@Extended +<copy TJclArrayList.Add@TObject> +\ \ + +@@TJclExtendedArrayList.AddAll@IJclExtendedCollection +<copy TJclArrayList.AddAll@IJclCollection> +\ \ + +@@TJclExtendedArrayList.AssignDataTo@TJclAbstractContainerBase +<copy TJclArrayList.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclExtendedArrayList.Clear +<copy TJclArrayList.Clear> +\ \ + +@@TJclExtendedArrayList.CollectionEquals@IJclExtendedCollection +<copy TJclArrayList.CollectionEquals@IJclCollection> +\ \ + +@@TJclExtendedArrayList.Contains@Extended +<copy TJclArrayList.Contains@TObject> +\ \ + +@@TJclExtendedArrayList.ContainsAll@IJclExtendedCollection +<copy TJclArrayList.ContainsAll@IJclCollection> +\ \ + +@@TJclExtendedArrayList.Create@IJclExtendedCollection +<copy TJclArrayList.Create@IJclCollection@Boolean> +\ \ + +@@TJclExtendedArrayList.Create@Integer +<copy TJclArrayList.Create@Integer@Boolean> +\ \ + +@@TJclExtendedArrayList.CreateEmptyContainer +<copy TJclArrayList.CreateEmptyContainer> +\ \ + +@@TJclExtendedArrayList.Delete@Integer +<copy TJclArrayList.Delete@Integer> +\ \ + +@@TJclExtendedArrayList.Destroy +<copy TJclArrayList.Destroy> +\ \ + +@@TJclExtendedArrayList.Extract@Extended +<copy TJclArrayList.Extract@TObject> +\ \ + +@@TJclExtendedArrayList.ExtractAll@IJclExtendedCollection +<copy TJclArrayList.ExtractAll@IJclCollection> +\ \ + +@@TJclExtendedArrayList.ExtractIndex@Integer +<copy TJclArrayList.ExtractIndex@Integer> +\ \ + +@@TJclExtendedArrayList.First +<copy TJclArrayList.First> +\ \ + +@@TJclExtendedArrayList.GetEnumerator +<copy TJclArrayList.GetEnumerator> +\ \ + +@@TJclExtendedArrayList.GetValue@Integer +<copy TJclArrayList.GetObject@Integer> +\ \ + +@@TJclExtendedArrayList.IndexOf@Extended +<copy TJclArrayList.IndexOf@TObject> +\ \ + +@@TJclExtendedArrayList.Insert@Integer@Extended +<copy TJclArrayList.Insert@Integer@TObject> +\ \ + +@@TJclExtendedArrayList.InsertAll@Integer@IJclExtendedCollection +<copy TJclArrayList.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclExtendedArrayList.IsEmpty +<copy TJclArrayList.IsEmpty> +\ \ + +@@TJclExtendedArrayList.Last +<copy TJclArrayList.Last> +\ \ + +@@TJclExtendedArrayList.LastIndexOf@Extended +<copy TJclArrayList.LastIndexOf@TObject> +\ \ + +@@TJclExtendedArrayList.Remove@Extended +<copy TJclArrayList.Remove@TObject> +\ \ + +@@TJclExtendedArrayList.RemoveAll@IJclExtendedCollection +<copy TJclArrayList.RemoveAll@IJclCollection> +\ \ + +@@TJclExtendedArrayList.RetainAll@IJclExtendedCollection +<copy TJclArrayList.RetainAll@IJclCollection> +\ \ + +@@TJclExtendedArrayList.SetCapacity@Integer +<copy TJclArrayList.SetCapacity@Integer> +\ \ + +@@TJclExtendedArrayList.SetValue@Integer@Extended +<copy TJclArrayList.SetObject@Integer@TObject> +\ \ + +@@TJclExtendedArrayList.Size +<copy TJclArrayList.Size> +\ \ + +@@TJclExtendedArrayList.SubList@Integer@Integer +<copy TJclArrayList.SubList@Integer@Integer> +\ \ +@@TJclIntegerArrayList +<copy TJclArrayList> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntegerArrayList +<copy !!MEMBEROVERVIEW_TJclArrayList> +\ \ + +@@TJclIntegerArrayList.Add@Integer +<copy TJclArrayList.Add@TObject> +\ \ + +@@TJclIntegerArrayList.AddAll@IJclIntegerCollection +<copy TJclArrayList.AddAll@IJclCollection> +\ \ + +@@TJclIntegerArrayList.AssignDataTo@TJclAbstractContainerBase +<copy TJclArrayList.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntegerArrayList.Clear +<copy TJclArrayList.Clear> +\ \ + +@@TJclIntegerArrayList.CollectionEquals@IJclIntegerCollection +<copy TJclArrayList.CollectionEquals@IJclCollection> +\ \ + +@@TJclIntegerArrayList.Contains@Integer +<copy TJclArrayList.Contains@TObject> +\ \ + +@@TJclIntegerArrayList.ContainsAll@IJclIntegerCollection +<copy TJclArrayList.ContainsAll@IJclCollection> +\ \ + +@@TJclIntegerArrayList.Create@IJclIntegerCollection +<copy TJclArrayList.Create@IJclCollection@Boolean> +\ \ + +@@TJclIntegerArrayList.Create@Integer +<copy TJclArrayList.Create@Integer@Boolean> +\ \ + +@@TJclIntegerArrayList.CreateEmptyContainer +<copy TJclArrayList.CreateEmptyContainer> +\ \ + +@@TJclIntegerArrayList.Delete@Integer +<copy TJclArrayList.Delete@Integer> +\ \ + +@@TJclIntegerArrayList.Destroy +<copy TJclArrayList.Destroy> +\ \ + +@@TJclIntegerArrayList.Extract@Integer +<copy TJclArrayList.Extract@TObject> +\ \ + +@@TJclIntegerArrayList.ExtractAll@IJclIntegerCollection +<copy TJclArrayList.ExtractAll@IJclCollection> +\ \ + +@@TJclIntegerArrayList.ExtractIndex@Integer +<copy TJclArrayList.ExtractIndex@Integer> +\ \ + +@@TJclIntegerArrayList.First +<copy TJclArrayList.First> +\ \ + +@@TJclIntegerArrayList.GetEnumerator +<copy TJclArrayList.GetEnumerator> +\ \ + +@@TJclIntegerArrayList.GetValue@Integer +<copy TJclArrayList.GetObject@Integer> +\ \ + +@@TJclIntegerArrayList.IndexOf@Integer +<copy TJclArrayList.IndexOf@TObject> +\ \ + +@@TJclIntegerArrayList.Insert@Integer@Integer +<copy TJclArrayList.Insert@Integer@TObject> +\ \ + +@@TJclIntegerArrayList.InsertAll@Integer@IJclIntegerCollection +<copy TJclArrayList.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclIntegerArrayList.IsEmpty +<copy TJclArrayList.IsEmpty> +\ \ + +@@TJclIntegerArrayList.Last +<copy TJclArrayList.Last> +\ \ + +@@TJclIntegerArrayList.LastIndexOf@Integer +<copy TJclArrayList.LastIndexOf@TObject> +\ \ + +@@TJclIntegerArrayList.Remove@Integer +<copy TJclArrayList.Remove@TObject> +\ \ + +@@TJclIntegerArrayList.RemoveAll@IJclIntegerCollection +<copy TJclArrayList.RemoveAll@IJclCollection> +\ \ + +@@TJclIntegerArrayList.RetainAll@IJclIntegerCollection +<copy TJclArrayList.RetainAll@IJclCollection> +\ \ + +@@TJclIntegerArrayList.SetCapacity@Integer +<copy TJclArrayList.SetCapacity@Integer> +\ \ + +@@TJclIntegerArrayList.SetValue@Integer@Integer +<copy TJclArrayList.SetObject@Integer@TObject> +\ \ + +@@TJclIntegerArrayList.Size +<copy TJclArrayList.Size> +\ \ + +@@TJclIntegerArrayList.SubList@Integer@Integer +<copy TJclArrayList.SubList@Integer@Integer> +\ \ +@@TJclCardinalArrayList +<copy TJclArrayList> +\ \ + +@@!!MEMBEROVERVIEW_TJclCardinalArrayList +<copy !!MEMBEROVERVIEW_TJclArrayList> +\ \ + +@@TJclCardinalArrayList.Add@Cardinal +<copy TJclArrayList.Add@TObject> +\ \ + +@@TJclCardinalArrayList.AddAll@IJclCardinalCollection +<copy TJclArrayList.AddAll@IJclCollection> +\ \ + +@@TJclCardinalArrayList.AssignDataTo@TJclAbstractContainerBase +<copy TJclArrayList.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclCardinalArrayList.Clear +<copy TJclArrayList.Clear> +\ \ + +@@TJclCardinalArrayList.CollectionEquals@IJclCardinalCollection +<copy TJclArrayList.CollectionEquals@IJclCollection> +\ \ + +@@TJclCardinalArrayList.Contains@Cardinal +<copy TJclArrayList.Contains@TObject> +\ \ + +@@TJclCardinalArrayList.ContainsAll@IJclCardinalCollection +<copy TJclArrayList.ContainsAll@IJclCollection> +\ \ + +@@TJclCardinalArrayList.Create@IJclCardinalCollection +<copy TJclArrayList.Create@IJclCollection@Boolean> +\ \ + +@@TJclCardinalArrayList.Create@Integer +<copy TJclArrayList.Create@Integer@Boolean> +\ \ + +@@TJclCardinalArrayList.CreateEmptyContainer +<copy TJclArrayList.CreateEmptyContainer> +\ \ + +@@TJclCardinalArrayList.Delete@Integer +<copy TJclArrayList.Delete@Integer> +\ \ + +@@TJclCardinalArrayList.Destroy +<copy TJclArrayList.Destroy> +\ \ + +@@TJclCardinalArrayList.Extract@Cardinal +<copy TJclArrayList.Extract@TObject> +\ \ + +@@TJclCardinalArrayList.ExtractAll@IJclCardinalCollection +<copy TJclArrayList.ExtractAll@IJclCollection> +\ \ + +@@TJclCardinalArrayList.ExtractIndex@Integer +<copy TJclArrayList.ExtractIndex@Integer> +\ \ + +@@TJclCardinalArrayList.First +<copy TJclArrayList.First> +\ \ + +@@TJclCardinalArrayList.GetEnumerator +<copy TJclArrayList.GetEnumerator> +\ \ + +@@TJclCardinalArrayList.GetValue@Integer +<copy TJclArrayList.GetObject@Integer> +\ \ + +@@TJclCardinalArrayList.IndexOf@Cardinal +<copy TJclArrayList.IndexOf@TObject> +\ \ + +@@TJclCardinalArrayList.Insert@Integer@Cardinal +<copy TJclArrayList.Insert@Integer@TObject> +\ \ + +@@TJclCardinalArrayList.InsertAll@Integer@IJclCardinalCollection +<copy TJclArrayList.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclCardinalArrayList.IsEmpty +<copy TJclArrayList.IsEmpty> +\ \ + +@@TJclCardinalArrayList.Last +<copy TJclArrayList.Last> +\ \ + +@@TJclCardinalArrayList.LastIndexOf@Cardinal +<copy TJclArrayList.LastIndexOf@TObject> +\ \ + +@@TJclCardinalArrayList.Remove@Cardinal +<copy TJclArrayList.Remove@TObject> +\ \ + +@@TJclCardinalArrayList.RemoveAll@IJclCardinalCollection +<copy TJclArrayList.RemoveAll@IJclCollection> +\ \ + +@@TJclCardinalArrayList.RetainAll@IJclCardinalCollection +<copy TJclArrayList.RetainAll@IJclCollection> +\ \ + +@@TJclCardinalArrayList.SetCapacity@Integer +<copy TJclArrayList.SetCapacity@Integer> +\ \ + +@@TJclCardinalArrayList.SetValue@Integer@Cardinal +<copy TJclArrayList.SetObject@Integer@TObject> +\ \ + +@@TJclCardinalArrayList.Size +<copy TJclArrayList.Size> +\ \ + +@@TJclCardinalArrayList.SubList@Integer@Integer +<copy TJclArrayList.SubList@Integer@Integer> +\ \ +@@TJclInt64ArrayList +<copy TJclArrayList> +\ \ + +@@!!MEMBEROVERVIEW_TJclInt64ArrayList +<copy !!MEMBEROVERVIEW_TJclArrayList> +\ \ + +@@TJclInt64ArrayList.Add@Int64 +<copy TJclArrayList.Add@TObject> +\ \ + +@@TJclInt64ArrayList.AddAll@IJclInt64Collection +<copy TJclArrayList.AddAll@IJclCollection> +\ \ + +@@TJclInt64ArrayList.AssignDataTo@TJclAbstractContainerBase +<copy TJclArrayList.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclInt64ArrayList.Clear +<copy TJclArrayList.Clear> +\ \ + +@@TJclInt64ArrayList.CollectionEquals@IJclInt64Collection +<copy TJclArrayList.CollectionEquals@IJclCollection> +\ \ + +@@TJclInt64ArrayList.Contains@Int64 +<copy TJclArrayList.Contains@TObject> +\ \ + +@@TJclInt64ArrayList.ContainsAll@IJclInt64Collection +<copy TJclArrayList.ContainsAll@IJclCollection> +\ \ + +@@TJclInt64ArrayList.Create@IJclInt64Collection +<copy TJclArrayList.Create@IJclCollection@Boolean> +\ \ + +@@TJclInt64ArrayList.Create@Integer +<copy TJclArrayList.Create@Integer@Boolean> +\ \ + +@@TJclInt64ArrayList.CreateEmptyContainer +<copy TJclArrayList.CreateEmptyContainer> +\ \ + +@@TJclInt64ArrayList.Delete@Integer +<copy TJclArrayList.Delete@Integer> +\ \ + +@@TJclInt64ArrayList.Destroy +<copy TJclArrayList.Destroy> +\ \ + +@@TJclInt64ArrayList.Extract@Int64 +<copy TJclArrayList.Extract@TObject> +\ \ + +@@TJclInt64ArrayList.ExtractAll@IJclInt64Collection +<copy TJclArrayList.ExtractAll@IJclCollection> +\ \ + +@@TJclInt64ArrayList.ExtractIndex@Integer +<copy TJclArrayList.ExtractIndex@Integer> +\ \ + +@@TJclInt64ArrayList.First +<copy TJclArrayList.First> +\ \ + +@@TJclInt64ArrayList.GetEnumerator +<copy TJclArrayList.GetEnumerator> +\ \ + +@@TJclInt64ArrayList.GetValue@Integer +<copy TJclArrayList.GetObject@Integer> +\ \ + +@@TJclInt64ArrayList.IndexOf@Int64 +<copy TJclArrayList.IndexOf@TObject> +\ \ + +@@TJclInt64ArrayList.Insert@Integer@Int64 +<copy TJclArrayList.Insert@Integer@TObject> +\ \ + +@@TJclInt64ArrayList.InsertAll@Integer@IJclInt64Collection +<copy TJclArrayList.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclInt64ArrayList.IsEmpty +<copy TJclArrayList.IsEmpty> +\ \ + +@@TJclInt64ArrayList.Last +<copy TJclArrayList.Last> +\ \ + +@@TJclInt64ArrayList.LastIndexOf@Int64 +<copy TJclArrayList.LastIndexOf@TObject> +\ \ + +@@TJclInt64ArrayList.Remove@Int64 +<copy TJclArrayList.Remove@TObject> +\ \ + +@@TJclInt64ArrayList.RemoveAll@IJclInt64Collection +<copy TJclArrayList.RemoveAll@IJclCollection> +\ \ + +@@TJclInt64ArrayList.RetainAll@IJclInt64Collection +<copy TJclArrayList.RetainAll@IJclCollection> +\ \ + +@@TJclInt64ArrayList.SetCapacity@Integer +<copy TJclArrayList.SetCapacity@Integer> +\ \ + +@@TJclInt64ArrayList.SetValue@Integer@Int64 +<copy TJclArrayList.SetObject@Integer@TObject> +\ \ + +@@TJclInt64ArrayList.Size +<copy TJclArrayList.Size> +\ \ + +@@TJclInt64ArrayList.SubList@Integer@Integer +<copy TJclArrayList.SubList@Integer@Integer> +\ \ +@@TJclPtrArrayList +<copy TJclArrayList> +\ \ + +@@!!MEMBEROVERVIEW_TJclPtrArrayList +<copy !!MEMBEROVERVIEW_TJclArrayList> +\ \ + +@@TJclPtrArrayList.Add@Pointer +<copy TJclArrayList.Add@TObject> +\ \ + +@@TJclPtrArrayList.AddAll@IJclPtrCollection +<copy TJclArrayList.AddAll@IJclCollection> +\ \ + +@@TJclPtrArrayList.AssignDataTo@TJclAbstractContainerBase +<copy TJclArrayList.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclPtrArrayList.Clear +<copy TJclArrayList.Clear> +\ \ + +@@TJclPtrArrayList.CollectionEquals@IJclPtrCollection +<copy TJclArrayList.CollectionEquals@IJclCollection> +\ \ + +@@TJclPtrArrayList.Contains@Pointer +<copy TJclArrayList.Contains@TObject> +\ \ + +@@TJclPtrArrayList.ContainsAll@IJclPtrCollection +<copy TJclArrayList.ContainsAll@IJclCollection> +\ \ + +@@TJclPtrArrayList.Create@IJclPtrCollection +<copy TJclArrayList.Create@IJclCollection@Boolean> +\ \ + +@@TJclPtrArrayList.Create@Integer +<copy TJclArrayList.Create@Integer@Boolean> +\ \ + +@@TJclPtrArrayList.CreateEmptyContainer +<copy TJclArrayList.CreateEmptyContainer> +\ \ + +@@TJclPtrArrayList.Delete@Integer +<copy TJclArrayList.Delete@Integer> +\ \ + +@@TJclPtrArrayList.Destroy +<copy TJclArrayList.Destroy> +\ \ + +@@TJclPtrArrayList.Extract@Pointer +<copy TJclArrayList.Extract@TObject> +\ \ + +@@TJclPtrArrayList.ExtractAll@IJclPtrCollection +<copy TJclArrayList.ExtractAll@IJclCollection> +\ \ + +@@TJclPtrArrayList.ExtractIndex@Integer +<copy TJclArrayList.ExtractIndex@Integer> +\ \ + +@@TJclPtrArrayList.First +<copy TJclArrayList.First> +\ \ + +@@TJclPtrArrayList.GetEnumerator +<copy TJclArrayList.GetEnumerator> +\ \ + +@@TJclPtrArrayList.GetPointer@Integer +<copy TJclArrayList.GetObject@Integer> +\ \ + +@@TJclPtrArrayList.IndexOf@Pointer +<copy TJclArrayList.IndexOf@TObject> +\ \ + +@@TJclPtrArrayList.Insert@Integer@Pointer +<copy TJclArrayList.Insert@Integer@TObject> +\ \ + +@@TJclPtrArrayList.InsertAll@Integer@IJclPtrCollection +<copy TJclArrayList.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclPtrArrayList.IsEmpty +<copy TJclArrayList.IsEmpty> +\ \ + +@@TJclPtrArrayList.Last +<copy TJclArrayList.Last> +\ \ + +@@TJclPtrArrayList.LastIndexOf@Pointer +<copy TJclArrayList.LastIndexOf@TObject> +\ \ + +@@TJclPtrArrayList.Remove@Pointer +<copy TJclArrayList.Remove@TObject> +\ \ + +@@TJclPtrArrayList.RemoveAll@IJclPtrCollection +<copy TJclArrayList.RemoveAll@IJclCollection> +\ \ + +@@TJclPtrArrayList.RetainAll@IJclPtrCollection +<copy TJclArrayList.RetainAll@IJclCollection> +\ \ + +@@TJclPtrArrayList.SetCapacity@Integer +<copy TJclArrayList.SetCapacity@Integer> +\ \ + +@@TJclPtrArrayList.SetPointer@Integer@Pointer +<copy TJclArrayList.SetObject@Integer@TObject> +\ \ + +@@TJclPtrArrayList.Size +<copy TJclArrayList.Size> +\ \ + +@@TJclPtrArrayList.SubList@Integer@Integer +<copy TJclArrayList.SubList@Integer@Integer> +\ \ + +@@TJclIntfArrayIterator +<copy TJclArrayIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfArrayIterator +<copy !!MEMBEROVERVIEW_TJclArrayIterator> +\ \ + +@@TJclIntfArrayIterator.Current +<copy TJclArrayIterator.Current> +\ \ + +@@TJclIntfArrayIterator.Current +<copy TJclArrayIterator.Current> +\ \ + +@@TJclIntfArrayIterator.Add@IInterface +<copy TJclArrayIterator.Add@TObject> +\ \ + +@@TJclIntfArrayIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclArrayIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclIntfArrayIterator.Create@IJclIntfList@Integer@Boolean@TItrStart +<copy TJclArrayIterator.Create@IJclList@Integer@Boolean@TItrStart> +\ \ + +@@TJclIntfArrayIterator.CreateEmptyIterator +<copy TJclArrayIterator.CreateEmptyIterator> +\ \ + +@@TJclIntfArrayIterator.Extract +<copy TJclArrayIterator.Extract> +\ \ + +@@TJclIntfArrayIterator.GetObject +<copy TJclArrayIterator.GetObject> +\ \ + +@@TJclIntfArrayIterator.HasNext +<copy TJclArrayIterator.HasNext> +\ \ + +@@TJclIntfArrayIterator.HasPrevious +<copy TJclArrayIterator.HasPrevious> +\ \ + +@@TJclIntfArrayIterator.Insert@IInterface +<copy TJclArrayIterator.Insert@TObject> +\ \ + +@@TJclIntfArrayIterator.IteratorEquals@IJclIntfIterator +<copy TJclArrayIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclIntfArrayIterator.MoveNext +<copy TJclArrayIterator.MoveNext> +\ \ + +@@TJclIntfArrayIterator.Next +<copy TJclArrayIterator.Next> +\ \ + +@@TJclIntfArrayIterator.NextIndex +<copy TJclArrayIterator.NextIndex> +\ \ + +@@TJclIntfArrayIterator.Previous +<copy TJclArrayIterator.Previous> +\ \ + +@@TJclIntfArrayIterator.PreviousIndex +<copy TJclArrayIterator.PreviousIndex> +\ \ + +@@TJclIntfArrayIterator.Remove +<copy TJclArrayIterator.Remove> +\ \ + +@@TJclIntfArrayIterator.Reset +<copy TJclArrayIterator.Reset> +\ \ + +@@TJclIntfArrayIterator.SetObject@IInterface +<copy TJclArrayIterator.SetObject@TObject> +\ \ +@@TJclAnsiStrArrayIterator +<copy TJclArrayIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclAnsiStrArrayIterator +<copy !!MEMBEROVERVIEW_TJclArrayIterator> +\ \ + +@@TJclAnsiStrArrayIterator.Current +<copy TJclArrayIterator.Current> +\ \ + +@@TJclAnsiStrArrayIterator.Current +<copy TJclArrayIterator.Current> +\ \ + +@@TJclAnsiStrArrayIterator.Add@AnsiString +<copy TJclArrayIterator.Add@TObject> +\ \ + +@@TJclAnsiStrArrayIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclArrayIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclAnsiStrArrayIterator.Create@IJclAnsiStrList@Integer@Boolean@TItrStart +<copy TJclArrayIterator.Create@IJclList@Integer@Boolean@TItrStart> +\ \ + +@@TJclAnsiStrArrayIterator.CreateEmptyIterator +<copy TJclArrayIterator.CreateEmptyIterator> +\ \ + +@@TJclAnsiStrArrayIterator.Extract +<copy TJclArrayIterator.Extract> +\ \ + +@@TJclAnsiStrArrayIterator.GetString +<copy TJclArrayIterator.GetObject> +\ \ + +@@TJclAnsiStrArrayIterator.HasNext +<copy TJclArrayIterator.HasNext> +\ \ + +@@TJclAnsiStrArrayIterator.HasPrevious +<copy TJclArrayIterator.HasPrevious> +\ \ + +@@TJclAnsiStrArrayIterator.Insert@AnsiString +<copy TJclArrayIterator.Insert@TObject> +\ \ + +@@TJclAnsiStrArrayIterator.IteratorEquals@IJclAnsiStrIterator +<copy TJclArrayIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclAnsiStrArrayIterator.MoveNext +<copy TJclArrayIterator.MoveNext> +\ \ + +@@TJclAnsiStrArrayIterator.Next +<copy TJclArrayIterator.Next> +\ \ + +@@TJclAnsiStrArrayIterator.NextIndex +<copy TJclArrayIterator.NextIndex> +\ \ + +@@TJclAnsiStrArrayIterator.Previous +<copy TJclArrayIterator.Previous> +\ \ + +@@TJclAnsiStrArrayIterator.PreviousIndex +<copy TJclArrayIterator.PreviousIndex> +\ \ + +@@TJclAnsiStrArrayIterator.Remove +<copy TJclArrayIterator.Remove> +\ \ + +@@TJclAnsiStrArrayIterator.Reset +<copy TJclArrayIterator.Reset> +\ \ + +@@TJclAnsiStrArrayIterator.SetString@AnsiString +<copy TJclArrayIterator.SetObject@TObject> +\ \ +@@TJclWideStrArrayIterator +<copy TJclArrayIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclWideStrArrayIterator +<copy !!MEMBEROVERVIEW_TJclArrayIterator> +\ \ + +@@TJclWideStrArrayIterator.Current +<copy TJclArrayIterator.Current> +\ \ + +@@TJclWideStrArrayIterator.Current +<copy TJclArrayIterator.Current> +\ \ + +@@TJclWideStrArrayIterator.Add@WideString +<copy TJclArrayIterator.Add@TObject> +\ \ + +@@TJclWideStrArrayIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclArrayIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclWideStrArrayIterator.Create@IJclWideStrList@Integer@Boolean@TItrStart +<copy TJclArrayIterator.Create@IJclList@Integer@Boolean@TItrStart> +\ \ + +@@TJclWideStrArrayIterator.CreateEmptyIterator +<copy TJclArrayIterator.CreateEmptyIterator> +\ \ + +@@TJclWideStrArrayIterator.Extract +<copy TJclArrayIterator.Extract> +\ \ + +@@TJclWideStrArrayIterator.GetString +<copy TJclArrayIterator.GetObject> +\ \ + +@@TJclWideStrArrayIterator.HasNext +<copy TJclArrayIterator.HasNext> +\ \ + +@@TJclWideStrArrayIterator.HasPrevious +<copy TJclArrayIterator.HasPrevious> +\ \ + +@@TJclWideStrArrayIterator.Insert@WideString +<copy TJclArrayIterator.Insert@TObject> +\ \ + +@@TJclWideStrArrayIterator.IteratorEquals@IJclWideStrIterator +<copy TJclArrayIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclWideStrArrayIterator.MoveNext +<copy TJclArrayIterator.MoveNext> +\ \ + +@@TJclWideStrArrayIterator.Next +<copy TJclArrayIterator.Next> +\ \ + +@@TJclWideStrArrayIterator.NextIndex +<copy TJclArrayIterator.NextIndex> +\ \ + +@@TJclWideStrArrayIterator.Previous +<copy TJclArrayIterator.Previous> +\ \ + +@@TJclWideStrArrayIterator.PreviousIndex +<copy TJclArrayIterator.PreviousIndex> +\ \ + +@@TJclWideStrArrayIterator.Remove +<copy TJclArrayIterator.Remove> +\ \ + +@@TJclWideStrArrayIterator.Reset +<copy TJclArrayIterator.Reset> +\ \ + +@@TJclWideStrArrayIterator.SetString@WideString +<copy TJclArrayIterator.SetObject@TObject> +\ \ +@@TJclUnicodeStrArrayIterator +<copy TJclArrayIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclUnicodeStrArrayIterator +<copy !!MEMBEROVERVIEW_TJclArrayIterator> +\ \ + +@@TJclUnicodeStrArrayIterator.Current +<copy TJclArrayIterator.Current> +\ \ + +@@TJclUnicodeStrArrayIterator.Current +<copy TJclArrayIterator.Current> +\ \ + +@@TJclUnicodeStrArrayIterator.Add@UnicodeString +<copy TJclArrayIterator.Add@TObject> +\ \ + +@@TJclUnicodeStrArrayIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclArrayIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclUnicodeStrArrayIterator.Create@IJclUnicodeStrList@Integer@Boolean@TItrStart +<copy TJclArrayIterator.Create@IJclList@Integer@Boolean@TItrStart> +\ \ + +@@TJclUnicodeStrArrayIterator.CreateEmptyIterator +<copy TJclArrayIterator.CreateEmptyIterator> +\ \ + +@@TJclUnicodeStrArrayIterator.Extract +<copy TJclArrayIterator.Extract> +\ \ + +@@TJclUnicodeStrArrayIterator.GetString +<copy TJclArrayIterator.GetObject> +\ \ + +@@TJclUnicodeStrArrayIterator.HasNext +<copy TJclArrayIterator.HasNext> +\ \ + +@@TJclUnicodeStrArrayIterator.HasPrevious +<copy TJclArrayIterator.HasPrevious> +\ \ + +@@TJclUnicodeStrArrayIterator.Insert@UnicodeString +<copy TJclArrayIterator.Insert@TObject> +\ \ + +@@TJclUnicodeStrArrayIterator.IteratorEquals@IJclUnicodeStrIterator +<copy TJclArrayIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclUnicodeStrArrayIterator.MoveNext +<copy TJclArrayIterator.MoveNext> +\ \ + +@@TJclUnicodeStrArrayIterator.Next +<copy TJclArrayIterator.Next> +\ \ + +@@TJclUnicodeStrArrayIterator.NextIndex +<copy TJclArrayIterator.NextIndex> +\ \ + +@@TJclUnicodeStrArrayIterator.Previous +<copy TJclArrayIterator.Previous> +\ \ + +@@TJclUnicodeStrArrayIterator.PreviousIndex +<copy TJclArrayIterator.PreviousIndex> +\ \ + +@@TJclUnicodeStrArrayIterator.Remove +<copy TJclArrayIterator.Remove> +\ \ + +@@TJclUnicodeStrArrayIterator.Reset +<copy TJclArrayIterator.Reset> +\ \ + +@@TJclUnicodeStrArrayIterator.SetString@UnicodeString +<copy TJclArrayIterator.SetObject@TObject> +\ \ +@@TJclSingleArrayIterator +<copy TJclArrayIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclSingleArrayIterator +<copy !!MEMBEROVERVIEW_TJclArrayIterator> +\ \ + +@@TJclSingleArrayIterator.Current +<copy TJclArrayIterator.Current> +\ \ + +@@TJclSingleArrayIterator.Current +<copy TJclArrayIterator.Current> +\ \ + +@@TJclSingleArrayIterator.Add@Single +<copy TJclArrayIterator.Add@TObject> +\ \ + +@@TJclSingleArrayIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclArrayIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclSingleArrayIterator.Create@IJclSingleList@Integer@Boolean@TItrStart +<copy TJclArrayIterator.Create@IJclList@Integer@Boolean@TItrStart> +\ \ + +@@TJclSingleArrayIterator.CreateEmptyIterator +<copy TJclArrayIterator.CreateEmptyIterator> +\ \ + +@@TJclSingleArrayIterator.Extract +<copy TJclArrayIterator.Extract> +\ \ + +@@TJclSingleArrayIterator.GetValue +<copy TJclArrayIterator.GetObject> +\ \ + +@@TJclSingleArrayIterator.HasNext +<copy TJclArrayIterator.HasNext> +\ \ + +@@TJclSingleArrayIterator.HasPrevious +<copy TJclArrayIterator.HasPrevious> +\ \ + +@@TJclSingleArrayIterator.Insert@Single +<copy TJclArrayIterator.Insert@TObject> +\ \ + +@@TJclSingleArrayIterator.IteratorEquals@IJclSingleIterator +<copy TJclArrayIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclSingleArrayIterator.MoveNext +<copy TJclArrayIterator.MoveNext> +\ \ + +@@TJclSingleArrayIterator.Next +<copy TJclArrayIterator.Next> +\ \ + +@@TJclSingleArrayIterator.NextIndex +<copy TJclArrayIterator.NextIndex> +\ \ + +@@TJclSingleArrayIterator.Previous +<copy TJclArrayIterator.Previous> +\ \ + +@@TJclSingleArrayIterator.PreviousIndex +<copy TJclArrayIterator.PreviousIndex> +\ \ + +@@TJclSingleArrayIterator.Remove +<copy TJclArrayIterator.Remove> +\ \ + +@@TJclSingleArrayIterator.Reset +<copy TJclArrayIterator.Reset> +\ \ + +@@TJclSingleArrayIterator.SetValue@Single +<copy TJclArrayIterator.SetObject@TObject> +\ \ +@@TJclDoubleArrayIterator +<copy TJclArrayIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclDoubleArrayIterator +<copy !!MEMBEROVERVIEW_TJclArrayIterator> +\ \ + +@@TJclDoubleArrayIterator.Current +<copy TJclArrayIterator.Current> +\ \ + +@@TJclDoubleArrayIterator.Current +<copy TJclArrayIterator.Current> +\ \ + +@@TJclDoubleArrayIterator.Add@Double +<copy TJclArrayIterator.Add@TObject> +\ \ + +@@TJclDoubleArrayIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclArrayIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclDoubleArrayIterator.Create@IJclDoubleList@Integer@Boolean@TItrStart +<copy TJclArrayIterator.Create@IJclList@Integer@Boolean@TItrStart> +\ \ + +@@TJclDoubleArrayIterator.CreateEmptyIterator +<copy TJclArrayIterator.CreateEmptyIterator> +\ \ + +@@TJclDoubleArrayIterator.Extract +<copy TJclArrayIterator.Extract> +\ \ + +@@TJclDoubleArrayIterator.GetValue +<copy TJclArrayIterator.GetObject> +\ \ + +@@TJclDoubleArrayIterator.HasNext +<copy TJclArrayIterator.HasNext> +\ \ + +@@TJclDoubleArrayIterator.HasPrevious +<copy TJclArrayIterator.HasPrevious> +\ \ + +@@TJclDoubleArrayIterator.Insert@Double +<copy TJclArrayIterator.Insert@TObject> +\ \ + +@@TJclDoubleArrayIterator.IteratorEquals@IJclDoubleIterator +<copy TJclArrayIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclDoubleArrayIterator.MoveNext +<copy TJclArrayIterator.MoveNext> +\ \ + +@@TJclDoubleArrayIterator.Next +<copy TJclArrayIterator.Next> +\ \ + +@@TJclDoubleArrayIterator.NextIndex +<copy TJclArrayIterator.NextIndex> +\ \ + +@@TJclDoubleArrayIterator.Previous +<copy TJclArrayIterator.Previous> +\ \ + +@@TJclDoubleArrayIterator.PreviousIndex +<copy TJclArrayIterator.PreviousIndex> +\ \ + +@@TJclDoubleArrayIterator.Remove +<copy TJclArrayIterator.Remove> +\ \ + +@@TJclDoubleArrayIterator.Reset +<copy TJclArrayIterator.Reset> +\ \ + +@@TJclDoubleArrayIterator.SetValue@Double +<copy TJclArrayIterator.SetObject@TObject> +\ \ +@@TJclExtendedArrayIterator +<copy TJclArrayIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclExtendedArrayIterator +<copy !!MEMBEROVERVIEW_TJclArrayIterator> +\ \ + +@@TJclExtendedArrayIterator.Current +<copy TJclArrayIterator.Current> +\ \ + +@@TJclExtendedArrayIterator.Current +<copy TJclArrayIterator.Current> +\ \ + +@@TJclExtendedArrayIterator.Add@Extended +<copy TJclArrayIterator.Add@TObject> +\ \ + +@@TJclExtendedArrayIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclArrayIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclExtendedArrayIterator.Create@IJclExtendedList@Integer@Boolean@TItrStart +<copy TJclArrayIterator.Create@IJclList@Integer@Boolean@TItrStart> +\ \ + +@@TJclExtendedArrayIterator.CreateEmptyIterator +<copy TJclArrayIterator.CreateEmptyIterator> +\ \ + +@@TJclExtendedArrayIterator.Extract +<copy TJclArrayIterator.Extract> +\ \ + +@@TJclExtendedArrayIterator.GetValue +<copy TJclArrayIterator.GetObject> +\ \ + +@@TJclExtendedArrayIterator.HasNext +<copy TJclArrayIterator.HasNext> +\ \ + +@@TJclExtendedArrayIterator.HasPrevious +<copy TJclArrayIterator.HasPrevious> +\ \ + +@@TJclExtendedArrayIterator.Insert@Extended +<copy TJclArrayIterator.Insert@TObject> +\ \ + +@@TJclExtendedArrayIterator.IteratorEquals@IJclExtendedIterator +<copy TJclArrayIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclExtendedArrayIterator.MoveNext +<copy TJclArrayIterator.MoveNext> +\ \ + +@@TJclExtendedArrayIterator.Next +<copy TJclArrayIterator.Next> +\ \ + +@@TJclExtendedArrayIterator.NextIndex +<copy TJclArrayIterator.NextIndex> +\ \ + +@@TJclExtendedArrayIterator.Previous +<copy TJclArrayIterator.Previous> +\ \ + +@@TJclExtendedArrayIterator.PreviousIndex +<copy TJclArrayIterator.PreviousIndex> +\ \ + +@@TJclExtendedArrayIterator.Remove +<copy TJclArrayIterator.Remove> +\ \ + +@@TJclExtendedArrayIterator.Reset +<copy TJclArrayIterator.Reset> +\ \ + +@@TJclExtendedArrayIterator.SetValue@Extended +<copy TJclArrayIterator.SetObject@TObject> +\ \ +@@TJclIntegerArrayIterator +<copy TJclArrayIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntegerArrayIterator +<copy !!MEMBEROVERVIEW_TJclArrayIterator> +\ \ + +@@TJclIntegerArrayIterator.Current +<copy TJclArrayIterator.Current> +\ \ + +@@TJclIntegerArrayIterator.Current +<copy TJclArrayIterator.Current> +\ \ + +@@TJclIntegerArrayIterator.Add@Integer +<copy TJclArrayIterator.Add@TObject> +\ \ + +@@TJclIntegerArrayIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclArrayIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclIntegerArrayIterator.Create@IJclIntegerList@Integer@Boolean@TItrStart +<copy TJclArrayIterator.Create@IJclList@Integer@Boolean@TItrStart> +\ \ + +@@TJclIntegerArrayIterator.CreateEmptyIterator +<copy TJclArrayIterator.CreateEmptyIterator> +\ \ + +@@TJclIntegerArrayIterator.Extract +<copy TJclArrayIterator.Extract> +\ \ + +@@TJclIntegerArrayIterator.GetValue +<copy TJclArrayIterator.GetObject> +\ \ + +@@TJclIntegerArrayIterator.HasNext +<copy TJclArrayIterator.HasNext> +\ \ + +@@TJclIntegerArrayIterator.HasPrevious +<copy TJclArrayIterator.HasPrevious> +\ \ + +@@TJclIntegerArrayIterator.Insert@Integer +<copy TJclArrayIterator.Insert@TObject> +\ \ + +@@TJclIntegerArrayIterator.IteratorEquals@IJclIntegerIterator +<copy TJclArrayIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclIntegerArrayIterator.MoveNext +<copy TJclArrayIterator.MoveNext> +\ \ + +@@TJclIntegerArrayIterator.Next +<copy TJclArrayIterator.Next> +\ \ + +@@TJclIntegerArrayIterator.NextIndex +<copy TJclArrayIterator.NextIndex> +\ \ + +@@TJclIntegerArrayIterator.Previous +<copy TJclArrayIterator.Previous> +\ \ + +@@TJclIntegerArrayIterator.PreviousIndex +<copy TJclArrayIterator.PreviousIndex> +\ \ + +@@TJclIntegerArrayIterator.Remove +<copy TJclArrayIterator.Remove> +\ \ + +@@TJclIntegerArrayIterator.Reset +<copy TJclArrayIterator.Reset> +\ \ + +@@TJclIntegerArrayIterator.SetValue@Integer +<copy TJclArrayIterator.SetObject@TObject> +\ \ +@@TJclCardinalArrayIterator +<copy TJclArrayIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclCardinalArrayIterator +<copy !!MEMBEROVERVIEW_TJclArrayIterator> +\ \ + +@@TJclCardinalArrayIterator.Current +<copy TJclArrayIterator.Current> +\ \ + +@@TJclCardinalArrayIterator.Current +<copy TJclArrayIterator.Current> +\ \ + +@@TJclCardinalArrayIterator.Add@Cardinal +<copy TJclArrayIterator.Add@TObject> +\ \ + +@@TJclCardinalArrayIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclArrayIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclCardinalArrayIterator.Create@IJclCardinalList@Integer@Boolean@TItrStart +<copy TJclArrayIterator.Create@IJclList@Integer@Boolean@TItrStart> +\ \ + +@@TJclCardinalArrayIterator.CreateEmptyIterator +<copy TJclArrayIterator.CreateEmptyIterator> +\ \ + +@@TJclCardinalArrayIterator.Extract +<copy TJclArrayIterator.Extract> +\ \ + +@@TJclCardinalArrayIterator.GetValue +<copy TJclArrayIterator.GetObject> +\ \ + +@@TJclCardinalArrayIterator.HasNext +<copy TJclArrayIterator.HasNext> +\ \ + +@@TJclCardinalArrayIterator.HasPrevious +<copy TJclArrayIterator.HasPrevious> +\ \ + +@@TJclCardinalArrayIterator.Insert@Cardinal +<copy TJclArrayIterator.Insert@TObject> +\ \ + +@@TJclCardinalArrayIterator.IteratorEquals@IJclCardinalIterator +<copy TJclArrayIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclCardinalArrayIterator.MoveNext +<copy TJclArrayIterator.MoveNext> +\ \ + +@@TJclCardinalArrayIterator.Next +<copy TJclArrayIterator.Next> +\ \ + +@@TJclCardinalArrayIterator.NextIndex +<copy TJclArrayIterator.NextIndex> +\ \ + +@@TJclCardinalArrayIterator.Previous +<copy TJclArrayIterator.Previous> +\ \ + +@@TJclCardinalArrayIterator.PreviousIndex +<copy TJclArrayIterator.PreviousIndex> +\ \ + +@@TJclCardinalArrayIterator.Remove +<copy TJclArrayIterator.Remove> +\ \ + +@@TJclCardinalArrayIterator.Reset +<copy TJclArrayIterator.Reset> +\ \ + +@@TJclCardinalArrayIterator.SetValue@Cardinal +<copy TJclArrayIterator.SetObject@TObject> +\ \ +@@TJclInt64ArrayIterator +<copy TJclArrayIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclInt64ArrayIterator +<copy !!MEMBEROVERVIEW_TJclArrayIterator> +\ \ + +@@TJclInt64ArrayIterator.Current +<copy TJclArrayIterator.Current> +\ \ + +@@TJclInt64ArrayIterator.Current +<copy TJclArrayIterator.Current> +\ \ + +@@TJclInt64ArrayIterator.Add@Int64 +<copy TJclArrayIterator.Add@TObject> +\ \ + +@@TJclInt64ArrayIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclArrayIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclInt64ArrayIterator.Create@IJclInt64List@Integer@Boolean@TItrStart +<copy TJclArrayIterator.Create@IJclList@Integer@Boolean@TItrStart> +\ \ + +@@TJclInt64ArrayIterator.CreateEmptyIterator +<copy TJclArrayIterator.CreateEmptyIterator> +\ \ + +@@TJclInt64ArrayIterator.Extract +<copy TJclArrayIterator.Extract> +\ \ + +@@TJclInt64ArrayIterator.GetValue +<copy TJclArrayIterator.GetObject> +\ \ + +@@TJclInt64ArrayIterator.HasNext +<copy TJclArrayIterator.HasNext> +\ \ + +@@TJclInt64ArrayIterator.HasPrevious +<copy TJclArrayIterator.HasPrevious> +\ \ + +@@TJclInt64ArrayIterator.Insert@Int64 +<copy TJclArrayIterator.Insert@TObject> +\ \ + +@@TJclInt64ArrayIterator.IteratorEquals@IJclInt64Iterator +<copy TJclArrayIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclInt64ArrayIterator.MoveNext +<copy TJclArrayIterator.MoveNext> +\ \ + +@@TJclInt64ArrayIterator.Next +<copy TJclArrayIterator.Next> +\ \ + +@@TJclInt64ArrayIterator.NextIndex +<copy TJclArrayIterator.NextIndex> +\ \ + +@@TJclInt64ArrayIterator.Previous +<copy TJclArrayIterator.Previous> +\ \ + +@@TJclInt64ArrayIterator.PreviousIndex +<copy TJclArrayIterator.PreviousIndex> +\ \ + +@@TJclInt64ArrayIterator.Remove +<copy TJclArrayIterator.Remove> +\ \ + +@@TJclInt64ArrayIterator.Reset +<copy TJclArrayIterator.Reset> +\ \ + +@@TJclInt64ArrayIterator.SetValue@Int64 +<copy TJclArrayIterator.SetObject@TObject> +\ \ +@@TJclPtrArrayIterator +<copy TJclArrayIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPtrArrayIterator +<copy !!MEMBEROVERVIEW_TJclArrayIterator> +\ \ + +@@TJclPtrArrayIterator.Current +<copy TJclArrayIterator.Current> +\ \ + +@@TJclPtrArrayIterator.Current +<copy TJclArrayIterator.Current> +\ \ + +@@TJclPtrArrayIterator.Add@Pointer +<copy TJclArrayIterator.Add@TObject> +\ \ + +@@TJclPtrArrayIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclArrayIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclPtrArrayIterator.Create@IJclPtrList@Integer@Boolean@TItrStart +<copy TJclArrayIterator.Create@IJclList@Integer@Boolean@TItrStart> +\ \ + +@@TJclPtrArrayIterator.CreateEmptyIterator +<copy TJclArrayIterator.CreateEmptyIterator> +\ \ + +@@TJclPtrArrayIterator.Extract +<copy TJclArrayIterator.Extract> +\ \ + +@@TJclPtrArrayIterator.GetPointer +<copy TJclArrayIterator.GetObject> +\ \ + +@@TJclPtrArrayIterator.HasNext +<copy TJclArrayIterator.HasNext> +\ \ + +@@TJclPtrArrayIterator.HasPrevious +<copy TJclArrayIterator.HasPrevious> +\ \ + +@@TJclPtrArrayIterator.Insert@Pointer +<copy TJclArrayIterator.Insert@TObject> +\ \ + +@@TJclPtrArrayIterator.IteratorEquals@IJclPtrIterator +<copy TJclArrayIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclPtrArrayIterator.MoveNext +<copy TJclArrayIterator.MoveNext> +\ \ + +@@TJclPtrArrayIterator.Next +<copy TJclArrayIterator.Next> +\ \ + +@@TJclPtrArrayIterator.NextIndex +<copy TJclArrayIterator.NextIndex> +\ \ + +@@TJclPtrArrayIterator.Previous +<copy TJclArrayIterator.Previous> +\ \ + +@@TJclPtrArrayIterator.PreviousIndex +<copy TJclArrayIterator.PreviousIndex> +\ \ + +@@TJclPtrArrayIterator.Remove +<copy TJclArrayIterator.Remove> +\ \ + +@@TJclPtrArrayIterator.Reset +<copy TJclArrayIterator.Reset> +\ \ + +@@TJclPtrArrayIterator.SetPointer@Pointer +<copy TJclArrayIterator.SetObject@TObject> +\ \ + + +@@TJclIntfArraySet +<copy TJclArraySet> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfArraySet +<copy !!MEMBEROVERVIEW_TJclArraySet> +\ \ + +@@TJclIntfArraySet.Add@IInterface +<copy TJclArraySet.Add@TObject> +\ \ + +@@TJclIntfArraySet.AddAll@IJclIntfCollection +<copy TJclArraySet.AddAll@IJclCollection> +\ \ + +@@TJclIntfArraySet.Contains@IInterface +<copy TJclArraySet.Contains@TObject> +\ \ + +@@TJclIntfArraySet.Insert@Integer@IInterface +<copy TJclArraySet.Insert@Integer@TObject> +\ \ + +@@TJclIntfArraySet.CreateEmptyContainer +<copy TJclArraySet.CreateEmptyContainer> +\ \ + +@@TJclIntfArraySet.Intersect@IJclIntfCollection +<copy TJclArraySet.Intersect@IJclCollection> +\ \ + +@@TJclIntfArraySet.Subtract@IJclIntfCollection +<copy TJclArraySet.Subtract@IJclCollection> +\ \ + +@@TJclIntfArraySet.Union@IJclIntfCollection +<copy TJclArraySet.Union@IJclCollection> +\ \ +@@TJclAnsiStrArraySet +<copy TJclArraySet> +\ \ + +@@!!MEMBEROVERVIEW_TJclAnsiStrArraySet +<copy !!MEMBEROVERVIEW_TJclArraySet> +\ \ + +@@TJclAnsiStrArraySet.Add@AnsiString +<copy TJclArraySet.Add@TObject> +\ \ + +@@TJclAnsiStrArraySet.AddAll@IJclAnsiStrCollection +<copy TJclArraySet.AddAll@IJclCollection> +\ \ + +@@TJclAnsiStrArraySet.Contains@AnsiString +<copy TJclArraySet.Contains@TObject> +\ \ + +@@TJclAnsiStrArraySet.Insert@Integer@AnsiString +<copy TJclArraySet.Insert@Integer@TObject> +\ \ + +@@TJclAnsiStrArraySet.CreateEmptyContainer +<copy TJclArraySet.CreateEmptyContainer> +\ \ + +@@TJclAnsiStrArraySet.Intersect@IJclAnsiStrCollection +<copy TJclArraySet.Intersect@IJclCollection> +\ \ + +@@TJclAnsiStrArraySet.Subtract@IJclAnsiStrCollection +<copy TJclArraySet.Subtract@IJclCollection> +\ \ + +@@TJclAnsiStrArraySet.Union@IJclAnsiStrCollection +<copy TJclArraySet.Union@IJclCollection> +\ \ +@@TJclWideStrArraySet +<copy TJclArraySet> +\ \ + +@@!!MEMBEROVERVIEW_TJclWideStrArraySet +<copy !!MEMBEROVERVIEW_TJclArraySet> +\ \ + +@@TJclWideStrArraySet.Add@WideString +<copy TJclArraySet.Add@TObject> +\ \ + +@@TJclWideStrArraySet.AddAll@IJclWideStrCollection +<copy TJclArraySet.AddAll@IJclCollection> +\ \ + +@@TJclWideStrArraySet.Contains@WideString +<copy TJclArraySet.Contains@TObject> +\ \ + +@@TJclWideStrArraySet.Insert@Integer@WideString +<copy TJclArraySet.Insert@Integer@TObject> +\ \ + +@@TJclWideStrArraySet.CreateEmptyContainer +<copy TJclArraySet.CreateEmptyContainer> +\ \ + +@@TJclWideStrArraySet.Intersect@IJclWideStrCollection +<copy TJclArraySet.Intersect@IJclCollection> +\ \ + +@@TJclWideStrArraySet.Subtract@IJclWideStrCollection +<copy TJclArraySet.Subtract@IJclCollection> +\ \ + +@@TJclWideStrArraySet.Union@IJclWideStrCollection +<copy TJclArraySet.Union@IJclCollection> +\ \ +@@TJclUnicodeStrArraySet +<copy TJclArraySet> +\ \ + +@@!!MEMBEROVERVIEW_TJclUnicodeStrArraySet +<copy !!MEMBEROVERVIEW_TJclArraySet> +\ \ + +@@TJclUnicodeStrArraySet.Add@UnicodeString +<copy TJclArraySet.Add@TObject> +\ \ + +@@TJclUnicodeStrArraySet.AddAll@IJclUnicodeStrCollection +<copy TJclArraySet.AddAll@IJclCollection> +\ \ + +@@TJclUnicodeStrArraySet.Contains@UnicodeString +<copy TJclArraySet.Contains@TObject> +\ \ + +@@TJclUnicodeStrArraySet.Insert@Integer@UnicodeString +<copy TJclArraySet.Insert@Integer@TObject> +\ \ + +@@TJclUnicodeStrArraySet.CreateEmptyContainer +<copy TJclArraySet.CreateEmptyContainer> +\ \ + +@@TJclUnicodeStrArraySet.Intersect@IJclUnicodeStrCollection +<copy TJclArraySet.Intersect@IJclCollection> +\ \ + +@@TJclUnicodeStrArraySet.Subtract@IJclUnicodeStrCollection +<copy TJclArraySet.Subtract@IJclCollection> +\ \ + +@@TJclUnicodeStrArraySet.Union@IJclUnicodeStrCollection +<copy TJclArraySet.Union@IJclCollection> +\ \ +@@TJclSingleArraySet +<copy TJclArraySet> +\ \ + +@@!!MEMBEROVERVIEW_TJclSingleArraySet +<copy !!MEMBEROVERVIEW_TJclArraySet> +\ \ + +@@TJclSingleArraySet.Add@Single +<copy TJclArraySet.Add@TObject> +\ \ + +@@TJclSingleArraySet.AddAll@IJclSingleCollection +<copy TJclArraySet.AddAll@IJclCollection> +\ \ + +@@TJclSingleArraySet.Contains@Single +<copy TJclArraySet.Contains@TObject> +\ \ + +@@TJclSingleArraySet.Insert@Integer@Single +<copy TJclArraySet.Insert@Integer@TObject> +\ \ + +@@TJclSingleArraySet.CreateEmptyContainer +<copy TJclArraySet.CreateEmptyContainer> +\ \ + +@@TJclSingleArraySet.Intersect@IJclSingleCollection +<copy TJclArraySet.Intersect@IJclCollection> +\ \ + +@@TJclSingleArraySet.Subtract@IJclSingleCollection +<copy TJclArraySet.Subtract@IJclCollection> +\ \ + +@@TJclSingleArraySet.Union@IJclSingleCollection +<copy TJclArraySet.Union@IJclCollection> +\ \ +@@TJclDoubleArraySet +<copy TJclArraySet> +\ \ + +@@!!MEMBEROVERVIEW_TJclDoubleArraySet +<copy !!MEMBEROVERVIEW_TJclArraySet> +\ \ + +@@TJclDoubleArraySet.Add@Double +<copy TJclArraySet.Add@TObject> +\ \ + +@@TJclDoubleArraySet.AddAll@IJclDoubleCollection +<copy TJclArraySet.AddAll@IJclCollection> +\ \ + +@@TJclDoubleArraySet.Contains@Double +<copy TJclArraySet.Contains@TObject> +\ \ + +@@TJclDoubleArraySet.Insert@Integer@Double +<copy TJclArraySet.Insert@Integer@TObject> +\ \ + +@@TJclDoubleArraySet.CreateEmptyContainer +<copy TJclArraySet.CreateEmptyContainer> +\ \ + +@@TJclDoubleArraySet.Intersect@IJclDoubleCollection +<copy TJclArraySet.Intersect@IJclCollection> +\ \ + +@@TJclDoubleArraySet.Subtract@IJclDoubleCollection +<copy TJclArraySet.Subtract@IJclCollection> +\ \ + +@@TJclDoubleArraySet.Union@IJclDoubleCollection +<copy TJclArraySet.Union@IJclCollection> +\ \ +@@TJclExtendedArraySet +<copy TJclArraySet> +\ \ + +@@!!MEMBEROVERVIEW_TJclExtendedArraySet +<copy !!MEMBEROVERVIEW_TJclArraySet> +\ \ + +@@TJclExtendedArraySet.Add@Extended +<copy TJclArraySet.Add@TObject> +\ \ + +@@TJclExtendedArraySet.AddAll@IJclExtendedCollection +<copy TJclArraySet.AddAll@IJclCollection> +\ \ + +@@TJclExtendedArraySet.Contains@Extended +<copy TJclArraySet.Contains@TObject> +\ \ + +@@TJclExtendedArraySet.Insert@Integer@Extended +<copy TJclArraySet.Insert@Integer@TObject> +\ \ + +@@TJclExtendedArraySet.CreateEmptyContainer +<copy TJclArraySet.CreateEmptyContainer> +\ \ + +@@TJclExtendedArraySet.Intersect@IJclExtendedCollection +<copy TJclArraySet.Intersect@IJclCollection> +\ \ + +@@TJclExtendedArraySet.Subtract@IJclExtendedCollection +<copy TJclArraySet.Subtract@IJclCollection> +\ \ + +@@TJclExtendedArraySet.Union@IJclExtendedCollection +<copy TJclArraySet.Union@IJclCollection> +\ \ +@@TJclIntegerArraySet +<copy TJclArraySet> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntegerArraySet +<copy !!MEMBEROVERVIEW_TJclArraySet> +\ \ + +@@TJclIntegerArraySet.Add@Integer +<copy TJclArraySet.Add@TObject> +\ \ + +@@TJclIntegerArraySet.AddAll@IJclIntegerCollection +<copy TJclArraySet.AddAll@IJclCollection> +\ \ + +@@TJclIntegerArraySet.Contains@Integer +<copy TJclArraySet.Contains@TObject> +\ \ + +@@TJclIntegerArraySet.Insert@Integer@Integer +<copy TJclArraySet.Insert@Integer@TObject> +\ \ + +@@TJclIntegerArraySet.CreateEmptyContainer +<copy TJclArraySet.CreateEmptyContainer> +\ \ + +@@TJclIntegerArraySet.Intersect@IJclIntegerCollection +<copy TJclArraySet.Intersect@IJclCollection> +\ \ + +@@TJclIntegerArraySet.Subtract@IJclIntegerCollection +<copy TJclArraySet.Subtract@IJclCollection> +\ \ + +@@TJclIntegerArraySet.Union@IJclIntegerCollection +<copy TJclArraySet.Union@IJclCollection> +\ \ +@@TJclCardinalArraySet +<copy TJclArraySet> +\ \ + +@@!!MEMBEROVERVIEW_TJclCardinalArraySet +<copy !!MEMBEROVERVIEW_TJclArraySet> +\ \ + +@@TJclCardinalArraySet.Add@Cardinal +<copy TJclArraySet.Add@TObject> +\ \ + +@@TJclCardinalArraySet.AddAll@IJclCardinalCollection +<copy TJclArraySet.AddAll@IJclCollection> +\ \ + +@@TJclCardinalArraySet.Contains@Cardinal +<copy TJclArraySet.Contains@TObject> +\ \ + +@@TJclCardinalArraySet.Insert@Integer@Cardinal +<copy TJclArraySet.Insert@Integer@TObject> +\ \ + +@@TJclCardinalArraySet.CreateEmptyContainer +<copy TJclArraySet.CreateEmptyContainer> +\ \ + +@@TJclCardinalArraySet.Intersect@IJclCardinalCollection +<copy TJclArraySet.Intersect@IJclCollection> +\ \ + +@@TJclCardinalArraySet.Subtract@IJclCardinalCollection +<copy TJclArraySet.Subtract@IJclCollection> +\ \ + +@@TJclCardinalArraySet.Union@IJclCardinalCollection +<copy TJclArraySet.Union@IJclCollection> +\ \ +@@TJclInt64ArraySet +<copy TJclArraySet> +\ \ + +@@!!MEMBEROVERVIEW_TJclInt64ArraySet +<copy !!MEMBEROVERVIEW_TJclArraySet> +\ \ + +@@TJclInt64ArraySet.Add@Int64 +<copy TJclArraySet.Add@TObject> +\ \ + +@@TJclInt64ArraySet.AddAll@IJclInt64Collection +<copy TJclArraySet.AddAll@IJclCollection> +\ \ + +@@TJclInt64ArraySet.Contains@Int64 +<copy TJclArraySet.Contains@TObject> +\ \ + +@@TJclInt64ArraySet.Insert@Integer@Int64 +<copy TJclArraySet.Insert@Integer@TObject> +\ \ + +@@TJclInt64ArraySet.CreateEmptyContainer +<copy TJclArraySet.CreateEmptyContainer> +\ \ + +@@TJclInt64ArraySet.Intersect@IJclInt64Collection +<copy TJclArraySet.Intersect@IJclCollection> +\ \ + +@@TJclInt64ArraySet.Subtract@IJclInt64Collection +<copy TJclArraySet.Subtract@IJclCollection> +\ \ + +@@TJclInt64ArraySet.Union@IJclInt64Collection +<copy TJclArraySet.Union@IJclCollection> +\ \ +@@TJclPtrArraySet +<copy TJclArraySet> +\ \ + +@@!!MEMBEROVERVIEW_TJclPtrArraySet +<copy !!MEMBEROVERVIEW_TJclArraySet> +\ \ + +@@TJclPtrArraySet.Add@Pointer +<copy TJclArraySet.Add@TObject> +\ \ + +@@TJclPtrArraySet.AddAll@IJclPtrCollection +<copy TJclArraySet.AddAll@IJclCollection> +\ \ + +@@TJclPtrArraySet.Contains@Pointer +<copy TJclArraySet.Contains@TObject> +\ \ + +@@TJclPtrArraySet.Insert@Integer@Pointer +<copy TJclArraySet.Insert@Integer@TObject> +\ \ + +@@TJclPtrArraySet.CreateEmptyContainer +<copy TJclArraySet.CreateEmptyContainer> +\ \ + +@@TJclPtrArraySet.Intersect@IJclPtrCollection +<copy TJclArraySet.Intersect@IJclCollection> +\ \ + +@@TJclPtrArraySet.Subtract@IJclPtrCollection +<copy TJclArraySet.Subtract@IJclCollection> +\ \ + +@@TJclPtrArraySet.Union@IJclPtrCollection +<copy TJclArraySet.Union@IJclCollection> +\ \ + + + +@@TJclIntfBinaryNode +<copy TJclBinaryNode> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfBinaryNode +<copy !!MEMBEROVERVIEW_TJclBinaryNode> +\ \ + +@@TJclIntfBinaryNode.Left +<copy TJclBinaryNode.Left> +\ \ + +@@TJclIntfBinaryNode.Parent +<copy TJclBinaryNode.Parent> +\ \ + +@@TJclIntfBinaryNode.Right +<copy TJclBinaryNode.Right> +\ \ + +@@TJclIntfBinaryNode.Value +<copy TJclBinaryNode.Value> +\ \ +@@TJclAnsiStrBinaryNode +<copy TJclBinaryNode> +\ \ + +@@!!MEMBEROVERVIEW_TJclAnsiStrBinaryNode +<copy !!MEMBEROVERVIEW_TJclBinaryNode> +\ \ + +@@TJclAnsiStrBinaryNode.Left +<copy TJclBinaryNode.Left> +\ \ + +@@TJclAnsiStrBinaryNode.Parent +<copy TJclBinaryNode.Parent> +\ \ + +@@TJclAnsiStrBinaryNode.Right +<copy TJclBinaryNode.Right> +\ \ + +@@TJclAnsiStrBinaryNode.Value +<copy TJclBinaryNode.Value> +\ \ +@@TJclWideStrBinaryNode +<copy TJclBinaryNode> +\ \ + +@@!!MEMBEROVERVIEW_TJclWideStrBinaryNode +<copy !!MEMBEROVERVIEW_TJclBinaryNode> +\ \ + +@@TJclWideStrBinaryNode.Left +<copy TJclBinaryNode.Left> +\ \ + +@@TJclWideStrBinaryNode.Parent +<copy TJclBinaryNode.Parent> +\ \ + +@@TJclWideStrBinaryNode.Right +<copy TJclBinaryNode.Right> +\ \ + +@@TJclWideStrBinaryNode.Value +<copy TJclBinaryNode.Value> +\ \ +@@TJclUnicodeStrBinaryNode +<copy TJclBinaryNode> +\ \ + +@@!!MEMBEROVERVIEW_TJclUnicodeStrBinaryNode +<copy !!MEMBEROVERVIEW_TJclBinaryNode> +\ \ + +@@TJclUnicodeStrBinaryNode.Left +<copy TJclBinaryNode.Left> +\ \ + +@@TJclUnicodeStrBinaryNode.Parent +<copy TJclBinaryNode.Parent> +\ \ + +@@TJclUnicodeStrBinaryNode.Right +<copy TJclBinaryNode.Right> +\ \ + +@@TJclUnicodeStrBinaryNode.Value +<copy TJclBinaryNode.Value> +\ \ +@@TJclSingleBinaryNode +<copy TJclBinaryNode> +\ \ + +@@!!MEMBEROVERVIEW_TJclSingleBinaryNode +<copy !!MEMBEROVERVIEW_TJclBinaryNode> +\ \ + +@@TJclSingleBinaryNode.Left +<copy TJclBinaryNode.Left> +\ \ + +@@TJclSingleBinaryNode.Parent +<copy TJclBinaryNode.Parent> +\ \ + +@@TJclSingleBinaryNode.Right +<copy TJclBinaryNode.Right> +\ \ + +@@TJclSingleBinaryNode.Value +<copy TJclBinaryNode.Value> +\ \ +@@TJclDoubleBinaryNode +<copy TJclBinaryNode> +\ \ + +@@!!MEMBEROVERVIEW_TJclDoubleBinaryNode +<copy !!MEMBEROVERVIEW_TJclBinaryNode> +\ \ + +@@TJclDoubleBinaryNode.Left +<copy TJclBinaryNode.Left> +\ \ + +@@TJclDoubleBinaryNode.Parent +<copy TJclBinaryNode.Parent> +\ \ + +@@TJclDoubleBinaryNode.Right +<copy TJclBinaryNode.Right> +\ \ + +@@TJclDoubleBinaryNode.Value +<copy TJclBinaryNode.Value> +\ \ +@@TJclExtendedBinaryNode +<copy TJclBinaryNode> +\ \ + +@@!!MEMBEROVERVIEW_TJclExtendedBinaryNode +<copy !!MEMBEROVERVIEW_TJclBinaryNode> +\ \ + +@@TJclExtendedBinaryNode.Left +<copy TJclBinaryNode.Left> +\ \ + +@@TJclExtendedBinaryNode.Parent +<copy TJclBinaryNode.Parent> +\ \ + +@@TJclExtendedBinaryNode.Right +<copy TJclBinaryNode.Right> +\ \ + +@@TJclExtendedBinaryNode.Value +<copy TJclBinaryNode.Value> +\ \ +@@TJclIntegerBinaryNode +<copy TJclBinaryNode> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntegerBinaryNode +<copy !!MEMBEROVERVIEW_TJclBinaryNode> +\ \ + +@@TJclIntegerBinaryNode.Left +<copy TJclBinaryNode.Left> +\ \ + +@@TJclIntegerBinaryNode.Parent +<copy TJclBinaryNode.Parent> +\ \ + +@@TJclIntegerBinaryNode.Right +<copy TJclBinaryNode.Right> +\ \ + +@@TJclIntegerBinaryNode.Value +<copy TJclBinaryNode.Value> +\ \ +@@TJclCardinalBinaryNode +<copy TJclBinaryNode> +\ \ + +@@!!MEMBEROVERVIEW_TJclCardinalBinaryNode +<copy !!MEMBEROVERVIEW_TJclBinaryNode> +\ \ + +@@TJclCardinalBinaryNode.Left +<copy TJclBinaryNode.Left> +\ \ + +@@TJclCardinalBinaryNode.Parent +<copy TJclBinaryNode.Parent> +\ \ + +@@TJclCardinalBinaryNode.Right +<copy TJclBinaryNode.Right> +\ \ + +@@TJclCardinalBinaryNode.Value +<copy TJclBinaryNode.Value> +\ \ +@@TJclInt64BinaryNode +<copy TJclBinaryNode> +\ \ + +@@!!MEMBEROVERVIEW_TJclInt64BinaryNode +<copy !!MEMBEROVERVIEW_TJclBinaryNode> +\ \ + +@@TJclInt64BinaryNode.Left +<copy TJclBinaryNode.Left> +\ \ + +@@TJclInt64BinaryNode.Parent +<copy TJclBinaryNode.Parent> +\ \ + +@@TJclInt64BinaryNode.Right +<copy TJclBinaryNode.Right> +\ \ + +@@TJclInt64BinaryNode.Value +<copy TJclBinaryNode.Value> +\ \ +@@TJclPtrBinaryNode +<copy TJclBinaryNode> +\ \ + +@@!!MEMBEROVERVIEW_TJclPtrBinaryNode +<copy !!MEMBEROVERVIEW_TJclBinaryNode> +\ \ + +@@TJclPtrBinaryNode.Left +<copy TJclBinaryNode.Left> +\ \ + +@@TJclPtrBinaryNode.Parent +<copy TJclBinaryNode.Parent> +\ \ + +@@TJclPtrBinaryNode.Right +<copy TJclBinaryNode.Right> +\ \ + +@@TJclPtrBinaryNode.Value +<copy TJclBinaryNode.Value> +\ \ + + +@@TJclIntfBinaryTree +<copy TJclBinaryTree> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfBinaryTree +<copy !!MEMBEROVERVIEW_TJclBinaryTree> +\ \ + +@@TJclIntfBinaryTree.Add@IInterface +<copy TJclBinaryTree.Add@TObject> +\ \ + +@@TJclIntfBinaryTree.AddAll@IJclIntfCollection +<copy TJclBinaryTree.AddAll@IJclCollection> +\ \ + +@@TJclIntfBinaryTree.Clear +<copy TJclBinaryTree.Clear> +\ \ + +@@TJclIntfBinaryTree.Contains@IInterface +<copy TJclBinaryTree.Contains@TObject> +\ \ + +@@TJclIntfBinaryTree.ContainsAll@IJclIntfCollection +<copy TJclBinaryTree.ContainsAll@IJclCollection> +\ \ + +@@TJclIntfBinaryTree.Root +<copy TJclBinaryTree.Root> +\ \ + +@@TJclIntfBinaryTree.TraverseOrder +<copy TJclBinaryTree.TraverseOrder> +\ \ + +@@TJclIntfBinaryTree.Destroy +<copy TJclBinaryTree.Destroy> +\ \ + +@@TJclIntfBinaryTree.AssignDataTo@TJclAbstractContainerBase +<copy TJclBinaryTree.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfBinaryTree.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclBinaryTree.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfBinaryTree.AutoPack +<copy TJclBinaryTree.AutoPack> +\ \ + +@@TJclIntfBinaryTree.First +<copy TJclBinaryTree.First> +\ \ + +@@TJclIntfBinaryTree.CollectionEquals@IJclIntfCollection +<copy TJclBinaryTree.CollectionEquals@IJclCollection> +\ \ + +@@TJclIntfBinaryTree.GetTraverseOrder +<copy TJclBinaryTree.GetTraverseOrder> +\ \ + +@@TJclIntfBinaryTree.IsEmpty +<copy TJclBinaryTree.IsEmpty> +\ \ + +@@TJclIntfBinaryTree.Last +<copy TJclBinaryTree.Last> +\ \ + +@@TJclIntfBinaryTree.Create@TIntfCompare +<copy TJclBinaryTree.Create@TCompare@Boolean> +\ \ + +@@TJclIntfBinaryTree.Remove@IInterface +<copy TJclBinaryTree.Remove@TObject> +\ \ + +@@TJclIntfBinaryTree.CreateEmptyContainer +<copy TJclBinaryTree.CreateEmptyContainer> +\ \ + +@@TJclIntfBinaryTree.RemoveAll@IJclIntfCollection +<copy TJclBinaryTree.RemoveAll@IJclCollection> +\ \ + +@@TJclIntfBinaryTree.RetainAll@IJclIntfCollection +<copy TJclBinaryTree.RetainAll@IJclCollection> +\ \ + +@@TJclIntfBinaryTree.Extract@IInterface +<copy TJclBinaryTree.Extract@TObject> +\ \ + +@@TJclIntfBinaryTree.ExtractAll@IJclIntfCollection +<copy TJclBinaryTree.ExtractAll@IJclCollection> +\ \ + +@@TJclIntfBinaryTree.SetTraverseOrder@TJclTraverseOrder +<copy TJclBinaryTree.SetTraverseOrder@TJclTraverseOrder> +\ \ + +@@TJclIntfBinaryTree.GetEnumerator +<copy TJclBinaryTree.GetEnumerator> +\ \ + +@@TJclIntfBinaryTree.Size +<copy TJclBinaryTree.Size> +\ \ + +@@TJclIntfBinaryTree.GetRoot +<copy TJclBinaryTree.GetRoot> +\ \ + +@@TJclIntfBinaryTree.Pack +<copy TJclBinaryTree.Pack> +\ \ + +@@TJclIntfBinaryTree.SetCapacity@Integer +<copy TJclBinaryTree.SetCapacity@Integer> +\ \ +@@TJclAnsiStrBinaryTree +<copy TJclBinaryTree> +\ \ + +@@!!MEMBEROVERVIEW_TJclAnsiStrBinaryTree +<copy !!MEMBEROVERVIEW_TJclBinaryTree> +\ \ + +@@TJclAnsiStrBinaryTree.Add@AnsiString +<copy TJclBinaryTree.Add@TObject> +\ \ + +@@TJclAnsiStrBinaryTree.AddAll@IJclAnsiStrCollection +<copy TJclBinaryTree.AddAll@IJclCollection> +\ \ + +@@TJclAnsiStrBinaryTree.Clear +<copy TJclBinaryTree.Clear> +\ \ + +@@TJclAnsiStrBinaryTree.Contains@AnsiString +<copy TJclBinaryTree.Contains@TObject> +\ \ + +@@TJclAnsiStrBinaryTree.ContainsAll@IJclAnsiStrCollection +<copy TJclBinaryTree.ContainsAll@IJclCollection> +\ \ + +@@TJclAnsiStrBinaryTree.Root +<copy TJclBinaryTree.Root> +\ \ + +@@TJclAnsiStrBinaryTree.TraverseOrder +<copy TJclBinaryTree.TraverseOrder> +\ \ + +@@TJclAnsiStrBinaryTree.Destroy +<copy TJclBinaryTree.Destroy> +\ \ + +@@TJclAnsiStrBinaryTree.AssignDataTo@TJclAbstractContainerBase +<copy TJclBinaryTree.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclAnsiStrBinaryTree.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclBinaryTree.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclAnsiStrBinaryTree.AutoPack +<copy TJclBinaryTree.AutoPack> +\ \ + +@@TJclAnsiStrBinaryTree.First +<copy TJclBinaryTree.First> +\ \ + +@@TJclAnsiStrBinaryTree.CollectionEquals@IJclAnsiStrCollection +<copy TJclBinaryTree.CollectionEquals@IJclCollection> +\ \ + +@@TJclAnsiStrBinaryTree.GetTraverseOrder +<copy TJclBinaryTree.GetTraverseOrder> +\ \ + +@@TJclAnsiStrBinaryTree.IsEmpty +<copy TJclBinaryTree.IsEmpty> +\ \ + +@@TJclAnsiStrBinaryTree.Last +<copy TJclBinaryTree.Last> +\ \ + +@@TJclAnsiStrBinaryTree.Create@TAnsiStrCompare +<copy TJclBinaryTree.Create@TCompare@Boolean> +\ \ + +@@TJclAnsiStrBinaryTree.Remove@AnsiString +<copy TJclBinaryTree.Remove@TObject> +\ \ + +@@TJclAnsiStrBinaryTree.CreateEmptyContainer +<copy TJclBinaryTree.CreateEmptyContainer> +\ \ + +@@TJclAnsiStrBinaryTree.RemoveAll@IJclAnsiStrCollection +<copy TJclBinaryTree.RemoveAll@IJclCollection> +\ \ + +@@TJclAnsiStrBinaryTree.RetainAll@IJclAnsiStrCollection +<copy TJclBinaryTree.RetainAll@IJclCollection> +\ \ + +@@TJclAnsiStrBinaryTree.Extract@AnsiString +<copy TJclBinaryTree.Extract@TObject> +\ \ + +@@TJclAnsiStrBinaryTree.ExtractAll@IJclAnsiStrCollection +<copy TJclBinaryTree.ExtractAll@IJclCollection> +\ \ + +@@TJclAnsiStrBinaryTree.SetTraverseOrder@TJclTraverseOrder +<copy TJclBinaryTree.SetTraverseOrder@TJclTraverseOrder> +\ \ + +@@TJclAnsiStrBinaryTree.GetEnumerator +<copy TJclBinaryTree.GetEnumerator> +\ \ + +@@TJclAnsiStrBinaryTree.Size +<copy TJclBinaryTree.Size> +\ \ + +@@TJclAnsiStrBinaryTree.GetRoot +<copy TJclBinaryTree.GetRoot> +\ \ + +@@TJclAnsiStrBinaryTree.Pack +<copy TJclBinaryTree.Pack> +\ \ + +@@TJclAnsiStrBinaryTree.SetCapacity@Integer +<copy TJclBinaryTree.SetCapacity@Integer> +\ \ +@@TJclWideStrBinaryTree +<copy TJclBinaryTree> +\ \ + +@@!!MEMBEROVERVIEW_TJclWideStrBinaryTree +<copy !!MEMBEROVERVIEW_TJclBinaryTree> +\ \ + +@@TJclWideStrBinaryTree.Add@WideString +<copy TJclBinaryTree.Add@TObject> +\ \ + +@@TJclWideStrBinaryTree.AddAll@IJclWideStrCollection +<copy TJclBinaryTree.AddAll@IJclCollection> +\ \ + +@@TJclWideStrBinaryTree.Clear +<copy TJclBinaryTree.Clear> +\ \ + +@@TJclWideStrBinaryTree.Contains@WideString +<copy TJclBinaryTree.Contains@TObject> +\ \ + +@@TJclWideStrBinaryTree.ContainsAll@IJclWideStrCollection +<copy TJclBinaryTree.ContainsAll@IJclCollection> +\ \ + +@@TJclWideStrBinaryTree.Root +<copy TJclBinaryTree.Root> +\ \ + +@@TJclWideStrBinaryTree.TraverseOrder +<copy TJclBinaryTree.TraverseOrder> +\ \ + +@@TJclWideStrBinaryTree.Destroy +<copy TJclBinaryTree.Destroy> +\ \ + +@@TJclWideStrBinaryTree.AssignDataTo@TJclAbstractContainerBase +<copy TJclBinaryTree.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclWideStrBinaryTree.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclBinaryTree.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclWideStrBinaryTree.AutoPack +<copy TJclBinaryTree.AutoPack> +\ \ + +@@TJclWideStrBinaryTree.First +<copy TJclBinaryTree.First> +\ \ + +@@TJclWideStrBinaryTree.CollectionEquals@IJclWideStrCollection +<copy TJclBinaryTree.CollectionEquals@IJclCollection> +\ \ + +@@TJclWideStrBinaryTree.GetTraverseOrder +<copy TJclBinaryTree.GetTraverseOrder> +\ \ + +@@TJclWideStrBinaryTree.IsEmpty +<copy TJclBinaryTree.IsEmpty> +\ \ + +@@TJclWideStrBinaryTree.Last +<copy TJclBinaryTree.Last> +\ \ + +@@TJclWideStrBinaryTree.Create@TWideStrCompare +<copy TJclBinaryTree.Create@TCompare@Boolean> +\ \ + +@@TJclWideStrBinaryTree.Remove@WideString +<copy TJclBinaryTree.Remove@TObject> +\ \ + +@@TJclWideStrBinaryTree.CreateEmptyContainer +<copy TJclBinaryTree.CreateEmptyContainer> +\ \ + +@@TJclWideStrBinaryTree.RemoveAll@IJclWideStrCollection +<copy TJclBinaryTree.RemoveAll@IJclCollection> +\ \ + +@@TJclWideStrBinaryTree.RetainAll@IJclWideStrCollection +<copy TJclBinaryTree.RetainAll@IJclCollection> +\ \ + +@@TJclWideStrBinaryTree.Extract@WideString +<copy TJclBinaryTree.Extract@TObject> +\ \ + +@@TJclWideStrBinaryTree.ExtractAll@IJclWideStrCollection +<copy TJclBinaryTree.ExtractAll@IJclCollection> +\ \ + +@@TJclWideStrBinaryTree.SetTraverseOrder@TJclTraverseOrder +<copy TJclBinaryTree.SetTraverseOrder@TJclTraverseOrder> +\ \ + +@@TJclWideStrBinaryTree.GetEnumerator +<copy TJclBinaryTree.GetEnumerator> +\ \ + +@@TJclWideStrBinaryTree.Size +<copy TJclBinaryTree.Size> +\ \ + +@@TJclWideStrBinaryTree.GetRoot +<copy TJclBinaryTree.GetRoot> +\ \ + +@@TJclWideStrBinaryTree.Pack +<copy TJclBinaryTree.Pack> +\ \ + +@@TJclWideStrBinaryTree.SetCapacity@Integer +<copy TJclBinaryTree.SetCapacity@Integer> +\ \ +@@TJclUnicodeStrBinaryTree +<copy TJclBinaryTree> +\ \ + +@@!!MEMBEROVERVIEW_TJclUnicodeStrBinaryTree +<copy !!MEMBEROVERVIEW_TJclBinaryTree> +\ \ + +@@TJclUnicodeStrBinaryTree.Add@UnicodeString +<copy TJclBinaryTree.Add@TObject> +\ \ + +@@TJclUnicodeStrBinaryTree.AddAll@IJclUnicodeStrCollection +<copy TJclBinaryTree.AddAll@IJclCollection> +\ \ + +@@TJclUnicodeStrBinaryTree.Clear +<copy TJclBinaryTree.Clear> +\ \ + +@@TJclUnicodeStrBinaryTree.Contains@UnicodeString +<copy TJclBinaryTree.Contains@TObject> +\ \ + +@@TJclUnicodeStrBinaryTree.ContainsAll@IJclUnicodeStrCollection +<copy TJclBinaryTree.ContainsAll@IJclCollection> +\ \ + +@@TJclUnicodeStrBinaryTree.Root +<copy TJclBinaryTree.Root> +\ \ + +@@TJclUnicodeStrBinaryTree.TraverseOrder +<copy TJclBinaryTree.TraverseOrder> +\ \ + +@@TJclUnicodeStrBinaryTree.Destroy +<copy TJclBinaryTree.Destroy> +\ \ + +@@TJclUnicodeStrBinaryTree.AssignDataTo@TJclAbstractContainerBase +<copy TJclBinaryTree.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclUnicodeStrBinaryTree.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclBinaryTree.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclUnicodeStrBinaryTree.AutoPack +<copy TJclBinaryTree.AutoPack> +\ \ + +@@TJclUnicodeStrBinaryTree.First +<copy TJclBinaryTree.First> +\ \ + +@@TJclUnicodeStrBinaryTree.CollectionEquals@IJclUnicodeStrCollection +<copy TJclBinaryTree.CollectionEquals@IJclCollection> +\ \ + +@@TJclUnicodeStrBinaryTree.GetTraverseOrder +<copy TJclBinaryTree.GetTraverseOrder> +\ \ + +@@TJclUnicodeStrBinaryTree.IsEmpty +<copy TJclBinaryTree.IsEmpty> +\ \ + +@@TJclUnicodeStrBinaryTree.Last +<copy TJclBinaryTree.Last> +\ \ + +@@TJclUnicodeStrBinaryTree.Create@TUnicodeStrCompare +<copy TJclBinaryTree.Create@TCompare@Boolean> +\ \ + +@@TJclUnicodeStrBinaryTree.Remove@UnicodeString +<copy TJclBinaryTree.Remove@TObject> +\ \ + +@@TJclUnicodeStrBinaryTree.CreateEmptyContainer +<copy TJclBinaryTree.CreateEmptyContainer> +\ \ + +@@TJclUnicodeStrBinaryTree.RemoveAll@IJclUnicodeStrCollection +<copy TJclBinaryTree.RemoveAll@IJclCollection> +\ \ + +@@TJclUnicodeStrBinaryTree.RetainAll@IJclUnicodeStrCollection +<copy TJclBinaryTree.RetainAll@IJclCollection> +\ \ + +@@TJclUnicodeStrBinaryTree.Extract@UnicodeString +<copy TJclBinaryTree.Extract@TObject> +\ \ + +@@TJclUnicodeStrBinaryTree.ExtractAll@IJclUnicodeStrCollection +<copy TJclBinaryTree.ExtractAll@IJclCollection> +\ \ + +@@TJclUnicodeStrBinaryTree.SetTraverseOrder@TJclTraverseOrder +<copy TJclBinaryTree.SetTraverseOrder@TJclTraverseOrder> +\ \ + +@@TJclUnicodeStrBinaryTree.GetEnumerator +<copy TJclBinaryTree.GetEnumerator> +\ \ + +@@TJclUnicodeStrBinaryTree.Size +<copy TJclBinaryTree.Size> +\ \ + +@@TJclUnicodeStrBinaryTree.GetRoot +<copy TJclBinaryTree.GetRoot> +\ \ + +@@TJclUnicodeStrBinaryTree.Pack +<copy TJclBinaryTree.Pack> +\ \ + +@@TJclUnicodeStrBinaryTree.SetCapacity@Integer +<copy TJclBinaryTree.SetCapacity@Integer> +\ \ +@@TJclSingleBinaryTree +<copy TJclBinaryTree> +\ \ + +@@!!MEMBEROVERVIEW_TJclSingleBinaryTree +<copy !!MEMBEROVERVIEW_TJclBinaryTree> +\ \ + +@@TJclSingleBinaryTree.Add@Single +<copy TJclBinaryTree.Add@TObject> +\ \ + +@@TJclSingleBinaryTree.AddAll@IJclSingleCollection +<copy TJclBinaryTree.AddAll@IJclCollection> +\ \ + +@@TJclSingleBinaryTree.Clear +<copy TJclBinaryTree.Clear> +\ \ + +@@TJclSingleBinaryTree.Contains@Single +<copy TJclBinaryTree.Contains@TObject> +\ \ + +@@TJclSingleBinaryTree.ContainsAll@IJclSingleCollection +<copy TJclBinaryTree.ContainsAll@IJclCollection> +\ \ + +@@TJclSingleBinaryTree.Root +<copy TJclBinaryTree.Root> +\ \ + +@@TJclSingleBinaryTree.TraverseOrder +<copy TJclBinaryTree.TraverseOrder> +\ \ + +@@TJclSingleBinaryTree.Destroy +<copy TJclBinaryTree.Destroy> +\ \ + +@@TJclSingleBinaryTree.AssignDataTo@TJclAbstractContainerBase +<copy TJclBinaryTree.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclSingleBinaryTree.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclBinaryTree.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclSingleBinaryTree.AutoPack +<copy TJclBinaryTree.AutoPack> +\ \ + +@@TJclSingleBinaryTree.First +<copy TJclBinaryTree.First> +\ \ + +@@TJclSingleBinaryTree.CollectionEquals@IJclSingleCollection +<copy TJclBinaryTree.CollectionEquals@IJclCollection> +\ \ + +@@TJclSingleBinaryTree.GetTraverseOrder +<copy TJclBinaryTree.GetTraverseOrder> +\ \ + +@@TJclSingleBinaryTree.IsEmpty +<copy TJclBinaryTree.IsEmpty> +\ \ + +@@TJclSingleBinaryTree.Last +<copy TJclBinaryTree.Last> +\ \ + +@@TJclSingleBinaryTree.Create@TSingleCompare +<copy TJclBinaryTree.Create@TCompare@Boolean> +\ \ + +@@TJclSingleBinaryTree.Remove@Single +<copy TJclBinaryTree.Remove@TObject> +\ \ + +@@TJclSingleBinaryTree.CreateEmptyContainer +<copy TJclBinaryTree.CreateEmptyContainer> +\ \ + +@@TJclSingleBinaryTree.RemoveAll@IJclSingleCollection +<copy TJclBinaryTree.RemoveAll@IJclCollection> +\ \ + +@@TJclSingleBinaryTree.RetainAll@IJclSingleCollection +<copy TJclBinaryTree.RetainAll@IJclCollection> +\ \ + +@@TJclSingleBinaryTree.Extract@Single +<copy TJclBinaryTree.Extract@TObject> +\ \ + +@@TJclSingleBinaryTree.ExtractAll@IJclSingleCollection +<copy TJclBinaryTree.ExtractAll@IJclCollection> +\ \ + +@@TJclSingleBinaryTree.SetTraverseOrder@TJclTraverseOrder +<copy TJclBinaryTree.SetTraverseOrder@TJclTraverseOrder> +\ \ + +@@TJclSingleBinaryTree.GetEnumerator +<copy TJclBinaryTree.GetEnumerator> +\ \ + +@@TJclSingleBinaryTree.Size +<copy TJclBinaryTree.Size> +\ \ + +@@TJclSingleBinaryTree.GetRoot +<copy TJclBinaryTree.GetRoot> +\ \ + +@@TJclSingleBinaryTree.Pack +<copy TJclBinaryTree.Pack> +\ \ + +@@TJclSingleBinaryTree.SetCapacity@Integer +<copy TJclBinaryTree.SetCapacity@Integer> +\ \ +@@TJclDoubleBinaryTree +<copy TJclBinaryTree> +\ \ + +@@!!MEMBEROVERVIEW_TJclDoubleBinaryTree +<copy !!MEMBEROVERVIEW_TJclBinaryTree> +\ \ + +@@TJclDoubleBinaryTree.Add@Double +<copy TJclBinaryTree.Add@TObject> +\ \ + +@@TJclDoubleBinaryTree.AddAll@IJclDoubleCollection +<copy TJclBinaryTree.AddAll@IJclCollection> +\ \ + +@@TJclDoubleBinaryTree.Clear +<copy TJclBinaryTree.Clear> +\ \ + +@@TJclDoubleBinaryTree.Contains@Double +<copy TJclBinaryTree.Contains@TObject> +\ \ + +@@TJclDoubleBinaryTree.ContainsAll@IJclDoubleCollection +<copy TJclBinaryTree.ContainsAll@IJclCollection> +\ \ + +@@TJclDoubleBinaryTree.Root +<copy TJclBinaryTree.Root> +\ \ + +@@TJclDoubleBinaryTree.TraverseOrder +<copy TJclBinaryTree.TraverseOrder> +\ \ + +@@TJclDoubleBinaryTree.Destroy +<copy TJclBinaryTree.Destroy> +\ \ + +@@TJclDoubleBinaryTree.AssignDataTo@TJclAbstractContainerBase +<copy TJclBinaryTree.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclDoubleBinaryTree.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclBinaryTree.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclDoubleBinaryTree.AutoPack +<copy TJclBinaryTree.AutoPack> +\ \ + +@@TJclDoubleBinaryTree.First +<copy TJclBinaryTree.First> +\ \ + +@@TJclDoubleBinaryTree.CollectionEquals@IJclDoubleCollection +<copy TJclBinaryTree.CollectionEquals@IJclCollection> +\ \ + +@@TJclDoubleBinaryTree.GetTraverseOrder +<copy TJclBinaryTree.GetTraverseOrder> +\ \ + +@@TJclDoubleBinaryTree.IsEmpty +<copy TJclBinaryTree.IsEmpty> +\ \ + +@@TJclDoubleBinaryTree.Last +<copy TJclBinaryTree.Last> +\ \ + +@@TJclDoubleBinaryTree.Create@TDoubleCompare +<copy TJclBinaryTree.Create@TCompare@Boolean> +\ \ + +@@TJclDoubleBinaryTree.Remove@Double +<copy TJclBinaryTree.Remove@TObject> +\ \ + +@@TJclDoubleBinaryTree.CreateEmptyContainer +<copy TJclBinaryTree.CreateEmptyContainer> +\ \ + +@@TJclDoubleBinaryTree.RemoveAll@IJclDoubleCollection +<copy TJclBinaryTree.RemoveAll@IJclCollection> +\ \ + +@@TJclDoubleBinaryTree.RetainAll@IJclDoubleCollection +<copy TJclBinaryTree.RetainAll@IJclCollection> +\ \ + +@@TJclDoubleBinaryTree.Extract@Double +<copy TJclBinaryTree.Extract@TObject> +\ \ + +@@TJclDoubleBinaryTree.ExtractAll@IJclDoubleCollection +<copy TJclBinaryTree.ExtractAll@IJclCollection> +\ \ + +@@TJclDoubleBinaryTree.SetTraverseOrder@TJclTraverseOrder +<copy TJclBinaryTree.SetTraverseOrder@TJclTraverseOrder> +\ \ + +@@TJclDoubleBinaryTree.GetEnumerator +<copy TJclBinaryTree.GetEnumerator> +\ \ + +@@TJclDoubleBinaryTree.Size +<copy TJclBinaryTree.Size> +\ \ + +@@TJclDoubleBinaryTree.GetRoot +<copy TJclBinaryTree.GetRoot> +\ \ + +@@TJclDoubleBinaryTree.Pack +<copy TJclBinaryTree.Pack> +\ \ + +@@TJclDoubleBinaryTree.SetCapacity@Integer +<copy TJclBinaryTree.SetCapacity@Integer> +\ \ +@@TJclExtendedBinaryTree +<copy TJclBinaryTree> +\ \ + +@@!!MEMBEROVERVIEW_TJclExtendedBinaryTree +<copy !!MEMBEROVERVIEW_TJclBinaryTree> +\ \ + +@@TJclExtendedBinaryTree.Add@Extended +<copy TJclBinaryTree.Add@TObject> +\ \ + +@@TJclExtendedBinaryTree.AddAll@IJclExtendedCollection +<copy TJclBinaryTree.AddAll@IJclCollection> +\ \ + +@@TJclExtendedBinaryTree.Clear +<copy TJclBinaryTree.Clear> +\ \ + +@@TJclExtendedBinaryTree.Contains@Extended +<copy TJclBinaryTree.Contains@TObject> +\ \ + +@@TJclExtendedBinaryTree.ContainsAll@IJclExtendedCollection +<copy TJclBinaryTree.ContainsAll@IJclCollection> +\ \ + +@@TJclExtendedBinaryTree.Root +<copy TJclBinaryTree.Root> +\ \ + +@@TJclExtendedBinaryTree.TraverseOrder +<copy TJclBinaryTree.TraverseOrder> +\ \ + +@@TJclExtendedBinaryTree.Destroy +<copy TJclBinaryTree.Destroy> +\ \ + +@@TJclExtendedBinaryTree.AssignDataTo@TJclAbstractContainerBase +<copy TJclBinaryTree.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclExtendedBinaryTree.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclBinaryTree.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclExtendedBinaryTree.AutoPack +<copy TJclBinaryTree.AutoPack> +\ \ + +@@TJclExtendedBinaryTree.First +<copy TJclBinaryTree.First> +\ \ + +@@TJclExtendedBinaryTree.CollectionEquals@IJclExtendedCollection +<copy TJclBinaryTree.CollectionEquals@IJclCollection> +\ \ + +@@TJclExtendedBinaryTree.GetTraverseOrder +<copy TJclBinaryTree.GetTraverseOrder> +\ \ + +@@TJclExtendedBinaryTree.IsEmpty +<copy TJclBinaryTree.IsEmpty> +\ \ + +@@TJclExtendedBinaryTree.Last +<copy TJclBinaryTree.Last> +\ \ + +@@TJclExtendedBinaryTree.Create@TExtendedCompare +<copy TJclBinaryTree.Create@TCompare@Boolean> +\ \ + +@@TJclExtendedBinaryTree.Remove@Extended +<copy TJclBinaryTree.Remove@TObject> +\ \ + +@@TJclExtendedBinaryTree.CreateEmptyContainer +<copy TJclBinaryTree.CreateEmptyContainer> +\ \ + +@@TJclExtendedBinaryTree.RemoveAll@IJclExtendedCollection +<copy TJclBinaryTree.RemoveAll@IJclCollection> +\ \ + +@@TJclExtendedBinaryTree.RetainAll@IJclExtendedCollection +<copy TJclBinaryTree.RetainAll@IJclCollection> +\ \ + +@@TJclExtendedBinaryTree.Extract@Extended +<copy TJclBinaryTree.Extract@TObject> +\ \ + +@@TJclExtendedBinaryTree.ExtractAll@IJclExtendedCollection +<copy TJclBinaryTree.ExtractAll@IJclCollection> +\ \ + +@@TJclExtendedBinaryTree.SetTraverseOrder@TJclTraverseOrder +<copy TJclBinaryTree.SetTraverseOrder@TJclTraverseOrder> +\ \ + +@@TJclExtendedBinaryTree.GetEnumerator +<copy TJclBinaryTree.GetEnumerator> +\ \ + +@@TJclExtendedBinaryTree.Size +<copy TJclBinaryTree.Size> +\ \ + +@@TJclExtendedBinaryTree.GetRoot +<copy TJclBinaryTree.GetRoot> +\ \ + +@@TJclExtendedBinaryTree.Pack +<copy TJclBinaryTree.Pack> +\ \ + +@@TJclExtendedBinaryTree.SetCapacity@Integer +<copy TJclBinaryTree.SetCapacity@Integer> +\ \ +@@TJclIntegerBinaryTree +<copy TJclBinaryTree> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntegerBinaryTree +<copy !!MEMBEROVERVIEW_TJclBinaryTree> +\ \ + +@@TJclIntegerBinaryTree.Add@Integer +<copy TJclBinaryTree.Add@TObject> +\ \ + +@@TJclIntegerBinaryTree.AddAll@IJclIntegerCollection +<copy TJclBinaryTree.AddAll@IJclCollection> +\ \ + +@@TJclIntegerBinaryTree.Clear +<copy TJclBinaryTree.Clear> +\ \ + +@@TJclIntegerBinaryTree.Contains@Integer +<copy TJclBinaryTree.Contains@TObject> +\ \ + +@@TJclIntegerBinaryTree.ContainsAll@IJclIntegerCollection +<copy TJclBinaryTree.ContainsAll@IJclCollection> +\ \ + +@@TJclIntegerBinaryTree.Root +<copy TJclBinaryTree.Root> +\ \ + +@@TJclIntegerBinaryTree.TraverseOrder +<copy TJclBinaryTree.TraverseOrder> +\ \ + +@@TJclIntegerBinaryTree.Destroy +<copy TJclBinaryTree.Destroy> +\ \ + +@@TJclIntegerBinaryTree.AssignDataTo@TJclAbstractContainerBase +<copy TJclBinaryTree.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntegerBinaryTree.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclBinaryTree.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntegerBinaryTree.AutoPack +<copy TJclBinaryTree.AutoPack> +\ \ + +@@TJclIntegerBinaryTree.First +<copy TJclBinaryTree.First> +\ \ + +@@TJclIntegerBinaryTree.CollectionEquals@IJclIntegerCollection +<copy TJclBinaryTree.CollectionEquals@IJclCollection> +\ \ + +@@TJclIntegerBinaryTree.GetTraverseOrder +<copy TJclBinaryTree.GetTraverseOrder> +\ \ + +@@TJclIntegerBinaryTree.IsEmpty +<copy TJclBinaryTree.IsEmpty> +\ \ + +@@TJclIntegerBinaryTree.Last +<copy TJclBinaryTree.Last> +\ \ + +@@TJclIntegerBinaryTree.Create@TIntegerCompare +<copy TJclBinaryTree.Create@TCompare@Boolean> +\ \ + +@@TJclIntegerBinaryTree.Remove@Integer +<copy TJclBinaryTree.Remove@TObject> +\ \ + +@@TJclIntegerBinaryTree.CreateEmptyContainer +<copy TJclBinaryTree.CreateEmptyContainer> +\ \ + +@@TJclIntegerBinaryTree.RemoveAll@IJclIntegerCollection +<copy TJclBinaryTree.RemoveAll@IJclCollection> +\ \ + +@@TJclIntegerBinaryTree.RetainAll@IJclIntegerCollection +<copy TJclBinaryTree.RetainAll@IJclCollection> +\ \ + +@@TJclIntegerBinaryTree.Extract@Integer +<copy TJclBinaryTree.Extract@TObject> +\ \ + +@@TJclIntegerBinaryTree.ExtractAll@IJclIntegerCollection +<copy TJclBinaryTree.ExtractAll@IJclCollection> +\ \ + +@@TJclIntegerBinaryTree.SetTraverseOrder@TJclTraverseOrder +<copy TJclBinaryTree.SetTraverseOrder@TJclTraverseOrder> +\ \ + +@@TJclIntegerBinaryTree.GetEnumerator +<copy TJclBinaryTree.GetEnumerator> +\ \ + +@@TJclIntegerBinaryTree.Size +<copy TJclBinaryTree.Size> +\ \ + +@@TJclIntegerBinaryTree.GetRoot +<copy TJclBinaryTree.GetRoot> +\ \ + +@@TJclIntegerBinaryTree.Pack +<copy TJclBinaryTree.Pack> +\ \ + +@@TJclIntegerBinaryTree.SetCapacity@Integer +<copy TJclBinaryTree.SetCapacity@Integer> +\ \ +@@TJclCardinalBinaryTree +<copy TJclBinaryTree> +\ \ + +@@!!MEMBEROVERVIEW_TJclCardinalBinaryTree +<copy !!MEMBEROVERVIEW_TJclBinaryTree> +\ \ + +@@TJclCardinalBinaryTree.Add@Cardinal +<copy TJclBinaryTree.Add@TObject> +\ \ + +@@TJclCardinalBinaryTree.AddAll@IJclCardinalCollection +<copy TJclBinaryTree.AddAll@IJclCollection> +\ \ + +@@TJclCardinalBinaryTree.Clear +<copy TJclBinaryTree.Clear> +\ \ + +@@TJclCardinalBinaryTree.Contains@Cardinal +<copy TJclBinaryTree.Contains@TObject> +\ \ + +@@TJclCardinalBinaryTree.ContainsAll@IJclCardinalCollection +<copy TJclBinaryTree.ContainsAll@IJclCollection> +\ \ + +@@TJclCardinalBinaryTree.Root +<copy TJclBinaryTree.Root> +\ \ + +@@TJclCardinalBinaryTree.TraverseOrder +<copy TJclBinaryTree.TraverseOrder> +\ \ + +@@TJclCardinalBinaryTree.Destroy +<copy TJclBinaryTree.Destroy> +\ \ + +@@TJclCardinalBinaryTree.AssignDataTo@TJclAbstractContainerBase +<copy TJclBinaryTree.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclCardinalBinaryTree.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclBinaryTree.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclCardinalBinaryTree.AutoPack +<copy TJclBinaryTree.AutoPack> +\ \ + +@@TJclCardinalBinaryTree.First +<copy TJclBinaryTree.First> +\ \ + +@@TJclCardinalBinaryTree.CollectionEquals@IJclCardinalCollection +<copy TJclBinaryTree.CollectionEquals@IJclCollection> +\ \ + +@@TJclCardinalBinaryTree.GetTraverseOrder +<copy TJclBinaryTree.GetTraverseOrder> +\ \ + +@@TJclCardinalBinaryTree.IsEmpty +<copy TJclBinaryTree.IsEmpty> +\ \ + +@@TJclCardinalBinaryTree.Last +<copy TJclBinaryTree.Last> +\ \ + +@@TJclCardinalBinaryTree.Create@TCardinalCompare +<copy TJclBinaryTree.Create@TCompare@Boolean> +\ \ + +@@TJclCardinalBinaryTree.Remove@Cardinal +<copy TJclBinaryTree.Remove@TObject> +\ \ + +@@TJclCardinalBinaryTree.CreateEmptyContainer +<copy TJclBinaryTree.CreateEmptyContainer> +\ \ + +@@TJclCardinalBinaryTree.RemoveAll@IJclCardinalCollection +<copy TJclBinaryTree.RemoveAll@IJclCollection> +\ \ + +@@TJclCardinalBinaryTree.RetainAll@IJclCardinalCollection +<copy TJclBinaryTree.RetainAll@IJclCollection> +\ \ + +@@TJclCardinalBinaryTree.Extract@Cardinal +<copy TJclBinaryTree.Extract@TObject> +\ \ + +@@TJclCardinalBinaryTree.ExtractAll@IJclCardinalCollection +<copy TJclBinaryTree.ExtractAll@IJclCollection> +\ \ + +@@TJclCardinalBinaryTree.SetTraverseOrder@TJclTraverseOrder +<copy TJclBinaryTree.SetTraverseOrder@TJclTraverseOrder> +\ \ + +@@TJclCardinalBinaryTree.GetEnumerator +<copy TJclBinaryTree.GetEnumerator> +\ \ + +@@TJclCardinalBinaryTree.Size +<copy TJclBinaryTree.Size> +\ \ + +@@TJclCardinalBinaryTree.GetRoot +<copy TJclBinaryTree.GetRoot> +\ \ + +@@TJclCardinalBinaryTree.Pack +<copy TJclBinaryTree.Pack> +\ \ + +@@TJclCardinalBinaryTree.SetCapacity@Integer +<copy TJclBinaryTree.SetCapacity@Integer> +\ \ +@@TJclInt64BinaryTree +<copy TJclBinaryTree> +\ \ + +@@!!MEMBEROVERVIEW_TJclInt64BinaryTree +<copy !!MEMBEROVERVIEW_TJclBinaryTree> +\ \ + +@@TJclInt64BinaryTree.Add@Int64 +<copy TJclBinaryTree.Add@TObject> +\ \ + +@@TJclInt64BinaryTree.AddAll@IJclInt64Collection +<copy TJclBinaryTree.AddAll@IJclCollection> +\ \ + +@@TJclInt64BinaryTree.Clear +<copy TJclBinaryTree.Clear> +\ \ + +@@TJclInt64BinaryTree.Contains@Int64 +<copy TJclBinaryTree.Contains@TObject> +\ \ + +@@TJclInt64BinaryTree.ContainsAll@IJclInt64Collection +<copy TJclBinaryTree.ContainsAll@IJclCollection> +\ \ + +@@TJclInt64BinaryTree.Root +<copy TJclBinaryTree.Root> +\ \ + +@@TJclInt64BinaryTree.TraverseOrder +<copy TJclBinaryTree.TraverseOrder> +\ \ + +@@TJclInt64BinaryTree.Destroy +<copy TJclBinaryTree.Destroy> +\ \ + +@@TJclInt64BinaryTree.AssignDataTo@TJclAbstractContainerBase +<copy TJclBinaryTree.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclInt64BinaryTree.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclBinaryTree.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclInt64BinaryTree.AutoPack +<copy TJclBinaryTree.AutoPack> +\ \ + +@@TJclInt64BinaryTree.First +<copy TJclBinaryTree.First> +\ \ + +@@TJclInt64BinaryTree.CollectionEquals@IJclInt64Collection +<copy TJclBinaryTree.CollectionEquals@IJclCollection> +\ \ + +@@TJclInt64BinaryTree.GetTraverseOrder +<copy TJclBinaryTree.GetTraverseOrder> +\ \ + +@@TJclInt64BinaryTree.IsEmpty +<copy TJclBinaryTree.IsEmpty> +\ \ + +@@TJclInt64BinaryTree.Last +<copy TJclBinaryTree.Last> +\ \ + +@@TJclInt64BinaryTree.Create@TInt64Compare +<copy TJclBinaryTree.Create@TCompare@Boolean> +\ \ + +@@TJclInt64BinaryTree.Remove@Int64 +<copy TJclBinaryTree.Remove@TObject> +\ \ + +@@TJclInt64BinaryTree.CreateEmptyContainer +<copy TJclBinaryTree.CreateEmptyContainer> +\ \ + +@@TJclInt64BinaryTree.RemoveAll@IJclInt64Collection +<copy TJclBinaryTree.RemoveAll@IJclCollection> +\ \ + +@@TJclInt64BinaryTree.RetainAll@IJclInt64Collection +<copy TJclBinaryTree.RetainAll@IJclCollection> +\ \ + +@@TJclInt64BinaryTree.Extract@Int64 +<copy TJclBinaryTree.Extract@TObject> +\ \ + +@@TJclInt64BinaryTree.ExtractAll@IJclInt64Collection +<copy TJclBinaryTree.ExtractAll@IJclCollection> +\ \ + +@@TJclInt64BinaryTree.SetTraverseOrder@TJclTraverseOrder +<copy TJclBinaryTree.SetTraverseOrder@TJclTraverseOrder> +\ \ + +@@TJclInt64BinaryTree.GetEnumerator +<copy TJclBinaryTree.GetEnumerator> +\ \ + +@@TJclInt64BinaryTree.Size +<copy TJclBinaryTree.Size> +\ \ + +@@TJclInt64BinaryTree.GetRoot +<copy TJclBinaryTree.GetRoot> +\ \ + +@@TJclInt64BinaryTree.Pack +<copy TJclBinaryTree.Pack> +\ \ + +@@TJclInt64BinaryTree.SetCapacity@Integer +<copy TJclBinaryTree.SetCapacity@Integer> +\ \ +@@TJclPtrBinaryTree +<copy TJclBinaryTree> +\ \ + +@@!!MEMBEROVERVIEW_TJclPtrBinaryTree +<copy !!MEMBEROVERVIEW_TJclBinaryTree> +\ \ + +@@TJclPtrBinaryTree.Add@Pointer +<copy TJclBinaryTree.Add@TObject> +\ \ + +@@TJclPtrBinaryTree.AddAll@IJclPtrCollection +<copy TJclBinaryTree.AddAll@IJclCollection> +\ \ + +@@TJclPtrBinaryTree.Clear +<copy TJclBinaryTree.Clear> +\ \ + +@@TJclPtrBinaryTree.Contains@Pointer +<copy TJclBinaryTree.Contains@TObject> +\ \ + +@@TJclPtrBinaryTree.ContainsAll@IJclPtrCollection +<copy TJclBinaryTree.ContainsAll@IJclCollection> +\ \ + +@@TJclPtrBinaryTree.Root +<copy TJclBinaryTree.Root> +\ \ + +@@TJclPtrBinaryTree.TraverseOrder +<copy TJclBinaryTree.TraverseOrder> +\ \ + +@@TJclPtrBinaryTree.Destroy +<copy TJclBinaryTree.Destroy> +\ \ + +@@TJclPtrBinaryTree.AssignDataTo@TJclAbstractContainerBase +<copy TJclBinaryTree.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclPtrBinaryTree.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclBinaryTree.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclPtrBinaryTree.AutoPack +<copy TJclBinaryTree.AutoPack> +\ \ + +@@TJclPtrBinaryTree.First +<copy TJclBinaryTree.First> +\ \ + +@@TJclPtrBinaryTree.CollectionEquals@IJclPtrCollection +<copy TJclBinaryTree.CollectionEquals@IJclCollection> +\ \ + +@@TJclPtrBinaryTree.GetTraverseOrder +<copy TJclBinaryTree.GetTraverseOrder> +\ \ + +@@TJclPtrBinaryTree.IsEmpty +<copy TJclBinaryTree.IsEmpty> +\ \ + +@@TJclPtrBinaryTree.Last +<copy TJclBinaryTree.Last> +\ \ + +@@TJclPtrBinaryTree.Create@TPtrCompare +<copy TJclBinaryTree.Create@TCompare@Boolean> +\ \ + +@@TJclPtrBinaryTree.Remove@Pointer +<copy TJclBinaryTree.Remove@TObject> +\ \ + +@@TJclPtrBinaryTree.CreateEmptyContainer +<copy TJclBinaryTree.CreateEmptyContainer> +\ \ + +@@TJclPtrBinaryTree.RemoveAll@IJclPtrCollection +<copy TJclBinaryTree.RemoveAll@IJclCollection> +\ \ + +@@TJclPtrBinaryTree.RetainAll@IJclPtrCollection +<copy TJclBinaryTree.RetainAll@IJclCollection> +\ \ + +@@TJclPtrBinaryTree.Extract@Pointer +<copy TJclBinaryTree.Extract@TObject> +\ \ + +@@TJclPtrBinaryTree.ExtractAll@IJclPtrCollection +<copy TJclBinaryTree.ExtractAll@IJclCollection> +\ \ + +@@TJclPtrBinaryTree.SetTraverseOrder@TJclTraverseOrder +<copy TJclBinaryTree.SetTraverseOrder@TJclTraverseOrder> +\ \ + +@@TJclPtrBinaryTree.GetEnumerator +<copy TJclBinaryTree.GetEnumerator> +\ \ + +@@TJclPtrBinaryTree.Size +<copy TJclBinaryTree.Size> +\ \ + +@@TJclPtrBinaryTree.GetRoot +<copy TJclBinaryTree.GetRoot> +\ \ + +@@TJclPtrBinaryTree.Pack +<copy TJclBinaryTree.Pack> +\ \ + +@@TJclPtrBinaryTree.SetCapacity@Integer +<copy TJclBinaryTree.SetCapacity@Integer> +\ \ + + +@@TJclIntfBinaryTreeIterator +<copy TJclBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclBinaryTreeIterator> +\ \ + +@@TJclIntfBinaryTreeIterator.Current +<copy TJclBinaryTreeIterator.Current> +\ \ + +@@TJclIntfBinaryTreeIterator.Add@IInterface +<copy TJclBinaryTreeIterator.Add@TObject> +\ \ + +@@TJclIntfBinaryTreeIterator.AddChild@IInterface +<copy TJclBinaryTreeIterator.AddChild@TObject> +\ \ + +@@TJclIntfBinaryTreeIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclBinaryTreeIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclIntfBinaryTreeIterator.ChildrenCount +<copy TJclBinaryTreeIterator.ChildrenCount> +\ \ + +@@TJclIntfBinaryTreeIterator.Create@IJclIntfCollection@TJclIntfBinaryNode@Boolean@TItrStart +<copy TJclBinaryTreeIterator.Create@IJclCollection@TJclBinaryNode@Boolean@TItrStart> +\ \ + +@@TJclIntfBinaryTreeIterator.DeleteChild@Integer +<copy TJclBinaryTreeIterator.DeleteChild@Integer> +\ \ + +@@TJclIntfBinaryTreeIterator.DeleteChildren +<copy TJclBinaryTreeIterator.DeleteChildren> +\ \ + +@@TJclIntfBinaryTreeIterator.Extract +<copy TJclBinaryTreeIterator.Extract> +\ \ + +@@TJclIntfBinaryTreeIterator.ExtractChild@Integer +<copy TJclBinaryTreeIterator.ExtractChild@Integer> +\ \ + +@@TJclIntfBinaryTreeIterator.ExtractChildren +<copy TJclBinaryTreeIterator.ExtractChildren> +\ \ + +@@TJclIntfBinaryTreeIterator.GetChild@Integer +<copy TJclBinaryTreeIterator.GetChild@Integer> +\ \ + +@@TJclIntfBinaryTreeIterator.GetNextCursor +<copy TJclBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclIntfBinaryTreeIterator.GetObject +<copy TJclBinaryTreeIterator.GetObject> +\ \ + +@@TJclIntfBinaryTreeIterator.GetPreviousCursor +<copy TJclBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclIntfBinaryTreeIterator.HasChild@Integer +<copy TJclBinaryTreeIterator.HasChild@Integer> +\ \ + +@@TJclIntfBinaryTreeIterator.HasLeft +<copy TJclBinaryTreeIterator.HasLeft> +\ \ + +@@TJclIntfBinaryTreeIterator.HasNext +<copy TJclBinaryTreeIterator.HasNext> +\ \ + +@@TJclIntfBinaryTreeIterator.HasParent +<copy TJclBinaryTreeIterator.HasParent> +\ \ + +@@TJclIntfBinaryTreeIterator.HasPrevious +<copy TJclBinaryTreeIterator.HasPrevious> +\ \ + +@@TJclIntfBinaryTreeIterator.HasRight +<copy TJclBinaryTreeIterator.HasRight> +\ \ + +@@TJclIntfBinaryTreeIterator.IndexOfChild@IInterface +<copy TJclBinaryTreeIterator.IndexOfChild@TObject> +\ \ + +@@TJclIntfBinaryTreeIterator.Insert@IInterface +<copy TJclBinaryTreeIterator.Insert@TObject> +\ \ + +@@TJclIntfBinaryTreeIterator.InsertChild@Integer@IInterface +<copy TJclBinaryTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@TJclIntfBinaryTreeIterator.IteratorEquals@IJclIntfIterator +<copy TJclBinaryTreeIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclIntfBinaryTreeIterator.Left +<copy TJclBinaryTreeIterator.Left> +\ \ + +@@TJclIntfBinaryTreeIterator.MoveNext +<copy TJclBinaryTreeIterator.MoveNext> +\ \ + +@@TJclIntfBinaryTreeIterator.Next +<copy TJclBinaryTreeIterator.Next> +\ \ + +@@TJclIntfBinaryTreeIterator.NextIndex +<copy TJclBinaryTreeIterator.NextIndex> +\ \ + +@@TJclIntfBinaryTreeIterator.Parent +<copy TJclBinaryTreeIterator.Parent> +\ \ + +@@TJclIntfBinaryTreeIterator.Previous +<copy TJclBinaryTreeIterator.Previous> +\ \ + +@@TJclIntfBinaryTreeIterator.PreviousIndex +<copy TJclBinaryTreeIterator.PreviousIndex> +\ \ + +@@TJclIntfBinaryTreeIterator.Remove +<copy TJclBinaryTreeIterator.Remove> +\ \ + +@@TJclIntfBinaryTreeIterator.Reset +<copy TJclBinaryTreeIterator.Reset> +\ \ + +@@TJclIntfBinaryTreeIterator.Right +<copy TJclBinaryTreeIterator.Right> +\ \ + +@@TJclIntfBinaryTreeIterator.SetChild@Integer@IInterface +<copy TJclBinaryTreeIterator.SetChild@Integer@TObject> +\ \ + +@@TJclIntfBinaryTreeIterator.SetObject@IInterface +<copy TJclBinaryTreeIterator.SetObject@TObject> +\ \ + +@@TJclPreOrderIntfBinaryTreeIterator +<copy TJclPreOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPreOrderIntfBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclPreOrderBinaryTreeIterator> +\ \ + +@@TJclPreOrderIntfBinaryTreeIterator.CreateEmptyIterator +<copy TJclPreOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPreOrderIntfBinaryTreeIterator.GetNextCursor +<copy TJclPreOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclPreOrderIntfBinaryTreeIterator.GetPreviousCursor +<copy TJclPreOrderBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclInOrderIntfBinaryTreeIterator +<copy TJclInOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclInOrderIntfBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclInOrderBinaryTreeIterator> +\ \ + +@@TJclInOrderIntfBinaryTreeIterator.CreateEmptyIterator +<copy TJclInOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclInOrderIntfBinaryTreeIterator.GetNextCursor +<copy TJclInOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclInOrderIntfBinaryTreeIterator.GetPreviousCursor +<copy TJclInOrderBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclPostOrderIntfBinaryTreeIterator +<copy TJclPostOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPostOrderIntfBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclPostOrderBinaryTreeIterator> +\ \ + +@@TJclPostOrderIntfBinaryTreeIterator.CreateEmptyIterator +<copy TJclPostOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPostOrderIntfBinaryTreeIterator.GetNextCursor +<copy TJclPostOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclPostOrderIntfBinaryTreeIterator.GetPreviousCursor +<copy TJclPostOrderBinaryTreeIterator.GetPreviousCursor> +\ \ +@@TJclAnsiStrBinaryTreeIterator +<copy TJclBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclAnsiStrBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclBinaryTreeIterator> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.Current +<copy TJclBinaryTreeIterator.Current> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.Add@AnsiString +<copy TJclBinaryTreeIterator.Add@TObject> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.AddChild@AnsiString +<copy TJclBinaryTreeIterator.AddChild@TObject> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclBinaryTreeIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.ChildrenCount +<copy TJclBinaryTreeIterator.ChildrenCount> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.Create@IJclAnsiStrCollection@TJclAnsiStrBinaryNode@Boolean@TItrStart +<copy TJclBinaryTreeIterator.Create@IJclCollection@TJclBinaryNode@Boolean@TItrStart> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.DeleteChild@Integer +<copy TJclBinaryTreeIterator.DeleteChild@Integer> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.DeleteChildren +<copy TJclBinaryTreeIterator.DeleteChildren> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.Extract +<copy TJclBinaryTreeIterator.Extract> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.ExtractChild@Integer +<copy TJclBinaryTreeIterator.ExtractChild@Integer> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.ExtractChildren +<copy TJclBinaryTreeIterator.ExtractChildren> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.GetChild@Integer +<copy TJclBinaryTreeIterator.GetChild@Integer> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.GetNextCursor +<copy TJclBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.GetString +<copy TJclBinaryTreeIterator.GetObject> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.GetPreviousCursor +<copy TJclBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.HasChild@Integer +<copy TJclBinaryTreeIterator.HasChild@Integer> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.HasLeft +<copy TJclBinaryTreeIterator.HasLeft> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.HasNext +<copy TJclBinaryTreeIterator.HasNext> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.HasParent +<copy TJclBinaryTreeIterator.HasParent> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.HasPrevious +<copy TJclBinaryTreeIterator.HasPrevious> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.HasRight +<copy TJclBinaryTreeIterator.HasRight> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.IndexOfChild@AnsiString +<copy TJclBinaryTreeIterator.IndexOfChild@TObject> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.Insert@AnsiString +<copy TJclBinaryTreeIterator.Insert@TObject> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.InsertChild@Integer@AnsiString +<copy TJclBinaryTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.IteratorEquals@IJclAnsiStrIterator +<copy TJclBinaryTreeIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.Left +<copy TJclBinaryTreeIterator.Left> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.MoveNext +<copy TJclBinaryTreeIterator.MoveNext> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.Next +<copy TJclBinaryTreeIterator.Next> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.NextIndex +<copy TJclBinaryTreeIterator.NextIndex> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.Parent +<copy TJclBinaryTreeIterator.Parent> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.Previous +<copy TJclBinaryTreeIterator.Previous> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.PreviousIndex +<copy TJclBinaryTreeIterator.PreviousIndex> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.Remove +<copy TJclBinaryTreeIterator.Remove> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.Reset +<copy TJclBinaryTreeIterator.Reset> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.Right +<copy TJclBinaryTreeIterator.Right> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.SetChild@Integer@AnsiString +<copy TJclBinaryTreeIterator.SetChild@Integer@TObject> +\ \ + +@@TJclAnsiStrBinaryTreeIterator.SetString@AnsiString +<copy TJclBinaryTreeIterator.SetObject@TObject> +\ \ + +@@TJclPreOrderAnsiStrBinaryTreeIterator +<copy TJclPreOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPreOrderAnsiStrBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclPreOrderBinaryTreeIterator> +\ \ + +@@TJclPreOrderAnsiStrBinaryTreeIterator.CreateEmptyIterator +<copy TJclPreOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPreOrderAnsiStrBinaryTreeIterator.GetNextCursor +<copy TJclPreOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclPreOrderAnsiStrBinaryTreeIterator.GetPreviousCursor +<copy TJclPreOrderBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclInOrderAnsiStrBinaryTreeIterator +<copy TJclInOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclInOrderAnsiStrBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclInOrderBinaryTreeIterator> +\ \ + +@@TJclInOrderAnsiStrBinaryTreeIterator.CreateEmptyIterator +<copy TJclInOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclInOrderAnsiStrBinaryTreeIterator.GetNextCursor +<copy TJclInOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclInOrderAnsiStrBinaryTreeIterator.GetPreviousCursor +<copy TJclInOrderBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclPostOrderAnsiStrBinaryTreeIterator +<copy TJclPostOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPostOrderAnsiStrBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclPostOrderBinaryTreeIterator> +\ \ + +@@TJclPostOrderAnsiStrBinaryTreeIterator.CreateEmptyIterator +<copy TJclPostOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPostOrderAnsiStrBinaryTreeIterator.GetNextCursor +<copy TJclPostOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclPostOrderAnsiStrBinaryTreeIterator.GetPreviousCursor +<copy TJclPostOrderBinaryTreeIterator.GetPreviousCursor> +\ \ +@@TJclWideStrBinaryTreeIterator +<copy TJclBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclWideStrBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclBinaryTreeIterator> +\ \ + +@@TJclWideStrBinaryTreeIterator.Current +<copy TJclBinaryTreeIterator.Current> +\ \ + +@@TJclWideStrBinaryTreeIterator.Add@WideString +<copy TJclBinaryTreeIterator.Add@TObject> +\ \ + +@@TJclWideStrBinaryTreeIterator.AddChild@WideString +<copy TJclBinaryTreeIterator.AddChild@TObject> +\ \ + +@@TJclWideStrBinaryTreeIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclBinaryTreeIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclWideStrBinaryTreeIterator.ChildrenCount +<copy TJclBinaryTreeIterator.ChildrenCount> +\ \ + +@@TJclWideStrBinaryTreeIterator.Create@IJclWideStrCollection@TJclWideStrBinaryNode@Boolean@TItrStart +<copy TJclBinaryTreeIterator.Create@IJclCollection@TJclBinaryNode@Boolean@TItrStart> +\ \ + +@@TJclWideStrBinaryTreeIterator.DeleteChild@Integer +<copy TJclBinaryTreeIterator.DeleteChild@Integer> +\ \ + +@@TJclWideStrBinaryTreeIterator.DeleteChildren +<copy TJclBinaryTreeIterator.DeleteChildren> +\ \ + +@@TJclWideStrBinaryTreeIterator.Extract +<copy TJclBinaryTreeIterator.Extract> +\ \ + +@@TJclWideStrBinaryTreeIterator.ExtractChild@Integer +<copy TJclBinaryTreeIterator.ExtractChild@Integer> +\ \ + +@@TJclWideStrBinaryTreeIterator.ExtractChildren +<copy TJclBinaryTreeIterator.ExtractChildren> +\ \ + +@@TJclWideStrBinaryTreeIterator.GetChild@Integer +<copy TJclBinaryTreeIterator.GetChild@Integer> +\ \ + +@@TJclWideStrBinaryTreeIterator.GetNextCursor +<copy TJclBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclWideStrBinaryTreeIterator.GetString +<copy TJclBinaryTreeIterator.GetObject> +\ \ + +@@TJclWideStrBinaryTreeIterator.GetPreviousCursor +<copy TJclBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclWideStrBinaryTreeIterator.HasChild@Integer +<copy TJclBinaryTreeIterator.HasChild@Integer> +\ \ + +@@TJclWideStrBinaryTreeIterator.HasLeft +<copy TJclBinaryTreeIterator.HasLeft> +\ \ + +@@TJclWideStrBinaryTreeIterator.HasNext +<copy TJclBinaryTreeIterator.HasNext> +\ \ + +@@TJclWideStrBinaryTreeIterator.HasParent +<copy TJclBinaryTreeIterator.HasParent> +\ \ + +@@TJclWideStrBinaryTreeIterator.HasPrevious +<copy TJclBinaryTreeIterator.HasPrevious> +\ \ + +@@TJclWideStrBinaryTreeIterator.HasRight +<copy TJclBinaryTreeIterator.HasRight> +\ \ + +@@TJclWideStrBinaryTreeIterator.IndexOfChild@WideString +<copy TJclBinaryTreeIterator.IndexOfChild@TObject> +\ \ + +@@TJclWideStrBinaryTreeIterator.Insert@WideString +<copy TJclBinaryTreeIterator.Insert@TObject> +\ \ + +@@TJclWideStrBinaryTreeIterator.InsertChild@Integer@WideString +<copy TJclBinaryTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@TJclWideStrBinaryTreeIterator.IteratorEquals@IJclWideStrIterator +<copy TJclBinaryTreeIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclWideStrBinaryTreeIterator.Left +<copy TJclBinaryTreeIterator.Left> +\ \ + +@@TJclWideStrBinaryTreeIterator.MoveNext +<copy TJclBinaryTreeIterator.MoveNext> +\ \ + +@@TJclWideStrBinaryTreeIterator.Next +<copy TJclBinaryTreeIterator.Next> +\ \ + +@@TJclWideStrBinaryTreeIterator.NextIndex +<copy TJclBinaryTreeIterator.NextIndex> +\ \ + +@@TJclWideStrBinaryTreeIterator.Parent +<copy TJclBinaryTreeIterator.Parent> +\ \ + +@@TJclWideStrBinaryTreeIterator.Previous +<copy TJclBinaryTreeIterator.Previous> +\ \ + +@@TJclWideStrBinaryTreeIterator.PreviousIndex +<copy TJclBinaryTreeIterator.PreviousIndex> +\ \ + +@@TJclWideStrBinaryTreeIterator.Remove +<copy TJclBinaryTreeIterator.Remove> +\ \ + +@@TJclWideStrBinaryTreeIterator.Reset +<copy TJclBinaryTreeIterator.Reset> +\ \ + +@@TJclWideStrBinaryTreeIterator.Right +<copy TJclBinaryTreeIterator.Right> +\ \ + +@@TJclWideStrBinaryTreeIterator.SetChild@Integer@WideString +<copy TJclBinaryTreeIterator.SetChild@Integer@TObject> +\ \ + +@@TJclWideStrBinaryTreeIterator.SetString@WideString +<copy TJclBinaryTreeIterator.SetObject@TObject> +\ \ + +@@TJclPreOrderWideStrBinaryTreeIterator +<copy TJclPreOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPreOrderWideStrBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclPreOrderBinaryTreeIterator> +\ \ + +@@TJclPreOrderWideStrBinaryTreeIterator.CreateEmptyIterator +<copy TJclPreOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPreOrderWideStrBinaryTreeIterator.GetNextCursor +<copy TJclPreOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclPreOrderWideStrBinaryTreeIterator.GetPreviousCursor +<copy TJclPreOrderBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclInOrderWideStrBinaryTreeIterator +<copy TJclInOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclInOrderWideStrBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclInOrderBinaryTreeIterator> +\ \ + +@@TJclInOrderWideStrBinaryTreeIterator.CreateEmptyIterator +<copy TJclInOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclInOrderWideStrBinaryTreeIterator.GetNextCursor +<copy TJclInOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclInOrderWideStrBinaryTreeIterator.GetPreviousCursor +<copy TJclInOrderBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclPostOrderWideStrBinaryTreeIterator +<copy TJclPostOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPostOrderWideStrBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclPostOrderBinaryTreeIterator> +\ \ + +@@TJclPostOrderWideStrBinaryTreeIterator.CreateEmptyIterator +<copy TJclPostOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPostOrderWideStrBinaryTreeIterator.GetNextCursor +<copy TJclPostOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclPostOrderWideStrBinaryTreeIterator.GetPreviousCursor +<copy TJclPostOrderBinaryTreeIterator.GetPreviousCursor> +\ \ +@@TJclUnicodeStrBinaryTreeIterator +<copy TJclBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclUnicodeStrBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclBinaryTreeIterator> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.Current +<copy TJclBinaryTreeIterator.Current> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.Add@UnicodeString +<copy TJclBinaryTreeIterator.Add@TObject> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.AddChild@UnicodeString +<copy TJclBinaryTreeIterator.AddChild@TObject> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclBinaryTreeIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.ChildrenCount +<copy TJclBinaryTreeIterator.ChildrenCount> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.Create@IJclUnicodeStrCollection@TJclUnicodeStrBinaryNode@Boolean@TItrStart +<copy TJclBinaryTreeIterator.Create@IJclCollection@TJclBinaryNode@Boolean@TItrStart> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.DeleteChild@Integer +<copy TJclBinaryTreeIterator.DeleteChild@Integer> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.DeleteChildren +<copy TJclBinaryTreeIterator.DeleteChildren> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.Extract +<copy TJclBinaryTreeIterator.Extract> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.ExtractChild@Integer +<copy TJclBinaryTreeIterator.ExtractChild@Integer> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.ExtractChildren +<copy TJclBinaryTreeIterator.ExtractChildren> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.GetChild@Integer +<copy TJclBinaryTreeIterator.GetChild@Integer> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.GetNextCursor +<copy TJclBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.GetString +<copy TJclBinaryTreeIterator.GetObject> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.GetPreviousCursor +<copy TJclBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.HasChild@Integer +<copy TJclBinaryTreeIterator.HasChild@Integer> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.HasLeft +<copy TJclBinaryTreeIterator.HasLeft> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.HasNext +<copy TJclBinaryTreeIterator.HasNext> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.HasParent +<copy TJclBinaryTreeIterator.HasParent> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.HasPrevious +<copy TJclBinaryTreeIterator.HasPrevious> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.HasRight +<copy TJclBinaryTreeIterator.HasRight> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.IndexOfChild@UnicodeString +<copy TJclBinaryTreeIterator.IndexOfChild@TObject> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.Insert@UnicodeString +<copy TJclBinaryTreeIterator.Insert@TObject> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.InsertChild@Integer@UnicodeString +<copy TJclBinaryTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.IteratorEquals@IJclUnicodeStrIterator +<copy TJclBinaryTreeIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.Left +<copy TJclBinaryTreeIterator.Left> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.MoveNext +<copy TJclBinaryTreeIterator.MoveNext> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.Next +<copy TJclBinaryTreeIterator.Next> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.NextIndex +<copy TJclBinaryTreeIterator.NextIndex> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.Parent +<copy TJclBinaryTreeIterator.Parent> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.Previous +<copy TJclBinaryTreeIterator.Previous> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.PreviousIndex +<copy TJclBinaryTreeIterator.PreviousIndex> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.Remove +<copy TJclBinaryTreeIterator.Remove> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.Reset +<copy TJclBinaryTreeIterator.Reset> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.Right +<copy TJclBinaryTreeIterator.Right> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.SetChild@Integer@UnicodeString +<copy TJclBinaryTreeIterator.SetChild@Integer@TObject> +\ \ + +@@TJclUnicodeStrBinaryTreeIterator.SetString@UnicodeString +<copy TJclBinaryTreeIterator.SetObject@TObject> +\ \ + +@@TJclPreOrderUnicodeStrBinaryTreeIterator +<copy TJclPreOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPreOrderUnicodeStrBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclPreOrderBinaryTreeIterator> +\ \ + +@@TJclPreOrderUnicodeStrBinaryTreeIterator.CreateEmptyIterator +<copy TJclPreOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPreOrderUnicodeStrBinaryTreeIterator.GetNextCursor +<copy TJclPreOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclPreOrderUnicodeStrBinaryTreeIterator.GetPreviousCursor +<copy TJclPreOrderBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclInOrderUnicodeStrBinaryTreeIterator +<copy TJclInOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclInOrderUnicodeStrBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclInOrderBinaryTreeIterator> +\ \ + +@@TJclInOrderUnicodeStrBinaryTreeIterator.CreateEmptyIterator +<copy TJclInOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclInOrderUnicodeStrBinaryTreeIterator.GetNextCursor +<copy TJclInOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclInOrderUnicodeStrBinaryTreeIterator.GetPreviousCursor +<copy TJclInOrderBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclPostOrderUnicodeStrBinaryTreeIterator +<copy TJclPostOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPostOrderUnicodeStrBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclPostOrderBinaryTreeIterator> +\ \ + +@@TJclPostOrderUnicodeStrBinaryTreeIterator.CreateEmptyIterator +<copy TJclPostOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPostOrderUnicodeStrBinaryTreeIterator.GetNextCursor +<copy TJclPostOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclPostOrderUnicodeStrBinaryTreeIterator.GetPreviousCursor +<copy TJclPostOrderBinaryTreeIterator.GetPreviousCursor> +\ \ +@@TJclSingleBinaryTreeIterator +<copy TJclBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclSingleBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclBinaryTreeIterator> +\ \ + +@@TJclSingleBinaryTreeIterator.Current +<copy TJclBinaryTreeIterator.Current> +\ \ + +@@TJclSingleBinaryTreeIterator.Add@Single +<copy TJclBinaryTreeIterator.Add@TObject> +\ \ + +@@TJclSingleBinaryTreeIterator.AddChild@Single +<copy TJclBinaryTreeIterator.AddChild@TObject> +\ \ + +@@TJclSingleBinaryTreeIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclBinaryTreeIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclSingleBinaryTreeIterator.ChildrenCount +<copy TJclBinaryTreeIterator.ChildrenCount> +\ \ + +@@TJclSingleBinaryTreeIterator.Create@IJclSingleCollection@TJclSingleBinaryNode@Boolean@TItrStart +<copy TJclBinaryTreeIterator.Create@IJclCollection@TJclBinaryNode@Boolean@TItrStart> +\ \ + +@@TJclSingleBinaryTreeIterator.DeleteChild@Integer +<copy TJclBinaryTreeIterator.DeleteChild@Integer> +\ \ + +@@TJclSingleBinaryTreeIterator.DeleteChildren +<copy TJclBinaryTreeIterator.DeleteChildren> +\ \ + +@@TJclSingleBinaryTreeIterator.Extract +<copy TJclBinaryTreeIterator.Extract> +\ \ + +@@TJclSingleBinaryTreeIterator.ExtractChild@Integer +<copy TJclBinaryTreeIterator.ExtractChild@Integer> +\ \ + +@@TJclSingleBinaryTreeIterator.ExtractChildren +<copy TJclBinaryTreeIterator.ExtractChildren> +\ \ + +@@TJclSingleBinaryTreeIterator.GetChild@Integer +<copy TJclBinaryTreeIterator.GetChild@Integer> +\ \ + +@@TJclSingleBinaryTreeIterator.GetNextCursor +<copy TJclBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclSingleBinaryTreeIterator.GetValue +<copy TJclBinaryTreeIterator.GetObject> +\ \ + +@@TJclSingleBinaryTreeIterator.GetPreviousCursor +<copy TJclBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclSingleBinaryTreeIterator.HasChild@Integer +<copy TJclBinaryTreeIterator.HasChild@Integer> +\ \ + +@@TJclSingleBinaryTreeIterator.HasLeft +<copy TJclBinaryTreeIterator.HasLeft> +\ \ + +@@TJclSingleBinaryTreeIterator.HasNext +<copy TJclBinaryTreeIterator.HasNext> +\ \ + +@@TJclSingleBinaryTreeIterator.HasParent +<copy TJclBinaryTreeIterator.HasParent> +\ \ + +@@TJclSingleBinaryTreeIterator.HasPrevious +<copy TJclBinaryTreeIterator.HasPrevious> +\ \ + +@@TJclSingleBinaryTreeIterator.HasRight +<copy TJclBinaryTreeIterator.HasRight> +\ \ + +@@TJclSingleBinaryTreeIterator.IndexOfChild@Single +<copy TJclBinaryTreeIterator.IndexOfChild@TObject> +\ \ + +@@TJclSingleBinaryTreeIterator.Insert@Single +<copy TJclBinaryTreeIterator.Insert@TObject> +\ \ + +@@TJclSingleBinaryTreeIterator.InsertChild@Integer@Single +<copy TJclBinaryTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@TJclSingleBinaryTreeIterator.IteratorEquals@IJclSingleIterator +<copy TJclBinaryTreeIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclSingleBinaryTreeIterator.Left +<copy TJclBinaryTreeIterator.Left> +\ \ + +@@TJclSingleBinaryTreeIterator.MoveNext +<copy TJclBinaryTreeIterator.MoveNext> +\ \ + +@@TJclSingleBinaryTreeIterator.Next +<copy TJclBinaryTreeIterator.Next> +\ \ + +@@TJclSingleBinaryTreeIterator.NextIndex +<copy TJclBinaryTreeIterator.NextIndex> +\ \ + +@@TJclSingleBinaryTreeIterator.Parent +<copy TJclBinaryTreeIterator.Parent> +\ \ + +@@TJclSingleBinaryTreeIterator.Previous +<copy TJclBinaryTreeIterator.Previous> +\ \ + +@@TJclSingleBinaryTreeIterator.PreviousIndex +<copy TJclBinaryTreeIterator.PreviousIndex> +\ \ + +@@TJclSingleBinaryTreeIterator.Remove +<copy TJclBinaryTreeIterator.Remove> +\ \ + +@@TJclSingleBinaryTreeIterator.Reset +<copy TJclBinaryTreeIterator.Reset> +\ \ + +@@TJclSingleBinaryTreeIterator.Right +<copy TJclBinaryTreeIterator.Right> +\ \ + +@@TJclSingleBinaryTreeIterator.SetChild@Integer@Single +<copy TJclBinaryTreeIterator.SetChild@Integer@TObject> +\ \ + +@@TJclSingleBinaryTreeIterator.SetValue@Single +<copy TJclBinaryTreeIterator.SetObject@TObject> +\ \ + +@@TJclPreOrderSingleBinaryTreeIterator +<copy TJclPreOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPreOrderSingleBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclPreOrderBinaryTreeIterator> +\ \ + +@@TJclPreOrderSingleBinaryTreeIterator.CreateEmptyIterator +<copy TJclPreOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPreOrderSingleBinaryTreeIterator.GetNextCursor +<copy TJclPreOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclPreOrderSingleBinaryTreeIterator.GetPreviousCursor +<copy TJclPreOrderBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclInOrderSingleBinaryTreeIterator +<copy TJclInOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclInOrderSingleBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclInOrderBinaryTreeIterator> +\ \ + +@@TJclInOrderSingleBinaryTreeIterator.CreateEmptyIterator +<copy TJclInOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclInOrderSingleBinaryTreeIterator.GetNextCursor +<copy TJclInOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclInOrderSingleBinaryTreeIterator.GetPreviousCursor +<copy TJclInOrderBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclPostOrderSingleBinaryTreeIterator +<copy TJclPostOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPostOrderSingleBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclPostOrderBinaryTreeIterator> +\ \ + +@@TJclPostOrderSingleBinaryTreeIterator.CreateEmptyIterator +<copy TJclPostOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPostOrderSingleBinaryTreeIterator.GetNextCursor +<copy TJclPostOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclPostOrderSingleBinaryTreeIterator.GetPreviousCursor +<copy TJclPostOrderBinaryTreeIterator.GetPreviousCursor> +\ \ +@@TJclDoubleBinaryTreeIterator +<copy TJclBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclDoubleBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclBinaryTreeIterator> +\ \ + +@@TJclDoubleBinaryTreeIterator.Current +<copy TJclBinaryTreeIterator.Current> +\ \ + +@@TJclDoubleBinaryTreeIterator.Add@Double +<copy TJclBinaryTreeIterator.Add@TObject> +\ \ + +@@TJclDoubleBinaryTreeIterator.AddChild@Double +<copy TJclBinaryTreeIterator.AddChild@TObject> +\ \ + +@@TJclDoubleBinaryTreeIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclBinaryTreeIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclDoubleBinaryTreeIterator.ChildrenCount +<copy TJclBinaryTreeIterator.ChildrenCount> +\ \ + +@@TJclDoubleBinaryTreeIterator.Create@IJclDoubleCollection@TJclDoubleBinaryNode@Boolean@TItrStart +<copy TJclBinaryTreeIterator.Create@IJclCollection@TJclBinaryNode@Boolean@TItrStart> +\ \ + +@@TJclDoubleBinaryTreeIterator.DeleteChild@Integer +<copy TJclBinaryTreeIterator.DeleteChild@Integer> +\ \ + +@@TJclDoubleBinaryTreeIterator.DeleteChildren +<copy TJclBinaryTreeIterator.DeleteChildren> +\ \ + +@@TJclDoubleBinaryTreeIterator.Extract +<copy TJclBinaryTreeIterator.Extract> +\ \ + +@@TJclDoubleBinaryTreeIterator.ExtractChild@Integer +<copy TJclBinaryTreeIterator.ExtractChild@Integer> +\ \ + +@@TJclDoubleBinaryTreeIterator.ExtractChildren +<copy TJclBinaryTreeIterator.ExtractChildren> +\ \ + +@@TJclDoubleBinaryTreeIterator.GetChild@Integer +<copy TJclBinaryTreeIterator.GetChild@Integer> +\ \ + +@@TJclDoubleBinaryTreeIterator.GetNextCursor +<copy TJclBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclDoubleBinaryTreeIterator.GetValue +<copy TJclBinaryTreeIterator.GetObject> +\ \ + +@@TJclDoubleBinaryTreeIterator.GetPreviousCursor +<copy TJclBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclDoubleBinaryTreeIterator.HasChild@Integer +<copy TJclBinaryTreeIterator.HasChild@Integer> +\ \ + +@@TJclDoubleBinaryTreeIterator.HasLeft +<copy TJclBinaryTreeIterator.HasLeft> +\ \ + +@@TJclDoubleBinaryTreeIterator.HasNext +<copy TJclBinaryTreeIterator.HasNext> +\ \ + +@@TJclDoubleBinaryTreeIterator.HasParent +<copy TJclBinaryTreeIterator.HasParent> +\ \ + +@@TJclDoubleBinaryTreeIterator.HasPrevious +<copy TJclBinaryTreeIterator.HasPrevious> +\ \ + +@@TJclDoubleBinaryTreeIterator.HasRight +<copy TJclBinaryTreeIterator.HasRight> +\ \ + +@@TJclDoubleBinaryTreeIterator.IndexOfChild@Double +<copy TJclBinaryTreeIterator.IndexOfChild@TObject> +\ \ + +@@TJclDoubleBinaryTreeIterator.Insert@Double +<copy TJclBinaryTreeIterator.Insert@TObject> +\ \ + +@@TJclDoubleBinaryTreeIterator.InsertChild@Integer@Double +<copy TJclBinaryTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@TJclDoubleBinaryTreeIterator.IteratorEquals@IJclDoubleIterator +<copy TJclBinaryTreeIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclDoubleBinaryTreeIterator.Left +<copy TJclBinaryTreeIterator.Left> +\ \ + +@@TJclDoubleBinaryTreeIterator.MoveNext +<copy TJclBinaryTreeIterator.MoveNext> +\ \ + +@@TJclDoubleBinaryTreeIterator.Next +<copy TJclBinaryTreeIterator.Next> +\ \ + +@@TJclDoubleBinaryTreeIterator.NextIndex +<copy TJclBinaryTreeIterator.NextIndex> +\ \ + +@@TJclDoubleBinaryTreeIterator.Parent +<copy TJclBinaryTreeIterator.Parent> +\ \ + +@@TJclDoubleBinaryTreeIterator.Previous +<copy TJclBinaryTreeIterator.Previous> +\ \ + +@@TJclDoubleBinaryTreeIterator.PreviousIndex +<copy TJclBinaryTreeIterator.PreviousIndex> +\ \ + +@@TJclDoubleBinaryTreeIterator.Remove +<copy TJclBinaryTreeIterator.Remove> +\ \ + +@@TJclDoubleBinaryTreeIterator.Reset +<copy TJclBinaryTreeIterator.Reset> +\ \ + +@@TJclDoubleBinaryTreeIterator.Right +<copy TJclBinaryTreeIterator.Right> +\ \ + +@@TJclDoubleBinaryTreeIterator.SetChild@Integer@Double +<copy TJclBinaryTreeIterator.SetChild@Integer@TObject> +\ \ + +@@TJclDoubleBinaryTreeIterator.SetValue@Double +<copy TJclBinaryTreeIterator.SetObject@TObject> +\ \ + +@@TJclPreOrderDoubleBinaryTreeIterator +<copy TJclPreOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPreOrderDoubleBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclPreOrderBinaryTreeIterator> +\ \ + +@@TJclPreOrderDoubleBinaryTreeIterator.CreateEmptyIterator +<copy TJclPreOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPreOrderDoubleBinaryTreeIterator.GetNextCursor +<copy TJclPreOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclPreOrderDoubleBinaryTreeIterator.GetPreviousCursor +<copy TJclPreOrderBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclInOrderDoubleBinaryTreeIterator +<copy TJclInOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclInOrderDoubleBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclInOrderBinaryTreeIterator> +\ \ + +@@TJclInOrderDoubleBinaryTreeIterator.CreateEmptyIterator +<copy TJclInOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclInOrderDoubleBinaryTreeIterator.GetNextCursor +<copy TJclInOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclInOrderDoubleBinaryTreeIterator.GetPreviousCursor +<copy TJclInOrderBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclPostOrderDoubleBinaryTreeIterator +<copy TJclPostOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPostOrderDoubleBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclPostOrderBinaryTreeIterator> +\ \ + +@@TJclPostOrderDoubleBinaryTreeIterator.CreateEmptyIterator +<copy TJclPostOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPostOrderDoubleBinaryTreeIterator.GetNextCursor +<copy TJclPostOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclPostOrderDoubleBinaryTreeIterator.GetPreviousCursor +<copy TJclPostOrderBinaryTreeIterator.GetPreviousCursor> +\ \ +@@TJclExtendedBinaryTreeIterator +<copy TJclBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclExtendedBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclBinaryTreeIterator> +\ \ + +@@TJclExtendedBinaryTreeIterator.Current +<copy TJclBinaryTreeIterator.Current> +\ \ + +@@TJclExtendedBinaryTreeIterator.Add@Extended +<copy TJclBinaryTreeIterator.Add@TObject> +\ \ + +@@TJclExtendedBinaryTreeIterator.AddChild@Extended +<copy TJclBinaryTreeIterator.AddChild@TObject> +\ \ + +@@TJclExtendedBinaryTreeIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclBinaryTreeIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclExtendedBinaryTreeIterator.ChildrenCount +<copy TJclBinaryTreeIterator.ChildrenCount> +\ \ + +@@TJclExtendedBinaryTreeIterator.Create@IJclExtendedCollection@TJclExtendedBinaryNode@Boolean@TItrStart +<copy TJclBinaryTreeIterator.Create@IJclCollection@TJclBinaryNode@Boolean@TItrStart> +\ \ + +@@TJclExtendedBinaryTreeIterator.DeleteChild@Integer +<copy TJclBinaryTreeIterator.DeleteChild@Integer> +\ \ + +@@TJclExtendedBinaryTreeIterator.DeleteChildren +<copy TJclBinaryTreeIterator.DeleteChildren> +\ \ + +@@TJclExtendedBinaryTreeIterator.Extract +<copy TJclBinaryTreeIterator.Extract> +\ \ + +@@TJclExtendedBinaryTreeIterator.ExtractChild@Integer +<copy TJclBinaryTreeIterator.ExtractChild@Integer> +\ \ + +@@TJclExtendedBinaryTreeIterator.ExtractChildren +<copy TJclBinaryTreeIterator.ExtractChildren> +\ \ + +@@TJclExtendedBinaryTreeIterator.GetChild@Integer +<copy TJclBinaryTreeIterator.GetChild@Integer> +\ \ + +@@TJclExtendedBinaryTreeIterator.GetNextCursor +<copy TJclBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclExtendedBinaryTreeIterator.GetValue +<copy TJclBinaryTreeIterator.GetObject> +\ \ + +@@TJclExtendedBinaryTreeIterator.GetPreviousCursor +<copy TJclBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclExtendedBinaryTreeIterator.HasChild@Integer +<copy TJclBinaryTreeIterator.HasChild@Integer> +\ \ + +@@TJclExtendedBinaryTreeIterator.HasLeft +<copy TJclBinaryTreeIterator.HasLeft> +\ \ + +@@TJclExtendedBinaryTreeIterator.HasNext +<copy TJclBinaryTreeIterator.HasNext> +\ \ + +@@TJclExtendedBinaryTreeIterator.HasParent +<copy TJclBinaryTreeIterator.HasParent> +\ \ + +@@TJclExtendedBinaryTreeIterator.HasPrevious +<copy TJclBinaryTreeIterator.HasPrevious> +\ \ + +@@TJclExtendedBinaryTreeIterator.HasRight +<copy TJclBinaryTreeIterator.HasRight> +\ \ + +@@TJclExtendedBinaryTreeIterator.IndexOfChild@Extended +<copy TJclBinaryTreeIterator.IndexOfChild@TObject> +\ \ + +@@TJclExtendedBinaryTreeIterator.Insert@Extended +<copy TJclBinaryTreeIterator.Insert@TObject> +\ \ + +@@TJclExtendedBinaryTreeIterator.InsertChild@Integer@Extended +<copy TJclBinaryTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@TJclExtendedBinaryTreeIterator.IteratorEquals@IJclExtendedIterator +<copy TJclBinaryTreeIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclExtendedBinaryTreeIterator.Left +<copy TJclBinaryTreeIterator.Left> +\ \ + +@@TJclExtendedBinaryTreeIterator.MoveNext +<copy TJclBinaryTreeIterator.MoveNext> +\ \ + +@@TJclExtendedBinaryTreeIterator.Next +<copy TJclBinaryTreeIterator.Next> +\ \ + +@@TJclExtendedBinaryTreeIterator.NextIndex +<copy TJclBinaryTreeIterator.NextIndex> +\ \ + +@@TJclExtendedBinaryTreeIterator.Parent +<copy TJclBinaryTreeIterator.Parent> +\ \ + +@@TJclExtendedBinaryTreeIterator.Previous +<copy TJclBinaryTreeIterator.Previous> +\ \ + +@@TJclExtendedBinaryTreeIterator.PreviousIndex +<copy TJclBinaryTreeIterator.PreviousIndex> +\ \ + +@@TJclExtendedBinaryTreeIterator.Remove +<copy TJclBinaryTreeIterator.Remove> +\ \ + +@@TJclExtendedBinaryTreeIterator.Reset +<copy TJclBinaryTreeIterator.Reset> +\ \ + +@@TJclExtendedBinaryTreeIterator.Right +<copy TJclBinaryTreeIterator.Right> +\ \ + +@@TJclExtendedBinaryTreeIterator.SetChild@Integer@Extended +<copy TJclBinaryTreeIterator.SetChild@Integer@TObject> +\ \ + +@@TJclExtendedBinaryTreeIterator.SetValue@Extended +<copy TJclBinaryTreeIterator.SetObject@TObject> +\ \ + +@@TJclPreOrderExtendedBinaryTreeIterator +<copy TJclPreOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPreOrderExtendedBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclPreOrderBinaryTreeIterator> +\ \ + +@@TJclPreOrderExtendedBinaryTreeIterator.CreateEmptyIterator +<copy TJclPreOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPreOrderExtendedBinaryTreeIterator.GetNextCursor +<copy TJclPreOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclPreOrderExtendedBinaryTreeIterator.GetPreviousCursor +<copy TJclPreOrderBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclInOrderExtendedBinaryTreeIterator +<copy TJclInOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclInOrderExtendedBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclInOrderBinaryTreeIterator> +\ \ + +@@TJclInOrderExtendedBinaryTreeIterator.CreateEmptyIterator +<copy TJclInOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclInOrderExtendedBinaryTreeIterator.GetNextCursor +<copy TJclInOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclInOrderExtendedBinaryTreeIterator.GetPreviousCursor +<copy TJclInOrderBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclPostOrderExtendedBinaryTreeIterator +<copy TJclPostOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPostOrderExtendedBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclPostOrderBinaryTreeIterator> +\ \ + +@@TJclPostOrderExtendedBinaryTreeIterator.CreateEmptyIterator +<copy TJclPostOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPostOrderExtendedBinaryTreeIterator.GetNextCursor +<copy TJclPostOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclPostOrderExtendedBinaryTreeIterator.GetPreviousCursor +<copy TJclPostOrderBinaryTreeIterator.GetPreviousCursor> +\ \ +@@TJclIntegerBinaryTreeIterator +<copy TJclBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntegerBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclBinaryTreeIterator> +\ \ + +@@TJclIntegerBinaryTreeIterator.Current +<copy TJclBinaryTreeIterator.Current> +\ \ + +@@TJclIntegerBinaryTreeIterator.Add@Integer +<copy TJclBinaryTreeIterator.Add@TObject> +\ \ + +@@TJclIntegerBinaryTreeIterator.AddChild@Integer +<copy TJclBinaryTreeIterator.AddChild@TObject> +\ \ + +@@TJclIntegerBinaryTreeIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclBinaryTreeIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclIntegerBinaryTreeIterator.ChildrenCount +<copy TJclBinaryTreeIterator.ChildrenCount> +\ \ + +@@TJclIntegerBinaryTreeIterator.Create@IJclIntegerCollection@TJclIntegerBinaryNode@Boolean@TItrStart +<copy TJclBinaryTreeIterator.Create@IJclCollection@TJclBinaryNode@Boolean@TItrStart> +\ \ + +@@TJclIntegerBinaryTreeIterator.DeleteChild@Integer +<copy TJclBinaryTreeIterator.DeleteChild@Integer> +\ \ + +@@TJclIntegerBinaryTreeIterator.DeleteChildren +<copy TJclBinaryTreeIterator.DeleteChildren> +\ \ + +@@TJclIntegerBinaryTreeIterator.Extract +<copy TJclBinaryTreeIterator.Extract> +\ \ + +@@TJclIntegerBinaryTreeIterator.ExtractChild@Integer +<copy TJclBinaryTreeIterator.ExtractChild@Integer> +\ \ + +@@TJclIntegerBinaryTreeIterator.ExtractChildren +<copy TJclBinaryTreeIterator.ExtractChildren> +\ \ + +@@TJclIntegerBinaryTreeIterator.GetChild@Integer +<copy TJclBinaryTreeIterator.GetChild@Integer> +\ \ + +@@TJclIntegerBinaryTreeIterator.GetNextCursor +<copy TJclBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclIntegerBinaryTreeIterator.GetValue +<copy TJclBinaryTreeIterator.GetObject> +\ \ + +@@TJclIntegerBinaryTreeIterator.GetPreviousCursor +<copy TJclBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclIntegerBinaryTreeIterator.HasChild@Integer +<copy TJclBinaryTreeIterator.HasChild@Integer> +\ \ + +@@TJclIntegerBinaryTreeIterator.HasLeft +<copy TJclBinaryTreeIterator.HasLeft> +\ \ + +@@TJclIntegerBinaryTreeIterator.HasNext +<copy TJclBinaryTreeIterator.HasNext> +\ \ + +@@TJclIntegerBinaryTreeIterator.HasParent +<copy TJclBinaryTreeIterator.HasParent> +\ \ + +@@TJclIntegerBinaryTreeIterator.HasPrevious +<copy TJclBinaryTreeIterator.HasPrevious> +\ \ + +@@TJclIntegerBinaryTreeIterator.HasRight +<copy TJclBinaryTreeIterator.HasRight> +\ \ + +@@TJclIntegerBinaryTreeIterator.IndexOfChild@Integer +<copy TJclBinaryTreeIterator.IndexOfChild@TObject> +\ \ + +@@TJclIntegerBinaryTreeIterator.Insert@Integer +<copy TJclBinaryTreeIterator.Insert@TObject> +\ \ + +@@TJclIntegerBinaryTreeIterator.InsertChild@Integer@Integer +<copy TJclBinaryTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@TJclIntegerBinaryTreeIterator.IteratorEquals@IJclIntegerIterator +<copy TJclBinaryTreeIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclIntegerBinaryTreeIterator.Left +<copy TJclBinaryTreeIterator.Left> +\ \ + +@@TJclIntegerBinaryTreeIterator.MoveNext +<copy TJclBinaryTreeIterator.MoveNext> +\ \ + +@@TJclIntegerBinaryTreeIterator.Next +<copy TJclBinaryTreeIterator.Next> +\ \ + +@@TJclIntegerBinaryTreeIterator.NextIndex +<copy TJclBinaryTreeIterator.NextIndex> +\ \ + +@@TJclIntegerBinaryTreeIterator.Parent +<copy TJclBinaryTreeIterator.Parent> +\ \ + +@@TJclIntegerBinaryTreeIterator.Previous +<copy TJclBinaryTreeIterator.Previous> +\ \ + +@@TJclIntegerBinaryTreeIterator.PreviousIndex +<copy TJclBinaryTreeIterator.PreviousIndex> +\ \ + +@@TJclIntegerBinaryTreeIterator.Remove +<copy TJclBinaryTreeIterator.Remove> +\ \ + +@@TJclIntegerBinaryTreeIterator.Reset +<copy TJclBinaryTreeIterator.Reset> +\ \ + +@@TJclIntegerBinaryTreeIterator.Right +<copy TJclBinaryTreeIterator.Right> +\ \ + +@@TJclIntegerBinaryTreeIterator.SetChild@Integer@Integer +<copy TJclBinaryTreeIterator.SetChild@Integer@TObject> +\ \ + +@@TJclIntegerBinaryTreeIterator.SetValue@Integer +<copy TJclBinaryTreeIterator.SetObject@TObject> +\ \ + +@@TJclPreOrderIntegerBinaryTreeIterator +<copy TJclPreOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPreOrderIntegerBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclPreOrderBinaryTreeIterator> +\ \ + +@@TJclPreOrderIntegerBinaryTreeIterator.CreateEmptyIterator +<copy TJclPreOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPreOrderIntegerBinaryTreeIterator.GetNextCursor +<copy TJclPreOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclPreOrderIntegerBinaryTreeIterator.GetPreviousCursor +<copy TJclPreOrderBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclInOrderIntegerBinaryTreeIterator +<copy TJclInOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclInOrderIntegerBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclInOrderBinaryTreeIterator> +\ \ + +@@TJclInOrderIntegerBinaryTreeIterator.CreateEmptyIterator +<copy TJclInOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclInOrderIntegerBinaryTreeIterator.GetNextCursor +<copy TJclInOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclInOrderIntegerBinaryTreeIterator.GetPreviousCursor +<copy TJclInOrderBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclPostOrderIntegerBinaryTreeIterator +<copy TJclPostOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPostOrderIntegerBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclPostOrderBinaryTreeIterator> +\ \ + +@@TJclPostOrderIntegerBinaryTreeIterator.CreateEmptyIterator +<copy TJclPostOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPostOrderIntegerBinaryTreeIterator.GetNextCursor +<copy TJclPostOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclPostOrderIntegerBinaryTreeIterator.GetPreviousCursor +<copy TJclPostOrderBinaryTreeIterator.GetPreviousCursor> +\ \ +@@TJclCardinalBinaryTreeIterator +<copy TJclBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclCardinalBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclBinaryTreeIterator> +\ \ + +@@TJclCardinalBinaryTreeIterator.Current +<copy TJclBinaryTreeIterator.Current> +\ \ + +@@TJclCardinalBinaryTreeIterator.Add@Cardinal +<copy TJclBinaryTreeIterator.Add@TObject> +\ \ + +@@TJclCardinalBinaryTreeIterator.AddChild@Cardinal +<copy TJclBinaryTreeIterator.AddChild@TObject> +\ \ + +@@TJclCardinalBinaryTreeIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclBinaryTreeIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclCardinalBinaryTreeIterator.ChildrenCount +<copy TJclBinaryTreeIterator.ChildrenCount> +\ \ + +@@TJclCardinalBinaryTreeIterator.Create@IJclCardinalCollection@TJclCardinalBinaryNode@Boolean@TItrStart +<copy TJclBinaryTreeIterator.Create@IJclCollection@TJclBinaryNode@Boolean@TItrStart> +\ \ + +@@TJclCardinalBinaryTreeIterator.DeleteChild@Integer +<copy TJclBinaryTreeIterator.DeleteChild@Integer> +\ \ + +@@TJclCardinalBinaryTreeIterator.DeleteChildren +<copy TJclBinaryTreeIterator.DeleteChildren> +\ \ + +@@TJclCardinalBinaryTreeIterator.Extract +<copy TJclBinaryTreeIterator.Extract> +\ \ + +@@TJclCardinalBinaryTreeIterator.ExtractChild@Integer +<copy TJclBinaryTreeIterator.ExtractChild@Integer> +\ \ + +@@TJclCardinalBinaryTreeIterator.ExtractChildren +<copy TJclBinaryTreeIterator.ExtractChildren> +\ \ + +@@TJclCardinalBinaryTreeIterator.GetChild@Integer +<copy TJclBinaryTreeIterator.GetChild@Integer> +\ \ + +@@TJclCardinalBinaryTreeIterator.GetNextCursor +<copy TJclBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclCardinalBinaryTreeIterator.GetValue +<copy TJclBinaryTreeIterator.GetObject> +\ \ + +@@TJclCardinalBinaryTreeIterator.GetPreviousCursor +<copy TJclBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclCardinalBinaryTreeIterator.HasChild@Integer +<copy TJclBinaryTreeIterator.HasChild@Integer> +\ \ + +@@TJclCardinalBinaryTreeIterator.HasLeft +<copy TJclBinaryTreeIterator.HasLeft> +\ \ + +@@TJclCardinalBinaryTreeIterator.HasNext +<copy TJclBinaryTreeIterator.HasNext> +\ \ + +@@TJclCardinalBinaryTreeIterator.HasParent +<copy TJclBinaryTreeIterator.HasParent> +\ \ + +@@TJclCardinalBinaryTreeIterator.HasPrevious +<copy TJclBinaryTreeIterator.HasPrevious> +\ \ + +@@TJclCardinalBinaryTreeIterator.HasRight +<copy TJclBinaryTreeIterator.HasRight> +\ \ + +@@TJclCardinalBinaryTreeIterator.IndexOfChild@Cardinal +<copy TJclBinaryTreeIterator.IndexOfChild@TObject> +\ \ + +@@TJclCardinalBinaryTreeIterator.Insert@Cardinal +<copy TJclBinaryTreeIterator.Insert@TObject> +\ \ + +@@TJclCardinalBinaryTreeIterator.InsertChild@Integer@Cardinal +<copy TJclBinaryTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@TJclCardinalBinaryTreeIterator.IteratorEquals@IJclCardinalIterator +<copy TJclBinaryTreeIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclCardinalBinaryTreeIterator.Left +<copy TJclBinaryTreeIterator.Left> +\ \ + +@@TJclCardinalBinaryTreeIterator.MoveNext +<copy TJclBinaryTreeIterator.MoveNext> +\ \ + +@@TJclCardinalBinaryTreeIterator.Next +<copy TJclBinaryTreeIterator.Next> +\ \ + +@@TJclCardinalBinaryTreeIterator.NextIndex +<copy TJclBinaryTreeIterator.NextIndex> +\ \ + +@@TJclCardinalBinaryTreeIterator.Parent +<copy TJclBinaryTreeIterator.Parent> +\ \ + +@@TJclCardinalBinaryTreeIterator.Previous +<copy TJclBinaryTreeIterator.Previous> +\ \ + +@@TJclCardinalBinaryTreeIterator.PreviousIndex +<copy TJclBinaryTreeIterator.PreviousIndex> +\ \ + +@@TJclCardinalBinaryTreeIterator.Remove +<copy TJclBinaryTreeIterator.Remove> +\ \ + +@@TJclCardinalBinaryTreeIterator.Reset +<copy TJclBinaryTreeIterator.Reset> +\ \ + +@@TJclCardinalBinaryTreeIterator.Right +<copy TJclBinaryTreeIterator.Right> +\ \ + +@@TJclCardinalBinaryTreeIterator.SetChild@Integer@Cardinal +<copy TJclBinaryTreeIterator.SetChild@Integer@TObject> +\ \ + +@@TJclCardinalBinaryTreeIterator.SetValue@Cardinal +<copy TJclBinaryTreeIterator.SetObject@TObject> +\ \ + +@@TJclPreOrderCardinalBinaryTreeIterator +<copy TJclPreOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPreOrderCardinalBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclPreOrderBinaryTreeIterator> +\ \ + +@@TJclPreOrderCardinalBinaryTreeIterator.CreateEmptyIterator +<copy TJclPreOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPreOrderCardinalBinaryTreeIterator.GetNextCursor +<copy TJclPreOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclPreOrderCardinalBinaryTreeIterator.GetPreviousCursor +<copy TJclPreOrderBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclInOrderCardinalBinaryTreeIterator +<copy TJclInOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclInOrderCardinalBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclInOrderBinaryTreeIterator> +\ \ + +@@TJclInOrderCardinalBinaryTreeIterator.CreateEmptyIterator +<copy TJclInOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclInOrderCardinalBinaryTreeIterator.GetNextCursor +<copy TJclInOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclInOrderCardinalBinaryTreeIterator.GetPreviousCursor +<copy TJclInOrderBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclPostOrderCardinalBinaryTreeIterator +<copy TJclPostOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPostOrderCardinalBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclPostOrderBinaryTreeIterator> +\ \ + +@@TJclPostOrderCardinalBinaryTreeIterator.CreateEmptyIterator +<copy TJclPostOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPostOrderCardinalBinaryTreeIterator.GetNextCursor +<copy TJclPostOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclPostOrderCardinalBinaryTreeIterator.GetPreviousCursor +<copy TJclPostOrderBinaryTreeIterator.GetPreviousCursor> +\ \ +@@TJclInt64BinaryTreeIterator +<copy TJclBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclInt64BinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclBinaryTreeIterator> +\ \ + +@@TJclInt64BinaryTreeIterator.Current +<copy TJclBinaryTreeIterator.Current> +\ \ + +@@TJclInt64BinaryTreeIterator.Add@Int64 +<copy TJclBinaryTreeIterator.Add@TObject> +\ \ + +@@TJclInt64BinaryTreeIterator.AddChild@Int64 +<copy TJclBinaryTreeIterator.AddChild@TObject> +\ \ + +@@TJclInt64BinaryTreeIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclBinaryTreeIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclInt64BinaryTreeIterator.ChildrenCount +<copy TJclBinaryTreeIterator.ChildrenCount> +\ \ + +@@TJclInt64BinaryTreeIterator.Create@IJclInt64Collection@TJclInt64BinaryNode@Boolean@TItrStart +<copy TJclBinaryTreeIterator.Create@IJclCollection@TJclBinaryNode@Boolean@TItrStart> +\ \ + +@@TJclInt64BinaryTreeIterator.DeleteChild@Integer +<copy TJclBinaryTreeIterator.DeleteChild@Integer> +\ \ + +@@TJclInt64BinaryTreeIterator.DeleteChildren +<copy TJclBinaryTreeIterator.DeleteChildren> +\ \ + +@@TJclInt64BinaryTreeIterator.Extract +<copy TJclBinaryTreeIterator.Extract> +\ \ + +@@TJclInt64BinaryTreeIterator.ExtractChild@Integer +<copy TJclBinaryTreeIterator.ExtractChild@Integer> +\ \ + +@@TJclInt64BinaryTreeIterator.ExtractChildren +<copy TJclBinaryTreeIterator.ExtractChildren> +\ \ + +@@TJclInt64BinaryTreeIterator.GetChild@Integer +<copy TJclBinaryTreeIterator.GetChild@Integer> +\ \ + +@@TJclInt64BinaryTreeIterator.GetNextCursor +<copy TJclBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclInt64BinaryTreeIterator.GetValue +<copy TJclBinaryTreeIterator.GetObject> +\ \ + +@@TJclInt64BinaryTreeIterator.GetPreviousCursor +<copy TJclBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclInt64BinaryTreeIterator.HasChild@Integer +<copy TJclBinaryTreeIterator.HasChild@Integer> +\ \ + +@@TJclInt64BinaryTreeIterator.HasLeft +<copy TJclBinaryTreeIterator.HasLeft> +\ \ + +@@TJclInt64BinaryTreeIterator.HasNext +<copy TJclBinaryTreeIterator.HasNext> +\ \ + +@@TJclInt64BinaryTreeIterator.HasParent +<copy TJclBinaryTreeIterator.HasParent> +\ \ + +@@TJclInt64BinaryTreeIterator.HasPrevious +<copy TJclBinaryTreeIterator.HasPrevious> +\ \ + +@@TJclInt64BinaryTreeIterator.HasRight +<copy TJclBinaryTreeIterator.HasRight> +\ \ + +@@TJclInt64BinaryTreeIterator.IndexOfChild@Int64 +<copy TJclBinaryTreeIterator.IndexOfChild@TObject> +\ \ + +@@TJclInt64BinaryTreeIterator.Insert@Int64 +<copy TJclBinaryTreeIterator.Insert@TObject> +\ \ + +@@TJclInt64BinaryTreeIterator.InsertChild@Integer@Int64 +<copy TJclBinaryTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@TJclInt64BinaryTreeIterator.IteratorEquals@IJclInt64Iterator +<copy TJclBinaryTreeIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclInt64BinaryTreeIterator.Left +<copy TJclBinaryTreeIterator.Left> +\ \ + +@@TJclInt64BinaryTreeIterator.MoveNext +<copy TJclBinaryTreeIterator.MoveNext> +\ \ + +@@TJclInt64BinaryTreeIterator.Next +<copy TJclBinaryTreeIterator.Next> +\ \ + +@@TJclInt64BinaryTreeIterator.NextIndex +<copy TJclBinaryTreeIterator.NextIndex> +\ \ + +@@TJclInt64BinaryTreeIterator.Parent +<copy TJclBinaryTreeIterator.Parent> +\ \ + +@@TJclInt64BinaryTreeIterator.Previous +<copy TJclBinaryTreeIterator.Previous> +\ \ + +@@TJclInt64BinaryTreeIterator.PreviousIndex +<copy TJclBinaryTreeIterator.PreviousIndex> +\ \ + +@@TJclInt64BinaryTreeIterator.Remove +<copy TJclBinaryTreeIterator.Remove> +\ \ + +@@TJclInt64BinaryTreeIterator.Reset +<copy TJclBinaryTreeIterator.Reset> +\ \ + +@@TJclInt64BinaryTreeIterator.Right +<copy TJclBinaryTreeIterator.Right> +\ \ + +@@TJclInt64BinaryTreeIterator.SetChild@Integer@Int64 +<copy TJclBinaryTreeIterator.SetChild@Integer@TObject> +\ \ + +@@TJclInt64BinaryTreeIterator.SetValue@Int64 +<copy TJclBinaryTreeIterator.SetObject@TObject> +\ \ + +@@TJclPreOrderInt64BinaryTreeIterator +<copy TJclPreOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPreOrderInt64BinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclPreOrderBinaryTreeIterator> +\ \ + +@@TJclPreOrderInt64BinaryTreeIterator.CreateEmptyIterator +<copy TJclPreOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPreOrderInt64BinaryTreeIterator.GetNextCursor +<copy TJclPreOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclPreOrderInt64BinaryTreeIterator.GetPreviousCursor +<copy TJclPreOrderBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclInOrderInt64BinaryTreeIterator +<copy TJclInOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclInOrderInt64BinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclInOrderBinaryTreeIterator> +\ \ + +@@TJclInOrderInt64BinaryTreeIterator.CreateEmptyIterator +<copy TJclInOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclInOrderInt64BinaryTreeIterator.GetNextCursor +<copy TJclInOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclInOrderInt64BinaryTreeIterator.GetPreviousCursor +<copy TJclInOrderBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclPostOrderInt64BinaryTreeIterator +<copy TJclPostOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPostOrderInt64BinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclPostOrderBinaryTreeIterator> +\ \ + +@@TJclPostOrderInt64BinaryTreeIterator.CreateEmptyIterator +<copy TJclPostOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPostOrderInt64BinaryTreeIterator.GetNextCursor +<copy TJclPostOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclPostOrderInt64BinaryTreeIterator.GetPreviousCursor +<copy TJclPostOrderBinaryTreeIterator.GetPreviousCursor> +\ \ +@@TJclPtrBinaryTreeIterator +<copy TJclBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPtrBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclBinaryTreeIterator> +\ \ + +@@TJclPtrBinaryTreeIterator.Current +<copy TJclBinaryTreeIterator.Current> +\ \ + +@@TJclPtrBinaryTreeIterator.Add@Pointer +<copy TJclBinaryTreeIterator.Add@TObject> +\ \ + +@@TJclPtrBinaryTreeIterator.AddChild@Pointer +<copy TJclBinaryTreeIterator.AddChild@TObject> +\ \ + +@@TJclPtrBinaryTreeIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclBinaryTreeIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclPtrBinaryTreeIterator.ChildrenCount +<copy TJclBinaryTreeIterator.ChildrenCount> +\ \ + +@@TJclPtrBinaryTreeIterator.Create@IJclPtrCollection@TJclPtrBinaryNode@Boolean@TItrStart +<copy TJclBinaryTreeIterator.Create@IJclCollection@TJclBinaryNode@Boolean@TItrStart> +\ \ + +@@TJclPtrBinaryTreeIterator.DeleteChild@Integer +<copy TJclBinaryTreeIterator.DeleteChild@Integer> +\ \ + +@@TJclPtrBinaryTreeIterator.DeleteChildren +<copy TJclBinaryTreeIterator.DeleteChildren> +\ \ + +@@TJclPtrBinaryTreeIterator.Extract +<copy TJclBinaryTreeIterator.Extract> +\ \ + +@@TJclPtrBinaryTreeIterator.ExtractChild@Integer +<copy TJclBinaryTreeIterator.ExtractChild@Integer> +\ \ + +@@TJclPtrBinaryTreeIterator.ExtractChildren +<copy TJclBinaryTreeIterator.ExtractChildren> +\ \ + +@@TJclPtrBinaryTreeIterator.GetChild@Integer +<copy TJclBinaryTreeIterator.GetChild@Integer> +\ \ + +@@TJclPtrBinaryTreeIterator.GetNextCursor +<copy TJclBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclPtrBinaryTreeIterator.GetPointer +<copy TJclBinaryTreeIterator.GetObject> +\ \ + +@@TJclPtrBinaryTreeIterator.GetPreviousCursor +<copy TJclBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclPtrBinaryTreeIterator.HasChild@Integer +<copy TJclBinaryTreeIterator.HasChild@Integer> +\ \ + +@@TJclPtrBinaryTreeIterator.HasLeft +<copy TJclBinaryTreeIterator.HasLeft> +\ \ + +@@TJclPtrBinaryTreeIterator.HasNext +<copy TJclBinaryTreeIterator.HasNext> +\ \ + +@@TJclPtrBinaryTreeIterator.HasParent +<copy TJclBinaryTreeIterator.HasParent> +\ \ + +@@TJclPtrBinaryTreeIterator.HasPrevious +<copy TJclBinaryTreeIterator.HasPrevious> +\ \ + +@@TJclPtrBinaryTreeIterator.HasRight +<copy TJclBinaryTreeIterator.HasRight> +\ \ + +@@TJclPtrBinaryTreeIterator.IndexOfChild@Pointer +<copy TJclBinaryTreeIterator.IndexOfChild@TObject> +\ \ + +@@TJclPtrBinaryTreeIterator.Insert@Pointer +<copy TJclBinaryTreeIterator.Insert@TObject> +\ \ + +@@TJclPtrBinaryTreeIterator.InsertChild@Integer@Pointer +<copy TJclBinaryTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@TJclPtrBinaryTreeIterator.IteratorEquals@IJclPtrIterator +<copy TJclBinaryTreeIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclPtrBinaryTreeIterator.Left +<copy TJclBinaryTreeIterator.Left> +\ \ + +@@TJclPtrBinaryTreeIterator.MoveNext +<copy TJclBinaryTreeIterator.MoveNext> +\ \ + +@@TJclPtrBinaryTreeIterator.Next +<copy TJclBinaryTreeIterator.Next> +\ \ + +@@TJclPtrBinaryTreeIterator.NextIndex +<copy TJclBinaryTreeIterator.NextIndex> +\ \ + +@@TJclPtrBinaryTreeIterator.Parent +<copy TJclBinaryTreeIterator.Parent> +\ \ + +@@TJclPtrBinaryTreeIterator.Previous +<copy TJclBinaryTreeIterator.Previous> +\ \ + +@@TJclPtrBinaryTreeIterator.PreviousIndex +<copy TJclBinaryTreeIterator.PreviousIndex> +\ \ + +@@TJclPtrBinaryTreeIterator.Remove +<copy TJclBinaryTreeIterator.Remove> +\ \ + +@@TJclPtrBinaryTreeIterator.Reset +<copy TJclBinaryTreeIterator.Reset> +\ \ + +@@TJclPtrBinaryTreeIterator.Right +<copy TJclBinaryTreeIterator.Right> +\ \ + +@@TJclPtrBinaryTreeIterator.SetChild@Integer@Pointer +<copy TJclBinaryTreeIterator.SetChild@Integer@TObject> +\ \ + +@@TJclPtrBinaryTreeIterator.SetPointer@Pointer +<copy TJclBinaryTreeIterator.SetObject@TObject> +\ \ + +@@TJclPreOrderPtrBinaryTreeIterator +<copy TJclPreOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPreOrderPtrBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclPreOrderBinaryTreeIterator> +\ \ + +@@TJclPreOrderPtrBinaryTreeIterator.CreateEmptyIterator +<copy TJclPreOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPreOrderPtrBinaryTreeIterator.GetNextCursor +<copy TJclPreOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclPreOrderPtrBinaryTreeIterator.GetPreviousCursor +<copy TJclPreOrderBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclInOrderPtrBinaryTreeIterator +<copy TJclInOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclInOrderPtrBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclInOrderBinaryTreeIterator> +\ \ + +@@TJclInOrderPtrBinaryTreeIterator.CreateEmptyIterator +<copy TJclInOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclInOrderPtrBinaryTreeIterator.GetNextCursor +<copy TJclInOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclInOrderPtrBinaryTreeIterator.GetPreviousCursor +<copy TJclInOrderBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@TJclPostOrderPtrBinaryTreeIterator +<copy TJclPostOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPostOrderPtrBinaryTreeIterator +<copy !!MEMBEROVERVIEW_TJclPostOrderBinaryTreeIterator> +\ \ + +@@TJclPostOrderPtrBinaryTreeIterator.CreateEmptyIterator +<copy TJclPostOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPostOrderPtrBinaryTreeIterator.GetNextCursor +<copy TJclPostOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@TJclPostOrderPtrBinaryTreeIterator.GetPreviousCursor +<copy TJclPostOrderBinaryTreeIterator.GetPreviousCursor> +\ \ + + +@@TIntfIterateProcedure +<copy TIterateProcedure> +\ \ +@@TAnsiStrIterateProcedure +<copy TIterateProcedure> +\ \ +@@TWideStrIterateProcedure +<copy TIterateProcedure> +\ \ +@@TUnicodeStrIterateProcedure +<copy TIterateProcedure> +\ \ +@@TSingleIterateProcedure +<copy TIterateProcedure> +\ \ +@@TDoubleIterateProcedure +<copy TIterateProcedure> +\ \ +@@TExtendedIterateProcedure +<copy TIterateProcedure> +\ \ +@@TIntegerIterateProcedure +<copy TIterateProcedure> +\ \ +@@TCardinalIterateProcedure +<copy TIterateProcedure> +\ \ +@@TInt64IterateProcedure +<copy TIterateProcedure> +\ \ +@@TPtrIterateProcedure +<copy TIterateProcedure> +\ \ + + +@@TIntfApplyFunction +<copy TApplyFunction> +\ \ +@@TAnsiStrApplyFunction +<copy TApplyFunction> +\ \ +@@TWideStrApplyFunction +<copy TApplyFunction> +\ \ +@@TUnicodeStrApplyFunction +<copy TApplyFunction> +\ \ +@@TSingleApplyFunction +<copy TApplyFunction> +\ \ +@@TDoubleApplyFunction +<copy TApplyFunction> +\ \ +@@TExtendedApplyFunction +<copy TApplyFunction> +\ \ +@@TIntegerApplyFunction +<copy TApplyFunction> +\ \ +@@TCardinalApplyFunction +<copy TApplyFunction> +\ \ +@@TInt64ApplyFunction +<copy TApplyFunction> +\ \ +@@TPtrApplyFunction +<copy TApplyFunction> +\ \ + + +@@TIntfCompare +<copy TCompare> +\ \ +@@TAnsiStrCompare +<copy TCompare> +\ \ +@@TWideStrCompare +<copy TCompare> +\ \ +@@TUnicodeStrCompare +<copy TCompare> +\ \ +@@TSingleCompare +<copy TCompare> +\ \ +@@TDoubleCompare +<copy TCompare> +\ \ +@@TExtendedCompare +<copy TCompare> +\ \ +@@TIntegerCompare +<copy TCompare> +\ \ +@@TCardinalCompare +<copy TCompare> +\ \ +@@TInt64Compare +<copy TCompare> +\ \ +@@TPtrCompare +<copy TCompare> +\ \ + + +@@TIntfEqualityCompare +<copy TEqualityCompare> +\ \ +@@TAnsiStrEqualityCompare +<copy TEqualityCompare> +\ \ +@@TWideStrEqualityCompare +<copy TEqualityCompare> +\ \ +@@TUnicodeStrEqualityCompare +<copy TEqualityCompare> +\ \ +@@TSingleEqualityCompare +<copy TEqualityCompare> +\ \ +@@TDoubleEqualityCompare +<copy TEqualityCompare> +\ \ +@@TExtendedEqualityCompare +<copy TEqualityCompare> +\ \ +@@TIntegerEqualityCompare +<copy TEqualityCompare> +\ \ +@@TCardinalEqualityCompare +<copy TEqualityCompare> +\ \ +@@TInt64EqualityCompare +<copy TEqualityCompare> +\ \ +@@TPtrEqualityCompare +<copy TEqualityCompare> +\ \ + + +@@TIntfHashConvert +<copy THashConvert> +\ \ +@@TAnsiStrHashConvert +<copy THashConvert> +\ \ +@@TWideStrHashConvert +<copy THashConvert> +\ \ +@@TUnicodeStrHashConvert +<copy THashConvert> +\ \ +@@TSingleHashConvert +<copy THashConvert> +\ \ +@@TDoubleHashConvert +<copy THashConvert> +\ \ +@@TExtendedHashConvert +<copy THashConvert> +\ \ +@@TIntegerHashConvert +<copy THashConvert> +\ \ +@@TCardinalHashConvert +<copy THashConvert> +\ \ +@@TInt64HashConvert +<copy THashConvert> +\ \ +@@TPtrHashConvert +<copy THashConvert> +\ \ + + +@@TIntfSortProc +<copy TSortProc> +\ \ +@@TAnsiStrSortProc +<copy TSortProc> +\ \ +@@TWideStrSortProc +<copy TSortProc> +\ \ +@@TUnicodeStrSortProc +<copy TSortProc> +\ \ +@@TSingleSortProc +<copy TSortProc> +\ \ +@@TDoubleSortProc +<copy TSortProc> +\ \ +@@TExtendedSortProc +<copy TSortProc> +\ \ +@@TIntegerSortProc +<copy TSortProc> +\ \ +@@TCardinalSortProc +<copy TSortProc> +\ \ +@@TInt64SortProc +<copy TSortProc> +\ \ +@@TPtrSortProc +<copy TSortProc> +\ \ + + +@@IJclIntfEqualityComparer +<copy IJclEqualityComparer> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfEqualityComparer +<copy !!MEMBEROVERVIEW_IJclEqualityComparer> +\ \ + +@@IJclIntfEqualityComparer.EqualityCompare +<copy IJclEqualityComparer.EqualityCompare> +\ \ + +@@IJclIntfEqualityComparer.GetEqualityCompare +<copy IJclEqualityComparer.GetEqualityCompare> +\ \ + +@@IJclIntfEqualityComparer.ItemsEqual@IInterface@IInterface +<copy IJclEqualityComparer.ItemsEqual@TObject@TObject> +\ \ + +@@IJclIntfEqualityComparer.SetEqualityCompare@TIntfEqualityCompare +<copy IJclEqualityComparer.SetEqualityCompare@TEqualityCompare> +\ \ +@@IJclAnsiStrEqualityComparer +<copy IJclEqualityComparer> +\ \ + +@@!!MEMBEROVERVIEW_IJclAnsiStrEqualityComparer +<copy !!MEMBEROVERVIEW_IJclEqualityComparer> +\ \ + +@@IJclAnsiStrEqualityComparer.EqualityCompare +<copy IJclEqualityComparer.EqualityCompare> +\ \ + +@@IJclAnsiStrEqualityComparer.GetEqualityCompare +<copy IJclEqualityComparer.GetEqualityCompare> +\ \ + +@@IJclAnsiStrEqualityComparer.ItemsEqual@AnsiString@AnsiString +<copy IJclEqualityComparer.ItemsEqual@TObject@TObject> +\ \ + +@@IJclAnsiStrEqualityComparer.SetEqualityCompare@TAnsiStrEqualityCompare +<copy IJclEqualityComparer.SetEqualityCompare@TEqualityCompare> +\ \ +@@IJclWideStrEqualityComparer +<copy IJclEqualityComparer> +\ \ + +@@!!MEMBEROVERVIEW_IJclWideStrEqualityComparer +<copy !!MEMBEROVERVIEW_IJclEqualityComparer> +\ \ + +@@IJclWideStrEqualityComparer.EqualityCompare +<copy IJclEqualityComparer.EqualityCompare> +\ \ + +@@IJclWideStrEqualityComparer.GetEqualityCompare +<copy IJclEqualityComparer.GetEqualityCompare> +\ \ + +@@IJclWideStrEqualityComparer.ItemsEqual@WideString@WideString +<copy IJclEqualityComparer.ItemsEqual@TObject@TObject> +\ \ + +@@IJclWideStrEqualityComparer.SetEqualityCompare@TWideStrEqualityCompare +<copy IJclEqualityComparer.SetEqualityCompare@TEqualityCompare> +\ \ +@@IJclUnicodeStrEqualityComparer +<copy IJclEqualityComparer> +\ \ + +@@!!MEMBEROVERVIEW_IJclUnicodeStrEqualityComparer +<copy !!MEMBEROVERVIEW_IJclEqualityComparer> +\ \ + +@@IJclUnicodeStrEqualityComparer.EqualityCompare +<copy IJclEqualityComparer.EqualityCompare> +\ \ + +@@IJclUnicodeStrEqualityComparer.GetEqualityCompare +<copy IJclEqualityComparer.GetEqualityCompare> +\ \ + +@@IJclUnicodeStrEqualityComparer.ItemsEqual@UnicodeString@UnicodeString +<copy IJclEqualityComparer.ItemsEqual@TObject@TObject> +\ \ + +@@IJclUnicodeStrEqualityComparer.SetEqualityCompare@TUnicodeStrEqualityCompare +<copy IJclEqualityComparer.SetEqualityCompare@TEqualityCompare> +\ \ +@@IJclSingleEqualityComparer +<copy IJclEqualityComparer> +\ \ + +@@!!MEMBEROVERVIEW_IJclSingleEqualityComparer +<copy !!MEMBEROVERVIEW_IJclEqualityComparer> +\ \ + +@@IJclSingleEqualityComparer.EqualityCompare +<copy IJclEqualityComparer.EqualityCompare> +\ \ + +@@IJclSingleEqualityComparer.GetEqualityCompare +<copy IJclEqualityComparer.GetEqualityCompare> +\ \ + +@@IJclSingleEqualityComparer.ItemsEqual@Single@Single +<copy IJclEqualityComparer.ItemsEqual@TObject@TObject> +\ \ + +@@IJclSingleEqualityComparer.SetEqualityCompare@TSingleEqualityCompare +<copy IJclEqualityComparer.SetEqualityCompare@TEqualityCompare> +\ \ +@@IJclDoubleEqualityComparer +<copy IJclEqualityComparer> +\ \ + +@@!!MEMBEROVERVIEW_IJclDoubleEqualityComparer +<copy !!MEMBEROVERVIEW_IJclEqualityComparer> +\ \ + +@@IJclDoubleEqualityComparer.EqualityCompare +<copy IJclEqualityComparer.EqualityCompare> +\ \ + +@@IJclDoubleEqualityComparer.GetEqualityCompare +<copy IJclEqualityComparer.GetEqualityCompare> +\ \ + +@@IJclDoubleEqualityComparer.ItemsEqual@Double@Double +<copy IJclEqualityComparer.ItemsEqual@TObject@TObject> +\ \ + +@@IJclDoubleEqualityComparer.SetEqualityCompare@TDoubleEqualityCompare +<copy IJclEqualityComparer.SetEqualityCompare@TEqualityCompare> +\ \ +@@IJclExtendedEqualityComparer +<copy IJclEqualityComparer> +\ \ + +@@!!MEMBEROVERVIEW_IJclExtendedEqualityComparer +<copy !!MEMBEROVERVIEW_IJclEqualityComparer> +\ \ + +@@IJclExtendedEqualityComparer.EqualityCompare +<copy IJclEqualityComparer.EqualityCompare> +\ \ + +@@IJclExtendedEqualityComparer.GetEqualityCompare +<copy IJclEqualityComparer.GetEqualityCompare> +\ \ + +@@IJclExtendedEqualityComparer.ItemsEqual@Extended@Extended +<copy IJclEqualityComparer.ItemsEqual@TObject@TObject> +\ \ + +@@IJclExtendedEqualityComparer.SetEqualityCompare@TExtendedEqualityCompare +<copy IJclEqualityComparer.SetEqualityCompare@TEqualityCompare> +\ \ +@@IJclIntegerEqualityComparer +<copy IJclEqualityComparer> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntegerEqualityComparer +<copy !!MEMBEROVERVIEW_IJclEqualityComparer> +\ \ + +@@IJclIntegerEqualityComparer.EqualityCompare +<copy IJclEqualityComparer.EqualityCompare> +\ \ + +@@IJclIntegerEqualityComparer.GetEqualityCompare +<copy IJclEqualityComparer.GetEqualityCompare> +\ \ + +@@IJclIntegerEqualityComparer.ItemsEqual@Integer@Integer +<copy IJclEqualityComparer.ItemsEqual@TObject@TObject> +\ \ + +@@IJclIntegerEqualityComparer.SetEqualityCompare@TIntegerEqualityCompare +<copy IJclEqualityComparer.SetEqualityCompare@TEqualityCompare> +\ \ +@@IJclCardinalEqualityComparer +<copy IJclEqualityComparer> +\ \ + +@@!!MEMBEROVERVIEW_IJclCardinalEqualityComparer +<copy !!MEMBEROVERVIEW_IJclEqualityComparer> +\ \ + +@@IJclCardinalEqualityComparer.EqualityCompare +<copy IJclEqualityComparer.EqualityCompare> +\ \ + +@@IJclCardinalEqualityComparer.GetEqualityCompare +<copy IJclEqualityComparer.GetEqualityCompare> +\ \ + +@@IJclCardinalEqualityComparer.ItemsEqual@Cardinal@Cardinal +<copy IJclEqualityComparer.ItemsEqual@TObject@TObject> +\ \ + +@@IJclCardinalEqualityComparer.SetEqualityCompare@TCardinalEqualityCompare +<copy IJclEqualityComparer.SetEqualityCompare@TEqualityCompare> +\ \ +@@IJclInt64EqualityComparer +<copy IJclEqualityComparer> +\ \ + +@@!!MEMBEROVERVIEW_IJclInt64EqualityComparer +<copy !!MEMBEROVERVIEW_IJclEqualityComparer> +\ \ + +@@IJclInt64EqualityComparer.EqualityCompare +<copy IJclEqualityComparer.EqualityCompare> +\ \ + +@@IJclInt64EqualityComparer.GetEqualityCompare +<copy IJclEqualityComparer.GetEqualityCompare> +\ \ + +@@IJclInt64EqualityComparer.ItemsEqual@Int64@Int64 +<copy IJclEqualityComparer.ItemsEqual@TObject@TObject> +\ \ + +@@IJclInt64EqualityComparer.SetEqualityCompare@TInt64EqualityCompare +<copy IJclEqualityComparer.SetEqualityCompare@TEqualityCompare> +\ \ +@@IJclPtrEqualityComparer +<copy IJclEqualityComparer> +\ \ + +@@!!MEMBEROVERVIEW_IJclPtrEqualityComparer +<copy !!MEMBEROVERVIEW_IJclEqualityComparer> +\ \ + +@@IJclPtrEqualityComparer.EqualityCompare +<copy IJclEqualityComparer.EqualityCompare> +\ \ + +@@IJclPtrEqualityComparer.GetEqualityCompare +<copy IJclEqualityComparer.GetEqualityCompare> +\ \ + +@@IJclPtrEqualityComparer.ItemsEqual@Pointer@Pointer +<copy IJclEqualityComparer.ItemsEqual@TObject@TObject> +\ \ + +@@IJclPtrEqualityComparer.SetEqualityCompare@TPtrEqualityCompare +<copy IJclEqualityComparer.SetEqualityCompare@TEqualityCompare> +\ \ + + +@@IJclIntfComparer +<copy IJclComparer> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfComparer +<copy !!MEMBEROVERVIEW_IJclComparer> +\ \ + +@@IJclIntfComparer.Compare +<copy IJclComparer.Compare> +\ \ + +@@IJclIntfComparer.GetCompare +<copy IJclComparer.GetCompare> +\ \ + +@@IJclIntfComparer.ItemsCompare@IInterface@IInterface +<copy IJclComparer.ItemsCompare@TObject@TObject> +\ \ + +@@IJclIntfComparer.SetCompare@TIntfCompare +<copy IJclComparer.SetCompare@TCompare> +\ \ +@@IJclAnsiStrComparer +<copy IJclComparer> +\ \ + +@@!!MEMBEROVERVIEW_IJclAnsiStrComparer +<copy !!MEMBEROVERVIEW_IJclComparer> +\ \ + +@@IJclAnsiStrComparer.Compare +<copy IJclComparer.Compare> +\ \ + +@@IJclAnsiStrComparer.GetCompare +<copy IJclComparer.GetCompare> +\ \ + +@@IJclAnsiStrComparer.ItemsCompare@AnsiString@AnsiString +<copy IJclComparer.ItemsCompare@TObject@TObject> +\ \ + +@@IJclAnsiStrComparer.SetCompare@TAnsiStrCompare +<copy IJclComparer.SetCompare@TCompare> +\ \ +@@IJclWideStrComparer +<copy IJclComparer> +\ \ + +@@!!MEMBEROVERVIEW_IJclWideStrComparer +<copy !!MEMBEROVERVIEW_IJclComparer> +\ \ + +@@IJclWideStrComparer.Compare +<copy IJclComparer.Compare> +\ \ + +@@IJclWideStrComparer.GetCompare +<copy IJclComparer.GetCompare> +\ \ + +@@IJclWideStrComparer.ItemsCompare@WideString@WideString +<copy IJclComparer.ItemsCompare@TObject@TObject> +\ \ + +@@IJclWideStrComparer.SetCompare@TWideStrCompare +<copy IJclComparer.SetCompare@TCompare> +\ \ +@@IJclUnicodeStrComparer +<copy IJclComparer> +\ \ + +@@!!MEMBEROVERVIEW_IJclUnicodeStrComparer +<copy !!MEMBEROVERVIEW_IJclComparer> +\ \ + +@@IJclUnicodeStrComparer.Compare +<copy IJclComparer.Compare> +\ \ + +@@IJclUnicodeStrComparer.GetCompare +<copy IJclComparer.GetCompare> +\ \ + +@@IJclUnicodeStrComparer.ItemsCompare@UnicodeString@UnicodeString +<copy IJclComparer.ItemsCompare@TObject@TObject> +\ \ + +@@IJclUnicodeStrComparer.SetCompare@TUnicodeStrCompare +<copy IJclComparer.SetCompare@TCompare> +\ \ +@@IJclSingleComparer +<copy IJclComparer> +\ \ + +@@!!MEMBEROVERVIEW_IJclSingleComparer +<copy !!MEMBEROVERVIEW_IJclComparer> +\ \ + +@@IJclSingleComparer.Compare +<copy IJclComparer.Compare> +\ \ + +@@IJclSingleComparer.GetCompare +<copy IJclComparer.GetCompare> +\ \ + +@@IJclSingleComparer.ItemsCompare@Single@Single +<copy IJclComparer.ItemsCompare@TObject@TObject> +\ \ + +@@IJclSingleComparer.SetCompare@TSingleCompare +<copy IJclComparer.SetCompare@TCompare> +\ \ +@@IJclDoubleComparer +<copy IJclComparer> +\ \ + +@@!!MEMBEROVERVIEW_IJclDoubleComparer +<copy !!MEMBEROVERVIEW_IJclComparer> +\ \ + +@@IJclDoubleComparer.Compare +<copy IJclComparer.Compare> +\ \ + +@@IJclDoubleComparer.GetCompare +<copy IJclComparer.GetCompare> +\ \ + +@@IJclDoubleComparer.ItemsCompare@Double@Double +<copy IJclComparer.ItemsCompare@TObject@TObject> +\ \ + +@@IJclDoubleComparer.SetCompare@TDoubleCompare +<copy IJclComparer.SetCompare@TCompare> +\ \ +@@IJclExtendedComparer +<copy IJclComparer> +\ \ + +@@!!MEMBEROVERVIEW_IJclExtendedComparer +<copy !!MEMBEROVERVIEW_IJclComparer> +\ \ + +@@IJclExtendedComparer.Compare +<copy IJclComparer.Compare> +\ \ + +@@IJclExtendedComparer.GetCompare +<copy IJclComparer.GetCompare> +\ \ + +@@IJclExtendedComparer.ItemsCompare@Extended@Extended +<copy IJclComparer.ItemsCompare@TObject@TObject> +\ \ + +@@IJclExtendedComparer.SetCompare@TExtendedCompare +<copy IJclComparer.SetCompare@TCompare> +\ \ +@@IJclIntegerComparer +<copy IJclComparer> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntegerComparer +<copy !!MEMBEROVERVIEW_IJclComparer> +\ \ + +@@IJclIntegerComparer.Compare +<copy IJclComparer.Compare> +\ \ + +@@IJclIntegerComparer.GetCompare +<copy IJclComparer.GetCompare> +\ \ + +@@IJclIntegerComparer.ItemsCompare@Integer@Integer +<copy IJclComparer.ItemsCompare@TObject@TObject> +\ \ + +@@IJclIntegerComparer.SetCompare@TIntegerCompare +<copy IJclComparer.SetCompare@TCompare> +\ \ +@@IJclCardinalComparer +<copy IJclComparer> +\ \ + +@@!!MEMBEROVERVIEW_IJclCardinalComparer +<copy !!MEMBEROVERVIEW_IJclComparer> +\ \ + +@@IJclCardinalComparer.Compare +<copy IJclComparer.Compare> +\ \ + +@@IJclCardinalComparer.GetCompare +<copy IJclComparer.GetCompare> +\ \ + +@@IJclCardinalComparer.ItemsCompare@Cardinal@Cardinal +<copy IJclComparer.ItemsCompare@TObject@TObject> +\ \ + +@@IJclCardinalComparer.SetCompare@TCardinalCompare +<copy IJclComparer.SetCompare@TCompare> +\ \ +@@IJclInt64Comparer +<copy IJclComparer> +\ \ + +@@!!MEMBEROVERVIEW_IJclInt64Comparer +<copy !!MEMBEROVERVIEW_IJclComparer> +\ \ + +@@IJclInt64Comparer.Compare +<copy IJclComparer.Compare> +\ \ + +@@IJclInt64Comparer.GetCompare +<copy IJclComparer.GetCompare> +\ \ + +@@IJclInt64Comparer.ItemsCompare@Int64@Int64 +<copy IJclComparer.ItemsCompare@TObject@TObject> +\ \ + +@@IJclInt64Comparer.SetCompare@TInt64Compare +<copy IJclComparer.SetCompare@TCompare> +\ \ +@@IJclPtrComparer +<copy IJclComparer> +\ \ + +@@!!MEMBEROVERVIEW_IJclPtrComparer +<copy !!MEMBEROVERVIEW_IJclComparer> +\ \ + +@@IJclPtrComparer.Compare +<copy IJclComparer.Compare> +\ \ + +@@IJclPtrComparer.GetCompare +<copy IJclComparer.GetCompare> +\ \ + +@@IJclPtrComparer.ItemsCompare@Pointer@Pointer +<copy IJclComparer.ItemsCompare@TObject@TObject> +\ \ + +@@IJclPtrComparer.SetCompare@TPtrCompare +<copy IJclComparer.SetCompare@TCompare> +\ \ + + +@@IJclIntfHashConverter +<copy IJclHashConverter> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfHashConverter +<copy !!MEMBEROVERVIEW_IJclHashConverter> +\ \ + +@@IJclIntfHashConverter.HashConvert +<copy IJclHashConverter.HashConvert> +\ \ + +@@IJclIntfHashConverter.GetHashConvert +<copy IJclHashConverter.GetHashConvert> +\ \ + +@@IJclIntfHashConverter.Hash@IInterface +<copy IJclHashConverter.Hash@TObject> +\ \ + +@@IJclIntfHashConverter.SetHashConvert@TIntfHashConvert +<copy IJclHashConverter.SetHashConvert@THashConvert> +\ \ +@@IJclAnsiStrHashConverter +<copy IJclHashConverter> +\ \ + +@@!!MEMBEROVERVIEW_IJclAnsiStrHashConverter +<copy !!MEMBEROVERVIEW_IJclHashConverter> +\ \ + +@@IJclAnsiStrHashConverter.HashConvert +<copy IJclHashConverter.HashConvert> +\ \ + +@@IJclAnsiStrHashConverter.GetHashConvert +<copy IJclHashConverter.GetHashConvert> +\ \ + +@@IJclAnsiStrHashConverter.Hash@AnsiString +<copy IJclHashConverter.Hash@TObject> +\ \ + +@@IJclAnsiStrHashConverter.SetHashConvert@TAnsiStrHashConvert +<copy IJclHashConverter.SetHashConvert@THashConvert> +\ \ +@@IJclWideStrHashConverter +<copy IJclHashConverter> +\ \ + +@@!!MEMBEROVERVIEW_IJclWideStrHashConverter +<copy !!MEMBEROVERVIEW_IJclHashConverter> +\ \ + +@@IJclWideStrHashConverter.HashConvert +<copy IJclHashConverter.HashConvert> +\ \ + +@@IJclWideStrHashConverter.GetHashConvert +<copy IJclHashConverter.GetHashConvert> +\ \ + +@@IJclWideStrHashConverter.Hash@WideString +<copy IJclHashConverter.Hash@TObject> +\ \ + +@@IJclWideStrHashConverter.SetHashConvert@TWideStrHashConvert +<copy IJclHashConverter.SetHashConvert@THashConvert> +\ \ +@@IJclUnicodeStrHashConverter +<copy IJclHashConverter> +\ \ + +@@!!MEMBEROVERVIEW_IJclUnicodeStrHashConverter +<copy !!MEMBEROVERVIEW_IJclHashConverter> +\ \ + +@@IJclUnicodeStrHashConverter.HashConvert +<copy IJclHashConverter.HashConvert> +\ \ + +@@IJclUnicodeStrHashConverter.GetHashConvert +<copy IJclHashConverter.GetHashConvert> +\ \ + +@@IJclUnicodeStrHashConverter.Hash@UnicodeString +<copy IJclHashConverter.Hash@TObject> +\ \ + +@@IJclUnicodeStrHashConverter.SetHashConvert@TUnicodeStrHashConvert +<copy IJclHashConverter.SetHashConvert@THashConvert> +\ \ +@@IJclSingleHashConverter +<copy IJclHashConverter> +\ \ + +@@!!MEMBEROVERVIEW_IJclSingleHashConverter +<copy !!MEMBEROVERVIEW_IJclHashConverter> +\ \ + +@@IJclSingleHashConverter.HashConvert +<copy IJclHashConverter.HashConvert> +\ \ + +@@IJclSingleHashConverter.GetHashConvert +<copy IJclHashConverter.GetHashConvert> +\ \ + +@@IJclSingleHashConverter.Hash@Single +<copy IJclHashConverter.Hash@TObject> +\ \ + +@@IJclSingleHashConverter.SetHashConvert@TSingleHashConvert +<copy IJclHashConverter.SetHashConvert@THashConvert> +\ \ +@@IJclDoubleHashConverter +<copy IJclHashConverter> +\ \ + +@@!!MEMBEROVERVIEW_IJclDoubleHashConverter +<copy !!MEMBEROVERVIEW_IJclHashConverter> +\ \ + +@@IJclDoubleHashConverter.HashConvert +<copy IJclHashConverter.HashConvert> +\ \ + +@@IJclDoubleHashConverter.GetHashConvert +<copy IJclHashConverter.GetHashConvert> +\ \ + +@@IJclDoubleHashConverter.Hash@Double +<copy IJclHashConverter.Hash@TObject> +\ \ + +@@IJclDoubleHashConverter.SetHashConvert@TDoubleHashConvert +<copy IJclHashConverter.SetHashConvert@THashConvert> +\ \ +@@IJclExtendedHashConverter +<copy IJclHashConverter> +\ \ + +@@!!MEMBEROVERVIEW_IJclExtendedHashConverter +<copy !!MEMBEROVERVIEW_IJclHashConverter> +\ \ + +@@IJclExtendedHashConverter.HashConvert +<copy IJclHashConverter.HashConvert> +\ \ + +@@IJclExtendedHashConverter.GetHashConvert +<copy IJclHashConverter.GetHashConvert> +\ \ + +@@IJclExtendedHashConverter.Hash@Extended +<copy IJclHashConverter.Hash@TObject> +\ \ + +@@IJclExtendedHashConverter.SetHashConvert@TExtendedHashConvert +<copy IJclHashConverter.SetHashConvert@THashConvert> +\ \ +@@IJclIntegerHashConverter +<copy IJclHashConverter> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntegerHashConverter +<copy !!MEMBEROVERVIEW_IJclHashConverter> +\ \ + +@@IJclIntegerHashConverter.HashConvert +<copy IJclHashConverter.HashConvert> +\ \ + +@@IJclIntegerHashConverter.GetHashConvert +<copy IJclHashConverter.GetHashConvert> +\ \ + +@@IJclIntegerHashConverter.Hash@Integer +<copy IJclHashConverter.Hash@TObject> +\ \ + +@@IJclIntegerHashConverter.SetHashConvert@TIntegerHashConvert +<copy IJclHashConverter.SetHashConvert@THashConvert> +\ \ +@@IJclCardinalHashConverter +<copy IJclHashConverter> +\ \ + +@@!!MEMBEROVERVIEW_IJclCardinalHashConverter +<copy !!MEMBEROVERVIEW_IJclHashConverter> +\ \ + +@@IJclCardinalHashConverter.HashConvert +<copy IJclHashConverter.HashConvert> +\ \ + +@@IJclCardinalHashConverter.GetHashConvert +<copy IJclHashConverter.GetHashConvert> +\ \ + +@@IJclCardinalHashConverter.Hash@Cardinal +<copy IJclHashConverter.Hash@TObject> +\ \ + +@@IJclCardinalHashConverter.SetHashConvert@TCardinalHashConvert +<copy IJclHashConverter.SetHashConvert@THashConvert> +\ \ +@@IJclInt64HashConverter +<copy IJclHashConverter> +\ \ + +@@!!MEMBEROVERVIEW_IJclInt64HashConverter +<copy !!MEMBEROVERVIEW_IJclHashConverter> +\ \ + +@@IJclInt64HashConverter.HashConvert +<copy IJclHashConverter.HashConvert> +\ \ + +@@IJclInt64HashConverter.GetHashConvert +<copy IJclHashConverter.GetHashConvert> +\ \ + +@@IJclInt64HashConverter.Hash@Int64 +<copy IJclHashConverter.Hash@TObject> +\ \ + +@@IJclInt64HashConverter.SetHashConvert@TInt64HashConvert +<copy IJclHashConverter.SetHashConvert@THashConvert> +\ \ +@@IJclPtrHashConverter +<copy IJclHashConverter> +\ \ + +@@!!MEMBEROVERVIEW_IJclPtrHashConverter +<copy !!MEMBEROVERVIEW_IJclHashConverter> +\ \ + +@@IJclPtrHashConverter.HashConvert +<copy IJclHashConverter.HashConvert> +\ \ + +@@IJclPtrHashConverter.GetHashConvert +<copy IJclHashConverter.GetHashConvert> +\ \ + +@@IJclPtrHashConverter.Hash@Pointer +<copy IJclHashConverter.Hash@TObject> +\ \ + +@@IJclPtrHashConverter.SetHashConvert@TPtrHashConvert +<copy IJclHashConverter.SetHashConvert@THashConvert> +\ \ + + +@@IJclIntfIterator +<copy IJclIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfIterator +<copy !!MEMBEROVERVIEW_IJclIterator> +\ \ + +@@IJclIntfIterator.Current +<copy IJclIterator.Current> +\ \ + +@@IJclIntfIterator.Add@IInterface +<copy IJclIterator.Add@TObject> +\ \ + +@@IJclIntfIterator.Extract +<copy IJclIterator.Extract> +\ \ + +@@IJclIntfIterator.GetObject +<copy IJclIterator.GetObject> +\ \ + +@@IJclIntfIterator.HasNext +<copy IJclIterator.HasNext> +\ \ + +@@IJclIntfIterator.HasPrevious +<copy IJclIterator.HasPrevious> +\ \ + +@@IJclIntfIterator.Insert@IInterface +<copy IJclIterator.Insert@TObject> +\ \ + +@@IJclIntfIterator.IteratorEquals@IJclIntfIterator +<copy IJclIterator.IteratorEquals@IJclIterator> +\ \ + +@@IJclIntfIterator.MoveNext +<copy IJclIterator.MoveNext> +\ \ + +@@IJclIntfIterator.Next +<copy IJclIterator.Next> +\ \ + +@@IJclIntfIterator.NextIndex +<copy IJclIterator.NextIndex> +\ \ + +@@IJclIntfIterator.Previous +<copy IJclIterator.Previous> +\ \ + +@@IJclIntfIterator.PreviousIndex +<copy IJclIterator.PreviousIndex> +\ \ + +@@IJclIntfIterator.Remove +<copy IJclIterator.Remove> +\ \ + +@@IJclIntfIterator.Reset +<copy IJclIterator.Reset> +\ \ + +@@IJclIntfIterator.SetObject@IInterface +<copy IJclIterator.SetObject@TObject> +\ \ +@@IJclAnsiStrIterator +<copy IJclIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclAnsiStrIterator +<copy !!MEMBEROVERVIEW_IJclIterator> +\ \ + +@@IJclAnsiStrIterator.Current +<copy IJclIterator.Current> +\ \ + +@@IJclAnsiStrIterator.Add@AnsiString +<copy IJclIterator.Add@TObject> +\ \ + +@@IJclAnsiStrIterator.Extract +<copy IJclIterator.Extract> +\ \ + +@@IJclAnsiStrIterator.GetString +<copy IJclIterator.GetObject> +\ \ + +@@IJclAnsiStrIterator.HasNext +<copy IJclIterator.HasNext> +\ \ + +@@IJclAnsiStrIterator.HasPrevious +<copy IJclIterator.HasPrevious> +\ \ + +@@IJclAnsiStrIterator.Insert@AnsiString +<copy IJclIterator.Insert@TObject> +\ \ + +@@IJclAnsiStrIterator.IteratorEquals@IJclAnsiStrIterator +<copy IJclIterator.IteratorEquals@IJclIterator> +\ \ + +@@IJclAnsiStrIterator.MoveNext +<copy IJclIterator.MoveNext> +\ \ + +@@IJclAnsiStrIterator.Next +<copy IJclIterator.Next> +\ \ + +@@IJclAnsiStrIterator.NextIndex +<copy IJclIterator.NextIndex> +\ \ + +@@IJclAnsiStrIterator.Previous +<copy IJclIterator.Previous> +\ \ + +@@IJclAnsiStrIterator.PreviousIndex +<copy IJclIterator.PreviousIndex> +\ \ + +@@IJclAnsiStrIterator.Remove +<copy IJclIterator.Remove> +\ \ + +@@IJclAnsiStrIterator.Reset +<copy IJclIterator.Reset> +\ \ + +@@IJclAnsiStrIterator.SetString@AnsiString +<copy IJclIterator.SetObject@TObject> +\ \ +@@IJclWideStrIterator +<copy IJclIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclWideStrIterator +<copy !!MEMBEROVERVIEW_IJclIterator> +\ \ + +@@IJclWideStrIterator.Current +<copy IJclIterator.Current> +\ \ + +@@IJclWideStrIterator.Add@WideString +<copy IJclIterator.Add@TObject> +\ \ + +@@IJclWideStrIterator.Extract +<copy IJclIterator.Extract> +\ \ + +@@IJclWideStrIterator.GetString +<copy IJclIterator.GetObject> +\ \ + +@@IJclWideStrIterator.HasNext +<copy IJclIterator.HasNext> +\ \ + +@@IJclWideStrIterator.HasPrevious +<copy IJclIterator.HasPrevious> +\ \ + +@@IJclWideStrIterator.Insert@WideString +<copy IJclIterator.Insert@TObject> +\ \ + +@@IJclWideStrIterator.IteratorEquals@IJclWideStrIterator +<copy IJclIterator.IteratorEquals@IJclIterator> +\ \ + +@@IJclWideStrIterator.MoveNext +<copy IJclIterator.MoveNext> +\ \ + +@@IJclWideStrIterator.Next +<copy IJclIterator.Next> +\ \ + +@@IJclWideStrIterator.NextIndex +<copy IJclIterator.NextIndex> +\ \ + +@@IJclWideStrIterator.Previous +<copy IJclIterator.Previous> +\ \ + +@@IJclWideStrIterator.PreviousIndex +<copy IJclIterator.PreviousIndex> +\ \ + +@@IJclWideStrIterator.Remove +<copy IJclIterator.Remove> +\ \ + +@@IJclWideStrIterator.Reset +<copy IJclIterator.Reset> +\ \ + +@@IJclWideStrIterator.SetString@WideString +<copy IJclIterator.SetObject@TObject> +\ \ +@@IJclUnicodeStrIterator +<copy IJclIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclUnicodeStrIterator +<copy !!MEMBEROVERVIEW_IJclIterator> +\ \ + +@@IJclUnicodeStrIterator.Current +<copy IJclIterator.Current> +\ \ + +@@IJclUnicodeStrIterator.Add@UnicodeString +<copy IJclIterator.Add@TObject> +\ \ + +@@IJclUnicodeStrIterator.Extract +<copy IJclIterator.Extract> +\ \ + +@@IJclUnicodeStrIterator.GetString +<copy IJclIterator.GetObject> +\ \ + +@@IJclUnicodeStrIterator.HasNext +<copy IJclIterator.HasNext> +\ \ + +@@IJclUnicodeStrIterator.HasPrevious +<copy IJclIterator.HasPrevious> +\ \ + +@@IJclUnicodeStrIterator.Insert@UnicodeString +<copy IJclIterator.Insert@TObject> +\ \ + +@@IJclUnicodeStrIterator.IteratorEquals@IJclUnicodeStrIterator +<copy IJclIterator.IteratorEquals@IJclIterator> +\ \ + +@@IJclUnicodeStrIterator.MoveNext +<copy IJclIterator.MoveNext> +\ \ + +@@IJclUnicodeStrIterator.Next +<copy IJclIterator.Next> +\ \ + +@@IJclUnicodeStrIterator.NextIndex +<copy IJclIterator.NextIndex> +\ \ + +@@IJclUnicodeStrIterator.Previous +<copy IJclIterator.Previous> +\ \ + +@@IJclUnicodeStrIterator.PreviousIndex +<copy IJclIterator.PreviousIndex> +\ \ + +@@IJclUnicodeStrIterator.Remove +<copy IJclIterator.Remove> +\ \ + +@@IJclUnicodeStrIterator.Reset +<copy IJclIterator.Reset> +\ \ + +@@IJclUnicodeStrIterator.SetString@UnicodeString +<copy IJclIterator.SetObject@TObject> +\ \ +@@IJclSingleIterator +<copy IJclIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclSingleIterator +<copy !!MEMBEROVERVIEW_IJclIterator> +\ \ + +@@IJclSingleIterator.Current +<copy IJclIterator.Current> +\ \ + +@@IJclSingleIterator.Add@Single +<copy IJclIterator.Add@TObject> +\ \ + +@@IJclSingleIterator.Extract +<copy IJclIterator.Extract> +\ \ + +@@IJclSingleIterator.GetValue +<copy IJclIterator.GetObject> +\ \ + +@@IJclSingleIterator.HasNext +<copy IJclIterator.HasNext> +\ \ + +@@IJclSingleIterator.HasPrevious +<copy IJclIterator.HasPrevious> +\ \ + +@@IJclSingleIterator.Insert@Single +<copy IJclIterator.Insert@TObject> +\ \ + +@@IJclSingleIterator.IteratorEquals@IJclSingleIterator +<copy IJclIterator.IteratorEquals@IJclIterator> +\ \ + +@@IJclSingleIterator.MoveNext +<copy IJclIterator.MoveNext> +\ \ + +@@IJclSingleIterator.Next +<copy IJclIterator.Next> +\ \ + +@@IJclSingleIterator.NextIndex +<copy IJclIterator.NextIndex> +\ \ + +@@IJclSingleIterator.Previous +<copy IJclIterator.Previous> +\ \ + +@@IJclSingleIterator.PreviousIndex +<copy IJclIterator.PreviousIndex> +\ \ + +@@IJclSingleIterator.Remove +<copy IJclIterator.Remove> +\ \ + +@@IJclSingleIterator.Reset +<copy IJclIterator.Reset> +\ \ + +@@IJclSingleIterator.SetValue@Single +<copy IJclIterator.SetObject@TObject> +\ \ +@@IJclDoubleIterator +<copy IJclIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclDoubleIterator +<copy !!MEMBEROVERVIEW_IJclIterator> +\ \ + +@@IJclDoubleIterator.Current +<copy IJclIterator.Current> +\ \ + +@@IJclDoubleIterator.Add@Double +<copy IJclIterator.Add@TObject> +\ \ + +@@IJclDoubleIterator.Extract +<copy IJclIterator.Extract> +\ \ + +@@IJclDoubleIterator.GetValue +<copy IJclIterator.GetObject> +\ \ + +@@IJclDoubleIterator.HasNext +<copy IJclIterator.HasNext> +\ \ + +@@IJclDoubleIterator.HasPrevious +<copy IJclIterator.HasPrevious> +\ \ + +@@IJclDoubleIterator.Insert@Double +<copy IJclIterator.Insert@TObject> +\ \ + +@@IJclDoubleIterator.IteratorEquals@IJclDoubleIterator +<copy IJclIterator.IteratorEquals@IJclIterator> +\ \ + +@@IJclDoubleIterator.MoveNext +<copy IJclIterator.MoveNext> +\ \ + +@@IJclDoubleIterator.Next +<copy IJclIterator.Next> +\ \ + +@@IJclDoubleIterator.NextIndex +<copy IJclIterator.NextIndex> +\ \ + +@@IJclDoubleIterator.Previous +<copy IJclIterator.Previous> +\ \ + +@@IJclDoubleIterator.PreviousIndex +<copy IJclIterator.PreviousIndex> +\ \ + +@@IJclDoubleIterator.Remove +<copy IJclIterator.Remove> +\ \ + +@@IJclDoubleIterator.Reset +<copy IJclIterator.Reset> +\ \ + +@@IJclDoubleIterator.SetValue@Double +<copy IJclIterator.SetObject@TObject> +\ \ +@@IJclExtendedIterator +<copy IJclIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclExtendedIterator +<copy !!MEMBEROVERVIEW_IJclIterator> +\ \ + +@@IJclExtendedIterator.Current +<copy IJclIterator.Current> +\ \ + +@@IJclExtendedIterator.Add@Extended +<copy IJclIterator.Add@TObject> +\ \ + +@@IJclExtendedIterator.Extract +<copy IJclIterator.Extract> +\ \ + +@@IJclExtendedIterator.GetValue +<copy IJclIterator.GetObject> +\ \ + +@@IJclExtendedIterator.HasNext +<copy IJclIterator.HasNext> +\ \ + +@@IJclExtendedIterator.HasPrevious +<copy IJclIterator.HasPrevious> +\ \ + +@@IJclExtendedIterator.Insert@Extended +<copy IJclIterator.Insert@TObject> +\ \ + +@@IJclExtendedIterator.IteratorEquals@IJclExtendedIterator +<copy IJclIterator.IteratorEquals@IJclIterator> +\ \ + +@@IJclExtendedIterator.MoveNext +<copy IJclIterator.MoveNext> +\ \ + +@@IJclExtendedIterator.Next +<copy IJclIterator.Next> +\ \ + +@@IJclExtendedIterator.NextIndex +<copy IJclIterator.NextIndex> +\ \ + +@@IJclExtendedIterator.Previous +<copy IJclIterator.Previous> +\ \ + +@@IJclExtendedIterator.PreviousIndex +<copy IJclIterator.PreviousIndex> +\ \ + +@@IJclExtendedIterator.Remove +<copy IJclIterator.Remove> +\ \ + +@@IJclExtendedIterator.Reset +<copy IJclIterator.Reset> +\ \ + +@@IJclExtendedIterator.SetValue@Extended +<copy IJclIterator.SetObject@TObject> +\ \ +@@IJclIntegerIterator +<copy IJclIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntegerIterator +<copy !!MEMBEROVERVIEW_IJclIterator> +\ \ + +@@IJclIntegerIterator.Current +<copy IJclIterator.Current> +\ \ + +@@IJclIntegerIterator.Add@Integer +<copy IJclIterator.Add@TObject> +\ \ + +@@IJclIntegerIterator.Extract +<copy IJclIterator.Extract> +\ \ + +@@IJclIntegerIterator.GetValue +<copy IJclIterator.GetObject> +\ \ + +@@IJclIntegerIterator.HasNext +<copy IJclIterator.HasNext> +\ \ + +@@IJclIntegerIterator.HasPrevious +<copy IJclIterator.HasPrevious> +\ \ + +@@IJclIntegerIterator.Insert@Integer +<copy IJclIterator.Insert@TObject> +\ \ + +@@IJclIntegerIterator.IteratorEquals@IJclIntegerIterator +<copy IJclIterator.IteratorEquals@IJclIterator> +\ \ + +@@IJclIntegerIterator.MoveNext +<copy IJclIterator.MoveNext> +\ \ + +@@IJclIntegerIterator.Next +<copy IJclIterator.Next> +\ \ + +@@IJclIntegerIterator.NextIndex +<copy IJclIterator.NextIndex> +\ \ + +@@IJclIntegerIterator.Previous +<copy IJclIterator.Previous> +\ \ + +@@IJclIntegerIterator.PreviousIndex +<copy IJclIterator.PreviousIndex> +\ \ + +@@IJclIntegerIterator.Remove +<copy IJclIterator.Remove> +\ \ + +@@IJclIntegerIterator.Reset +<copy IJclIterator.Reset> +\ \ + +@@IJclIntegerIterator.SetValue@Integer +<copy IJclIterator.SetObject@TObject> +\ \ +@@IJclCardinalIterator +<copy IJclIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclCardinalIterator +<copy !!MEMBEROVERVIEW_IJclIterator> +\ \ + +@@IJclCardinalIterator.Current +<copy IJclIterator.Current> +\ \ + +@@IJclCardinalIterator.Add@Cardinal +<copy IJclIterator.Add@TObject> +\ \ + +@@IJclCardinalIterator.Extract +<copy IJclIterator.Extract> +\ \ + +@@IJclCardinalIterator.GetValue +<copy IJclIterator.GetObject> +\ \ + +@@IJclCardinalIterator.HasNext +<copy IJclIterator.HasNext> +\ \ + +@@IJclCardinalIterator.HasPrevious +<copy IJclIterator.HasPrevious> +\ \ + +@@IJclCardinalIterator.Insert@Cardinal +<copy IJclIterator.Insert@TObject> +\ \ + +@@IJclCardinalIterator.IteratorEquals@IJclCardinalIterator +<copy IJclIterator.IteratorEquals@IJclIterator> +\ \ + +@@IJclCardinalIterator.MoveNext +<copy IJclIterator.MoveNext> +\ \ + +@@IJclCardinalIterator.Next +<copy IJclIterator.Next> +\ \ + +@@IJclCardinalIterator.NextIndex +<copy IJclIterator.NextIndex> +\ \ + +@@IJclCardinalIterator.Previous +<copy IJclIterator.Previous> +\ \ + +@@IJclCardinalIterator.PreviousIndex +<copy IJclIterator.PreviousIndex> +\ \ + +@@IJclCardinalIterator.Remove +<copy IJclIterator.Remove> +\ \ + +@@IJclCardinalIterator.Reset +<copy IJclIterator.Reset> +\ \ + +@@IJclCardinalIterator.SetValue@Cardinal +<copy IJclIterator.SetObject@TObject> +\ \ +@@IJclInt64Iterator +<copy IJclIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclInt64Iterator +<copy !!MEMBEROVERVIEW_IJclIterator> +\ \ + +@@IJclInt64Iterator.Current +<copy IJclIterator.Current> +\ \ + +@@IJclInt64Iterator.Add@Int64 +<copy IJclIterator.Add@TObject> +\ \ + +@@IJclInt64Iterator.Extract +<copy IJclIterator.Extract> +\ \ + +@@IJclInt64Iterator.GetValue +<copy IJclIterator.GetObject> +\ \ + +@@IJclInt64Iterator.HasNext +<copy IJclIterator.HasNext> +\ \ + +@@IJclInt64Iterator.HasPrevious +<copy IJclIterator.HasPrevious> +\ \ + +@@IJclInt64Iterator.Insert@Int64 +<copy IJclIterator.Insert@TObject> +\ \ + +@@IJclInt64Iterator.IteratorEquals@IJclInt64Iterator +<copy IJclIterator.IteratorEquals@IJclIterator> +\ \ + +@@IJclInt64Iterator.MoveNext +<copy IJclIterator.MoveNext> +\ \ + +@@IJclInt64Iterator.Next +<copy IJclIterator.Next> +\ \ + +@@IJclInt64Iterator.NextIndex +<copy IJclIterator.NextIndex> +\ \ + +@@IJclInt64Iterator.Previous +<copy IJclIterator.Previous> +\ \ + +@@IJclInt64Iterator.PreviousIndex +<copy IJclIterator.PreviousIndex> +\ \ + +@@IJclInt64Iterator.Remove +<copy IJclIterator.Remove> +\ \ + +@@IJclInt64Iterator.Reset +<copy IJclIterator.Reset> +\ \ + +@@IJclInt64Iterator.SetValue@Int64 +<copy IJclIterator.SetObject@TObject> +\ \ +@@IJclPtrIterator +<copy IJclIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclPtrIterator +<copy !!MEMBEROVERVIEW_IJclIterator> +\ \ + +@@IJclPtrIterator.Current +<copy IJclIterator.Current> +\ \ + +@@IJclPtrIterator.Add@Pointer +<copy IJclIterator.Add@TObject> +\ \ + +@@IJclPtrIterator.Extract +<copy IJclIterator.Extract> +\ \ + +@@IJclPtrIterator.GetPointer +<copy IJclIterator.GetObject> +\ \ + +@@IJclPtrIterator.HasNext +<copy IJclIterator.HasNext> +\ \ + +@@IJclPtrIterator.HasPrevious +<copy IJclIterator.HasPrevious> +\ \ + +@@IJclPtrIterator.Insert@Pointer +<copy IJclIterator.Insert@TObject> +\ \ + +@@IJclPtrIterator.IteratorEquals@IJclPtrIterator +<copy IJclIterator.IteratorEquals@IJclIterator> +\ \ + +@@IJclPtrIterator.MoveNext +<copy IJclIterator.MoveNext> +\ \ + +@@IJclPtrIterator.Next +<copy IJclIterator.Next> +\ \ + +@@IJclPtrIterator.NextIndex +<copy IJclIterator.NextIndex> +\ \ + +@@IJclPtrIterator.Previous +<copy IJclIterator.Previous> +\ \ + +@@IJclPtrIterator.PreviousIndex +<copy IJclIterator.PreviousIndex> +\ \ + +@@IJclPtrIterator.Remove +<copy IJclIterator.Remove> +\ \ + +@@IJclPtrIterator.Reset +<copy IJclIterator.Reset> +\ \ + +@@IJclPtrIterator.SetPointer@Pointer +<copy IJclIterator.SetObject@TObject> +\ \ + + +@@IJclIntfTreeIterator +<copy IJclTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfTreeIterator +<copy !!MEMBEROVERVIEW_IJclTreeIterator> +\ \ + +@@IJclIntfTreeIterator.Children +<copy IJclTreeIterator.Children> +\ \ + +@@IJclIntfTreeIterator.AddChild@IInterface +<copy IJclTreeIterator.AddChild@TObject> +\ \ + +@@IJclIntfTreeIterator.ChildrenCount +<copy IJclTreeIterator.ChildrenCount> +\ \ + +@@IJclIntfTreeIterator.DeleteChild@Integer +<copy IJclTreeIterator.DeleteChild@Integer> +\ \ + +@@IJclIntfTreeIterator.DeleteChildren +<copy IJclTreeIterator.DeleteChildren> +\ \ + +@@IJclIntfTreeIterator.ExtractChild@Integer +<copy IJclTreeIterator.ExtractChild@Integer> +\ \ + +@@IJclIntfTreeIterator.ExtractChildren +<copy IJclTreeIterator.ExtractChildren> +\ \ + +@@IJclIntfTreeIterator.GetChild@Integer +<copy IJclTreeIterator.GetChild@Integer> +\ \ + +@@IJclIntfTreeIterator.HasChild@Integer +<copy IJclTreeIterator.HasChild@Integer> +\ \ + +@@IJclIntfTreeIterator.HasParent +<copy IJclTreeIterator.HasParent> +\ \ + +@@IJclIntfTreeIterator.IndexOfChild@IInterface +<copy IJclTreeIterator.IndexOfChild@TObject> +\ \ + +@@IJclIntfTreeIterator.InsertChild@Integer@IInterface +<copy IJclTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@IJclIntfTreeIterator.Parent +<copy IJclTreeIterator.Parent> +\ \ + +@@IJclIntfTreeIterator.SetChild@Integer@IInterface +<copy IJclTreeIterator.SetChild@Integer@TObject> +\ \ +@@IJclAnsiStrTreeIterator +<copy IJclTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclAnsiStrTreeIterator +<copy !!MEMBEROVERVIEW_IJclTreeIterator> +\ \ + +@@IJclAnsiStrTreeIterator.Children +<copy IJclTreeIterator.Children> +\ \ + +@@IJclAnsiStrTreeIterator.AddChild@AnsiString +<copy IJclTreeIterator.AddChild@TObject> +\ \ + +@@IJclAnsiStrTreeIterator.ChildrenCount +<copy IJclTreeIterator.ChildrenCount> +\ \ + +@@IJclAnsiStrTreeIterator.DeleteChild@Integer +<copy IJclTreeIterator.DeleteChild@Integer> +\ \ + +@@IJclAnsiStrTreeIterator.DeleteChildren +<copy IJclTreeIterator.DeleteChildren> +\ \ + +@@IJclAnsiStrTreeIterator.ExtractChild@Integer +<copy IJclTreeIterator.ExtractChild@Integer> +\ \ + +@@IJclAnsiStrTreeIterator.ExtractChildren +<copy IJclTreeIterator.ExtractChildren> +\ \ + +@@IJclAnsiStrTreeIterator.GetChild@Integer +<copy IJclTreeIterator.GetChild@Integer> +\ \ + +@@IJclAnsiStrTreeIterator.HasChild@Integer +<copy IJclTreeIterator.HasChild@Integer> +\ \ + +@@IJclAnsiStrTreeIterator.HasParent +<copy IJclTreeIterator.HasParent> +\ \ + +@@IJclAnsiStrTreeIterator.IndexOfChild@AnsiString +<copy IJclTreeIterator.IndexOfChild@TObject> +\ \ + +@@IJclAnsiStrTreeIterator.InsertChild@Integer@AnsiString +<copy IJclTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@IJclAnsiStrTreeIterator.Parent +<copy IJclTreeIterator.Parent> +\ \ + +@@IJclAnsiStrTreeIterator.SetChild@Integer@AnsiString +<copy IJclTreeIterator.SetChild@Integer@TObject> +\ \ +@@IJclWideStrTreeIterator +<copy IJclTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclWideStrTreeIterator +<copy !!MEMBEROVERVIEW_IJclTreeIterator> +\ \ + +@@IJclWideStrTreeIterator.Children +<copy IJclTreeIterator.Children> +\ \ + +@@IJclWideStrTreeIterator.AddChild@WideString +<copy IJclTreeIterator.AddChild@TObject> +\ \ + +@@IJclWideStrTreeIterator.ChildrenCount +<copy IJclTreeIterator.ChildrenCount> +\ \ + +@@IJclWideStrTreeIterator.DeleteChild@Integer +<copy IJclTreeIterator.DeleteChild@Integer> +\ \ + +@@IJclWideStrTreeIterator.DeleteChildren +<copy IJclTreeIterator.DeleteChildren> +\ \ + +@@IJclWideStrTreeIterator.ExtractChild@Integer +<copy IJclTreeIterator.ExtractChild@Integer> +\ \ + +@@IJclWideStrTreeIterator.ExtractChildren +<copy IJclTreeIterator.ExtractChildren> +\ \ + +@@IJclWideStrTreeIterator.GetChild@Integer +<copy IJclTreeIterator.GetChild@Integer> +\ \ + +@@IJclWideStrTreeIterator.HasChild@Integer +<copy IJclTreeIterator.HasChild@Integer> +\ \ + +@@IJclWideStrTreeIterator.HasParent +<copy IJclTreeIterator.HasParent> +\ \ + +@@IJclWideStrTreeIterator.IndexOfChild@WideString +<copy IJclTreeIterator.IndexOfChild@TObject> +\ \ + +@@IJclWideStrTreeIterator.InsertChild@Integer@WideString +<copy IJclTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@IJclWideStrTreeIterator.Parent +<copy IJclTreeIterator.Parent> +\ \ + +@@IJclWideStrTreeIterator.SetChild@Integer@WideString +<copy IJclTreeIterator.SetChild@Integer@TObject> +\ \ +@@IJclUnicodeStrTreeIterator +<copy IJclTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclUnicodeStrTreeIterator +<copy !!MEMBEROVERVIEW_IJclTreeIterator> +\ \ + +@@IJclUnicodeStrTreeIterator.Children +<copy IJclTreeIterator.Children> +\ \ + +@@IJclUnicodeStrTreeIterator.AddChild@UnicodeString +<copy IJclTreeIterator.AddChild@TObject> +\ \ + +@@IJclUnicodeStrTreeIterator.ChildrenCount +<copy IJclTreeIterator.ChildrenCount> +\ \ + +@@IJclUnicodeStrTreeIterator.DeleteChild@Integer +<copy IJclTreeIterator.DeleteChild@Integer> +\ \ + +@@IJclUnicodeStrTreeIterator.DeleteChildren +<copy IJclTreeIterator.DeleteChildren> +\ \ + +@@IJclUnicodeStrTreeIterator.ExtractChild@Integer +<copy IJclTreeIterator.ExtractChild@Integer> +\ \ + +@@IJclUnicodeStrTreeIterator.ExtractChildren +<copy IJclTreeIterator.ExtractChildren> +\ \ + +@@IJclUnicodeStrTreeIterator.GetChild@Integer +<copy IJclTreeIterator.GetChild@Integer> +\ \ + +@@IJclUnicodeStrTreeIterator.HasChild@Integer +<copy IJclTreeIterator.HasChild@Integer> +\ \ + +@@IJclUnicodeStrTreeIterator.HasParent +<copy IJclTreeIterator.HasParent> +\ \ + +@@IJclUnicodeStrTreeIterator.IndexOfChild@UnicodeString +<copy IJclTreeIterator.IndexOfChild@TObject> +\ \ + +@@IJclUnicodeStrTreeIterator.InsertChild@Integer@UnicodeString +<copy IJclTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@IJclUnicodeStrTreeIterator.Parent +<copy IJclTreeIterator.Parent> +\ \ + +@@IJclUnicodeStrTreeIterator.SetChild@Integer@UnicodeString +<copy IJclTreeIterator.SetChild@Integer@TObject> +\ \ +@@IJclSingleTreeIterator +<copy IJclTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclSingleTreeIterator +<copy !!MEMBEROVERVIEW_IJclTreeIterator> +\ \ + +@@IJclSingleTreeIterator.Children +<copy IJclTreeIterator.Children> +\ \ + +@@IJclSingleTreeIterator.AddChild@Single +<copy IJclTreeIterator.AddChild@TObject> +\ \ + +@@IJclSingleTreeIterator.ChildrenCount +<copy IJclTreeIterator.ChildrenCount> +\ \ + +@@IJclSingleTreeIterator.DeleteChild@Integer +<copy IJclTreeIterator.DeleteChild@Integer> +\ \ + +@@IJclSingleTreeIterator.DeleteChildren +<copy IJclTreeIterator.DeleteChildren> +\ \ + +@@IJclSingleTreeIterator.ExtractChild@Integer +<copy IJclTreeIterator.ExtractChild@Integer> +\ \ + +@@IJclSingleTreeIterator.ExtractChildren +<copy IJclTreeIterator.ExtractChildren> +\ \ + +@@IJclSingleTreeIterator.GetChild@Integer +<copy IJclTreeIterator.GetChild@Integer> +\ \ + +@@IJclSingleTreeIterator.HasChild@Integer +<copy IJclTreeIterator.HasChild@Integer> +\ \ + +@@IJclSingleTreeIterator.HasParent +<copy IJclTreeIterator.HasParent> +\ \ + +@@IJclSingleTreeIterator.IndexOfChild@Single +<copy IJclTreeIterator.IndexOfChild@TObject> +\ \ + +@@IJclSingleTreeIterator.InsertChild@Integer@Single +<copy IJclTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@IJclSingleTreeIterator.Parent +<copy IJclTreeIterator.Parent> +\ \ + +@@IJclSingleTreeIterator.SetChild@Integer@Single +<copy IJclTreeIterator.SetChild@Integer@TObject> +\ \ +@@IJclDoubleTreeIterator +<copy IJclTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclDoubleTreeIterator +<copy !!MEMBEROVERVIEW_IJclTreeIterator> +\ \ + +@@IJclDoubleTreeIterator.Children +<copy IJclTreeIterator.Children> +\ \ + +@@IJclDoubleTreeIterator.AddChild@Double +<copy IJclTreeIterator.AddChild@TObject> +\ \ + +@@IJclDoubleTreeIterator.ChildrenCount +<copy IJclTreeIterator.ChildrenCount> +\ \ + +@@IJclDoubleTreeIterator.DeleteChild@Integer +<copy IJclTreeIterator.DeleteChild@Integer> +\ \ + +@@IJclDoubleTreeIterator.DeleteChildren +<copy IJclTreeIterator.DeleteChildren> +\ \ + +@@IJclDoubleTreeIterator.ExtractChild@Integer +<copy IJclTreeIterator.ExtractChild@Integer> +\ \ + +@@IJclDoubleTreeIterator.ExtractChildren +<copy IJclTreeIterator.ExtractChildren> +\ \ + +@@IJclDoubleTreeIterator.GetChild@Integer +<copy IJclTreeIterator.GetChild@Integer> +\ \ + +@@IJclDoubleTreeIterator.HasChild@Integer +<copy IJclTreeIterator.HasChild@Integer> +\ \ + +@@IJclDoubleTreeIterator.HasParent +<copy IJclTreeIterator.HasParent> +\ \ + +@@IJclDoubleTreeIterator.IndexOfChild@Double +<copy IJclTreeIterator.IndexOfChild@TObject> +\ \ + +@@IJclDoubleTreeIterator.InsertChild@Integer@Double +<copy IJclTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@IJclDoubleTreeIterator.Parent +<copy IJclTreeIterator.Parent> +\ \ + +@@IJclDoubleTreeIterator.SetChild@Integer@Double +<copy IJclTreeIterator.SetChild@Integer@TObject> +\ \ +@@IJclExtendedTreeIterator +<copy IJclTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclExtendedTreeIterator +<copy !!MEMBEROVERVIEW_IJclTreeIterator> +\ \ + +@@IJclExtendedTreeIterator.Children +<copy IJclTreeIterator.Children> +\ \ + +@@IJclExtendedTreeIterator.AddChild@Extended +<copy IJclTreeIterator.AddChild@TObject> +\ \ + +@@IJclExtendedTreeIterator.ChildrenCount +<copy IJclTreeIterator.ChildrenCount> +\ \ + +@@IJclExtendedTreeIterator.DeleteChild@Integer +<copy IJclTreeIterator.DeleteChild@Integer> +\ \ + +@@IJclExtendedTreeIterator.DeleteChildren +<copy IJclTreeIterator.DeleteChildren> +\ \ + +@@IJclExtendedTreeIterator.ExtractChild@Integer +<copy IJclTreeIterator.ExtractChild@Integer> +\ \ + +@@IJclExtendedTreeIterator.ExtractChildren +<copy IJclTreeIterator.ExtractChildren> +\ \ + +@@IJclExtendedTreeIterator.GetChild@Integer +<copy IJclTreeIterator.GetChild@Integer> +\ \ + +@@IJclExtendedTreeIterator.HasChild@Integer +<copy IJclTreeIterator.HasChild@Integer> +\ \ + +@@IJclExtendedTreeIterator.HasParent +<copy IJclTreeIterator.HasParent> +\ \ + +@@IJclExtendedTreeIterator.IndexOfChild@Extended +<copy IJclTreeIterator.IndexOfChild@TObject> +\ \ + +@@IJclExtendedTreeIterator.InsertChild@Integer@Extended +<copy IJclTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@IJclExtendedTreeIterator.Parent +<copy IJclTreeIterator.Parent> +\ \ + +@@IJclExtendedTreeIterator.SetChild@Integer@Extended +<copy IJclTreeIterator.SetChild@Integer@TObject> +\ \ +@@IJclIntegerTreeIterator +<copy IJclTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntegerTreeIterator +<copy !!MEMBEROVERVIEW_IJclTreeIterator> +\ \ + +@@IJclIntegerTreeIterator.Children +<copy IJclTreeIterator.Children> +\ \ + +@@IJclIntegerTreeIterator.AddChild@Integer +<copy IJclTreeIterator.AddChild@TObject> +\ \ + +@@IJclIntegerTreeIterator.ChildrenCount +<copy IJclTreeIterator.ChildrenCount> +\ \ + +@@IJclIntegerTreeIterator.DeleteChild@Integer +<copy IJclTreeIterator.DeleteChild@Integer> +\ \ + +@@IJclIntegerTreeIterator.DeleteChildren +<copy IJclTreeIterator.DeleteChildren> +\ \ + +@@IJclIntegerTreeIterator.ExtractChild@Integer +<copy IJclTreeIterator.ExtractChild@Integer> +\ \ + +@@IJclIntegerTreeIterator.ExtractChildren +<copy IJclTreeIterator.ExtractChildren> +\ \ + +@@IJclIntegerTreeIterator.GetChild@Integer +<copy IJclTreeIterator.GetChild@Integer> +\ \ + +@@IJclIntegerTreeIterator.HasChild@Integer +<copy IJclTreeIterator.HasChild@Integer> +\ \ + +@@IJclIntegerTreeIterator.HasParent +<copy IJclTreeIterator.HasParent> +\ \ + +@@IJclIntegerTreeIterator.IndexOfChild@Integer +<copy IJclTreeIterator.IndexOfChild@TObject> +\ \ + +@@IJclIntegerTreeIterator.InsertChild@Integer@Integer +<copy IJclTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@IJclIntegerTreeIterator.Parent +<copy IJclTreeIterator.Parent> +\ \ + +@@IJclIntegerTreeIterator.SetChild@Integer@Integer +<copy IJclTreeIterator.SetChild@Integer@TObject> +\ \ +@@IJclCardinalTreeIterator +<copy IJclTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclCardinalTreeIterator +<copy !!MEMBEROVERVIEW_IJclTreeIterator> +\ \ + +@@IJclCardinalTreeIterator.Children +<copy IJclTreeIterator.Children> +\ \ + +@@IJclCardinalTreeIterator.AddChild@Cardinal +<copy IJclTreeIterator.AddChild@TObject> +\ \ + +@@IJclCardinalTreeIterator.ChildrenCount +<copy IJclTreeIterator.ChildrenCount> +\ \ + +@@IJclCardinalTreeIterator.DeleteChild@Integer +<copy IJclTreeIterator.DeleteChild@Integer> +\ \ + +@@IJclCardinalTreeIterator.DeleteChildren +<copy IJclTreeIterator.DeleteChildren> +\ \ + +@@IJclCardinalTreeIterator.ExtractChild@Integer +<copy IJclTreeIterator.ExtractChild@Integer> +\ \ + +@@IJclCardinalTreeIterator.ExtractChildren +<copy IJclTreeIterator.ExtractChildren> +\ \ + +@@IJclCardinalTreeIterator.GetChild@Integer +<copy IJclTreeIterator.GetChild@Integer> +\ \ + +@@IJclCardinalTreeIterator.HasChild@Integer +<copy IJclTreeIterator.HasChild@Integer> +\ \ + +@@IJclCardinalTreeIterator.HasParent +<copy IJclTreeIterator.HasParent> +\ \ + +@@IJclCardinalTreeIterator.IndexOfChild@Cardinal +<copy IJclTreeIterator.IndexOfChild@TObject> +\ \ + +@@IJclCardinalTreeIterator.InsertChild@Integer@Cardinal +<copy IJclTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@IJclCardinalTreeIterator.Parent +<copy IJclTreeIterator.Parent> +\ \ + +@@IJclCardinalTreeIterator.SetChild@Integer@Cardinal +<copy IJclTreeIterator.SetChild@Integer@TObject> +\ \ +@@IJclInt64TreeIterator +<copy IJclTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclInt64TreeIterator +<copy !!MEMBEROVERVIEW_IJclTreeIterator> +\ \ + +@@IJclInt64TreeIterator.Children +<copy IJclTreeIterator.Children> +\ \ + +@@IJclInt64TreeIterator.AddChild@Int64 +<copy IJclTreeIterator.AddChild@TObject> +\ \ + +@@IJclInt64TreeIterator.ChildrenCount +<copy IJclTreeIterator.ChildrenCount> +\ \ + +@@IJclInt64TreeIterator.DeleteChild@Integer +<copy IJclTreeIterator.DeleteChild@Integer> +\ \ + +@@IJclInt64TreeIterator.DeleteChildren +<copy IJclTreeIterator.DeleteChildren> +\ \ + +@@IJclInt64TreeIterator.ExtractChild@Integer +<copy IJclTreeIterator.ExtractChild@Integer> +\ \ + +@@IJclInt64TreeIterator.ExtractChildren +<copy IJclTreeIterator.ExtractChildren> +\ \ + +@@IJclInt64TreeIterator.GetChild@Integer +<copy IJclTreeIterator.GetChild@Integer> +\ \ + +@@IJclInt64TreeIterator.HasChild@Integer +<copy IJclTreeIterator.HasChild@Integer> +\ \ + +@@IJclInt64TreeIterator.HasParent +<copy IJclTreeIterator.HasParent> +\ \ + +@@IJclInt64TreeIterator.IndexOfChild@Int64 +<copy IJclTreeIterator.IndexOfChild@TObject> +\ \ + +@@IJclInt64TreeIterator.InsertChild@Integer@Int64 +<copy IJclTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@IJclInt64TreeIterator.Parent +<copy IJclTreeIterator.Parent> +\ \ + +@@IJclInt64TreeIterator.SetChild@Integer@Int64 +<copy IJclTreeIterator.SetChild@Integer@TObject> +\ \ +@@IJclPtrTreeIterator +<copy IJclTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclPtrTreeIterator +<copy !!MEMBEROVERVIEW_IJclTreeIterator> +\ \ + +@@IJclPtrTreeIterator.Children +<copy IJclTreeIterator.Children> +\ \ + +@@IJclPtrTreeIterator.AddChild@Pointer +<copy IJclTreeIterator.AddChild@TObject> +\ \ + +@@IJclPtrTreeIterator.ChildrenCount +<copy IJclTreeIterator.ChildrenCount> +\ \ + +@@IJclPtrTreeIterator.DeleteChild@Integer +<copy IJclTreeIterator.DeleteChild@Integer> +\ \ + +@@IJclPtrTreeIterator.DeleteChildren +<copy IJclTreeIterator.DeleteChildren> +\ \ + +@@IJclPtrTreeIterator.ExtractChild@Integer +<copy IJclTreeIterator.ExtractChild@Integer> +\ \ + +@@IJclPtrTreeIterator.ExtractChildren +<copy IJclTreeIterator.ExtractChildren> +\ \ + +@@IJclPtrTreeIterator.GetChild@Integer +<copy IJclTreeIterator.GetChild@Integer> +\ \ + +@@IJclPtrTreeIterator.HasChild@Integer +<copy IJclTreeIterator.HasChild@Integer> +\ \ + +@@IJclPtrTreeIterator.HasParent +<copy IJclTreeIterator.HasParent> +\ \ + +@@IJclPtrTreeIterator.IndexOfChild@Pointer +<copy IJclTreeIterator.IndexOfChild@TObject> +\ \ + +@@IJclPtrTreeIterator.InsertChild@Integer@Pointer +<copy IJclTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@IJclPtrTreeIterator.Parent +<copy IJclTreeIterator.Parent> +\ \ + +@@IJclPtrTreeIterator.SetChild@Integer@Pointer +<copy IJclTreeIterator.SetChild@Integer@TObject> +\ \ + + +@@IJclIntfBinaryTreeIterator +<copy IJclBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfBinaryTreeIterator +<copy !!MEMBEROVERVIEW_IJclBinaryTreeIterator> +\ \ + +@@IJclIntfBinaryTreeIterator.HasLeft +<copy IJclBinaryTreeIterator.HasLeft> +\ \ + +@@IJclIntfBinaryTreeIterator.HasRight +<copy IJclBinaryTreeIterator.HasRight> +\ \ + +@@IJclIntfBinaryTreeIterator.Left +<copy IJclBinaryTreeIterator.Left> +\ \ + +@@IJclIntfBinaryTreeIterator.Right +<copy IJclBinaryTreeIterator.Right> +\ \ +@@IJclAnsiStrBinaryTreeIterator +<copy IJclBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclAnsiStrBinaryTreeIterator +<copy !!MEMBEROVERVIEW_IJclBinaryTreeIterator> +\ \ + +@@IJclAnsiStrBinaryTreeIterator.HasLeft +<copy IJclBinaryTreeIterator.HasLeft> +\ \ + +@@IJclAnsiStrBinaryTreeIterator.HasRight +<copy IJclBinaryTreeIterator.HasRight> +\ \ + +@@IJclAnsiStrBinaryTreeIterator.Left +<copy IJclBinaryTreeIterator.Left> +\ \ + +@@IJclAnsiStrBinaryTreeIterator.Right +<copy IJclBinaryTreeIterator.Right> +\ \ +@@IJclWideStrBinaryTreeIterator +<copy IJclBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclWideStrBinaryTreeIterator +<copy !!MEMBEROVERVIEW_IJclBinaryTreeIterator> +\ \ + +@@IJclWideStrBinaryTreeIterator.HasLeft +<copy IJclBinaryTreeIterator.HasLeft> +\ \ + +@@IJclWideStrBinaryTreeIterator.HasRight +<copy IJclBinaryTreeIterator.HasRight> +\ \ + +@@IJclWideStrBinaryTreeIterator.Left +<copy IJclBinaryTreeIterator.Left> +\ \ + +@@IJclWideStrBinaryTreeIterator.Right +<copy IJclBinaryTreeIterator.Right> +\ \ +@@IJclUnicodeStrBinaryTreeIterator +<copy IJclBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclUnicodeStrBinaryTreeIterator +<copy !!MEMBEROVERVIEW_IJclBinaryTreeIterator> +\ \ + +@@IJclUnicodeStrBinaryTreeIterator.HasLeft +<copy IJclBinaryTreeIterator.HasLeft> +\ \ + +@@IJclUnicodeStrBinaryTreeIterator.HasRight +<copy IJclBinaryTreeIterator.HasRight> +\ \ + +@@IJclUnicodeStrBinaryTreeIterator.Left +<copy IJclBinaryTreeIterator.Left> +\ \ + +@@IJclUnicodeStrBinaryTreeIterator.Right +<copy IJclBinaryTreeIterator.Right> +\ \ +@@IJclSingleBinaryTreeIterator +<copy IJclBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclSingleBinaryTreeIterator +<copy !!MEMBEROVERVIEW_IJclBinaryTreeIterator> +\ \ + +@@IJclSingleBinaryTreeIterator.HasLeft +<copy IJclBinaryTreeIterator.HasLeft> +\ \ + +@@IJclSingleBinaryTreeIterator.HasRight +<copy IJclBinaryTreeIterator.HasRight> +\ \ + +@@IJclSingleBinaryTreeIterator.Left +<copy IJclBinaryTreeIterator.Left> +\ \ + +@@IJclSingleBinaryTreeIterator.Right +<copy IJclBinaryTreeIterator.Right> +\ \ +@@IJclDoubleBinaryTreeIterator +<copy IJclBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclDoubleBinaryTreeIterator +<copy !!MEMBEROVERVIEW_IJclBinaryTreeIterator> +\ \ + +@@IJclDoubleBinaryTreeIterator.HasLeft +<copy IJclBinaryTreeIterator.HasLeft> +\ \ + +@@IJclDoubleBinaryTreeIterator.HasRight +<copy IJclBinaryTreeIterator.HasRight> +\ \ + +@@IJclDoubleBinaryTreeIterator.Left +<copy IJclBinaryTreeIterator.Left> +\ \ + +@@IJclDoubleBinaryTreeIterator.Right +<copy IJclBinaryTreeIterator.Right> +\ \ +@@IJclExtendedBinaryTreeIterator +<copy IJclBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclExtendedBinaryTreeIterator +<copy !!MEMBEROVERVIEW_IJclBinaryTreeIterator> +\ \ + +@@IJclExtendedBinaryTreeIterator.HasLeft +<copy IJclBinaryTreeIterator.HasLeft> +\ \ + +@@IJclExtendedBinaryTreeIterator.HasRight +<copy IJclBinaryTreeIterator.HasRight> +\ \ + +@@IJclExtendedBinaryTreeIterator.Left +<copy IJclBinaryTreeIterator.Left> +\ \ + +@@IJclExtendedBinaryTreeIterator.Right +<copy IJclBinaryTreeIterator.Right> +\ \ +@@IJclIntegerBinaryTreeIterator +<copy IJclBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntegerBinaryTreeIterator +<copy !!MEMBEROVERVIEW_IJclBinaryTreeIterator> +\ \ + +@@IJclIntegerBinaryTreeIterator.HasLeft +<copy IJclBinaryTreeIterator.HasLeft> +\ \ + +@@IJclIntegerBinaryTreeIterator.HasRight +<copy IJclBinaryTreeIterator.HasRight> +\ \ + +@@IJclIntegerBinaryTreeIterator.Left +<copy IJclBinaryTreeIterator.Left> +\ \ + +@@IJclIntegerBinaryTreeIterator.Right +<copy IJclBinaryTreeIterator.Right> +\ \ +@@IJclCardinalBinaryTreeIterator +<copy IJclBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclCardinalBinaryTreeIterator +<copy !!MEMBEROVERVIEW_IJclBinaryTreeIterator> +\ \ + +@@IJclCardinalBinaryTreeIterator.HasLeft +<copy IJclBinaryTreeIterator.HasLeft> +\ \ + +@@IJclCardinalBinaryTreeIterator.HasRight +<copy IJclBinaryTreeIterator.HasRight> +\ \ + +@@IJclCardinalBinaryTreeIterator.Left +<copy IJclBinaryTreeIterator.Left> +\ \ + +@@IJclCardinalBinaryTreeIterator.Right +<copy IJclBinaryTreeIterator.Right> +\ \ +@@IJclInt64BinaryTreeIterator +<copy IJclBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclInt64BinaryTreeIterator +<copy !!MEMBEROVERVIEW_IJclBinaryTreeIterator> +\ \ + +@@IJclInt64BinaryTreeIterator.HasLeft +<copy IJclBinaryTreeIterator.HasLeft> +\ \ + +@@IJclInt64BinaryTreeIterator.HasRight +<copy IJclBinaryTreeIterator.HasRight> +\ \ + +@@IJclInt64BinaryTreeIterator.Left +<copy IJclBinaryTreeIterator.Left> +\ \ + +@@IJclInt64BinaryTreeIterator.Right +<copy IJclBinaryTreeIterator.Right> +\ \ +@@IJclPtrBinaryTreeIterator +<copy IJclBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_IJclPtrBinaryTreeIterator +<copy !!MEMBEROVERVIEW_IJclBinaryTreeIterator> +\ \ + +@@IJclPtrBinaryTreeIterator.HasLeft +<copy IJclBinaryTreeIterator.HasLeft> +\ \ + +@@IJclPtrBinaryTreeIterator.HasRight +<copy IJclBinaryTreeIterator.HasRight> +\ \ + +@@IJclPtrBinaryTreeIterator.Left +<copy IJclBinaryTreeIterator.Left> +\ \ + +@@IJclPtrBinaryTreeIterator.Right +<copy IJclBinaryTreeIterator.Right> +\ \ + + +@@IJclIntfCollection +<copy IJclCollection> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfCollection +<copy !!MEMBEROVERVIEW_IJclCollection> +\ \ + +@@IJclIntfCollection.Add@IInterface +<copy IJclCollection.Add@TObject> +\ \ + +@@IJclIntfCollection.AddAll@IJclIntfCollection +<copy IJclCollection.AddAll@IJclCollection> +\ \ + +@@IJclIntfCollection.Clear +<copy IJclCollection.Clear> +\ \ + +@@IJclIntfCollection.CollectionEquals@IJclIntfCollection +<copy IJclCollection.CollectionEquals@IJclCollection> +\ \ + +@@IJclIntfCollection.Contains@IInterface +<copy IJclCollection.Contains@TObject> +\ \ + +@@IJclIntfCollection.ContainsAll@IJclIntfCollection +<copy IJclCollection.ContainsAll@IJclCollection> +\ \ + +@@IJclIntfCollection.Extract@IInterface +<copy IJclCollection.Extract@TObject> +\ \ + +@@IJclIntfCollection.ExtractAll@IJclIntfCollection +<copy IJclCollection.ExtractAll@IJclCollection> +\ \ + +@@IJclIntfCollection.First +<copy IJclCollection.First> +\ \ + +@@IJclIntfCollection.GetEnumerator +<copy IJclCollection.GetEnumerator> +\ \ + +@@IJclIntfCollection.IsEmpty +<copy IJclCollection.IsEmpty> +\ \ + +@@IJclIntfCollection.Last +<copy IJclCollection.Last> +\ \ + +@@IJclIntfCollection.Remove@IInterface +<copy IJclCollection.Remove@TObject> +\ \ + +@@IJclIntfCollection.RemoveAll@IJclIntfCollection +<copy IJclCollection.RemoveAll@IJclCollection> +\ \ + +@@IJclIntfCollection.RetainAll@IJclIntfCollection +<copy IJclCollection.RetainAll@IJclCollection> +\ \ + +@@IJclIntfCollection.Size +<copy IJclCollection.Size> +\ \ +@@IJclAnsiStrCollection +<copy IJclCollection> +\ \ + +@@!!MEMBEROVERVIEW_IJclAnsiStrCollection +<copy !!MEMBEROVERVIEW_IJclCollection> +\ \ + +@@IJclAnsiStrCollection.Add@AnsiString +<copy IJclCollection.Add@TObject> +\ \ + +@@IJclAnsiStrCollection.AddAll@IJclAnsiStrCollection +<copy IJclCollection.AddAll@IJclCollection> +\ \ + +@@IJclAnsiStrCollection.Clear +<copy IJclCollection.Clear> +\ \ + +@@IJclAnsiStrCollection.CollectionEquals@IJclAnsiStrCollection +<copy IJclCollection.CollectionEquals@IJclCollection> +\ \ + +@@IJclAnsiStrCollection.Contains@AnsiString +<copy IJclCollection.Contains@TObject> +\ \ + +@@IJclAnsiStrCollection.ContainsAll@IJclAnsiStrCollection +<copy IJclCollection.ContainsAll@IJclCollection> +\ \ + +@@IJclAnsiStrCollection.Extract@AnsiString +<copy IJclCollection.Extract@TObject> +\ \ + +@@IJclAnsiStrCollection.ExtractAll@IJclAnsiStrCollection +<copy IJclCollection.ExtractAll@IJclCollection> +\ \ + +@@IJclAnsiStrCollection.First +<copy IJclCollection.First> +\ \ + +@@IJclAnsiStrCollection.GetEnumerator +<copy IJclCollection.GetEnumerator> +\ \ + +@@IJclAnsiStrCollection.IsEmpty +<copy IJclCollection.IsEmpty> +\ \ + +@@IJclAnsiStrCollection.Last +<copy IJclCollection.Last> +\ \ + +@@IJclAnsiStrCollection.Remove@AnsiString +<copy IJclCollection.Remove@TObject> +\ \ + +@@IJclAnsiStrCollection.RemoveAll@IJclAnsiStrCollection +<copy IJclCollection.RemoveAll@IJclCollection> +\ \ + +@@IJclAnsiStrCollection.RetainAll@IJclAnsiStrCollection +<copy IJclCollection.RetainAll@IJclCollection> +\ \ + +@@IJclAnsiStrCollection.Size +<copy IJclCollection.Size> +\ \ +@@IJclWideStrCollection +<copy IJclCollection> +\ \ + +@@!!MEMBEROVERVIEW_IJclWideStrCollection +<copy !!MEMBEROVERVIEW_IJclCollection> +\ \ + +@@IJclWideStrCollection.Add@WideString +<copy IJclCollection.Add@TObject> +\ \ + +@@IJclWideStrCollection.AddAll@IJclWideStrCollection +<copy IJclCollection.AddAll@IJclCollection> +\ \ + +@@IJclWideStrCollection.Clear +<copy IJclCollection.Clear> +\ \ + +@@IJclWideStrCollection.CollectionEquals@IJclWideStrCollection +<copy IJclCollection.CollectionEquals@IJclCollection> +\ \ + +@@IJclWideStrCollection.Contains@WideString +<copy IJclCollection.Contains@TObject> +\ \ + +@@IJclWideStrCollection.ContainsAll@IJclWideStrCollection +<copy IJclCollection.ContainsAll@IJclCollection> +\ \ + +@@IJclWideStrCollection.Extract@WideString +<copy IJclCollection.Extract@TObject> +\ \ + +@@IJclWideStrCollection.ExtractAll@IJclWideStrCollection +<copy IJclCollection.ExtractAll@IJclCollection> +\ \ + +@@IJclWideStrCollection.First +<copy IJclCollection.First> +\ \ + +@@IJclWideStrCollection.GetEnumerator +<copy IJclCollection.GetEnumerator> +\ \ + +@@IJclWideStrCollection.IsEmpty +<copy IJclCollection.IsEmpty> +\ \ + +@@IJclWideStrCollection.Last +<copy IJclCollection.Last> +\ \ + +@@IJclWideStrCollection.Remove@WideString +<copy IJclCollection.Remove@TObject> +\ \ + +@@IJclWideStrCollection.RemoveAll@IJclWideStrCollection +<copy IJclCollection.RemoveAll@IJclCollection> +\ \ + +@@IJclWideStrCollection.RetainAll@IJclWideStrCollection +<copy IJclCollection.RetainAll@IJclCollection> +\ \ + +@@IJclWideStrCollection.Size +<copy IJclCollection.Size> +\ \ +@@IJclUnicodeStrCollection +<copy IJclCollection> +\ \ + +@@!!MEMBEROVERVIEW_IJclUnicodeStrCollection +<copy !!MEMBEROVERVIEW_IJclCollection> +\ \ + +@@IJclUnicodeStrCollection.Add@UnicodeString +<copy IJclCollection.Add@TObject> +\ \ + +@@IJclUnicodeStrCollection.AddAll@IJclUnicodeStrCollection +<copy IJclCollection.AddAll@IJclCollection> +\ \ + +@@IJclUnicodeStrCollection.Clear +<copy IJclCollection.Clear> +\ \ + +@@IJclUnicodeStrCollection.CollectionEquals@IJclUnicodeStrCollection +<copy IJclCollection.CollectionEquals@IJclCollection> +\ \ + +@@IJclUnicodeStrCollection.Contains@UnicodeString +<copy IJclCollection.Contains@TObject> +\ \ + +@@IJclUnicodeStrCollection.ContainsAll@IJclUnicodeStrCollection +<copy IJclCollection.ContainsAll@IJclCollection> +\ \ + +@@IJclUnicodeStrCollection.Extract@UnicodeString +<copy IJclCollection.Extract@TObject> +\ \ + +@@IJclUnicodeStrCollection.ExtractAll@IJclUnicodeStrCollection +<copy IJclCollection.ExtractAll@IJclCollection> +\ \ + +@@IJclUnicodeStrCollection.First +<copy IJclCollection.First> +\ \ + +@@IJclUnicodeStrCollection.GetEnumerator +<copy IJclCollection.GetEnumerator> +\ \ + +@@IJclUnicodeStrCollection.IsEmpty +<copy IJclCollection.IsEmpty> +\ \ + +@@IJclUnicodeStrCollection.Last +<copy IJclCollection.Last> +\ \ + +@@IJclUnicodeStrCollection.Remove@UnicodeString +<copy IJclCollection.Remove@TObject> +\ \ + +@@IJclUnicodeStrCollection.RemoveAll@IJclUnicodeStrCollection +<copy IJclCollection.RemoveAll@IJclCollection> +\ \ + +@@IJclUnicodeStrCollection.RetainAll@IJclUnicodeStrCollection +<copy IJclCollection.RetainAll@IJclCollection> +\ \ + +@@IJclUnicodeStrCollection.Size +<copy IJclCollection.Size> +\ \ +@@IJclSingleCollection +<copy IJclCollection> +\ \ + +@@!!MEMBEROVERVIEW_IJclSingleCollection +<copy !!MEMBEROVERVIEW_IJclCollection> +\ \ + +@@IJclSingleCollection.Add@Single +<copy IJclCollection.Add@TObject> +\ \ + +@@IJclSingleCollection.AddAll@IJclSingleCollection +<copy IJclCollection.AddAll@IJclCollection> +\ \ + +@@IJclSingleCollection.Clear +<copy IJclCollection.Clear> +\ \ + +@@IJclSingleCollection.CollectionEquals@IJclSingleCollection +<copy IJclCollection.CollectionEquals@IJclCollection> +\ \ + +@@IJclSingleCollection.Contains@Single +<copy IJclCollection.Contains@TObject> +\ \ + +@@IJclSingleCollection.ContainsAll@IJclSingleCollection +<copy IJclCollection.ContainsAll@IJclCollection> +\ \ + +@@IJclSingleCollection.Extract@Single +<copy IJclCollection.Extract@TObject> +\ \ + +@@IJclSingleCollection.ExtractAll@IJclSingleCollection +<copy IJclCollection.ExtractAll@IJclCollection> +\ \ + +@@IJclSingleCollection.First +<copy IJclCollection.First> +\ \ + +@@IJclSingleCollection.GetEnumerator +<copy IJclCollection.GetEnumerator> +\ \ + +@@IJclSingleCollection.IsEmpty +<copy IJclCollection.IsEmpty> +\ \ + +@@IJclSingleCollection.Last +<copy IJclCollection.Last> +\ \ + +@@IJclSingleCollection.Remove@Single +<copy IJclCollection.Remove@TObject> +\ \ + +@@IJclSingleCollection.RemoveAll@IJclSingleCollection +<copy IJclCollection.RemoveAll@IJclCollection> +\ \ + +@@IJclSingleCollection.RetainAll@IJclSingleCollection +<copy IJclCollection.RetainAll@IJclCollection> +\ \ + +@@IJclSingleCollection.Size +<copy IJclCollection.Size> +\ \ +@@IJclDoubleCollection +<copy IJclCollection> +\ \ + +@@!!MEMBEROVERVIEW_IJclDoubleCollection +<copy !!MEMBEROVERVIEW_IJclCollection> +\ \ + +@@IJclDoubleCollection.Add@Double +<copy IJclCollection.Add@TObject> +\ \ + +@@IJclDoubleCollection.AddAll@IJclDoubleCollection +<copy IJclCollection.AddAll@IJclCollection> +\ \ + +@@IJclDoubleCollection.Clear +<copy IJclCollection.Clear> +\ \ + +@@IJclDoubleCollection.CollectionEquals@IJclDoubleCollection +<copy IJclCollection.CollectionEquals@IJclCollection> +\ \ + +@@IJclDoubleCollection.Contains@Double +<copy IJclCollection.Contains@TObject> +\ \ + +@@IJclDoubleCollection.ContainsAll@IJclDoubleCollection +<copy IJclCollection.ContainsAll@IJclCollection> +\ \ + +@@IJclDoubleCollection.Extract@Double +<copy IJclCollection.Extract@TObject> +\ \ + +@@IJclDoubleCollection.ExtractAll@IJclDoubleCollection +<copy IJclCollection.ExtractAll@IJclCollection> +\ \ + +@@IJclDoubleCollection.First +<copy IJclCollection.First> +\ \ + +@@IJclDoubleCollection.GetEnumerator +<copy IJclCollection.GetEnumerator> +\ \ + +@@IJclDoubleCollection.IsEmpty +<copy IJclCollection.IsEmpty> +\ \ + +@@IJclDoubleCollection.Last +<copy IJclCollection.Last> +\ \ + +@@IJclDoubleCollection.Remove@Double +<copy IJclCollection.Remove@TObject> +\ \ + +@@IJclDoubleCollection.RemoveAll@IJclDoubleCollection +<copy IJclCollection.RemoveAll@IJclCollection> +\ \ + +@@IJclDoubleCollection.RetainAll@IJclDoubleCollection +<copy IJclCollection.RetainAll@IJclCollection> +\ \ + +@@IJclDoubleCollection.Size +<copy IJclCollection.Size> +\ \ +@@IJclExtendedCollection +<copy IJclCollection> +\ \ + +@@!!MEMBEROVERVIEW_IJclExtendedCollection +<copy !!MEMBEROVERVIEW_IJclCollection> +\ \ + +@@IJclExtendedCollection.Add@Extended +<copy IJclCollection.Add@TObject> +\ \ + +@@IJclExtendedCollection.AddAll@IJclExtendedCollection +<copy IJclCollection.AddAll@IJclCollection> +\ \ + +@@IJclExtendedCollection.Clear +<copy IJclCollection.Clear> +\ \ + +@@IJclExtendedCollection.CollectionEquals@IJclExtendedCollection +<copy IJclCollection.CollectionEquals@IJclCollection> +\ \ + +@@IJclExtendedCollection.Contains@Extended +<copy IJclCollection.Contains@TObject> +\ \ + +@@IJclExtendedCollection.ContainsAll@IJclExtendedCollection +<copy IJclCollection.ContainsAll@IJclCollection> +\ \ + +@@IJclExtendedCollection.Extract@Extended +<copy IJclCollection.Extract@TObject> +\ \ + +@@IJclExtendedCollection.ExtractAll@IJclExtendedCollection +<copy IJclCollection.ExtractAll@IJclCollection> +\ \ + +@@IJclExtendedCollection.First +<copy IJclCollection.First> +\ \ + +@@IJclExtendedCollection.GetEnumerator +<copy IJclCollection.GetEnumerator> +\ \ + +@@IJclExtendedCollection.IsEmpty +<copy IJclCollection.IsEmpty> +\ \ + +@@IJclExtendedCollection.Last +<copy IJclCollection.Last> +\ \ + +@@IJclExtendedCollection.Remove@Extended +<copy IJclCollection.Remove@TObject> +\ \ + +@@IJclExtendedCollection.RemoveAll@IJclExtendedCollection +<copy IJclCollection.RemoveAll@IJclCollection> +\ \ + +@@IJclExtendedCollection.RetainAll@IJclExtendedCollection +<copy IJclCollection.RetainAll@IJclCollection> +\ \ + +@@IJclExtendedCollection.Size +<copy IJclCollection.Size> +\ \ +@@IJclIntegerCollection +<copy IJclCollection> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntegerCollection +<copy !!MEMBEROVERVIEW_IJclCollection> +\ \ + +@@IJclIntegerCollection.Add@Integer +<copy IJclCollection.Add@TObject> +\ \ + +@@IJclIntegerCollection.AddAll@IJclIntegerCollection +<copy IJclCollection.AddAll@IJclCollection> +\ \ + +@@IJclIntegerCollection.Clear +<copy IJclCollection.Clear> +\ \ + +@@IJclIntegerCollection.CollectionEquals@IJclIntegerCollection +<copy IJclCollection.CollectionEquals@IJclCollection> +\ \ + +@@IJclIntegerCollection.Contains@Integer +<copy IJclCollection.Contains@TObject> +\ \ + +@@IJclIntegerCollection.ContainsAll@IJclIntegerCollection +<copy IJclCollection.ContainsAll@IJclCollection> +\ \ + +@@IJclIntegerCollection.Extract@Integer +<copy IJclCollection.Extract@TObject> +\ \ + +@@IJclIntegerCollection.ExtractAll@IJclIntegerCollection +<copy IJclCollection.ExtractAll@IJclCollection> +\ \ + +@@IJclIntegerCollection.First +<copy IJclCollection.First> +\ \ + +@@IJclIntegerCollection.GetEnumerator +<copy IJclCollection.GetEnumerator> +\ \ + +@@IJclIntegerCollection.IsEmpty +<copy IJclCollection.IsEmpty> +\ \ + +@@IJclIntegerCollection.Last +<copy IJclCollection.Last> +\ \ + +@@IJclIntegerCollection.Remove@Integer +<copy IJclCollection.Remove@TObject> +\ \ + +@@IJclIntegerCollection.RemoveAll@IJclIntegerCollection +<copy IJclCollection.RemoveAll@IJclCollection> +\ \ + +@@IJclIntegerCollection.RetainAll@IJclIntegerCollection +<copy IJclCollection.RetainAll@IJclCollection> +\ \ + +@@IJclIntegerCollection.Size +<copy IJclCollection.Size> +\ \ +@@IJclCardinalCollection +<copy IJclCollection> +\ \ + +@@!!MEMBEROVERVIEW_IJclCardinalCollection +<copy !!MEMBEROVERVIEW_IJclCollection> +\ \ + +@@IJclCardinalCollection.Add@Cardinal +<copy IJclCollection.Add@TObject> +\ \ + +@@IJclCardinalCollection.AddAll@IJclCardinalCollection +<copy IJclCollection.AddAll@IJclCollection> +\ \ + +@@IJclCardinalCollection.Clear +<copy IJclCollection.Clear> +\ \ + +@@IJclCardinalCollection.CollectionEquals@IJclCardinalCollection +<copy IJclCollection.CollectionEquals@IJclCollection> +\ \ + +@@IJclCardinalCollection.Contains@Cardinal +<copy IJclCollection.Contains@TObject> +\ \ + +@@IJclCardinalCollection.ContainsAll@IJclCardinalCollection +<copy IJclCollection.ContainsAll@IJclCollection> +\ \ + +@@IJclCardinalCollection.Extract@Cardinal +<copy IJclCollection.Extract@TObject> +\ \ + +@@IJclCardinalCollection.ExtractAll@IJclCardinalCollection +<copy IJclCollection.ExtractAll@IJclCollection> +\ \ + +@@IJclCardinalCollection.First +<copy IJclCollection.First> +\ \ + +@@IJclCardinalCollection.GetEnumerator +<copy IJclCollection.GetEnumerator> +\ \ + +@@IJclCardinalCollection.IsEmpty +<copy IJclCollection.IsEmpty> +\ \ + +@@IJclCardinalCollection.Last +<copy IJclCollection.Last> +\ \ + +@@IJclCardinalCollection.Remove@Cardinal +<copy IJclCollection.Remove@TObject> +\ \ + +@@IJclCardinalCollection.RemoveAll@IJclCardinalCollection +<copy IJclCollection.RemoveAll@IJclCollection> +\ \ + +@@IJclCardinalCollection.RetainAll@IJclCardinalCollection +<copy IJclCollection.RetainAll@IJclCollection> +\ \ + +@@IJclCardinalCollection.Size +<copy IJclCollection.Size> +\ \ +@@IJclInt64Collection +<copy IJclCollection> +\ \ + +@@!!MEMBEROVERVIEW_IJclInt64Collection +<copy !!MEMBEROVERVIEW_IJclCollection> +\ \ + +@@IJclInt64Collection.Add@Int64 +<copy IJclCollection.Add@TObject> +\ \ + +@@IJclInt64Collection.AddAll@IJclInt64Collection +<copy IJclCollection.AddAll@IJclCollection> +\ \ + +@@IJclInt64Collection.Clear +<copy IJclCollection.Clear> +\ \ + +@@IJclInt64Collection.CollectionEquals@IJclInt64Collection +<copy IJclCollection.CollectionEquals@IJclCollection> +\ \ + +@@IJclInt64Collection.Contains@Int64 +<copy IJclCollection.Contains@TObject> +\ \ + +@@IJclInt64Collection.ContainsAll@IJclInt64Collection +<copy IJclCollection.ContainsAll@IJclCollection> +\ \ + +@@IJclInt64Collection.Extract@Int64 +<copy IJclCollection.Extract@TObject> +\ \ + +@@IJclInt64Collection.ExtractAll@IJclInt64Collection +<copy IJclCollection.ExtractAll@IJclCollection> +\ \ + +@@IJclInt64Collection.First +<copy IJclCollection.First> +\ \ + +@@IJclInt64Collection.GetEnumerator +<copy IJclCollection.GetEnumerator> +\ \ + +@@IJclInt64Collection.IsEmpty +<copy IJclCollection.IsEmpty> +\ \ + +@@IJclInt64Collection.Last +<copy IJclCollection.Last> +\ \ + +@@IJclInt64Collection.Remove@Int64 +<copy IJclCollection.Remove@TObject> +\ \ + +@@IJclInt64Collection.RemoveAll@IJclInt64Collection +<copy IJclCollection.RemoveAll@IJclCollection> +\ \ + +@@IJclInt64Collection.RetainAll@IJclInt64Collection +<copy IJclCollection.RetainAll@IJclCollection> +\ \ + +@@IJclInt64Collection.Size +<copy IJclCollection.Size> +\ \ +@@IJclPtrCollection +<copy IJclCollection> +\ \ + +@@!!MEMBEROVERVIEW_IJclPtrCollection +<copy !!MEMBEROVERVIEW_IJclCollection> +\ \ + +@@IJclPtrCollection.Add@Pointer +<copy IJclCollection.Add@TObject> +\ \ + +@@IJclPtrCollection.AddAll@IJclPtrCollection +<copy IJclCollection.AddAll@IJclCollection> +\ \ + +@@IJclPtrCollection.Clear +<copy IJclCollection.Clear> +\ \ + +@@IJclPtrCollection.CollectionEquals@IJclPtrCollection +<copy IJclCollection.CollectionEquals@IJclCollection> +\ \ + +@@IJclPtrCollection.Contains@Pointer +<copy IJclCollection.Contains@TObject> +\ \ + +@@IJclPtrCollection.ContainsAll@IJclPtrCollection +<copy IJclCollection.ContainsAll@IJclCollection> +\ \ + +@@IJclPtrCollection.Extract@Pointer +<copy IJclCollection.Extract@TObject> +\ \ + +@@IJclPtrCollection.ExtractAll@IJclPtrCollection +<copy IJclCollection.ExtractAll@IJclCollection> +\ \ + +@@IJclPtrCollection.First +<copy IJclCollection.First> +\ \ + +@@IJclPtrCollection.GetEnumerator +<copy IJclCollection.GetEnumerator> +\ \ + +@@IJclPtrCollection.IsEmpty +<copy IJclCollection.IsEmpty> +\ \ + +@@IJclPtrCollection.Last +<copy IJclCollection.Last> +\ \ + +@@IJclPtrCollection.Remove@Pointer +<copy IJclCollection.Remove@TObject> +\ \ + +@@IJclPtrCollection.RemoveAll@IJclPtrCollection +<copy IJclCollection.RemoveAll@IJclCollection> +\ \ + +@@IJclPtrCollection.RetainAll@IJclPtrCollection +<copy IJclCollection.RetainAll@IJclCollection> +\ \ + +@@IJclPtrCollection.Size +<copy IJclCollection.Size> +\ \ + + +@@IJclIntfList +<copy IJclList> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfList +<copy !!MEMBEROVERVIEW_IJclList> +\ \ + +@@IJclIntfList.Objects +<copy IJclList.Objects> +\ \ + +@@IJclIntfList.Delete@Integer +<copy IJclList.Delete@Integer> +\ \ + +@@IJclIntfList.ExtractIndex@Integer +<copy IJclList.ExtractIndex@Integer> +\ \ + +@@IJclIntfList.GetObject@Integer +<copy IJclList.GetObject@Integer> +\ \ + +@@IJclIntfList.IndexOf@IInterface +<copy IJclList.IndexOf@TObject> +\ \ + +@@IJclIntfList.Insert@Integer@IInterface +<copy IJclList.Insert@Integer@TObject> +\ \ + +@@IJclIntfList.InsertAll@Integer@IJclIntfCollection +<copy IJclList.InsertAll@Integer@IJclCollection> +\ \ + +@@IJclIntfList.LastIndexOf@IInterface +<copy IJclList.LastIndexOf@TObject> +\ \ + +@@IJclIntfList.SetObject@Integer@IInterface +<copy IJclList.SetObject@Integer@TObject> +\ \ + +@@IJclIntfList.SubList@Integer@Integer +<copy IJclList.SubList@Integer@Integer> +\ \ +@@IJclAnsiStrList +<copy IJclList> +\ \ + +@@!!MEMBEROVERVIEW_IJclAnsiStrList +<copy !!MEMBEROVERVIEW_IJclList> +\ \ + +@@IJclAnsiStrList.Strings +<copy IJclList.Objects> +\ \ + +@@IJclAnsiStrList.Delete@Integer +<copy IJclList.Delete@Integer> +\ \ + +@@IJclAnsiStrList.ExtractIndex@Integer +<copy IJclList.ExtractIndex@Integer> +\ \ + +@@IJclAnsiStrList.GetString@Integer +<copy IJclList.GetObject@Integer> +\ \ + +@@IJclAnsiStrList.IndexOf@AnsiString +<copy IJclList.IndexOf@TObject> +\ \ + +@@IJclAnsiStrList.Insert@Integer@AnsiString +<copy IJclList.Insert@Integer@TObject> +\ \ + +@@IJclAnsiStrList.InsertAll@Integer@IJclAnsiStrCollection +<copy IJclList.InsertAll@Integer@IJclCollection> +\ \ + +@@IJclAnsiStrList.LastIndexOf@AnsiString +<copy IJclList.LastIndexOf@TObject> +\ \ + +@@IJclAnsiStrList.SetString@Integer@AnsiString +<copy IJclList.SetObject@Integer@TObject> +\ \ + +@@IJclAnsiStrList.SubList@Integer@Integer +<copy IJclList.SubList@Integer@Integer> +\ \ +@@IJclWideStrList +<copy IJclList> +\ \ + +@@!!MEMBEROVERVIEW_IJclWideStrList +<copy !!MEMBEROVERVIEW_IJclList> +\ \ + +@@IJclWideStrList.Strings +<copy IJclList.Objects> +\ \ + +@@IJclWideStrList.Delete@Integer +<copy IJclList.Delete@Integer> +\ \ + +@@IJclWideStrList.ExtractIndex@Integer +<copy IJclList.ExtractIndex@Integer> +\ \ + +@@IJclWideStrList.GetString@Integer +<copy IJclList.GetObject@Integer> +\ \ + +@@IJclWideStrList.IndexOf@WideString +<copy IJclList.IndexOf@TObject> +\ \ + +@@IJclWideStrList.Insert@Integer@WideString +<copy IJclList.Insert@Integer@TObject> +\ \ + +@@IJclWideStrList.InsertAll@Integer@IJclWideStrCollection +<copy IJclList.InsertAll@Integer@IJclCollection> +\ \ + +@@IJclWideStrList.LastIndexOf@WideString +<copy IJclList.LastIndexOf@TObject> +\ \ + +@@IJclWideStrList.SetString@Integer@WideString +<copy IJclList.SetObject@Integer@TObject> +\ \ + +@@IJclWideStrList.SubList@Integer@Integer +<copy IJclList.SubList@Integer@Integer> +\ \ +@@IJclUnicodeStrList +<copy IJclList> +\ \ + +@@!!MEMBEROVERVIEW_IJclUnicodeStrList +<copy !!MEMBEROVERVIEW_IJclList> +\ \ + +@@IJclUnicodeStrList.Strings +<copy IJclList.Objects> +\ \ + +@@IJclUnicodeStrList.Delete@Integer +<copy IJclList.Delete@Integer> +\ \ + +@@IJclUnicodeStrList.ExtractIndex@Integer +<copy IJclList.ExtractIndex@Integer> +\ \ + +@@IJclUnicodeStrList.GetString@Integer +<copy IJclList.GetObject@Integer> +\ \ + +@@IJclUnicodeStrList.IndexOf@UnicodeString +<copy IJclList.IndexOf@TObject> +\ \ + +@@IJclUnicodeStrList.Insert@Integer@UnicodeString +<copy IJclList.Insert@Integer@TObject> +\ \ + +@@IJclUnicodeStrList.InsertAll@Integer@IJclUnicodeStrCollection +<copy IJclList.InsertAll@Integer@IJclCollection> +\ \ + +@@IJclUnicodeStrList.LastIndexOf@UnicodeString +<copy IJclList.LastIndexOf@TObject> +\ \ + +@@IJclUnicodeStrList.SetString@Integer@UnicodeString +<copy IJclList.SetObject@Integer@TObject> +\ \ + +@@IJclUnicodeStrList.SubList@Integer@Integer +<copy IJclList.SubList@Integer@Integer> +\ \ +@@IJclSingleList +<copy IJclList> +\ \ + +@@!!MEMBEROVERVIEW_IJclSingleList +<copy !!MEMBEROVERVIEW_IJclList> +\ \ + +@@IJclSingleList.Values +<copy IJclList.Objects> +\ \ + +@@IJclSingleList.Delete@Integer +<copy IJclList.Delete@Integer> +\ \ + +@@IJclSingleList.ExtractIndex@Integer +<copy IJclList.ExtractIndex@Integer> +\ \ + +@@IJclSingleList.GetValue@Integer +<copy IJclList.GetObject@Integer> +\ \ + +@@IJclSingleList.IndexOf@Single +<copy IJclList.IndexOf@TObject> +\ \ + +@@IJclSingleList.Insert@Integer@Single +<copy IJclList.Insert@Integer@TObject> +\ \ + +@@IJclSingleList.InsertAll@Integer@IJclSingleCollection +<copy IJclList.InsertAll@Integer@IJclCollection> +\ \ + +@@IJclSingleList.LastIndexOf@Single +<copy IJclList.LastIndexOf@TObject> +\ \ + +@@IJclSingleList.SetValue@Integer@Single +<copy IJclList.SetObject@Integer@TObject> +\ \ + +@@IJclSingleList.SubList@Integer@Integer +<copy IJclList.SubList@Integer@Integer> +\ \ +@@IJclDoubleList +<copy IJclList> +\ \ + +@@!!MEMBEROVERVIEW_IJclDoubleList +<copy !!MEMBEROVERVIEW_IJclList> +\ \ + +@@IJclDoubleList.Values +<copy IJclList.Objects> +\ \ + +@@IJclDoubleList.Delete@Integer +<copy IJclList.Delete@Integer> +\ \ + +@@IJclDoubleList.ExtractIndex@Integer +<copy IJclList.ExtractIndex@Integer> +\ \ + +@@IJclDoubleList.GetValue@Integer +<copy IJclList.GetObject@Integer> +\ \ + +@@IJclDoubleList.IndexOf@Double +<copy IJclList.IndexOf@TObject> +\ \ + +@@IJclDoubleList.Insert@Integer@Double +<copy IJclList.Insert@Integer@TObject> +\ \ + +@@IJclDoubleList.InsertAll@Integer@IJclDoubleCollection +<copy IJclList.InsertAll@Integer@IJclCollection> +\ \ + +@@IJclDoubleList.LastIndexOf@Double +<copy IJclList.LastIndexOf@TObject> +\ \ + +@@IJclDoubleList.SetValue@Integer@Double +<copy IJclList.SetObject@Integer@TObject> +\ \ + +@@IJclDoubleList.SubList@Integer@Integer +<copy IJclList.SubList@Integer@Integer> +\ \ +@@IJclExtendedList +<copy IJclList> +\ \ + +@@!!MEMBEROVERVIEW_IJclExtendedList +<copy !!MEMBEROVERVIEW_IJclList> +\ \ + +@@IJclExtendedList.Values +<copy IJclList.Objects> +\ \ + +@@IJclExtendedList.Delete@Integer +<copy IJclList.Delete@Integer> +\ \ + +@@IJclExtendedList.ExtractIndex@Integer +<copy IJclList.ExtractIndex@Integer> +\ \ + +@@IJclExtendedList.GetValue@Integer +<copy IJclList.GetObject@Integer> +\ \ + +@@IJclExtendedList.IndexOf@Extended +<copy IJclList.IndexOf@TObject> +\ \ + +@@IJclExtendedList.Insert@Integer@Extended +<copy IJclList.Insert@Integer@TObject> +\ \ + +@@IJclExtendedList.InsertAll@Integer@IJclExtendedCollection +<copy IJclList.InsertAll@Integer@IJclCollection> +\ \ + +@@IJclExtendedList.LastIndexOf@Extended +<copy IJclList.LastIndexOf@TObject> +\ \ + +@@IJclExtendedList.SetValue@Integer@Extended +<copy IJclList.SetObject@Integer@TObject> +\ \ + +@@IJclExtendedList.SubList@Integer@Integer +<copy IJclList.SubList@Integer@Integer> +\ \ +@@IJclIntegerList +<copy IJclList> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntegerList +<copy !!MEMBEROVERVIEW_IJclList> +\ \ + +@@IJclIntegerList.Values +<copy IJclList.Objects> +\ \ + +@@IJclIntegerList.Delete@Integer +<copy IJclList.Delete@Integer> +\ \ + +@@IJclIntegerList.ExtractIndex@Integer +<copy IJclList.ExtractIndex@Integer> +\ \ + +@@IJclIntegerList.GetValue@Integer +<copy IJclList.GetObject@Integer> +\ \ + +@@IJclIntegerList.IndexOf@Integer +<copy IJclList.IndexOf@TObject> +\ \ + +@@IJclIntegerList.Insert@Integer@Integer +<copy IJclList.Insert@Integer@TObject> +\ \ + +@@IJclIntegerList.InsertAll@Integer@IJclIntegerCollection +<copy IJclList.InsertAll@Integer@IJclCollection> +\ \ + +@@IJclIntegerList.LastIndexOf@Integer +<copy IJclList.LastIndexOf@TObject> +\ \ + +@@IJclIntegerList.SetValue@Integer@Integer +<copy IJclList.SetObject@Integer@TObject> +\ \ + +@@IJclIntegerList.SubList@Integer@Integer +<copy IJclList.SubList@Integer@Integer> +\ \ +@@IJclCardinalList +<copy IJclList> +\ \ + +@@!!MEMBEROVERVIEW_IJclCardinalList +<copy !!MEMBEROVERVIEW_IJclList> +\ \ + +@@IJclCardinalList.Values +<copy IJclList.Objects> +\ \ + +@@IJclCardinalList.Delete@Integer +<copy IJclList.Delete@Integer> +\ \ + +@@IJclCardinalList.ExtractIndex@Integer +<copy IJclList.ExtractIndex@Integer> +\ \ + +@@IJclCardinalList.GetValue@Integer +<copy IJclList.GetObject@Integer> +\ \ + +@@IJclCardinalList.IndexOf@Cardinal +<copy IJclList.IndexOf@TObject> +\ \ + +@@IJclCardinalList.Insert@Integer@Cardinal +<copy IJclList.Insert@Integer@TObject> +\ \ + +@@IJclCardinalList.InsertAll@Integer@IJclCardinalCollection +<copy IJclList.InsertAll@Integer@IJclCollection> +\ \ + +@@IJclCardinalList.LastIndexOf@Cardinal +<copy IJclList.LastIndexOf@TObject> +\ \ + +@@IJclCardinalList.SetValue@Integer@Cardinal +<copy IJclList.SetObject@Integer@TObject> +\ \ + +@@IJclCardinalList.SubList@Integer@Integer +<copy IJclList.SubList@Integer@Integer> +\ \ +@@IJclInt64List +<copy IJclList> +\ \ + +@@!!MEMBEROVERVIEW_IJclInt64List +<copy !!MEMBEROVERVIEW_IJclList> +\ \ + +@@IJclInt64List.Values +<copy IJclList.Objects> +\ \ + +@@IJclInt64List.Delete@Integer +<copy IJclList.Delete@Integer> +\ \ + +@@IJclInt64List.ExtractIndex@Integer +<copy IJclList.ExtractIndex@Integer> +\ \ + +@@IJclInt64List.GetValue@Integer +<copy IJclList.GetObject@Integer> +\ \ + +@@IJclInt64List.IndexOf@Int64 +<copy IJclList.IndexOf@TObject> +\ \ + +@@IJclInt64List.Insert@Integer@Int64 +<copy IJclList.Insert@Integer@TObject> +\ \ + +@@IJclInt64List.InsertAll@Integer@IJclInt64Collection +<copy IJclList.InsertAll@Integer@IJclCollection> +\ \ + +@@IJclInt64List.LastIndexOf@Int64 +<copy IJclList.LastIndexOf@TObject> +\ \ + +@@IJclInt64List.SetValue@Integer@Int64 +<copy IJclList.SetObject@Integer@TObject> +\ \ + +@@IJclInt64List.SubList@Integer@Integer +<copy IJclList.SubList@Integer@Integer> +\ \ +@@IJclPtrList +<copy IJclList> +\ \ + +@@!!MEMBEROVERVIEW_IJclPtrList +<copy !!MEMBEROVERVIEW_IJclList> +\ \ + +@@IJclPtrList.Pointers +<copy IJclList.Objects> +\ \ + +@@IJclPtrList.Delete@Integer +<copy IJclList.Delete@Integer> +\ \ + +@@IJclPtrList.ExtractIndex@Integer +<copy IJclList.ExtractIndex@Integer> +\ \ + +@@IJclPtrList.GetPointer@Integer +<copy IJclList.GetObject@Integer> +\ \ + +@@IJclPtrList.IndexOf@Pointer +<copy IJclList.IndexOf@TObject> +\ \ + +@@IJclPtrList.Insert@Integer@Pointer +<copy IJclList.Insert@Integer@TObject> +\ \ + +@@IJclPtrList.InsertAll@Integer@IJclPtrCollection +<copy IJclList.InsertAll@Integer@IJclCollection> +\ \ + +@@IJclPtrList.LastIndexOf@Pointer +<copy IJclList.LastIndexOf@TObject> +\ \ + +@@IJclPtrList.SetPointer@Integer@Pointer +<copy IJclList.SetObject@Integer@TObject> +\ \ + +@@IJclPtrList.SubList@Integer@Integer +<copy IJclList.SubList@Integer@Integer> +\ \ + + +@@IJclIntfArray +<copy IJclArray> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfArray +<copy !!MEMBEROVERVIEW_IJclArray> +\ \ + +@@IJclIntfArray.Objects +<copy IJclArray.Objects> +\ \ + +@@IJclIntfArray.GetObject@Integer +<copy IJclArray.GetObject@Integer> +\ \ + +@@IJclIntfArray.SetObject@Integer@IInterface +<copy IJclArray.SetObject@Integer@TObject> +\ \ +@@IJclAnsiStrArray +<copy IJclArray> +\ \ + +@@!!MEMBEROVERVIEW_IJclAnsiStrArray +<copy !!MEMBEROVERVIEW_IJclArray> +\ \ + +@@IJclAnsiStrArray.Strings +<copy IJclArray.Objects> +\ \ + +@@IJclAnsiStrArray.GetString@Integer +<copy IJclArray.GetObject@Integer> +\ \ + +@@IJclAnsiStrArray.SetString@Integer@AnsiString +<copy IJclArray.SetObject@Integer@TObject> +\ \ +@@IJclWideStrArray +<copy IJclArray> +\ \ + +@@!!MEMBEROVERVIEW_IJclWideStrArray +<copy !!MEMBEROVERVIEW_IJclArray> +\ \ + +@@IJclWideStrArray.Strings +<copy IJclArray.Objects> +\ \ + +@@IJclWideStrArray.GetString@Integer +<copy IJclArray.GetObject@Integer> +\ \ + +@@IJclWideStrArray.SetString@Integer@WideString +<copy IJclArray.SetObject@Integer@TObject> +\ \ +@@IJclUnicodeStrArray +<copy IJclArray> +\ \ + +@@!!MEMBEROVERVIEW_IJclUnicodeStrArray +<copy !!MEMBEROVERVIEW_IJclArray> +\ \ + +@@IJclUnicodeStrArray.Strings +<copy IJclArray.Objects> +\ \ + +@@IJclUnicodeStrArray.GetString@Integer +<copy IJclArray.GetObject@Integer> +\ \ + +@@IJclUnicodeStrArray.SetString@Integer@UnicodeString +<copy IJclArray.SetObject@Integer@TObject> +\ \ +@@IJclSingleArray +<copy IJclArray> +\ \ + +@@!!MEMBEROVERVIEW_IJclSingleArray +<copy !!MEMBEROVERVIEW_IJclArray> +\ \ + +@@IJclSingleArray.Values +<copy IJclArray.Objects> +\ \ + +@@IJclSingleArray.GetValue@Integer +<copy IJclArray.GetObject@Integer> +\ \ + +@@IJclSingleArray.SetValue@Integer@Single +<copy IJclArray.SetObject@Integer@TObject> +\ \ +@@IJclDoubleArray +<copy IJclArray> +\ \ + +@@!!MEMBEROVERVIEW_IJclDoubleArray +<copy !!MEMBEROVERVIEW_IJclArray> +\ \ + +@@IJclDoubleArray.Values +<copy IJclArray.Objects> +\ \ + +@@IJclDoubleArray.GetValue@Integer +<copy IJclArray.GetObject@Integer> +\ \ + +@@IJclDoubleArray.SetValue@Integer@Double +<copy IJclArray.SetObject@Integer@TObject> +\ \ +@@IJclExtendedArray +<copy IJclArray> +\ \ + +@@!!MEMBEROVERVIEW_IJclExtendedArray +<copy !!MEMBEROVERVIEW_IJclArray> +\ \ + +@@IJclExtendedArray.Values +<copy IJclArray.Objects> +\ \ + +@@IJclExtendedArray.GetValue@Integer +<copy IJclArray.GetObject@Integer> +\ \ + +@@IJclExtendedArray.SetValue@Integer@Extended +<copy IJclArray.SetObject@Integer@TObject> +\ \ +@@IJclIntegerArray +<copy IJclArray> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntegerArray +<copy !!MEMBEROVERVIEW_IJclArray> +\ \ + +@@IJclIntegerArray.Values +<copy IJclArray.Objects> +\ \ + +@@IJclIntegerArray.GetValue@Integer +<copy IJclArray.GetObject@Integer> +\ \ + +@@IJclIntegerArray.SetValue@Integer@Integer +<copy IJclArray.SetObject@Integer@TObject> +\ \ +@@IJclCardinalArray +<copy IJclArray> +\ \ + +@@!!MEMBEROVERVIEW_IJclCardinalArray +<copy !!MEMBEROVERVIEW_IJclArray> +\ \ + +@@IJclCardinalArray.Values +<copy IJclArray.Objects> +\ \ + +@@IJclCardinalArray.GetValue@Integer +<copy IJclArray.GetObject@Integer> +\ \ + +@@IJclCardinalArray.SetValue@Integer@Cardinal +<copy IJclArray.SetObject@Integer@TObject> +\ \ +@@IJclInt64Array +<copy IJclArray> +\ \ + +@@!!MEMBEROVERVIEW_IJclInt64Array +<copy !!MEMBEROVERVIEW_IJclArray> +\ \ + +@@IJclInt64Array.Values +<copy IJclArray.Objects> +\ \ + +@@IJclInt64Array.GetValue@Integer +<copy IJclArray.GetObject@Integer> +\ \ + +@@IJclInt64Array.SetValue@Integer@Int64 +<copy IJclArray.SetObject@Integer@TObject> +\ \ +@@IJclPtrArray +<copy IJclArray> +\ \ + +@@!!MEMBEROVERVIEW_IJclPtrArray +<copy !!MEMBEROVERVIEW_IJclArray> +\ \ + +@@IJclPtrArray.Pointers +<copy IJclArray.Objects> +\ \ + +@@IJclPtrArray.GetPointer@Integer +<copy IJclArray.GetObject@Integer> +\ \ + +@@IJclPtrArray.SetPointer@Integer@Pointer +<copy IJclArray.SetObject@Integer@TObject> +\ \ + + +@@IJclIntfIntfMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfIntfMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclIntfIntfMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclIntfIntfMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclIntfIntfMap.ContainsKey@IInterface +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclIntfIntfMap.ContainsValue@IInterface +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclIntfIntfMap.Extract@IInterface +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclIntfIntfMap.GetValue@IInterface +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclIntfIntfMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclIntfIntfMap.KeyOfValue@IInterface +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclIntfIntfMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclIntfIntfMap.MapEquals@IJclIntfIntfMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclIntfIntfMap.PutAll@IJclIntfIntfMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclIntfIntfMap.PutValue@IInterface@IInterface +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclIntfIntfMap.Remove@IInterface +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclIntfIntfMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclIntfIntfMap.Values +<copy IJclMap.Values> +\ \ +@@IJclAnsiStrIntfMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclAnsiStrIntfMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclAnsiStrIntfMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclAnsiStrIntfMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclAnsiStrIntfMap.ContainsKey@AnsiString +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclAnsiStrIntfMap.ContainsValue@IInterface +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclAnsiStrIntfMap.Extract@AnsiString +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclAnsiStrIntfMap.GetValue@AnsiString +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclAnsiStrIntfMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclAnsiStrIntfMap.KeyOfValue@IInterface +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclAnsiStrIntfMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclAnsiStrIntfMap.MapEquals@IJclAnsiStrIntfMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclAnsiStrIntfMap.PutAll@IJclAnsiStrIntfMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclAnsiStrIntfMap.PutValue@AnsiString@IInterface +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclAnsiStrIntfMap.Remove@AnsiString +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclAnsiStrIntfMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclAnsiStrIntfMap.Values +<copy IJclMap.Values> +\ \ +@@IJclIntfAnsiStrMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfAnsiStrMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclIntfAnsiStrMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclIntfAnsiStrMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclIntfAnsiStrMap.ContainsKey@IInterface +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclIntfAnsiStrMap.ContainsValue@AnsiString +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclIntfAnsiStrMap.Extract@IInterface +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclIntfAnsiStrMap.GetValue@IInterface +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclIntfAnsiStrMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclIntfAnsiStrMap.KeyOfValue@AnsiString +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclIntfAnsiStrMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclIntfAnsiStrMap.MapEquals@IJclIntfAnsiStrMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclIntfAnsiStrMap.PutAll@IJclIntfAnsiStrMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclIntfAnsiStrMap.PutValue@IInterface@AnsiString +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclIntfAnsiStrMap.Remove@IInterface +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclIntfAnsiStrMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclIntfAnsiStrMap.Values +<copy IJclMap.Values> +\ \ +@@IJclAnsiStrAnsiStrMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclAnsiStrAnsiStrMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclAnsiStrAnsiStrMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclAnsiStrAnsiStrMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclAnsiStrAnsiStrMap.ContainsKey@AnsiString +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclAnsiStrAnsiStrMap.ContainsValue@AnsiString +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclAnsiStrAnsiStrMap.Extract@AnsiString +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclAnsiStrAnsiStrMap.GetValue@AnsiString +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclAnsiStrAnsiStrMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclAnsiStrAnsiStrMap.KeyOfValue@AnsiString +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclAnsiStrAnsiStrMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclAnsiStrAnsiStrMap.MapEquals@IJclAnsiStrAnsiStrMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclAnsiStrAnsiStrMap.PutAll@IJclAnsiStrAnsiStrMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclAnsiStrAnsiStrMap.PutValue@AnsiString@AnsiString +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclAnsiStrAnsiStrMap.Remove@AnsiString +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclAnsiStrAnsiStrMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclAnsiStrAnsiStrMap.Values +<copy IJclMap.Values> +\ \ +@@IJclWideStrIntfMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclWideStrIntfMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclWideStrIntfMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclWideStrIntfMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclWideStrIntfMap.ContainsKey@WideString +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclWideStrIntfMap.ContainsValue@IInterface +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclWideStrIntfMap.Extract@WideString +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclWideStrIntfMap.GetValue@WideString +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclWideStrIntfMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclWideStrIntfMap.KeyOfValue@IInterface +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclWideStrIntfMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclWideStrIntfMap.MapEquals@IJclWideStrIntfMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclWideStrIntfMap.PutAll@IJclWideStrIntfMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclWideStrIntfMap.PutValue@WideString@IInterface +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclWideStrIntfMap.Remove@WideString +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclWideStrIntfMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclWideStrIntfMap.Values +<copy IJclMap.Values> +\ \ +@@IJclIntfWideStrMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfWideStrMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclIntfWideStrMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclIntfWideStrMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclIntfWideStrMap.ContainsKey@IInterface +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclIntfWideStrMap.ContainsValue@WideString +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclIntfWideStrMap.Extract@IInterface +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclIntfWideStrMap.GetValue@IInterface +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclIntfWideStrMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclIntfWideStrMap.KeyOfValue@WideString +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclIntfWideStrMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclIntfWideStrMap.MapEquals@IJclIntfWideStrMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclIntfWideStrMap.PutAll@IJclIntfWideStrMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclIntfWideStrMap.PutValue@IInterface@WideString +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclIntfWideStrMap.Remove@IInterface +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclIntfWideStrMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclIntfWideStrMap.Values +<copy IJclMap.Values> +\ \ +@@IJclWideStrWideStrMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclWideStrWideStrMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclWideStrWideStrMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclWideStrWideStrMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclWideStrWideStrMap.ContainsKey@WideString +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclWideStrWideStrMap.ContainsValue@WideString +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclWideStrWideStrMap.Extract@WideString +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclWideStrWideStrMap.GetValue@WideString +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclWideStrWideStrMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclWideStrWideStrMap.KeyOfValue@WideString +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclWideStrWideStrMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclWideStrWideStrMap.MapEquals@IJclWideStrWideStrMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclWideStrWideStrMap.PutAll@IJclWideStrWideStrMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclWideStrWideStrMap.PutValue@WideString@WideString +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclWideStrWideStrMap.Remove@WideString +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclWideStrWideStrMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclWideStrWideStrMap.Values +<copy IJclMap.Values> +\ \ +@@IJclUnicodeStrIntfMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclUnicodeStrIntfMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclUnicodeStrIntfMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclUnicodeStrIntfMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclUnicodeStrIntfMap.ContainsKey@UnicodeString +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclUnicodeStrIntfMap.ContainsValue@IInterface +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclUnicodeStrIntfMap.Extract@UnicodeString +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclUnicodeStrIntfMap.GetValue@UnicodeString +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclUnicodeStrIntfMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclUnicodeStrIntfMap.KeyOfValue@IInterface +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclUnicodeStrIntfMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclUnicodeStrIntfMap.MapEquals@IJclUnicodeStrIntfMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclUnicodeStrIntfMap.PutAll@IJclUnicodeStrIntfMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclUnicodeStrIntfMap.PutValue@UnicodeString@IInterface +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclUnicodeStrIntfMap.Remove@UnicodeString +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclUnicodeStrIntfMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclUnicodeStrIntfMap.Values +<copy IJclMap.Values> +\ \ +@@IJclIntfUnicodeStrMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfUnicodeStrMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclIntfUnicodeStrMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclIntfUnicodeStrMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclIntfUnicodeStrMap.ContainsKey@IInterface +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclIntfUnicodeStrMap.ContainsValue@UnicodeString +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclIntfUnicodeStrMap.Extract@IInterface +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclIntfUnicodeStrMap.GetValue@IInterface +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclIntfUnicodeStrMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclIntfUnicodeStrMap.KeyOfValue@UnicodeString +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclIntfUnicodeStrMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclIntfUnicodeStrMap.MapEquals@IJclIntfUnicodeStrMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclIntfUnicodeStrMap.PutAll@IJclIntfUnicodeStrMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclIntfUnicodeStrMap.PutValue@IInterface@UnicodeString +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclIntfUnicodeStrMap.Remove@IInterface +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclIntfUnicodeStrMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclIntfUnicodeStrMap.Values +<copy IJclMap.Values> +\ \ +@@IJclUnicodeStrUnicodeStrMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclUnicodeStrUnicodeStrMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclUnicodeStrUnicodeStrMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclUnicodeStrUnicodeStrMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclUnicodeStrUnicodeStrMap.ContainsKey@UnicodeString +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclUnicodeStrUnicodeStrMap.ContainsValue@UnicodeString +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclUnicodeStrUnicodeStrMap.Extract@UnicodeString +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclUnicodeStrUnicodeStrMap.GetValue@UnicodeString +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclUnicodeStrUnicodeStrMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclUnicodeStrUnicodeStrMap.KeyOfValue@UnicodeString +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclUnicodeStrUnicodeStrMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclUnicodeStrUnicodeStrMap.MapEquals@IJclUnicodeStrUnicodeStrMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclUnicodeStrUnicodeStrMap.PutAll@IJclUnicodeStrUnicodeStrMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclUnicodeStrUnicodeStrMap.PutValue@UnicodeString@UnicodeString +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclUnicodeStrUnicodeStrMap.Remove@UnicodeString +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclUnicodeStrUnicodeStrMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclUnicodeStrUnicodeStrMap.Values +<copy IJclMap.Values> +\ \ +@@IJclSingleIntfMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclSingleIntfMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclSingleIntfMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclSingleIntfMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclSingleIntfMap.ContainsKey@Single +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclSingleIntfMap.ContainsValue@IInterface +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclSingleIntfMap.Extract@Single +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclSingleIntfMap.GetValue@Single +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclSingleIntfMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclSingleIntfMap.KeyOfValue@IInterface +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclSingleIntfMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclSingleIntfMap.MapEquals@IJclSingleIntfMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclSingleIntfMap.PutAll@IJclSingleIntfMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclSingleIntfMap.PutValue@Single@IInterface +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclSingleIntfMap.Remove@Single +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclSingleIntfMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclSingleIntfMap.Values +<copy IJclMap.Values> +\ \ +@@IJclIntfSingleMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfSingleMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclIntfSingleMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclIntfSingleMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclIntfSingleMap.ContainsKey@IInterface +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclIntfSingleMap.ContainsValue@Single +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclIntfSingleMap.Extract@IInterface +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclIntfSingleMap.GetValue@IInterface +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclIntfSingleMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclIntfSingleMap.KeyOfValue@Single +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclIntfSingleMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclIntfSingleMap.MapEquals@IJclIntfSingleMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclIntfSingleMap.PutAll@IJclIntfSingleMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclIntfSingleMap.PutValue@IInterface@Single +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclIntfSingleMap.Remove@IInterface +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclIntfSingleMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclIntfSingleMap.Values +<copy IJclMap.Values> +\ \ +@@IJclSingleSingleMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclSingleSingleMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclSingleSingleMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclSingleSingleMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclSingleSingleMap.ContainsKey@Single +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclSingleSingleMap.ContainsValue@Single +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclSingleSingleMap.Extract@Single +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclSingleSingleMap.GetValue@Single +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclSingleSingleMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclSingleSingleMap.KeyOfValue@Single +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclSingleSingleMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclSingleSingleMap.MapEquals@IJclSingleSingleMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclSingleSingleMap.PutAll@IJclSingleSingleMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclSingleSingleMap.PutValue@Single@Single +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclSingleSingleMap.Remove@Single +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclSingleSingleMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclSingleSingleMap.Values +<copy IJclMap.Values> +\ \ +@@IJclDoubleIntfMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclDoubleIntfMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclDoubleIntfMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclDoubleIntfMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclDoubleIntfMap.ContainsKey@Double +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclDoubleIntfMap.ContainsValue@IInterface +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclDoubleIntfMap.Extract@Double +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclDoubleIntfMap.GetValue@Double +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclDoubleIntfMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclDoubleIntfMap.KeyOfValue@IInterface +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclDoubleIntfMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclDoubleIntfMap.MapEquals@IJclDoubleIntfMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclDoubleIntfMap.PutAll@IJclDoubleIntfMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclDoubleIntfMap.PutValue@Double@IInterface +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclDoubleIntfMap.Remove@Double +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclDoubleIntfMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclDoubleIntfMap.Values +<copy IJclMap.Values> +\ \ +@@IJclIntfDoubleMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfDoubleMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclIntfDoubleMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclIntfDoubleMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclIntfDoubleMap.ContainsKey@IInterface +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclIntfDoubleMap.ContainsValue@Double +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclIntfDoubleMap.Extract@IInterface +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclIntfDoubleMap.GetValue@IInterface +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclIntfDoubleMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclIntfDoubleMap.KeyOfValue@Double +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclIntfDoubleMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclIntfDoubleMap.MapEquals@IJclIntfDoubleMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclIntfDoubleMap.PutAll@IJclIntfDoubleMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclIntfDoubleMap.PutValue@IInterface@Double +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclIntfDoubleMap.Remove@IInterface +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclIntfDoubleMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclIntfDoubleMap.Values +<copy IJclMap.Values> +\ \ +@@IJclDoubleDoubleMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclDoubleDoubleMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclDoubleDoubleMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclDoubleDoubleMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclDoubleDoubleMap.ContainsKey@Double +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclDoubleDoubleMap.ContainsValue@Double +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclDoubleDoubleMap.Extract@Double +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclDoubleDoubleMap.GetValue@Double +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclDoubleDoubleMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclDoubleDoubleMap.KeyOfValue@Double +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclDoubleDoubleMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclDoubleDoubleMap.MapEquals@IJclDoubleDoubleMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclDoubleDoubleMap.PutAll@IJclDoubleDoubleMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclDoubleDoubleMap.PutValue@Double@Double +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclDoubleDoubleMap.Remove@Double +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclDoubleDoubleMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclDoubleDoubleMap.Values +<copy IJclMap.Values> +\ \ +@@IJclExtendedIntfMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclExtendedIntfMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclExtendedIntfMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclExtendedIntfMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclExtendedIntfMap.ContainsKey@Extended +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclExtendedIntfMap.ContainsValue@IInterface +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclExtendedIntfMap.Extract@Extended +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclExtendedIntfMap.GetValue@Extended +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclExtendedIntfMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclExtendedIntfMap.KeyOfValue@IInterface +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclExtendedIntfMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclExtendedIntfMap.MapEquals@IJclExtendedIntfMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclExtendedIntfMap.PutAll@IJclExtendedIntfMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclExtendedIntfMap.PutValue@Extended@IInterface +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclExtendedIntfMap.Remove@Extended +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclExtendedIntfMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclExtendedIntfMap.Values +<copy IJclMap.Values> +\ \ +@@IJclIntfExtendedMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfExtendedMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclIntfExtendedMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclIntfExtendedMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclIntfExtendedMap.ContainsKey@IInterface +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclIntfExtendedMap.ContainsValue@Extended +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclIntfExtendedMap.Extract@IInterface +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclIntfExtendedMap.GetValue@IInterface +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclIntfExtendedMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclIntfExtendedMap.KeyOfValue@Extended +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclIntfExtendedMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclIntfExtendedMap.MapEquals@IJclIntfExtendedMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclIntfExtendedMap.PutAll@IJclIntfExtendedMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclIntfExtendedMap.PutValue@IInterface@Extended +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclIntfExtendedMap.Remove@IInterface +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclIntfExtendedMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclIntfExtendedMap.Values +<copy IJclMap.Values> +\ \ +@@IJclExtendedExtendedMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclExtendedExtendedMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclExtendedExtendedMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclExtendedExtendedMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclExtendedExtendedMap.ContainsKey@Extended +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclExtendedExtendedMap.ContainsValue@Extended +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclExtendedExtendedMap.Extract@Extended +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclExtendedExtendedMap.GetValue@Extended +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclExtendedExtendedMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclExtendedExtendedMap.KeyOfValue@Extended +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclExtendedExtendedMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclExtendedExtendedMap.MapEquals@IJclExtendedExtendedMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclExtendedExtendedMap.PutAll@IJclExtendedExtendedMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclExtendedExtendedMap.PutValue@Extended@Extended +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclExtendedExtendedMap.Remove@Extended +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclExtendedExtendedMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclExtendedExtendedMap.Values +<copy IJclMap.Values> +\ \ +@@IJclIntegerIntfMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntegerIntfMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclIntegerIntfMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclIntegerIntfMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclIntegerIntfMap.ContainsKey@Integer +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclIntegerIntfMap.ContainsValue@IInterface +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclIntegerIntfMap.Extract@Integer +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclIntegerIntfMap.GetValue@Integer +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclIntegerIntfMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclIntegerIntfMap.KeyOfValue@IInterface +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclIntegerIntfMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclIntegerIntfMap.MapEquals@IJclIntegerIntfMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclIntegerIntfMap.PutAll@IJclIntegerIntfMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclIntegerIntfMap.PutValue@Integer@IInterface +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclIntegerIntfMap.Remove@Integer +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclIntegerIntfMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclIntegerIntfMap.Values +<copy IJclMap.Values> +\ \ +@@IJclIntfIntegerMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfIntegerMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclIntfIntegerMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclIntfIntegerMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclIntfIntegerMap.ContainsKey@IInterface +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclIntfIntegerMap.ContainsValue@Integer +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclIntfIntegerMap.Extract@IInterface +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclIntfIntegerMap.GetValue@IInterface +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclIntfIntegerMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclIntfIntegerMap.KeyOfValue@Integer +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclIntfIntegerMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclIntfIntegerMap.MapEquals@IJclIntfIntegerMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclIntfIntegerMap.PutAll@IJclIntfIntegerMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclIntfIntegerMap.PutValue@IInterface@Integer +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclIntfIntegerMap.Remove@IInterface +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclIntfIntegerMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclIntfIntegerMap.Values +<copy IJclMap.Values> +\ \ +@@IJclIntegerIntegerMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntegerIntegerMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclIntegerIntegerMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclIntegerIntegerMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclIntegerIntegerMap.ContainsKey@Integer +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclIntegerIntegerMap.ContainsValue@Integer +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclIntegerIntegerMap.Extract@Integer +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclIntegerIntegerMap.GetValue@Integer +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclIntegerIntegerMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclIntegerIntegerMap.KeyOfValue@Integer +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclIntegerIntegerMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclIntegerIntegerMap.MapEquals@IJclIntegerIntegerMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclIntegerIntegerMap.PutAll@IJclIntegerIntegerMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclIntegerIntegerMap.PutValue@Integer@Integer +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclIntegerIntegerMap.Remove@Integer +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclIntegerIntegerMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclIntegerIntegerMap.Values +<copy IJclMap.Values> +\ \ +@@IJclCardinalIntfMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclCardinalIntfMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclCardinalIntfMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclCardinalIntfMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclCardinalIntfMap.ContainsKey@Cardinal +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclCardinalIntfMap.ContainsValue@IInterface +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclCardinalIntfMap.Extract@Cardinal +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclCardinalIntfMap.GetValue@Cardinal +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclCardinalIntfMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclCardinalIntfMap.KeyOfValue@IInterface +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclCardinalIntfMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclCardinalIntfMap.MapEquals@IJclCardinalIntfMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclCardinalIntfMap.PutAll@IJclCardinalIntfMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclCardinalIntfMap.PutValue@Cardinal@IInterface +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclCardinalIntfMap.Remove@Cardinal +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclCardinalIntfMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclCardinalIntfMap.Values +<copy IJclMap.Values> +\ \ +@@IJclIntfCardinalMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfCardinalMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclIntfCardinalMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclIntfCardinalMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclIntfCardinalMap.ContainsKey@IInterface +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclIntfCardinalMap.ContainsValue@Cardinal +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclIntfCardinalMap.Extract@IInterface +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclIntfCardinalMap.GetValue@IInterface +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclIntfCardinalMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclIntfCardinalMap.KeyOfValue@Cardinal +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclIntfCardinalMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclIntfCardinalMap.MapEquals@IJclIntfCardinalMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclIntfCardinalMap.PutAll@IJclIntfCardinalMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclIntfCardinalMap.PutValue@IInterface@Cardinal +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclIntfCardinalMap.Remove@IInterface +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclIntfCardinalMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclIntfCardinalMap.Values +<copy IJclMap.Values> +\ \ +@@IJclCardinalCardinalMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclCardinalCardinalMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclCardinalCardinalMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclCardinalCardinalMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclCardinalCardinalMap.ContainsKey@Cardinal +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclCardinalCardinalMap.ContainsValue@Cardinal +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclCardinalCardinalMap.Extract@Cardinal +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclCardinalCardinalMap.GetValue@Cardinal +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclCardinalCardinalMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclCardinalCardinalMap.KeyOfValue@Cardinal +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclCardinalCardinalMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclCardinalCardinalMap.MapEquals@IJclCardinalCardinalMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclCardinalCardinalMap.PutAll@IJclCardinalCardinalMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclCardinalCardinalMap.PutValue@Cardinal@Cardinal +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclCardinalCardinalMap.Remove@Cardinal +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclCardinalCardinalMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclCardinalCardinalMap.Values +<copy IJclMap.Values> +\ \ +@@IJclInt64IntfMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclInt64IntfMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclInt64IntfMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclInt64IntfMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclInt64IntfMap.ContainsKey@Int64 +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclInt64IntfMap.ContainsValue@IInterface +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclInt64IntfMap.Extract@Int64 +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclInt64IntfMap.GetValue@Int64 +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclInt64IntfMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclInt64IntfMap.KeyOfValue@IInterface +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclInt64IntfMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclInt64IntfMap.MapEquals@IJclInt64IntfMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclInt64IntfMap.PutAll@IJclInt64IntfMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclInt64IntfMap.PutValue@Int64@IInterface +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclInt64IntfMap.Remove@Int64 +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclInt64IntfMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclInt64IntfMap.Values +<copy IJclMap.Values> +\ \ +@@IJclIntfInt64Map +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfInt64Map +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclIntfInt64Map.Items +<copy IJclMap.Items> +\ \ + +@@IJclIntfInt64Map.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclIntfInt64Map.ContainsKey@IInterface +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclIntfInt64Map.ContainsValue@Int64 +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclIntfInt64Map.Extract@IInterface +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclIntfInt64Map.GetValue@IInterface +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclIntfInt64Map.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclIntfInt64Map.KeyOfValue@Int64 +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclIntfInt64Map.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclIntfInt64Map.MapEquals@IJclIntfInt64Map +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclIntfInt64Map.PutAll@IJclIntfInt64Map +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclIntfInt64Map.PutValue@IInterface@Int64 +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclIntfInt64Map.Remove@IInterface +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclIntfInt64Map.Size +<copy IJclMap.Size> +\ \ + +@@IJclIntfInt64Map.Values +<copy IJclMap.Values> +\ \ +@@IJclInt64Int64Map +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclInt64Int64Map +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclInt64Int64Map.Items +<copy IJclMap.Items> +\ \ + +@@IJclInt64Int64Map.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclInt64Int64Map.ContainsKey@Int64 +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclInt64Int64Map.ContainsValue@Int64 +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclInt64Int64Map.Extract@Int64 +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclInt64Int64Map.GetValue@Int64 +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclInt64Int64Map.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclInt64Int64Map.KeyOfValue@Int64 +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclInt64Int64Map.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclInt64Int64Map.MapEquals@IJclInt64Int64Map +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclInt64Int64Map.PutAll@IJclInt64Int64Map +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclInt64Int64Map.PutValue@Int64@Int64 +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclInt64Int64Map.Remove@Int64 +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclInt64Int64Map.Size +<copy IJclMap.Size> +\ \ + +@@IJclInt64Int64Map.Values +<copy IJclMap.Values> +\ \ +@@IJclPtrIntfMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclPtrIntfMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclPtrIntfMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclPtrIntfMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclPtrIntfMap.ContainsKey@Pointer +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclPtrIntfMap.ContainsValue@IInterface +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclPtrIntfMap.Extract@Pointer +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclPtrIntfMap.GetValue@Pointer +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclPtrIntfMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclPtrIntfMap.KeyOfValue@IInterface +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclPtrIntfMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclPtrIntfMap.MapEquals@IJclPtrIntfMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclPtrIntfMap.PutAll@IJclPtrIntfMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclPtrIntfMap.PutValue@Pointer@IInterface +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclPtrIntfMap.Remove@Pointer +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclPtrIntfMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclPtrIntfMap.Values +<copy IJclMap.Values> +\ \ +@@IJclIntfPtrMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfPtrMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclIntfPtrMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclIntfPtrMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclIntfPtrMap.ContainsKey@IInterface +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclIntfPtrMap.ContainsValue@Pointer +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclIntfPtrMap.Extract@IInterface +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclIntfPtrMap.GetValue@IInterface +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclIntfPtrMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclIntfPtrMap.KeyOfValue@Pointer +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclIntfPtrMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclIntfPtrMap.MapEquals@IJclIntfPtrMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclIntfPtrMap.PutAll@IJclIntfPtrMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclIntfPtrMap.PutValue@IInterface@Pointer +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclIntfPtrMap.Remove@IInterface +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclIntfPtrMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclIntfPtrMap.Values +<copy IJclMap.Values> +\ \ +@@IJclPtrPtrMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclPtrPtrMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclPtrPtrMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclPtrPtrMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclPtrPtrMap.ContainsKey@Pointer +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclPtrPtrMap.ContainsValue@Pointer +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclPtrPtrMap.Extract@Pointer +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclPtrPtrMap.GetValue@Pointer +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclPtrPtrMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclPtrPtrMap.KeyOfValue@Pointer +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclPtrPtrMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclPtrPtrMap.MapEquals@IJclPtrPtrMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclPtrPtrMap.PutAll@IJclPtrPtrMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclPtrPtrMap.PutValue@Pointer@Pointer +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclPtrPtrMap.Remove@Pointer +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclPtrPtrMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclPtrPtrMap.Values +<copy IJclMap.Values> +\ \ +@@IJclIntfMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclIntfMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclIntfMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclIntfMap.ContainsKey@IInterface +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclIntfMap.ContainsValue@TObject +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclIntfMap.Extract@IInterface +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclIntfMap.GetValue@IInterface +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclIntfMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclIntfMap.KeyOfValue@TObject +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclIntfMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclIntfMap.MapEquals@IJclIntfMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclIntfMap.PutAll@IJclIntfMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclIntfMap.PutValue@IInterface@TObject +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclIntfMap.Remove@IInterface +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclIntfMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclIntfMap.Values +<copy IJclMap.Values> +\ \ +@@IJclAnsiStrMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclAnsiStrMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclAnsiStrMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclAnsiStrMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclAnsiStrMap.ContainsKey@AnsiString +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclAnsiStrMap.ContainsValue@TObject +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclAnsiStrMap.Extract@AnsiString +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclAnsiStrMap.GetValue@AnsiString +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclAnsiStrMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclAnsiStrMap.KeyOfValue@TObject +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclAnsiStrMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclAnsiStrMap.MapEquals@IJclAnsiStrMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclAnsiStrMap.PutAll@IJclAnsiStrMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclAnsiStrMap.PutValue@AnsiString@TObject +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclAnsiStrMap.Remove@AnsiString +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclAnsiStrMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclAnsiStrMap.Values +<copy IJclMap.Values> +\ \ +@@IJclWideStrMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclWideStrMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclWideStrMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclWideStrMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclWideStrMap.ContainsKey@WideString +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclWideStrMap.ContainsValue@TObject +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclWideStrMap.Extract@WideString +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclWideStrMap.GetValue@WideString +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclWideStrMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclWideStrMap.KeyOfValue@TObject +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclWideStrMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclWideStrMap.MapEquals@IJclWideStrMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclWideStrMap.PutAll@IJclWideStrMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclWideStrMap.PutValue@WideString@TObject +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclWideStrMap.Remove@WideString +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclWideStrMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclWideStrMap.Values +<copy IJclMap.Values> +\ \ +@@IJclUnicodeStrMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclUnicodeStrMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclUnicodeStrMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclUnicodeStrMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclUnicodeStrMap.ContainsKey@UnicodeString +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclUnicodeStrMap.ContainsValue@TObject +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclUnicodeStrMap.Extract@UnicodeString +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclUnicodeStrMap.GetValue@UnicodeString +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclUnicodeStrMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclUnicodeStrMap.KeyOfValue@TObject +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclUnicodeStrMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclUnicodeStrMap.MapEquals@IJclUnicodeStrMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclUnicodeStrMap.PutAll@IJclUnicodeStrMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclUnicodeStrMap.PutValue@UnicodeString@TObject +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclUnicodeStrMap.Remove@UnicodeString +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclUnicodeStrMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclUnicodeStrMap.Values +<copy IJclMap.Values> +\ \ +@@IJclSingleMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclSingleMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclSingleMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclSingleMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclSingleMap.ContainsKey@Single +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclSingleMap.ContainsValue@TObject +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclSingleMap.Extract@Single +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclSingleMap.GetValue@Single +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclSingleMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclSingleMap.KeyOfValue@TObject +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclSingleMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclSingleMap.MapEquals@IJclSingleMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclSingleMap.PutAll@IJclSingleMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclSingleMap.PutValue@Single@TObject +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclSingleMap.Remove@Single +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclSingleMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclSingleMap.Values +<copy IJclMap.Values> +\ \ +@@IJclDoubleMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclDoubleMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclDoubleMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclDoubleMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclDoubleMap.ContainsKey@Double +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclDoubleMap.ContainsValue@TObject +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclDoubleMap.Extract@Double +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclDoubleMap.GetValue@Double +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclDoubleMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclDoubleMap.KeyOfValue@TObject +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclDoubleMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclDoubleMap.MapEquals@IJclDoubleMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclDoubleMap.PutAll@IJclDoubleMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclDoubleMap.PutValue@Double@TObject +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclDoubleMap.Remove@Double +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclDoubleMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclDoubleMap.Values +<copy IJclMap.Values> +\ \ +@@IJclExtendedMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclExtendedMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclExtendedMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclExtendedMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclExtendedMap.ContainsKey@Extended +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclExtendedMap.ContainsValue@TObject +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclExtendedMap.Extract@Extended +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclExtendedMap.GetValue@Extended +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclExtendedMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclExtendedMap.KeyOfValue@TObject +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclExtendedMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclExtendedMap.MapEquals@IJclExtendedMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclExtendedMap.PutAll@IJclExtendedMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclExtendedMap.PutValue@Extended@TObject +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclExtendedMap.Remove@Extended +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclExtendedMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclExtendedMap.Values +<copy IJclMap.Values> +\ \ +@@IJclIntegerMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntegerMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclIntegerMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclIntegerMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclIntegerMap.ContainsKey@Integer +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclIntegerMap.ContainsValue@TObject +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclIntegerMap.Extract@Integer +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclIntegerMap.GetValue@Integer +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclIntegerMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclIntegerMap.KeyOfValue@TObject +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclIntegerMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclIntegerMap.MapEquals@IJclIntegerMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclIntegerMap.PutAll@IJclIntegerMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclIntegerMap.PutValue@Integer@TObject +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclIntegerMap.Remove@Integer +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclIntegerMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclIntegerMap.Values +<copy IJclMap.Values> +\ \ +@@IJclCardinalMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclCardinalMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclCardinalMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclCardinalMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclCardinalMap.ContainsKey@Cardinal +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclCardinalMap.ContainsValue@TObject +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclCardinalMap.Extract@Cardinal +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclCardinalMap.GetValue@Cardinal +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclCardinalMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclCardinalMap.KeyOfValue@TObject +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclCardinalMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclCardinalMap.MapEquals@IJclCardinalMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclCardinalMap.PutAll@IJclCardinalMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclCardinalMap.PutValue@Cardinal@TObject +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclCardinalMap.Remove@Cardinal +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclCardinalMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclCardinalMap.Values +<copy IJclMap.Values> +\ \ +@@IJclInt64Map +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclInt64Map +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclInt64Map.Items +<copy IJclMap.Items> +\ \ + +@@IJclInt64Map.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclInt64Map.ContainsKey@Int64 +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclInt64Map.ContainsValue@TObject +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclInt64Map.Extract@Int64 +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclInt64Map.GetValue@Int64 +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclInt64Map.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclInt64Map.KeyOfValue@TObject +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclInt64Map.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclInt64Map.MapEquals@IJclInt64Map +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclInt64Map.PutAll@IJclInt64Map +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclInt64Map.PutValue@Int64@TObject +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclInt64Map.Remove@Int64 +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclInt64Map.Size +<copy IJclMap.Size> +\ \ + +@@IJclInt64Map.Values +<copy IJclMap.Values> +\ \ +@@IJclPtrMap +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclPtrMap +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@IJclPtrMap.Items +<copy IJclMap.Items> +\ \ + +@@IJclPtrMap.Clear +<copy IJclMap.Clear> +\ \ + +@@IJclPtrMap.ContainsKey@Pointer +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@IJclPtrMap.ContainsValue@TObject +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@IJclPtrMap.Extract@Pointer +<copy IJclMap.Extract@TObject> +\ \ + +@@IJclPtrMap.GetValue@Pointer +<copy IJclMap.GetValue@TObject> +\ \ + +@@IJclPtrMap.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@IJclPtrMap.KeyOfValue@TObject +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@IJclPtrMap.KeySet +<copy IJclMap.KeySet> +\ \ + +@@IJclPtrMap.MapEquals@IJclPtrMap +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@IJclPtrMap.PutAll@IJclPtrMap +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@IJclPtrMap.PutValue@Pointer@TObject +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@IJclPtrMap.Remove@Pointer +<copy IJclMap.Remove@TObject> +\ \ + +@@IJclPtrMap.Size +<copy IJclMap.Size> +\ \ + +@@IJclPtrMap.Values +<copy IJclMap.Values> +\ \ + + +@@IJclIntfQueue +<copy IJclQueue> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfQueue +<copy !!MEMBEROVERVIEW_IJclQueue> +\ \ + +@@IJclIntfQueue.Clear +<copy IJclQueue.Clear> +\ \ + +@@IJclIntfQueue.Contains@IInterface +<copy IJclQueue.Contains@TObject> +\ \ + +@@IJclIntfQueue.Dequeue +<copy IJclQueue.Dequeue> +\ \ + +@@IJclIntfQueue.Empty +<copy IJclQueue.Empty> +\ \ + +@@IJclIntfQueue.Enqueue@IInterface +<copy IJclQueue.Enqueue@TObject> +\ \ + +@@IJclIntfQueue.Peek +<copy IJclQueue.Peek> +\ \ + +@@IJclIntfQueue.Size +<copy IJclQueue.Size> +\ \ +@@IJclAnsiStrQueue +<copy IJclQueue> +\ \ + +@@!!MEMBEROVERVIEW_IJclAnsiStrQueue +<copy !!MEMBEROVERVIEW_IJclQueue> +\ \ + +@@IJclAnsiStrQueue.Clear +<copy IJclQueue.Clear> +\ \ + +@@IJclAnsiStrQueue.Contains@AnsiString +<copy IJclQueue.Contains@TObject> +\ \ + +@@IJclAnsiStrQueue.Dequeue +<copy IJclQueue.Dequeue> +\ \ + +@@IJclAnsiStrQueue.Empty +<copy IJclQueue.Empty> +\ \ + +@@IJclAnsiStrQueue.Enqueue@AnsiString +<copy IJclQueue.Enqueue@TObject> +\ \ + +@@IJclAnsiStrQueue.Peek +<copy IJclQueue.Peek> +\ \ + +@@IJclAnsiStrQueue.Size +<copy IJclQueue.Size> +\ \ +@@IJclWideStrQueue +<copy IJclQueue> +\ \ + +@@!!MEMBEROVERVIEW_IJclWideStrQueue +<copy !!MEMBEROVERVIEW_IJclQueue> +\ \ + +@@IJclWideStrQueue.Clear +<copy IJclQueue.Clear> +\ \ + +@@IJclWideStrQueue.Contains@WideString +<copy IJclQueue.Contains@TObject> +\ \ + +@@IJclWideStrQueue.Dequeue +<copy IJclQueue.Dequeue> +\ \ + +@@IJclWideStrQueue.Empty +<copy IJclQueue.Empty> +\ \ + +@@IJclWideStrQueue.Enqueue@WideString +<copy IJclQueue.Enqueue@TObject> +\ \ + +@@IJclWideStrQueue.Peek +<copy IJclQueue.Peek> +\ \ + +@@IJclWideStrQueue.Size +<copy IJclQueue.Size> +\ \ +@@IJclUnicodeStrQueue +<copy IJclQueue> +\ \ + +@@!!MEMBEROVERVIEW_IJclUnicodeStrQueue +<copy !!MEMBEROVERVIEW_IJclQueue> +\ \ + +@@IJclUnicodeStrQueue.Clear +<copy IJclQueue.Clear> +\ \ + +@@IJclUnicodeStrQueue.Contains@UnicodeString +<copy IJclQueue.Contains@TObject> +\ \ + +@@IJclUnicodeStrQueue.Dequeue +<copy IJclQueue.Dequeue> +\ \ + +@@IJclUnicodeStrQueue.Empty +<copy IJclQueue.Empty> +\ \ + +@@IJclUnicodeStrQueue.Enqueue@UnicodeString +<copy IJclQueue.Enqueue@TObject> +\ \ + +@@IJclUnicodeStrQueue.Peek +<copy IJclQueue.Peek> +\ \ + +@@IJclUnicodeStrQueue.Size +<copy IJclQueue.Size> +\ \ +@@IJclSingleQueue +<copy IJclQueue> +\ \ + +@@!!MEMBEROVERVIEW_IJclSingleQueue +<copy !!MEMBEROVERVIEW_IJclQueue> +\ \ + +@@IJclSingleQueue.Clear +<copy IJclQueue.Clear> +\ \ + +@@IJclSingleQueue.Contains@Single +<copy IJclQueue.Contains@TObject> +\ \ + +@@IJclSingleQueue.Dequeue +<copy IJclQueue.Dequeue> +\ \ + +@@IJclSingleQueue.Empty +<copy IJclQueue.Empty> +\ \ + +@@IJclSingleQueue.Enqueue@Single +<copy IJclQueue.Enqueue@TObject> +\ \ + +@@IJclSingleQueue.Peek +<copy IJclQueue.Peek> +\ \ + +@@IJclSingleQueue.Size +<copy IJclQueue.Size> +\ \ +@@IJclDoubleQueue +<copy IJclQueue> +\ \ + +@@!!MEMBEROVERVIEW_IJclDoubleQueue +<copy !!MEMBEROVERVIEW_IJclQueue> +\ \ + +@@IJclDoubleQueue.Clear +<copy IJclQueue.Clear> +\ \ + +@@IJclDoubleQueue.Contains@Double +<copy IJclQueue.Contains@TObject> +\ \ + +@@IJclDoubleQueue.Dequeue +<copy IJclQueue.Dequeue> +\ \ + +@@IJclDoubleQueue.Empty +<copy IJclQueue.Empty> +\ \ + +@@IJclDoubleQueue.Enqueue@Double +<copy IJclQueue.Enqueue@TObject> +\ \ + +@@IJclDoubleQueue.Peek +<copy IJclQueue.Peek> +\ \ + +@@IJclDoubleQueue.Size +<copy IJclQueue.Size> +\ \ +@@IJclExtendedQueue +<copy IJclQueue> +\ \ + +@@!!MEMBEROVERVIEW_IJclExtendedQueue +<copy !!MEMBEROVERVIEW_IJclQueue> +\ \ + +@@IJclExtendedQueue.Clear +<copy IJclQueue.Clear> +\ \ + +@@IJclExtendedQueue.Contains@Extended +<copy IJclQueue.Contains@TObject> +\ \ + +@@IJclExtendedQueue.Dequeue +<copy IJclQueue.Dequeue> +\ \ + +@@IJclExtendedQueue.Empty +<copy IJclQueue.Empty> +\ \ + +@@IJclExtendedQueue.Enqueue@Extended +<copy IJclQueue.Enqueue@TObject> +\ \ + +@@IJclExtendedQueue.Peek +<copy IJclQueue.Peek> +\ \ + +@@IJclExtendedQueue.Size +<copy IJclQueue.Size> +\ \ +@@IJclIntegerQueue +<copy IJclQueue> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntegerQueue +<copy !!MEMBEROVERVIEW_IJclQueue> +\ \ + +@@IJclIntegerQueue.Clear +<copy IJclQueue.Clear> +\ \ + +@@IJclIntegerQueue.Contains@Integer +<copy IJclQueue.Contains@TObject> +\ \ + +@@IJclIntegerQueue.Dequeue +<copy IJclQueue.Dequeue> +\ \ + +@@IJclIntegerQueue.Empty +<copy IJclQueue.Empty> +\ \ + +@@IJclIntegerQueue.Enqueue@Integer +<copy IJclQueue.Enqueue@TObject> +\ \ + +@@IJclIntegerQueue.Peek +<copy IJclQueue.Peek> +\ \ + +@@IJclIntegerQueue.Size +<copy IJclQueue.Size> +\ \ +@@IJclCardinalQueue +<copy IJclQueue> +\ \ + +@@!!MEMBEROVERVIEW_IJclCardinalQueue +<copy !!MEMBEROVERVIEW_IJclQueue> +\ \ + +@@IJclCardinalQueue.Clear +<copy IJclQueue.Clear> +\ \ + +@@IJclCardinalQueue.Contains@Cardinal +<copy IJclQueue.Contains@TObject> +\ \ + +@@IJclCardinalQueue.Dequeue +<copy IJclQueue.Dequeue> +\ \ + +@@IJclCardinalQueue.Empty +<copy IJclQueue.Empty> +\ \ + +@@IJclCardinalQueue.Enqueue@Cardinal +<copy IJclQueue.Enqueue@TObject> +\ \ + +@@IJclCardinalQueue.Peek +<copy IJclQueue.Peek> +\ \ + +@@IJclCardinalQueue.Size +<copy IJclQueue.Size> +\ \ +@@IJclInt64Queue +<copy IJclQueue> +\ \ + +@@!!MEMBEROVERVIEW_IJclInt64Queue +<copy !!MEMBEROVERVIEW_IJclQueue> +\ \ + +@@IJclInt64Queue.Clear +<copy IJclQueue.Clear> +\ \ + +@@IJclInt64Queue.Contains@Int64 +<copy IJclQueue.Contains@TObject> +\ \ + +@@IJclInt64Queue.Dequeue +<copy IJclQueue.Dequeue> +\ \ + +@@IJclInt64Queue.Empty +<copy IJclQueue.Empty> +\ \ + +@@IJclInt64Queue.Enqueue@Int64 +<copy IJclQueue.Enqueue@TObject> +\ \ + +@@IJclInt64Queue.Peek +<copy IJclQueue.Peek> +\ \ + +@@IJclInt64Queue.Size +<copy IJclQueue.Size> +\ \ +@@IJclPtrQueue +<copy IJclQueue> +\ \ + +@@!!MEMBEROVERVIEW_IJclPtrQueue +<copy !!MEMBEROVERVIEW_IJclQueue> +\ \ + +@@IJclPtrQueue.Clear +<copy IJclQueue.Clear> +\ \ + +@@IJclPtrQueue.Contains@Pointer +<copy IJclQueue.Contains@TObject> +\ \ + +@@IJclPtrQueue.Dequeue +<copy IJclQueue.Dequeue> +\ \ + +@@IJclPtrQueue.Empty +<copy IJclQueue.Empty> +\ \ + +@@IJclPtrQueue.Enqueue@Pointer +<copy IJclQueue.Enqueue@TObject> +\ \ + +@@IJclPtrQueue.Peek +<copy IJclQueue.Peek> +\ \ + +@@IJclPtrQueue.Size +<copy IJclQueue.Size> +\ \ + + +@@IJclIntfIntfSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfIntfSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclIntfIntfSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclIntfIntfSortedMap.HeadMap@IInterface +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclIntfIntfSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclIntfIntfSortedMap.SubMap@IInterface@IInterface +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclIntfIntfSortedMap.TailMap@IInterface +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclAnsiStrIntfSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclAnsiStrIntfSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclAnsiStrIntfSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclAnsiStrIntfSortedMap.HeadMap@AnsiString +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclAnsiStrIntfSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclAnsiStrIntfSortedMap.SubMap@AnsiString@AnsiString +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclAnsiStrIntfSortedMap.TailMap@AnsiString +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclIntfAnsiStrSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfAnsiStrSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclIntfAnsiStrSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclIntfAnsiStrSortedMap.HeadMap@IInterface +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclIntfAnsiStrSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclIntfAnsiStrSortedMap.SubMap@IInterface@IInterface +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclIntfAnsiStrSortedMap.TailMap@IInterface +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclAnsiStrAnsiStrSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclAnsiStrAnsiStrSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclAnsiStrAnsiStrSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclAnsiStrAnsiStrSortedMap.HeadMap@AnsiString +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclAnsiStrAnsiStrSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclAnsiStrAnsiStrSortedMap.SubMap@AnsiString@AnsiString +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclAnsiStrAnsiStrSortedMap.TailMap@AnsiString +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclWideStrIntfSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclWideStrIntfSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclWideStrIntfSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclWideStrIntfSortedMap.HeadMap@WideString +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclWideStrIntfSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclWideStrIntfSortedMap.SubMap@WideString@WideString +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclWideStrIntfSortedMap.TailMap@WideString +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclIntfWideStrSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfWideStrSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclIntfWideStrSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclIntfWideStrSortedMap.HeadMap@IInterface +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclIntfWideStrSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclIntfWideStrSortedMap.SubMap@IInterface@IInterface +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclIntfWideStrSortedMap.TailMap@IInterface +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclWideStrWideStrSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclWideStrWideStrSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclWideStrWideStrSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclWideStrWideStrSortedMap.HeadMap@WideString +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclWideStrWideStrSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclWideStrWideStrSortedMap.SubMap@WideString@WideString +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclWideStrWideStrSortedMap.TailMap@WideString +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclUnicodeStrIntfSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclUnicodeStrIntfSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclUnicodeStrIntfSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclUnicodeStrIntfSortedMap.HeadMap@UnicodeString +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclUnicodeStrIntfSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclUnicodeStrIntfSortedMap.SubMap@UnicodeString@UnicodeString +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclUnicodeStrIntfSortedMap.TailMap@UnicodeString +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclIntfUnicodeStrSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfUnicodeStrSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclIntfUnicodeStrSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclIntfUnicodeStrSortedMap.HeadMap@IInterface +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclIntfUnicodeStrSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclIntfUnicodeStrSortedMap.SubMap@IInterface@IInterface +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclIntfUnicodeStrSortedMap.TailMap@IInterface +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclUnicodeStrUnicodeStrSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclUnicodeStrUnicodeStrSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclUnicodeStrUnicodeStrSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclUnicodeStrUnicodeStrSortedMap.HeadMap@UnicodeString +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclUnicodeStrUnicodeStrSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclUnicodeStrUnicodeStrSortedMap.SubMap@UnicodeString@UnicodeString +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclUnicodeStrUnicodeStrSortedMap.TailMap@UnicodeString +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclSingleIntfSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclSingleIntfSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclSingleIntfSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclSingleIntfSortedMap.HeadMap@Single +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclSingleIntfSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclSingleIntfSortedMap.SubMap@Single@Single +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclSingleIntfSortedMap.TailMap@Single +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclIntfSingleSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfSingleSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclIntfSingleSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclIntfSingleSortedMap.HeadMap@IInterface +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclIntfSingleSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclIntfSingleSortedMap.SubMap@IInterface@IInterface +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclIntfSingleSortedMap.TailMap@IInterface +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclSingleSingleSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclSingleSingleSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclSingleSingleSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclSingleSingleSortedMap.HeadMap@Single +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclSingleSingleSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclSingleSingleSortedMap.SubMap@Single@Single +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclSingleSingleSortedMap.TailMap@Single +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclDoubleIntfSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclDoubleIntfSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclDoubleIntfSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclDoubleIntfSortedMap.HeadMap@Double +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclDoubleIntfSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclDoubleIntfSortedMap.SubMap@Double@Double +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclDoubleIntfSortedMap.TailMap@Double +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclIntfDoubleSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfDoubleSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclIntfDoubleSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclIntfDoubleSortedMap.HeadMap@IInterface +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclIntfDoubleSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclIntfDoubleSortedMap.SubMap@IInterface@IInterface +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclIntfDoubleSortedMap.TailMap@IInterface +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclDoubleDoubleSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclDoubleDoubleSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclDoubleDoubleSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclDoubleDoubleSortedMap.HeadMap@Double +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclDoubleDoubleSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclDoubleDoubleSortedMap.SubMap@Double@Double +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclDoubleDoubleSortedMap.TailMap@Double +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclExtendedIntfSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclExtendedIntfSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclExtendedIntfSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclExtendedIntfSortedMap.HeadMap@Extended +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclExtendedIntfSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclExtendedIntfSortedMap.SubMap@Extended@Extended +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclExtendedIntfSortedMap.TailMap@Extended +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclIntfExtendedSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfExtendedSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclIntfExtendedSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclIntfExtendedSortedMap.HeadMap@IInterface +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclIntfExtendedSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclIntfExtendedSortedMap.SubMap@IInterface@IInterface +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclIntfExtendedSortedMap.TailMap@IInterface +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclExtendedExtendedSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclExtendedExtendedSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclExtendedExtendedSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclExtendedExtendedSortedMap.HeadMap@Extended +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclExtendedExtendedSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclExtendedExtendedSortedMap.SubMap@Extended@Extended +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclExtendedExtendedSortedMap.TailMap@Extended +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclIntegerIntfSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntegerIntfSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclIntegerIntfSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclIntegerIntfSortedMap.HeadMap@Integer +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclIntegerIntfSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclIntegerIntfSortedMap.SubMap@Integer@Integer +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclIntegerIntfSortedMap.TailMap@Integer +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclIntfIntegerSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfIntegerSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclIntfIntegerSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclIntfIntegerSortedMap.HeadMap@IInterface +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclIntfIntegerSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclIntfIntegerSortedMap.SubMap@IInterface@IInterface +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclIntfIntegerSortedMap.TailMap@IInterface +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclIntegerIntegerSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntegerIntegerSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclIntegerIntegerSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclIntegerIntegerSortedMap.HeadMap@Integer +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclIntegerIntegerSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclIntegerIntegerSortedMap.SubMap@Integer@Integer +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclIntegerIntegerSortedMap.TailMap@Integer +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclCardinalIntfSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclCardinalIntfSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclCardinalIntfSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclCardinalIntfSortedMap.HeadMap@Cardinal +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclCardinalIntfSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclCardinalIntfSortedMap.SubMap@Cardinal@Cardinal +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclCardinalIntfSortedMap.TailMap@Cardinal +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclIntfCardinalSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfCardinalSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclIntfCardinalSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclIntfCardinalSortedMap.HeadMap@IInterface +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclIntfCardinalSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclIntfCardinalSortedMap.SubMap@IInterface@IInterface +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclIntfCardinalSortedMap.TailMap@IInterface +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclCardinalCardinalSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclCardinalCardinalSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclCardinalCardinalSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclCardinalCardinalSortedMap.HeadMap@Cardinal +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclCardinalCardinalSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclCardinalCardinalSortedMap.SubMap@Cardinal@Cardinal +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclCardinalCardinalSortedMap.TailMap@Cardinal +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclInt64IntfSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclInt64IntfSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclInt64IntfSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclInt64IntfSortedMap.HeadMap@Int64 +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclInt64IntfSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclInt64IntfSortedMap.SubMap@Int64@Int64 +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclInt64IntfSortedMap.TailMap@Int64 +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclIntfInt64SortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfInt64SortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclIntfInt64SortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclIntfInt64SortedMap.HeadMap@IInterface +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclIntfInt64SortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclIntfInt64SortedMap.SubMap@IInterface@IInterface +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclIntfInt64SortedMap.TailMap@IInterface +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclInt64Int64SortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclInt64Int64SortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclInt64Int64SortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclInt64Int64SortedMap.HeadMap@Int64 +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclInt64Int64SortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclInt64Int64SortedMap.SubMap@Int64@Int64 +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclInt64Int64SortedMap.TailMap@Int64 +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclPtrIntfSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclPtrIntfSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclPtrIntfSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclPtrIntfSortedMap.HeadMap@Pointer +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclPtrIntfSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclPtrIntfSortedMap.SubMap@Pointer@Pointer +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclPtrIntfSortedMap.TailMap@Pointer +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclIntfPtrSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfPtrSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclIntfPtrSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclIntfPtrSortedMap.HeadMap@IInterface +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclIntfPtrSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclIntfPtrSortedMap.SubMap@IInterface@IInterface +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclIntfPtrSortedMap.TailMap@IInterface +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclPtrPtrSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclPtrPtrSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclPtrPtrSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclPtrPtrSortedMap.HeadMap@Pointer +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclPtrPtrSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclPtrPtrSortedMap.SubMap@Pointer@Pointer +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclPtrPtrSortedMap.TailMap@Pointer +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclIntfSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclIntfSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclIntfSortedMap.HeadMap@IInterface +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclIntfSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclIntfSortedMap.SubMap@IInterface@IInterface +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclIntfSortedMap.TailMap@IInterface +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclAnsiStrSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclAnsiStrSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclAnsiStrSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclAnsiStrSortedMap.HeadMap@AnsiString +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclAnsiStrSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclAnsiStrSortedMap.SubMap@AnsiString@AnsiString +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclAnsiStrSortedMap.TailMap@AnsiString +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclWideStrSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclWideStrSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclWideStrSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclWideStrSortedMap.HeadMap@WideString +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclWideStrSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclWideStrSortedMap.SubMap@WideString@WideString +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclWideStrSortedMap.TailMap@WideString +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclUnicodeStrSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclUnicodeStrSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclUnicodeStrSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclUnicodeStrSortedMap.HeadMap@UnicodeString +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclUnicodeStrSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclUnicodeStrSortedMap.SubMap@UnicodeString@UnicodeString +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclUnicodeStrSortedMap.TailMap@UnicodeString +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclSingleSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclSingleSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclSingleSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclSingleSortedMap.HeadMap@Single +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclSingleSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclSingleSortedMap.SubMap@Single@Single +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclSingleSortedMap.TailMap@Single +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclDoubleSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclDoubleSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclDoubleSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclDoubleSortedMap.HeadMap@Double +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclDoubleSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclDoubleSortedMap.SubMap@Double@Double +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclDoubleSortedMap.TailMap@Double +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclExtendedSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclExtendedSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclExtendedSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclExtendedSortedMap.HeadMap@Extended +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclExtendedSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclExtendedSortedMap.SubMap@Extended@Extended +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclExtendedSortedMap.TailMap@Extended +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclIntegerSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntegerSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclIntegerSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclIntegerSortedMap.HeadMap@Integer +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclIntegerSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclIntegerSortedMap.SubMap@Integer@Integer +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclIntegerSortedMap.TailMap@Integer +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclCardinalSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclCardinalSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclCardinalSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclCardinalSortedMap.HeadMap@Cardinal +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclCardinalSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclCardinalSortedMap.SubMap@Cardinal@Cardinal +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclCardinalSortedMap.TailMap@Cardinal +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclInt64SortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclInt64SortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclInt64SortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclInt64SortedMap.HeadMap@Int64 +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclInt64SortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclInt64SortedMap.SubMap@Int64@Int64 +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclInt64SortedMap.TailMap@Int64 +<copy IJclSortedMap.TailMap@TObject> +\ \ +@@IJclPtrSortedMap +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_IJclPtrSortedMap +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@IJclPtrSortedMap.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@IJclPtrSortedMap.HeadMap@Pointer +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@IJclPtrSortedMap.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@IJclPtrSortedMap.SubMap@Pointer@Pointer +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@IJclPtrSortedMap.TailMap@Pointer +<copy IJclSortedMap.TailMap@TObject> +\ \ + + +@@IJclIntfSortedSet +<copy IJclSortedSet> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfSortedSet +<copy !!MEMBEROVERVIEW_IJclSortedSet> +\ \ + +@@IJclIntfSortedSet.HeadSet@IInterface +<copy IJclSortedSet.HeadSet@TObject> +\ \ + +@@IJclIntfSortedSet.SubSet@IInterface@IInterface +<copy IJclSortedSet.SubSet@TObject@TObject> +\ \ + +@@IJclIntfSortedSet.TailSet@IInterface +<copy IJclSortedSet.TailSet@TObject> +\ \ +@@IJclAnsiStrSortedSet +<copy IJclSortedSet> +\ \ + +@@!!MEMBEROVERVIEW_IJclAnsiStrSortedSet +<copy !!MEMBEROVERVIEW_IJclSortedSet> +\ \ + +@@IJclAnsiStrSortedSet.HeadSet@AnsiString +<copy IJclSortedSet.HeadSet@TObject> +\ \ + +@@IJclAnsiStrSortedSet.SubSet@AnsiString@AnsiString +<copy IJclSortedSet.SubSet@TObject@TObject> +\ \ + +@@IJclAnsiStrSortedSet.TailSet@AnsiString +<copy IJclSortedSet.TailSet@TObject> +\ \ +@@IJclWideStrSortedSet +<copy IJclSortedSet> +\ \ + +@@!!MEMBEROVERVIEW_IJclWideStrSortedSet +<copy !!MEMBEROVERVIEW_IJclSortedSet> +\ \ + +@@IJclWideStrSortedSet.HeadSet@WideString +<copy IJclSortedSet.HeadSet@TObject> +\ \ + +@@IJclWideStrSortedSet.SubSet@WideString@WideString +<copy IJclSortedSet.SubSet@TObject@TObject> +\ \ + +@@IJclWideStrSortedSet.TailSet@WideString +<copy IJclSortedSet.TailSet@TObject> +\ \ +@@IJclUnicodeStrSortedSet +<copy IJclSortedSet> +\ \ + +@@!!MEMBEROVERVIEW_IJclUnicodeStrSortedSet +<copy !!MEMBEROVERVIEW_IJclSortedSet> +\ \ + +@@IJclUnicodeStrSortedSet.HeadSet@UnicodeString +<copy IJclSortedSet.HeadSet@TObject> +\ \ + +@@IJclUnicodeStrSortedSet.SubSet@UnicodeString@UnicodeString +<copy IJclSortedSet.SubSet@TObject@TObject> +\ \ + +@@IJclUnicodeStrSortedSet.TailSet@UnicodeString +<copy IJclSortedSet.TailSet@TObject> +\ \ +@@IJclSingleSortedSet +<copy IJclSortedSet> +\ \ + +@@!!MEMBEROVERVIEW_IJclSingleSortedSet +<copy !!MEMBEROVERVIEW_IJclSortedSet> +\ \ + +@@IJclSingleSortedSet.HeadSet@Single +<copy IJclSortedSet.HeadSet@TObject> +\ \ + +@@IJclSingleSortedSet.SubSet@Single@Single +<copy IJclSortedSet.SubSet@TObject@TObject> +\ \ + +@@IJclSingleSortedSet.TailSet@Single +<copy IJclSortedSet.TailSet@TObject> +\ \ +@@IJclDoubleSortedSet +<copy IJclSortedSet> +\ \ + +@@!!MEMBEROVERVIEW_IJclDoubleSortedSet +<copy !!MEMBEROVERVIEW_IJclSortedSet> +\ \ + +@@IJclDoubleSortedSet.HeadSet@Double +<copy IJclSortedSet.HeadSet@TObject> +\ \ + +@@IJclDoubleSortedSet.SubSet@Double@Double +<copy IJclSortedSet.SubSet@TObject@TObject> +\ \ + +@@IJclDoubleSortedSet.TailSet@Double +<copy IJclSortedSet.TailSet@TObject> +\ \ +@@IJclExtendedSortedSet +<copy IJclSortedSet> +\ \ + +@@!!MEMBEROVERVIEW_IJclExtendedSortedSet +<copy !!MEMBEROVERVIEW_IJclSortedSet> +\ \ + +@@IJclExtendedSortedSet.HeadSet@Extended +<copy IJclSortedSet.HeadSet@TObject> +\ \ + +@@IJclExtendedSortedSet.SubSet@Extended@Extended +<copy IJclSortedSet.SubSet@TObject@TObject> +\ \ + +@@IJclExtendedSortedSet.TailSet@Extended +<copy IJclSortedSet.TailSet@TObject> +\ \ +@@IJclIntegerSortedSet +<copy IJclSortedSet> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntegerSortedSet +<copy !!MEMBEROVERVIEW_IJclSortedSet> +\ \ + +@@IJclIntegerSortedSet.HeadSet@Integer +<copy IJclSortedSet.HeadSet@TObject> +\ \ + +@@IJclIntegerSortedSet.SubSet@Integer@Integer +<copy IJclSortedSet.SubSet@TObject@TObject> +\ \ + +@@IJclIntegerSortedSet.TailSet@Integer +<copy IJclSortedSet.TailSet@TObject> +\ \ +@@IJclCardinalSortedSet +<copy IJclSortedSet> +\ \ + +@@!!MEMBEROVERVIEW_IJclCardinalSortedSet +<copy !!MEMBEROVERVIEW_IJclSortedSet> +\ \ + +@@IJclCardinalSortedSet.HeadSet@Cardinal +<copy IJclSortedSet.HeadSet@TObject> +\ \ + +@@IJclCardinalSortedSet.SubSet@Cardinal@Cardinal +<copy IJclSortedSet.SubSet@TObject@TObject> +\ \ + +@@IJclCardinalSortedSet.TailSet@Cardinal +<copy IJclSortedSet.TailSet@TObject> +\ \ +@@IJclInt64SortedSet +<copy IJclSortedSet> +\ \ + +@@!!MEMBEROVERVIEW_IJclInt64SortedSet +<copy !!MEMBEROVERVIEW_IJclSortedSet> +\ \ + +@@IJclInt64SortedSet.HeadSet@Int64 +<copy IJclSortedSet.HeadSet@TObject> +\ \ + +@@IJclInt64SortedSet.SubSet@Int64@Int64 +<copy IJclSortedSet.SubSet@TObject@TObject> +\ \ + +@@IJclInt64SortedSet.TailSet@Int64 +<copy IJclSortedSet.TailSet@TObject> +\ \ +@@IJclPtrSortedSet +<copy IJclSortedSet> +\ \ + +@@!!MEMBEROVERVIEW_IJclPtrSortedSet +<copy !!MEMBEROVERVIEW_IJclSortedSet> +\ \ + +@@IJclPtrSortedSet.HeadSet@Pointer +<copy IJclSortedSet.HeadSet@TObject> +\ \ + +@@IJclPtrSortedSet.SubSet@Pointer@Pointer +<copy IJclSortedSet.SubSet@TObject@TObject> +\ \ + +@@IJclPtrSortedSet.TailSet@Pointer +<copy IJclSortedSet.TailSet@TObject> +\ \ + + +@@IJclIntfStack +<copy IJclStack> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntfStack +<copy !!MEMBEROVERVIEW_IJclStack> +\ \ + +@@IJclIntfStack.Clear +<copy IJclStack.Clear> +\ \ + +@@IJclIntfStack.Contains@IInterface +<copy IJclStack.Contains@TObject> +\ \ + +@@IJclIntfStack.Empty +<copy IJclStack.Empty> +\ \ + +@@IJclIntfStack.Peek +<copy IJclStack.Peek> +\ \ + +@@IJclIntfStack.Pop +<copy IJclStack.Pop> +\ \ + +@@IJclIntfStack.Push@IInterface +<copy IJclStack.Push@TObject> +\ \ + +@@IJclIntfStack.Size +<copy IJclStack.Size> +\ \ +@@IJclAnsiStrStack +<copy IJclStack> +\ \ + +@@!!MEMBEROVERVIEW_IJclAnsiStrStack +<copy !!MEMBEROVERVIEW_IJclStack> +\ \ + +@@IJclAnsiStrStack.Clear +<copy IJclStack.Clear> +\ \ + +@@IJclAnsiStrStack.Contains@AnsiString +<copy IJclStack.Contains@TObject> +\ \ + +@@IJclAnsiStrStack.Empty +<copy IJclStack.Empty> +\ \ + +@@IJclAnsiStrStack.Peek +<copy IJclStack.Peek> +\ \ + +@@IJclAnsiStrStack.Pop +<copy IJclStack.Pop> +\ \ + +@@IJclAnsiStrStack.Push@AnsiString +<copy IJclStack.Push@TObject> +\ \ + +@@IJclAnsiStrStack.Size +<copy IJclStack.Size> +\ \ +@@IJclWideStrStack +<copy IJclStack> +\ \ + +@@!!MEMBEROVERVIEW_IJclWideStrStack +<copy !!MEMBEROVERVIEW_IJclStack> +\ \ + +@@IJclWideStrStack.Clear +<copy IJclStack.Clear> +\ \ + +@@IJclWideStrStack.Contains@WideString +<copy IJclStack.Contains@TObject> +\ \ + +@@IJclWideStrStack.Empty +<copy IJclStack.Empty> +\ \ + +@@IJclWideStrStack.Peek +<copy IJclStack.Peek> +\ \ + +@@IJclWideStrStack.Pop +<copy IJclStack.Pop> +\ \ + +@@IJclWideStrStack.Push@WideString +<copy IJclStack.Push@TObject> +\ \ + +@@IJclWideStrStack.Size +<copy IJclStack.Size> +\ \ +@@IJclUnicodeStrStack +<copy IJclStack> +\ \ + +@@!!MEMBEROVERVIEW_IJclUnicodeStrStack +<copy !!MEMBEROVERVIEW_IJclStack> +\ \ + +@@IJclUnicodeStrStack.Clear +<copy IJclStack.Clear> +\ \ + +@@IJclUnicodeStrStack.Contains@UnicodeString +<copy IJclStack.Contains@TObject> +\ \ + +@@IJclUnicodeStrStack.Empty +<copy IJclStack.Empty> +\ \ + +@@IJclUnicodeStrStack.Peek +<copy IJclStack.Peek> +\ \ + +@@IJclUnicodeStrStack.Pop +<copy IJclStack.Pop> +\ \ + +@@IJclUnicodeStrStack.Push@UnicodeString +<copy IJclStack.Push@TObject> +\ \ + +@@IJclUnicodeStrStack.Size +<copy IJclStack.Size> +\ \ +@@IJclSingleStack +<copy IJclStack> +\ \ + +@@!!MEMBEROVERVIEW_IJclSingleStack +<copy !!MEMBEROVERVIEW_IJclStack> +\ \ + +@@IJclSingleStack.Clear +<copy IJclStack.Clear> +\ \ + +@@IJclSingleStack.Contains@Single +<copy IJclStack.Contains@TObject> +\ \ + +@@IJclSingleStack.Empty +<copy IJclStack.Empty> +\ \ + +@@IJclSingleStack.Peek +<copy IJclStack.Peek> +\ \ + +@@IJclSingleStack.Pop +<copy IJclStack.Pop> +\ \ + +@@IJclSingleStack.Push@Single +<copy IJclStack.Push@TObject> +\ \ + +@@IJclSingleStack.Size +<copy IJclStack.Size> +\ \ +@@IJclDoubleStack +<copy IJclStack> +\ \ + +@@!!MEMBEROVERVIEW_IJclDoubleStack +<copy !!MEMBEROVERVIEW_IJclStack> +\ \ + +@@IJclDoubleStack.Clear +<copy IJclStack.Clear> +\ \ + +@@IJclDoubleStack.Contains@Double +<copy IJclStack.Contains@TObject> +\ \ + +@@IJclDoubleStack.Empty +<copy IJclStack.Empty> +\ \ + +@@IJclDoubleStack.Peek +<copy IJclStack.Peek> +\ \ + +@@IJclDoubleStack.Pop +<copy IJclStack.Pop> +\ \ + +@@IJclDoubleStack.Push@Double +<copy IJclStack.Push@TObject> +\ \ + +@@IJclDoubleStack.Size +<copy IJclStack.Size> +\ \ +@@IJclExtendedStack +<copy IJclStack> +\ \ + +@@!!MEMBEROVERVIEW_IJclExtendedStack +<copy !!MEMBEROVERVIEW_IJclStack> +\ \ + +@@IJclExtendedStack.Clear +<copy IJclStack.Clear> +\ \ + +@@IJclExtendedStack.Contains@Extended +<copy IJclStack.Contains@TObject> +\ \ + +@@IJclExtendedStack.Empty +<copy IJclStack.Empty> +\ \ + +@@IJclExtendedStack.Peek +<copy IJclStack.Peek> +\ \ + +@@IJclExtendedStack.Pop +<copy IJclStack.Pop> +\ \ + +@@IJclExtendedStack.Push@Extended +<copy IJclStack.Push@TObject> +\ \ + +@@IJclExtendedStack.Size +<copy IJclStack.Size> +\ \ +@@IJclIntegerStack +<copy IJclStack> +\ \ + +@@!!MEMBEROVERVIEW_IJclIntegerStack +<copy !!MEMBEROVERVIEW_IJclStack> +\ \ + +@@IJclIntegerStack.Clear +<copy IJclStack.Clear> +\ \ + +@@IJclIntegerStack.Contains@Integer +<copy IJclStack.Contains@TObject> +\ \ + +@@IJclIntegerStack.Empty +<copy IJclStack.Empty> +\ \ + +@@IJclIntegerStack.Peek +<copy IJclStack.Peek> +\ \ + +@@IJclIntegerStack.Pop +<copy IJclStack.Pop> +\ \ + +@@IJclIntegerStack.Push@Integer +<copy IJclStack.Push@TObject> +\ \ + +@@IJclIntegerStack.Size +<copy IJclStack.Size> +\ \ +@@IJclCardinalStack +<copy IJclStack> +\ \ + +@@!!MEMBEROVERVIEW_IJclCardinalStack +<copy !!MEMBEROVERVIEW_IJclStack> +\ \ + +@@IJclCardinalStack.Clear +<copy IJclStack.Clear> +\ \ + +@@IJclCardinalStack.Contains@Cardinal +<copy IJclStack.Contains@TObject> +\ \ + +@@IJclCardinalStack.Empty +<copy IJclStack.Empty> +\ \ + +@@IJclCardinalStack.Peek +<copy IJclStack.Peek> +\ \ + +@@IJclCardinalStack.Pop +<copy IJclStack.Pop> +\ \ + +@@IJclCardinalStack.Push@Cardinal +<copy IJclStack.Push@TObject> +\ \ + +@@IJclCardinalStack.Size +<copy IJclStack.Size> +\ \ +@@IJclInt64Stack +<copy IJclStack> +\ \ + +@@!!MEMBEROVERVIEW_IJclInt64Stack +<copy !!MEMBEROVERVIEW_IJclStack> +\ \ + +@@IJclInt64Stack.Clear +<copy IJclStack.Clear> +\ \ + +@@IJclInt64Stack.Contains@Int64 +<copy IJclStack.Contains@TObject> +\ \ + +@@IJclInt64Stack.Empty +<copy IJclStack.Empty> +\ \ + +@@IJclInt64Stack.Peek +<copy IJclStack.Peek> +\ \ + +@@IJclInt64Stack.Pop +<copy IJclStack.Pop> +\ \ + +@@IJclInt64Stack.Push@Int64 +<copy IJclStack.Push@TObject> +\ \ + +@@IJclInt64Stack.Size +<copy IJclStack.Size> +\ \ +@@IJclPtrStack +<copy IJclStack> +\ \ + +@@!!MEMBEROVERVIEW_IJclPtrStack +<copy !!MEMBEROVERVIEW_IJclStack> +\ \ + +@@IJclPtrStack.Clear +<copy IJclStack.Clear> +\ \ + +@@IJclPtrStack.Contains@Pointer +<copy IJclStack.Contains@TObject> +\ \ + +@@IJclPtrStack.Empty +<copy IJclStack.Empty> +\ \ + +@@IJclPtrStack.Peek +<copy IJclStack.Peek> +\ \ + +@@IJclPtrStack.Pop +<copy IJclStack.Pop> +\ \ + +@@IJclPtrStack.Push@Pointer +<copy IJclStack.Push@TObject> +\ \ + +@@IJclPtrStack.Size +<copy IJclStack.Size> +\ \ + + + +@@TJclIntfIntfHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclIntfIntfHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclIntfIntfHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclIntfIntfBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfIntfBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclIntfIntfBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclIntfIntfBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclIntfIntfBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclAnsiStrIntfHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclAnsiStrIntfHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclAnsiStrIntfHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclAnsiStrIntfBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclAnsiStrIntfBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclAnsiStrIntfBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclAnsiStrIntfBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclAnsiStrIntfBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclIntfAnsiStrHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclIntfAnsiStrHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclIntfAnsiStrHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclIntfAnsiStrBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfAnsiStrBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclIntfAnsiStrBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclIntfAnsiStrBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclIntfAnsiStrBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclAnsiStrAnsiStrHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclAnsiStrAnsiStrHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclAnsiStrAnsiStrHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclAnsiStrAnsiStrBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclAnsiStrAnsiStrBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclAnsiStrAnsiStrBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclAnsiStrAnsiStrBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclAnsiStrAnsiStrBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclWideStrIntfHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclWideStrIntfHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclWideStrIntfHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclWideStrIntfBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclWideStrIntfBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclWideStrIntfBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclWideStrIntfBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclWideStrIntfBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclIntfWideStrHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclIntfWideStrHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclIntfWideStrHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclIntfWideStrBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfWideStrBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclIntfWideStrBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclIntfWideStrBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclIntfWideStrBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclWideStrWideStrHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclWideStrWideStrHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclWideStrWideStrHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclWideStrWideStrBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclWideStrWideStrBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclWideStrWideStrBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclWideStrWideStrBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclWideStrWideStrBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclUnicodeStrIntfHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclUnicodeStrIntfHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclUnicodeStrIntfHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclUnicodeStrIntfBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclUnicodeStrIntfBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclUnicodeStrIntfBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclUnicodeStrIntfBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclUnicodeStrIntfBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclIntfUnicodeStrHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclIntfUnicodeStrHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclIntfUnicodeStrHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclIntfUnicodeStrBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfUnicodeStrBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclIntfUnicodeStrBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclIntfUnicodeStrBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclIntfUnicodeStrBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclUnicodeStrUnicodeStrHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclUnicodeStrUnicodeStrHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclUnicodeStrUnicodeStrHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclUnicodeStrUnicodeStrBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclUnicodeStrUnicodeStrBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclUnicodeStrUnicodeStrBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclUnicodeStrUnicodeStrBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclUnicodeStrUnicodeStrBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclSingleIntfHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclSingleIntfHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclSingleIntfHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclSingleIntfBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclSingleIntfBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclSingleIntfBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclSingleIntfBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclSingleIntfBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclIntfSingleHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclIntfSingleHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclIntfSingleHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclIntfSingleBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfSingleBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclIntfSingleBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclIntfSingleBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclIntfSingleBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclSingleSingleHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclSingleSingleHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclSingleSingleHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclSingleSingleBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclSingleSingleBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclSingleSingleBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclSingleSingleBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclSingleSingleBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclDoubleIntfHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclDoubleIntfHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclDoubleIntfHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclDoubleIntfBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclDoubleIntfBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclDoubleIntfBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclDoubleIntfBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclDoubleIntfBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclIntfDoubleHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclIntfDoubleHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclIntfDoubleHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclIntfDoubleBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfDoubleBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclIntfDoubleBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclIntfDoubleBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclIntfDoubleBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclDoubleDoubleHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclDoubleDoubleHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclDoubleDoubleHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclDoubleDoubleBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclDoubleDoubleBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclDoubleDoubleBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclDoubleDoubleBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclDoubleDoubleBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclExtendedIntfHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclExtendedIntfHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclExtendedIntfHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclExtendedIntfBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclExtendedIntfBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclExtendedIntfBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclExtendedIntfBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclExtendedIntfBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclIntfExtendedHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclIntfExtendedHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclIntfExtendedHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclIntfExtendedBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfExtendedBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclIntfExtendedBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclIntfExtendedBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclIntfExtendedBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclExtendedExtendedHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclExtendedExtendedHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclExtendedExtendedHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclExtendedExtendedBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclExtendedExtendedBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclExtendedExtendedBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclExtendedExtendedBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclExtendedExtendedBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclIntegerIntfHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclIntegerIntfHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclIntegerIntfHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclIntegerIntfBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntegerIntfBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclIntegerIntfBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclIntegerIntfBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclIntegerIntfBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclIntfIntegerHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclIntfIntegerHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclIntfIntegerHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclIntfIntegerBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfIntegerBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclIntfIntegerBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclIntfIntegerBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclIntfIntegerBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclIntegerIntegerHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclIntegerIntegerHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclIntegerIntegerHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclIntegerIntegerBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntegerIntegerBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclIntegerIntegerBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclIntegerIntegerBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclIntegerIntegerBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclCardinalIntfHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclCardinalIntfHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclCardinalIntfHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclCardinalIntfBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclCardinalIntfBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclCardinalIntfBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclCardinalIntfBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclCardinalIntfBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclIntfCardinalHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclIntfCardinalHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclIntfCardinalHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclIntfCardinalBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfCardinalBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclIntfCardinalBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclIntfCardinalBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclIntfCardinalBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclCardinalCardinalHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclCardinalCardinalHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclCardinalCardinalHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclCardinalCardinalBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclCardinalCardinalBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclCardinalCardinalBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclCardinalCardinalBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclCardinalCardinalBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclInt64IntfHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclInt64IntfHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclInt64IntfHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclInt64IntfBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclInt64IntfBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclInt64IntfBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclInt64IntfBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclInt64IntfBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclIntfInt64HashEntry +<copy TJclHashEntry> +\ \ + +@@TJclIntfInt64HashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclIntfInt64HashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclIntfInt64Bucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfInt64Bucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclIntfInt64Bucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclIntfInt64Bucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclIntfInt64Bucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclInt64Int64HashEntry +<copy TJclHashEntry> +\ \ + +@@TJclInt64Int64HashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclInt64Int64HashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclInt64Int64Bucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclInt64Int64Bucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclInt64Int64Bucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclInt64Int64Bucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclInt64Int64Bucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclPtrIntfHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclPtrIntfHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclPtrIntfHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclPtrIntfBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclPtrIntfBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclPtrIntfBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclPtrIntfBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclPtrIntfBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclIntfPtrHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclIntfPtrHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclIntfPtrHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclIntfPtrBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfPtrBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclIntfPtrBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclIntfPtrBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclIntfPtrBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclPtrPtrHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclPtrPtrHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclPtrPtrHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclPtrPtrBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclPtrPtrBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclPtrPtrBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclPtrPtrBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclPtrPtrBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclIntfHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclIntfHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclIntfHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclIntfBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclIntfBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclIntfBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclIntfBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclAnsiStrHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclAnsiStrHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclAnsiStrHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclAnsiStrBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclAnsiStrBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclAnsiStrBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclAnsiStrBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclAnsiStrBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclWideStrHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclWideStrHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclWideStrHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclWideStrBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclWideStrBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclWideStrBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclWideStrBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclWideStrBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclUnicodeStrHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclUnicodeStrHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclUnicodeStrHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclUnicodeStrBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclUnicodeStrBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclUnicodeStrBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclUnicodeStrBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclUnicodeStrBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclSingleHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclSingleHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclSingleHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclSingleBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclSingleBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclSingleBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclSingleBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclSingleBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclDoubleHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclDoubleHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclDoubleHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclDoubleBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclDoubleBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclDoubleBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclDoubleBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclDoubleBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclExtendedHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclExtendedHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclExtendedHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclExtendedBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclExtendedBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclExtendedBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclExtendedBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclExtendedBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclIntegerHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclIntegerHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclIntegerHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclIntegerBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntegerBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclIntegerBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclIntegerBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclIntegerBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclCardinalHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclCardinalHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclCardinalHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclCardinalBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclCardinalBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclCardinalBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclCardinalBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclCardinalBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclInt64HashEntry +<copy TJclHashEntry> +\ \ + +@@TJclInt64HashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclInt64HashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclInt64Bucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclInt64Bucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclInt64Bucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclInt64Bucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclInt64Bucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +@@TJclPtrHashEntry +<copy TJclHashEntry> +\ \ + +@@TJclPtrHashEntry.Key +<copy TJclHashEntry.Key> +\ \ + +@@TJclPtrHashEntry.Value +<copy TJclHashEntry.Value> +\ \ + +@@TJclPtrBucket +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_TJclPtrBucket +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@TJclPtrBucket.Entries +<copy TJclBucket.Entries> +\ \ + +@@TJclPtrBucket.Size +<copy TJclBucket.Size> +\ \ + +@@TJclPtrBucket.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ + + +@@TJclIntfIntfHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfIntfHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclIntfIntfHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclIntfIntfHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfIntfHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfIntfHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclIntfIntfHashMap.ContainsKey@IInterface +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclIntfIntfHashMap.ContainsValue@IInterface +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclIntfIntfHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclIntfIntfHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclIntfIntfHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclIntfIntfHashMap.Extract@IInterface +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclIntfIntfHashMap.FreeKey@IInterface +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclIntfIntfHashMap.FreeValue@IInterface +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclIntfIntfHashMap.GetValue@IInterface +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclIntfIntfHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclIntfIntfHashMap.KeyOfValue@IInterface +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclIntfIntfHashMap.KeysEqual@IInterface@IInterface +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclIntfIntfHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclIntfIntfHashMap.MapEquals@IJclIntfIntfMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclIntfIntfHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclIntfIntfHashMap.PutAll@IJclIntfIntfMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclIntfIntfHashMap.PutValue@IInterface@IInterface +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntfIntfHashMap.Remove@IInterface +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclIntfIntfHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclIntfIntfHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclIntfIntfHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclIntfIntfHashMap.ValuesEqual@IInterface@IInterface +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclAnsiStrIntfHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclAnsiStrIntfHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclAnsiStrIntfHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclAnsiStrIntfHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclAnsiStrIntfHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclAnsiStrIntfHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclAnsiStrIntfHashMap.ContainsKey@AnsiString +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclAnsiStrIntfHashMap.ContainsValue@IInterface +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclAnsiStrIntfHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclAnsiStrIntfHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclAnsiStrIntfHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclAnsiStrIntfHashMap.Extract@AnsiString +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclAnsiStrIntfHashMap.FreeKey@AnsiString +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclAnsiStrIntfHashMap.FreeValue@IInterface +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclAnsiStrIntfHashMap.GetValue@AnsiString +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclAnsiStrIntfHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclAnsiStrIntfHashMap.KeyOfValue@IInterface +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclAnsiStrIntfHashMap.KeysEqual@AnsiString@AnsiString +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclAnsiStrIntfHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclAnsiStrIntfHashMap.MapEquals@IJclAnsiStrIntfMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclAnsiStrIntfHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclAnsiStrIntfHashMap.PutAll@IJclAnsiStrIntfMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclAnsiStrIntfHashMap.PutValue@AnsiString@IInterface +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclAnsiStrIntfHashMap.Remove@AnsiString +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclAnsiStrIntfHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclAnsiStrIntfHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclAnsiStrIntfHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclAnsiStrIntfHashMap.ValuesEqual@IInterface@IInterface +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclIntfAnsiStrHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfAnsiStrHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclIntfAnsiStrHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclIntfAnsiStrHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfAnsiStrHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfAnsiStrHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclIntfAnsiStrHashMap.ContainsKey@IInterface +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclIntfAnsiStrHashMap.ContainsValue@AnsiString +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclIntfAnsiStrHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclIntfAnsiStrHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclIntfAnsiStrHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclIntfAnsiStrHashMap.Extract@IInterface +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclIntfAnsiStrHashMap.FreeKey@IInterface +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclIntfAnsiStrHashMap.FreeValue@AnsiString +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclIntfAnsiStrHashMap.GetValue@IInterface +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclIntfAnsiStrHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclIntfAnsiStrHashMap.KeyOfValue@AnsiString +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclIntfAnsiStrHashMap.KeysEqual@IInterface@IInterface +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclIntfAnsiStrHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclIntfAnsiStrHashMap.MapEquals@IJclIntfAnsiStrMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclIntfAnsiStrHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclIntfAnsiStrHashMap.PutAll@IJclIntfAnsiStrMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclIntfAnsiStrHashMap.PutValue@IInterface@AnsiString +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntfAnsiStrHashMap.Remove@IInterface +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclIntfAnsiStrHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclIntfAnsiStrHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclIntfAnsiStrHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclIntfAnsiStrHashMap.ValuesEqual@AnsiString@AnsiString +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclAnsiStrAnsiStrHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclAnsiStrAnsiStrHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclAnsiStrAnsiStrHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclAnsiStrAnsiStrHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclAnsiStrAnsiStrHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclAnsiStrAnsiStrHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclAnsiStrAnsiStrHashMap.ContainsKey@AnsiString +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclAnsiStrAnsiStrHashMap.ContainsValue@AnsiString +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclAnsiStrAnsiStrHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclAnsiStrAnsiStrHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclAnsiStrAnsiStrHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclAnsiStrAnsiStrHashMap.Extract@AnsiString +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclAnsiStrAnsiStrHashMap.FreeKey@AnsiString +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclAnsiStrAnsiStrHashMap.FreeValue@AnsiString +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclAnsiStrAnsiStrHashMap.GetValue@AnsiString +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclAnsiStrAnsiStrHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclAnsiStrAnsiStrHashMap.KeyOfValue@AnsiString +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclAnsiStrAnsiStrHashMap.KeysEqual@AnsiString@AnsiString +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclAnsiStrAnsiStrHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclAnsiStrAnsiStrHashMap.MapEquals@IJclAnsiStrAnsiStrMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclAnsiStrAnsiStrHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclAnsiStrAnsiStrHashMap.PutAll@IJclAnsiStrAnsiStrMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclAnsiStrAnsiStrHashMap.PutValue@AnsiString@AnsiString +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclAnsiStrAnsiStrHashMap.Remove@AnsiString +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclAnsiStrAnsiStrHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclAnsiStrAnsiStrHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclAnsiStrAnsiStrHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclAnsiStrAnsiStrHashMap.ValuesEqual@AnsiString@AnsiString +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclWideStrIntfHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclWideStrIntfHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclWideStrIntfHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclWideStrIntfHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclWideStrIntfHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclWideStrIntfHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclWideStrIntfHashMap.ContainsKey@WideString +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclWideStrIntfHashMap.ContainsValue@IInterface +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclWideStrIntfHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclWideStrIntfHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclWideStrIntfHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclWideStrIntfHashMap.Extract@WideString +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclWideStrIntfHashMap.FreeKey@WideString +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclWideStrIntfHashMap.FreeValue@IInterface +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclWideStrIntfHashMap.GetValue@WideString +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclWideStrIntfHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclWideStrIntfHashMap.KeyOfValue@IInterface +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclWideStrIntfHashMap.KeysEqual@WideString@WideString +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclWideStrIntfHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclWideStrIntfHashMap.MapEquals@IJclWideStrIntfMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclWideStrIntfHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclWideStrIntfHashMap.PutAll@IJclWideStrIntfMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclWideStrIntfHashMap.PutValue@WideString@IInterface +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclWideStrIntfHashMap.Remove@WideString +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclWideStrIntfHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclWideStrIntfHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclWideStrIntfHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclWideStrIntfHashMap.ValuesEqual@IInterface@IInterface +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclIntfWideStrHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfWideStrHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclIntfWideStrHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclIntfWideStrHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfWideStrHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfWideStrHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclIntfWideStrHashMap.ContainsKey@IInterface +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclIntfWideStrHashMap.ContainsValue@WideString +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclIntfWideStrHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclIntfWideStrHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclIntfWideStrHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclIntfWideStrHashMap.Extract@IInterface +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclIntfWideStrHashMap.FreeKey@IInterface +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclIntfWideStrHashMap.FreeValue@WideString +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclIntfWideStrHashMap.GetValue@IInterface +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclIntfWideStrHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclIntfWideStrHashMap.KeyOfValue@WideString +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclIntfWideStrHashMap.KeysEqual@IInterface@IInterface +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclIntfWideStrHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclIntfWideStrHashMap.MapEquals@IJclIntfWideStrMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclIntfWideStrHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclIntfWideStrHashMap.PutAll@IJclIntfWideStrMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclIntfWideStrHashMap.PutValue@IInterface@WideString +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntfWideStrHashMap.Remove@IInterface +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclIntfWideStrHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclIntfWideStrHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclIntfWideStrHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclIntfWideStrHashMap.ValuesEqual@WideString@WideString +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclWideStrWideStrHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclWideStrWideStrHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclWideStrWideStrHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclWideStrWideStrHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclWideStrWideStrHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclWideStrWideStrHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclWideStrWideStrHashMap.ContainsKey@WideString +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclWideStrWideStrHashMap.ContainsValue@WideString +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclWideStrWideStrHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclWideStrWideStrHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclWideStrWideStrHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclWideStrWideStrHashMap.Extract@WideString +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclWideStrWideStrHashMap.FreeKey@WideString +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclWideStrWideStrHashMap.FreeValue@WideString +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclWideStrWideStrHashMap.GetValue@WideString +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclWideStrWideStrHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclWideStrWideStrHashMap.KeyOfValue@WideString +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclWideStrWideStrHashMap.KeysEqual@WideString@WideString +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclWideStrWideStrHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclWideStrWideStrHashMap.MapEquals@IJclWideStrWideStrMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclWideStrWideStrHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclWideStrWideStrHashMap.PutAll@IJclWideStrWideStrMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclWideStrWideStrHashMap.PutValue@WideString@WideString +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclWideStrWideStrHashMap.Remove@WideString +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclWideStrWideStrHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclWideStrWideStrHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclWideStrWideStrHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclWideStrWideStrHashMap.ValuesEqual@WideString@WideString +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclUnicodeStrIntfHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclUnicodeStrIntfHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclUnicodeStrIntfHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclUnicodeStrIntfHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclUnicodeStrIntfHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclUnicodeStrIntfHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclUnicodeStrIntfHashMap.ContainsKey@UnicodeString +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclUnicodeStrIntfHashMap.ContainsValue@IInterface +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclUnicodeStrIntfHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclUnicodeStrIntfHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclUnicodeStrIntfHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclUnicodeStrIntfHashMap.Extract@UnicodeString +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclUnicodeStrIntfHashMap.FreeKey@UnicodeString +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclUnicodeStrIntfHashMap.FreeValue@IInterface +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclUnicodeStrIntfHashMap.GetValue@UnicodeString +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclUnicodeStrIntfHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclUnicodeStrIntfHashMap.KeyOfValue@IInterface +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclUnicodeStrIntfHashMap.KeysEqual@UnicodeString@UnicodeString +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclUnicodeStrIntfHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclUnicodeStrIntfHashMap.MapEquals@IJclUnicodeStrIntfMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclUnicodeStrIntfHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclUnicodeStrIntfHashMap.PutAll@IJclUnicodeStrIntfMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclUnicodeStrIntfHashMap.PutValue@UnicodeString@IInterface +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclUnicodeStrIntfHashMap.Remove@UnicodeString +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclUnicodeStrIntfHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclUnicodeStrIntfHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclUnicodeStrIntfHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclUnicodeStrIntfHashMap.ValuesEqual@IInterface@IInterface +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclIntfUnicodeStrHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfUnicodeStrHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclIntfUnicodeStrHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclIntfUnicodeStrHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfUnicodeStrHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfUnicodeStrHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclIntfUnicodeStrHashMap.ContainsKey@IInterface +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclIntfUnicodeStrHashMap.ContainsValue@UnicodeString +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclIntfUnicodeStrHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclIntfUnicodeStrHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclIntfUnicodeStrHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclIntfUnicodeStrHashMap.Extract@IInterface +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclIntfUnicodeStrHashMap.FreeKey@IInterface +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclIntfUnicodeStrHashMap.FreeValue@UnicodeString +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclIntfUnicodeStrHashMap.GetValue@IInterface +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclIntfUnicodeStrHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclIntfUnicodeStrHashMap.KeyOfValue@UnicodeString +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclIntfUnicodeStrHashMap.KeysEqual@IInterface@IInterface +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclIntfUnicodeStrHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclIntfUnicodeStrHashMap.MapEquals@IJclIntfUnicodeStrMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclIntfUnicodeStrHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclIntfUnicodeStrHashMap.PutAll@IJclIntfUnicodeStrMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclIntfUnicodeStrHashMap.PutValue@IInterface@UnicodeString +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntfUnicodeStrHashMap.Remove@IInterface +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclIntfUnicodeStrHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclIntfUnicodeStrHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclIntfUnicodeStrHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclIntfUnicodeStrHashMap.ValuesEqual@UnicodeString@UnicodeString +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclUnicodeStrUnicodeStrHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclUnicodeStrUnicodeStrHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclUnicodeStrUnicodeStrHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclUnicodeStrUnicodeStrHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclUnicodeStrUnicodeStrHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclUnicodeStrUnicodeStrHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclUnicodeStrUnicodeStrHashMap.ContainsKey@UnicodeString +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclUnicodeStrUnicodeStrHashMap.ContainsValue@UnicodeString +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclUnicodeStrUnicodeStrHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclUnicodeStrUnicodeStrHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclUnicodeStrUnicodeStrHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclUnicodeStrUnicodeStrHashMap.Extract@UnicodeString +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclUnicodeStrUnicodeStrHashMap.FreeKey@UnicodeString +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclUnicodeStrUnicodeStrHashMap.FreeValue@UnicodeString +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclUnicodeStrUnicodeStrHashMap.GetValue@UnicodeString +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclUnicodeStrUnicodeStrHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclUnicodeStrUnicodeStrHashMap.KeyOfValue@UnicodeString +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclUnicodeStrUnicodeStrHashMap.KeysEqual@UnicodeString@UnicodeString +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclUnicodeStrUnicodeStrHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclUnicodeStrUnicodeStrHashMap.MapEquals@IJclUnicodeStrUnicodeStrMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclUnicodeStrUnicodeStrHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclUnicodeStrUnicodeStrHashMap.PutAll@IJclUnicodeStrUnicodeStrMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclUnicodeStrUnicodeStrHashMap.PutValue@UnicodeString@UnicodeString +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclUnicodeStrUnicodeStrHashMap.Remove@UnicodeString +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclUnicodeStrUnicodeStrHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclUnicodeStrUnicodeStrHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclUnicodeStrUnicodeStrHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclUnicodeStrUnicodeStrHashMap.ValuesEqual@UnicodeString@UnicodeString +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclSingleIntfHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclSingleIntfHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclSingleIntfHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclSingleIntfHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclSingleIntfHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclSingleIntfHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclSingleIntfHashMap.ContainsKey@Single +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclSingleIntfHashMap.ContainsValue@IInterface +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclSingleIntfHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclSingleIntfHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclSingleIntfHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclSingleIntfHashMap.Extract@Single +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclSingleIntfHashMap.FreeKey@Single +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclSingleIntfHashMap.FreeValue@IInterface +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclSingleIntfHashMap.GetValue@Single +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclSingleIntfHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclSingleIntfHashMap.KeyOfValue@IInterface +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclSingleIntfHashMap.KeysEqual@Single@Single +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclSingleIntfHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclSingleIntfHashMap.MapEquals@IJclSingleIntfMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclSingleIntfHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclSingleIntfHashMap.PutAll@IJclSingleIntfMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclSingleIntfHashMap.PutValue@Single@IInterface +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclSingleIntfHashMap.Remove@Single +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclSingleIntfHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclSingleIntfHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclSingleIntfHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclSingleIntfHashMap.ValuesEqual@IInterface@IInterface +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclIntfSingleHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfSingleHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclIntfSingleHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclIntfSingleHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfSingleHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfSingleHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclIntfSingleHashMap.ContainsKey@IInterface +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclIntfSingleHashMap.ContainsValue@Single +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclIntfSingleHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclIntfSingleHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclIntfSingleHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclIntfSingleHashMap.Extract@IInterface +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclIntfSingleHashMap.FreeKey@IInterface +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclIntfSingleHashMap.FreeValue@Single +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclIntfSingleHashMap.GetValue@IInterface +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclIntfSingleHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclIntfSingleHashMap.KeyOfValue@Single +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclIntfSingleHashMap.KeysEqual@IInterface@IInterface +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclIntfSingleHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclIntfSingleHashMap.MapEquals@IJclIntfSingleMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclIntfSingleHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclIntfSingleHashMap.PutAll@IJclIntfSingleMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclIntfSingleHashMap.PutValue@IInterface@Single +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntfSingleHashMap.Remove@IInterface +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclIntfSingleHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclIntfSingleHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclIntfSingleHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclIntfSingleHashMap.ValuesEqual@Single@Single +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclSingleSingleHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclSingleSingleHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclSingleSingleHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclSingleSingleHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclSingleSingleHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclSingleSingleHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclSingleSingleHashMap.ContainsKey@Single +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclSingleSingleHashMap.ContainsValue@Single +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclSingleSingleHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclSingleSingleHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclSingleSingleHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclSingleSingleHashMap.Extract@Single +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclSingleSingleHashMap.FreeKey@Single +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclSingleSingleHashMap.FreeValue@Single +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclSingleSingleHashMap.GetValue@Single +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclSingleSingleHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclSingleSingleHashMap.KeyOfValue@Single +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclSingleSingleHashMap.KeysEqual@Single@Single +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclSingleSingleHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclSingleSingleHashMap.MapEquals@IJclSingleSingleMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclSingleSingleHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclSingleSingleHashMap.PutAll@IJclSingleSingleMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclSingleSingleHashMap.PutValue@Single@Single +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclSingleSingleHashMap.Remove@Single +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclSingleSingleHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclSingleSingleHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclSingleSingleHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclSingleSingleHashMap.ValuesEqual@Single@Single +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclDoubleIntfHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclDoubleIntfHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclDoubleIntfHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclDoubleIntfHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclDoubleIntfHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclDoubleIntfHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclDoubleIntfHashMap.ContainsKey@Double +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclDoubleIntfHashMap.ContainsValue@IInterface +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclDoubleIntfHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclDoubleIntfHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclDoubleIntfHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclDoubleIntfHashMap.Extract@Double +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclDoubleIntfHashMap.FreeKey@Double +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclDoubleIntfHashMap.FreeValue@IInterface +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclDoubleIntfHashMap.GetValue@Double +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclDoubleIntfHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclDoubleIntfHashMap.KeyOfValue@IInterface +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclDoubleIntfHashMap.KeysEqual@Double@Double +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclDoubleIntfHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclDoubleIntfHashMap.MapEquals@IJclDoubleIntfMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclDoubleIntfHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclDoubleIntfHashMap.PutAll@IJclDoubleIntfMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclDoubleIntfHashMap.PutValue@Double@IInterface +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclDoubleIntfHashMap.Remove@Double +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclDoubleIntfHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclDoubleIntfHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclDoubleIntfHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclDoubleIntfHashMap.ValuesEqual@IInterface@IInterface +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclIntfDoubleHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfDoubleHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclIntfDoubleHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclIntfDoubleHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfDoubleHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfDoubleHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclIntfDoubleHashMap.ContainsKey@IInterface +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclIntfDoubleHashMap.ContainsValue@Double +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclIntfDoubleHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclIntfDoubleHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclIntfDoubleHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclIntfDoubleHashMap.Extract@IInterface +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclIntfDoubleHashMap.FreeKey@IInterface +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclIntfDoubleHashMap.FreeValue@Double +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclIntfDoubleHashMap.GetValue@IInterface +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclIntfDoubleHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclIntfDoubleHashMap.KeyOfValue@Double +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclIntfDoubleHashMap.KeysEqual@IInterface@IInterface +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclIntfDoubleHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclIntfDoubleHashMap.MapEquals@IJclIntfDoubleMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclIntfDoubleHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclIntfDoubleHashMap.PutAll@IJclIntfDoubleMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclIntfDoubleHashMap.PutValue@IInterface@Double +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntfDoubleHashMap.Remove@IInterface +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclIntfDoubleHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclIntfDoubleHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclIntfDoubleHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclIntfDoubleHashMap.ValuesEqual@Double@Double +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclDoubleDoubleHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclDoubleDoubleHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclDoubleDoubleHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclDoubleDoubleHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclDoubleDoubleHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclDoubleDoubleHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclDoubleDoubleHashMap.ContainsKey@Double +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclDoubleDoubleHashMap.ContainsValue@Double +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclDoubleDoubleHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclDoubleDoubleHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclDoubleDoubleHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclDoubleDoubleHashMap.Extract@Double +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclDoubleDoubleHashMap.FreeKey@Double +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclDoubleDoubleHashMap.FreeValue@Double +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclDoubleDoubleHashMap.GetValue@Double +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclDoubleDoubleHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclDoubleDoubleHashMap.KeyOfValue@Double +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclDoubleDoubleHashMap.KeysEqual@Double@Double +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclDoubleDoubleHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclDoubleDoubleHashMap.MapEquals@IJclDoubleDoubleMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclDoubleDoubleHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclDoubleDoubleHashMap.PutAll@IJclDoubleDoubleMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclDoubleDoubleHashMap.PutValue@Double@Double +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclDoubleDoubleHashMap.Remove@Double +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclDoubleDoubleHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclDoubleDoubleHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclDoubleDoubleHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclDoubleDoubleHashMap.ValuesEqual@Double@Double +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclExtendedIntfHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclExtendedIntfHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclExtendedIntfHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclExtendedIntfHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclExtendedIntfHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclExtendedIntfHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclExtendedIntfHashMap.ContainsKey@Extended +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclExtendedIntfHashMap.ContainsValue@IInterface +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclExtendedIntfHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclExtendedIntfHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclExtendedIntfHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclExtendedIntfHashMap.Extract@Extended +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclExtendedIntfHashMap.FreeKey@Extended +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclExtendedIntfHashMap.FreeValue@IInterface +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclExtendedIntfHashMap.GetValue@Extended +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclExtendedIntfHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclExtendedIntfHashMap.KeyOfValue@IInterface +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclExtendedIntfHashMap.KeysEqual@Extended@Extended +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclExtendedIntfHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclExtendedIntfHashMap.MapEquals@IJclExtendedIntfMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclExtendedIntfHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclExtendedIntfHashMap.PutAll@IJclExtendedIntfMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclExtendedIntfHashMap.PutValue@Extended@IInterface +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclExtendedIntfHashMap.Remove@Extended +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclExtendedIntfHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclExtendedIntfHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclExtendedIntfHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclExtendedIntfHashMap.ValuesEqual@IInterface@IInterface +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclIntfExtendedHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfExtendedHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclIntfExtendedHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclIntfExtendedHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfExtendedHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfExtendedHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclIntfExtendedHashMap.ContainsKey@IInterface +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclIntfExtendedHashMap.ContainsValue@Extended +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclIntfExtendedHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclIntfExtendedHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclIntfExtendedHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclIntfExtendedHashMap.Extract@IInterface +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclIntfExtendedHashMap.FreeKey@IInterface +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclIntfExtendedHashMap.FreeValue@Extended +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclIntfExtendedHashMap.GetValue@IInterface +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclIntfExtendedHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclIntfExtendedHashMap.KeyOfValue@Extended +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclIntfExtendedHashMap.KeysEqual@IInterface@IInterface +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclIntfExtendedHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclIntfExtendedHashMap.MapEquals@IJclIntfExtendedMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclIntfExtendedHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclIntfExtendedHashMap.PutAll@IJclIntfExtendedMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclIntfExtendedHashMap.PutValue@IInterface@Extended +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntfExtendedHashMap.Remove@IInterface +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclIntfExtendedHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclIntfExtendedHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclIntfExtendedHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclIntfExtendedHashMap.ValuesEqual@Extended@Extended +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclExtendedExtendedHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclExtendedExtendedHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclExtendedExtendedHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclExtendedExtendedHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclExtendedExtendedHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclExtendedExtendedHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclExtendedExtendedHashMap.ContainsKey@Extended +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclExtendedExtendedHashMap.ContainsValue@Extended +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclExtendedExtendedHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclExtendedExtendedHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclExtendedExtendedHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclExtendedExtendedHashMap.Extract@Extended +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclExtendedExtendedHashMap.FreeKey@Extended +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclExtendedExtendedHashMap.FreeValue@Extended +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclExtendedExtendedHashMap.GetValue@Extended +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclExtendedExtendedHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclExtendedExtendedHashMap.KeyOfValue@Extended +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclExtendedExtendedHashMap.KeysEqual@Extended@Extended +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclExtendedExtendedHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclExtendedExtendedHashMap.MapEquals@IJclExtendedExtendedMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclExtendedExtendedHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclExtendedExtendedHashMap.PutAll@IJclExtendedExtendedMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclExtendedExtendedHashMap.PutValue@Extended@Extended +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclExtendedExtendedHashMap.Remove@Extended +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclExtendedExtendedHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclExtendedExtendedHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclExtendedExtendedHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclExtendedExtendedHashMap.ValuesEqual@Extended@Extended +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclIntegerIntfHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntegerIntfHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclIntegerIntfHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclIntegerIntfHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntegerIntfHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntegerIntfHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclIntegerIntfHashMap.ContainsKey@Integer +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclIntegerIntfHashMap.ContainsValue@IInterface +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclIntegerIntfHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclIntegerIntfHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclIntegerIntfHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclIntegerIntfHashMap.Extract@Integer +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclIntegerIntfHashMap.FreeKey@Integer +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclIntegerIntfHashMap.FreeValue@IInterface +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclIntegerIntfHashMap.GetValue@Integer +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclIntegerIntfHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclIntegerIntfHashMap.KeyOfValue@IInterface +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclIntegerIntfHashMap.KeysEqual@Integer@Integer +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclIntegerIntfHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclIntegerIntfHashMap.MapEquals@IJclIntegerIntfMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclIntegerIntfHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclIntegerIntfHashMap.PutAll@IJclIntegerIntfMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclIntegerIntfHashMap.PutValue@Integer@IInterface +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntegerIntfHashMap.Remove@Integer +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclIntegerIntfHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclIntegerIntfHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclIntegerIntfHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclIntegerIntfHashMap.ValuesEqual@IInterface@IInterface +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclIntfIntegerHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfIntegerHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclIntfIntegerHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclIntfIntegerHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfIntegerHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfIntegerHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclIntfIntegerHashMap.ContainsKey@IInterface +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclIntfIntegerHashMap.ContainsValue@Integer +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclIntfIntegerHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclIntfIntegerHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclIntfIntegerHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclIntfIntegerHashMap.Extract@IInterface +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclIntfIntegerHashMap.FreeKey@IInterface +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclIntfIntegerHashMap.FreeValue@Integer +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclIntfIntegerHashMap.GetValue@IInterface +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclIntfIntegerHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclIntfIntegerHashMap.KeyOfValue@Integer +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclIntfIntegerHashMap.KeysEqual@IInterface@IInterface +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclIntfIntegerHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclIntfIntegerHashMap.MapEquals@IJclIntfIntegerMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclIntfIntegerHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclIntfIntegerHashMap.PutAll@IJclIntfIntegerMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclIntfIntegerHashMap.PutValue@IInterface@Integer +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntfIntegerHashMap.Remove@IInterface +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclIntfIntegerHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclIntfIntegerHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclIntfIntegerHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclIntfIntegerHashMap.ValuesEqual@Integer@Integer +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclIntegerIntegerHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntegerIntegerHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclIntegerIntegerHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclIntegerIntegerHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntegerIntegerHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntegerIntegerHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclIntegerIntegerHashMap.ContainsKey@Integer +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclIntegerIntegerHashMap.ContainsValue@Integer +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclIntegerIntegerHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclIntegerIntegerHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclIntegerIntegerHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclIntegerIntegerHashMap.Extract@Integer +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclIntegerIntegerHashMap.FreeKey@Integer +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclIntegerIntegerHashMap.FreeValue@Integer +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclIntegerIntegerHashMap.GetValue@Integer +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclIntegerIntegerHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclIntegerIntegerHashMap.KeyOfValue@Integer +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclIntegerIntegerHashMap.KeysEqual@Integer@Integer +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclIntegerIntegerHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclIntegerIntegerHashMap.MapEquals@IJclIntegerIntegerMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclIntegerIntegerHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclIntegerIntegerHashMap.PutAll@IJclIntegerIntegerMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclIntegerIntegerHashMap.PutValue@Integer@Integer +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntegerIntegerHashMap.Remove@Integer +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclIntegerIntegerHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclIntegerIntegerHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclIntegerIntegerHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclIntegerIntegerHashMap.ValuesEqual@Integer@Integer +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclCardinalIntfHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclCardinalIntfHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclCardinalIntfHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclCardinalIntfHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclCardinalIntfHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclCardinalIntfHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclCardinalIntfHashMap.ContainsKey@Cardinal +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclCardinalIntfHashMap.ContainsValue@IInterface +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclCardinalIntfHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclCardinalIntfHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclCardinalIntfHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclCardinalIntfHashMap.Extract@Cardinal +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclCardinalIntfHashMap.FreeKey@Cardinal +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclCardinalIntfHashMap.FreeValue@IInterface +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclCardinalIntfHashMap.GetValue@Cardinal +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclCardinalIntfHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclCardinalIntfHashMap.KeyOfValue@IInterface +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclCardinalIntfHashMap.KeysEqual@Cardinal@Cardinal +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclCardinalIntfHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclCardinalIntfHashMap.MapEquals@IJclCardinalIntfMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclCardinalIntfHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclCardinalIntfHashMap.PutAll@IJclCardinalIntfMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclCardinalIntfHashMap.PutValue@Cardinal@IInterface +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclCardinalIntfHashMap.Remove@Cardinal +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclCardinalIntfHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclCardinalIntfHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclCardinalIntfHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclCardinalIntfHashMap.ValuesEqual@IInterface@IInterface +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclIntfCardinalHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfCardinalHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclIntfCardinalHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclIntfCardinalHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfCardinalHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfCardinalHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclIntfCardinalHashMap.ContainsKey@IInterface +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclIntfCardinalHashMap.ContainsValue@Cardinal +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclIntfCardinalHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclIntfCardinalHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclIntfCardinalHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclIntfCardinalHashMap.Extract@IInterface +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclIntfCardinalHashMap.FreeKey@IInterface +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclIntfCardinalHashMap.FreeValue@Cardinal +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclIntfCardinalHashMap.GetValue@IInterface +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclIntfCardinalHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclIntfCardinalHashMap.KeyOfValue@Cardinal +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclIntfCardinalHashMap.KeysEqual@IInterface@IInterface +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclIntfCardinalHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclIntfCardinalHashMap.MapEquals@IJclIntfCardinalMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclIntfCardinalHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclIntfCardinalHashMap.PutAll@IJclIntfCardinalMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclIntfCardinalHashMap.PutValue@IInterface@Cardinal +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntfCardinalHashMap.Remove@IInterface +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclIntfCardinalHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclIntfCardinalHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclIntfCardinalHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclIntfCardinalHashMap.ValuesEqual@Cardinal@Cardinal +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclCardinalCardinalHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclCardinalCardinalHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclCardinalCardinalHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclCardinalCardinalHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclCardinalCardinalHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclCardinalCardinalHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclCardinalCardinalHashMap.ContainsKey@Cardinal +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclCardinalCardinalHashMap.ContainsValue@Cardinal +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclCardinalCardinalHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclCardinalCardinalHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclCardinalCardinalHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclCardinalCardinalHashMap.Extract@Cardinal +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclCardinalCardinalHashMap.FreeKey@Cardinal +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclCardinalCardinalHashMap.FreeValue@Cardinal +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclCardinalCardinalHashMap.GetValue@Cardinal +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclCardinalCardinalHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclCardinalCardinalHashMap.KeyOfValue@Cardinal +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclCardinalCardinalHashMap.KeysEqual@Cardinal@Cardinal +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclCardinalCardinalHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclCardinalCardinalHashMap.MapEquals@IJclCardinalCardinalMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclCardinalCardinalHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclCardinalCardinalHashMap.PutAll@IJclCardinalCardinalMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclCardinalCardinalHashMap.PutValue@Cardinal@Cardinal +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclCardinalCardinalHashMap.Remove@Cardinal +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclCardinalCardinalHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclCardinalCardinalHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclCardinalCardinalHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclCardinalCardinalHashMap.ValuesEqual@Cardinal@Cardinal +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclInt64IntfHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclInt64IntfHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclInt64IntfHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclInt64IntfHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclInt64IntfHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclInt64IntfHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclInt64IntfHashMap.ContainsKey@Int64 +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclInt64IntfHashMap.ContainsValue@IInterface +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclInt64IntfHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclInt64IntfHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclInt64IntfHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclInt64IntfHashMap.Extract@Int64 +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclInt64IntfHashMap.FreeKey@Int64 +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclInt64IntfHashMap.FreeValue@IInterface +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclInt64IntfHashMap.GetValue@Int64 +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclInt64IntfHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclInt64IntfHashMap.KeyOfValue@IInterface +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclInt64IntfHashMap.KeysEqual@Int64@Int64 +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclInt64IntfHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclInt64IntfHashMap.MapEquals@IJclInt64IntfMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclInt64IntfHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclInt64IntfHashMap.PutAll@IJclInt64IntfMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclInt64IntfHashMap.PutValue@Int64@IInterface +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclInt64IntfHashMap.Remove@Int64 +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclInt64IntfHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclInt64IntfHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclInt64IntfHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclInt64IntfHashMap.ValuesEqual@IInterface@IInterface +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclIntfInt64HashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfInt64HashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclIntfInt64HashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclIntfInt64HashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfInt64HashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfInt64HashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclIntfInt64HashMap.ContainsKey@IInterface +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclIntfInt64HashMap.ContainsValue@Int64 +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclIntfInt64HashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclIntfInt64HashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclIntfInt64HashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclIntfInt64HashMap.Extract@IInterface +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclIntfInt64HashMap.FreeKey@IInterface +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclIntfInt64HashMap.FreeValue@Int64 +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclIntfInt64HashMap.GetValue@IInterface +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclIntfInt64HashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclIntfInt64HashMap.KeyOfValue@Int64 +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclIntfInt64HashMap.KeysEqual@IInterface@IInterface +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclIntfInt64HashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclIntfInt64HashMap.MapEquals@IJclIntfInt64Map +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclIntfInt64HashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclIntfInt64HashMap.PutAll@IJclIntfInt64Map +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclIntfInt64HashMap.PutValue@IInterface@Int64 +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntfInt64HashMap.Remove@IInterface +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclIntfInt64HashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclIntfInt64HashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclIntfInt64HashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclIntfInt64HashMap.ValuesEqual@Int64@Int64 +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclInt64Int64HashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclInt64Int64HashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclInt64Int64HashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclInt64Int64HashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclInt64Int64HashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclInt64Int64HashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclInt64Int64HashMap.ContainsKey@Int64 +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclInt64Int64HashMap.ContainsValue@Int64 +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclInt64Int64HashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclInt64Int64HashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclInt64Int64HashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclInt64Int64HashMap.Extract@Int64 +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclInt64Int64HashMap.FreeKey@Int64 +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclInt64Int64HashMap.FreeValue@Int64 +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclInt64Int64HashMap.GetValue@Int64 +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclInt64Int64HashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclInt64Int64HashMap.KeyOfValue@Int64 +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclInt64Int64HashMap.KeysEqual@Int64@Int64 +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclInt64Int64HashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclInt64Int64HashMap.MapEquals@IJclInt64Int64Map +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclInt64Int64HashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclInt64Int64HashMap.PutAll@IJclInt64Int64Map +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclInt64Int64HashMap.PutValue@Int64@Int64 +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclInt64Int64HashMap.Remove@Int64 +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclInt64Int64HashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclInt64Int64HashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclInt64Int64HashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclInt64Int64HashMap.ValuesEqual@Int64@Int64 +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclPtrIntfHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclPtrIntfHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclPtrIntfHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclPtrIntfHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclPtrIntfHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclPtrIntfHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclPtrIntfHashMap.ContainsKey@Pointer +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclPtrIntfHashMap.ContainsValue@IInterface +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclPtrIntfHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclPtrIntfHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclPtrIntfHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclPtrIntfHashMap.Extract@Pointer +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclPtrIntfHashMap.FreeKey@Pointer +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclPtrIntfHashMap.FreeValue@IInterface +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclPtrIntfHashMap.GetValue@Pointer +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclPtrIntfHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclPtrIntfHashMap.KeyOfValue@IInterface +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclPtrIntfHashMap.KeysEqual@Pointer@Pointer +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclPtrIntfHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclPtrIntfHashMap.MapEquals@IJclPtrIntfMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclPtrIntfHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclPtrIntfHashMap.PutAll@IJclPtrIntfMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclPtrIntfHashMap.PutValue@Pointer@IInterface +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclPtrIntfHashMap.Remove@Pointer +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclPtrIntfHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclPtrIntfHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclPtrIntfHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclPtrIntfHashMap.ValuesEqual@IInterface@IInterface +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclIntfPtrHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfPtrHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclIntfPtrHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclIntfPtrHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfPtrHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfPtrHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclIntfPtrHashMap.ContainsKey@IInterface +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclIntfPtrHashMap.ContainsValue@Pointer +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclIntfPtrHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclIntfPtrHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclIntfPtrHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclIntfPtrHashMap.Extract@IInterface +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclIntfPtrHashMap.FreeKey@IInterface +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclIntfPtrHashMap.FreeValue@Pointer +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclIntfPtrHashMap.GetValue@IInterface +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclIntfPtrHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclIntfPtrHashMap.KeyOfValue@Pointer +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclIntfPtrHashMap.KeysEqual@IInterface@IInterface +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclIntfPtrHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclIntfPtrHashMap.MapEquals@IJclIntfPtrMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclIntfPtrHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclIntfPtrHashMap.PutAll@IJclIntfPtrMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclIntfPtrHashMap.PutValue@IInterface@Pointer +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntfPtrHashMap.Remove@IInterface +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclIntfPtrHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclIntfPtrHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclIntfPtrHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclIntfPtrHashMap.ValuesEqual@Pointer@Pointer +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclPtrPtrHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclPtrPtrHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclPtrPtrHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclPtrPtrHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclPtrPtrHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclPtrPtrHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclPtrPtrHashMap.ContainsKey@Pointer +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclPtrPtrHashMap.ContainsValue@Pointer +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclPtrPtrHashMap.Create@Integer +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclPtrPtrHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclPtrPtrHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclPtrPtrHashMap.Extract@Pointer +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclPtrPtrHashMap.FreeKey@Pointer +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclPtrPtrHashMap.FreeValue@Pointer +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclPtrPtrHashMap.GetValue@Pointer +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclPtrPtrHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclPtrPtrHashMap.KeyOfValue@Pointer +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclPtrPtrHashMap.KeysEqual@Pointer@Pointer +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclPtrPtrHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclPtrPtrHashMap.MapEquals@IJclPtrPtrMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclPtrPtrHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclPtrPtrHashMap.PutAll@IJclPtrPtrMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclPtrPtrHashMap.PutValue@Pointer@Pointer +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclPtrPtrHashMap.Remove@Pointer +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclPtrPtrHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclPtrPtrHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclPtrPtrHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclPtrPtrHashMap.ValuesEqual@Pointer@Pointer +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclIntfHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclIntfHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclIntfHashMap.OwnsValues +<copy TJclHashMap.OwnsValues> +\ \ + + +@@TJclIntfHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclIntfHashMap.ContainsKey@IInterface +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclIntfHashMap.ContainsValue@TObject +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclIntfHashMap.Create@Integer@Boolean +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclIntfHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclIntfHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclIntfHashMap.Extract@IInterface +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclIntfHashMap.FreeKey@IInterface +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclIntfHashMap.FreeValue@TObject +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclIntfHashMap.OwnsValues +<copy TJclHashMap.OwnsValues> +\ \ + + +@@TJclIntfHashMap.GetValue@IInterface +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclIntfHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclIntfHashMap.KeyOfValue@TObject +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclIntfHashMap.KeysEqual@IInterface@IInterface +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclIntfHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclIntfHashMap.MapEquals@IJclIntfMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclIntfHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclIntfHashMap.PutAll@IJclIntfMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclIntfHashMap.PutValue@IInterface@TObject +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntfHashMap.Remove@IInterface +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclIntfHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclIntfHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclIntfHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclIntfHashMap.ValuesEqual@TObject@TObject +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclAnsiStrHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclAnsiStrHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclAnsiStrHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclAnsiStrHashMap.OwnsValues +<copy TJclHashMap.OwnsValues> +\ \ + + +@@TJclAnsiStrHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclAnsiStrHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclAnsiStrHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclAnsiStrHashMap.ContainsKey@AnsiString +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclAnsiStrHashMap.ContainsValue@TObject +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclAnsiStrHashMap.Create@Integer@Boolean +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclAnsiStrHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclAnsiStrHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclAnsiStrHashMap.Extract@AnsiString +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclAnsiStrHashMap.FreeKey@AnsiString +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclAnsiStrHashMap.FreeValue@TObject +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclAnsiStrHashMap.OwnsValues +<copy TJclHashMap.OwnsValues> +\ \ + + +@@TJclAnsiStrHashMap.GetValue@AnsiString +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclAnsiStrHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclAnsiStrHashMap.KeyOfValue@TObject +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclAnsiStrHashMap.KeysEqual@AnsiString@AnsiString +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclAnsiStrHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclAnsiStrHashMap.MapEquals@IJclAnsiStrMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclAnsiStrHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclAnsiStrHashMap.PutAll@IJclAnsiStrMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclAnsiStrHashMap.PutValue@AnsiString@TObject +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclAnsiStrHashMap.Remove@AnsiString +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclAnsiStrHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclAnsiStrHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclAnsiStrHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclAnsiStrHashMap.ValuesEqual@TObject@TObject +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclWideStrHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclWideStrHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclWideStrHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclWideStrHashMap.OwnsValues +<copy TJclHashMap.OwnsValues> +\ \ + + +@@TJclWideStrHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclWideStrHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclWideStrHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclWideStrHashMap.ContainsKey@WideString +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclWideStrHashMap.ContainsValue@TObject +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclWideStrHashMap.Create@Integer@Boolean +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclWideStrHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclWideStrHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclWideStrHashMap.Extract@WideString +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclWideStrHashMap.FreeKey@WideString +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclWideStrHashMap.FreeValue@TObject +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclWideStrHashMap.OwnsValues +<copy TJclHashMap.OwnsValues> +\ \ + + +@@TJclWideStrHashMap.GetValue@WideString +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclWideStrHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclWideStrHashMap.KeyOfValue@TObject +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclWideStrHashMap.KeysEqual@WideString@WideString +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclWideStrHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclWideStrHashMap.MapEquals@IJclWideStrMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclWideStrHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclWideStrHashMap.PutAll@IJclWideStrMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclWideStrHashMap.PutValue@WideString@TObject +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclWideStrHashMap.Remove@WideString +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclWideStrHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclWideStrHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclWideStrHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclWideStrHashMap.ValuesEqual@TObject@TObject +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclUnicodeStrHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclUnicodeStrHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclUnicodeStrHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclUnicodeStrHashMap.OwnsValues +<copy TJclHashMap.OwnsValues> +\ \ + + +@@TJclUnicodeStrHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclUnicodeStrHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclUnicodeStrHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclUnicodeStrHashMap.ContainsKey@UnicodeString +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclUnicodeStrHashMap.ContainsValue@TObject +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclUnicodeStrHashMap.Create@Integer@Boolean +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclUnicodeStrHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclUnicodeStrHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclUnicodeStrHashMap.Extract@UnicodeString +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclUnicodeStrHashMap.FreeKey@UnicodeString +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclUnicodeStrHashMap.FreeValue@TObject +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclUnicodeStrHashMap.OwnsValues +<copy TJclHashMap.OwnsValues> +\ \ + + +@@TJclUnicodeStrHashMap.GetValue@UnicodeString +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclUnicodeStrHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclUnicodeStrHashMap.KeyOfValue@TObject +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclUnicodeStrHashMap.KeysEqual@UnicodeString@UnicodeString +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclUnicodeStrHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclUnicodeStrHashMap.MapEquals@IJclUnicodeStrMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclUnicodeStrHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclUnicodeStrHashMap.PutAll@IJclUnicodeStrMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclUnicodeStrHashMap.PutValue@UnicodeString@TObject +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclUnicodeStrHashMap.Remove@UnicodeString +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclUnicodeStrHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclUnicodeStrHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclUnicodeStrHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclUnicodeStrHashMap.ValuesEqual@TObject@TObject +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclSingleHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclSingleHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclSingleHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclSingleHashMap.OwnsValues +<copy TJclHashMap.OwnsValues> +\ \ + + +@@TJclSingleHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclSingleHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclSingleHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclSingleHashMap.ContainsKey@Single +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclSingleHashMap.ContainsValue@TObject +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclSingleHashMap.Create@Integer@Boolean +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclSingleHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclSingleHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclSingleHashMap.Extract@Single +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclSingleHashMap.FreeKey@Single +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclSingleHashMap.FreeValue@TObject +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclSingleHashMap.OwnsValues +<copy TJclHashMap.OwnsValues> +\ \ + + +@@TJclSingleHashMap.GetValue@Single +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclSingleHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclSingleHashMap.KeyOfValue@TObject +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclSingleHashMap.KeysEqual@Single@Single +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclSingleHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclSingleHashMap.MapEquals@IJclSingleMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclSingleHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclSingleHashMap.PutAll@IJclSingleMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclSingleHashMap.PutValue@Single@TObject +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclSingleHashMap.Remove@Single +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclSingleHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclSingleHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclSingleHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclSingleHashMap.ValuesEqual@TObject@TObject +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclDoubleHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclDoubleHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclDoubleHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclDoubleHashMap.OwnsValues +<copy TJclHashMap.OwnsValues> +\ \ + + +@@TJclDoubleHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclDoubleHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclDoubleHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclDoubleHashMap.ContainsKey@Double +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclDoubleHashMap.ContainsValue@TObject +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclDoubleHashMap.Create@Integer@Boolean +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclDoubleHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclDoubleHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclDoubleHashMap.Extract@Double +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclDoubleHashMap.FreeKey@Double +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclDoubleHashMap.FreeValue@TObject +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclDoubleHashMap.OwnsValues +<copy TJclHashMap.OwnsValues> +\ \ + + +@@TJclDoubleHashMap.GetValue@Double +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclDoubleHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclDoubleHashMap.KeyOfValue@TObject +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclDoubleHashMap.KeysEqual@Double@Double +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclDoubleHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclDoubleHashMap.MapEquals@IJclDoubleMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclDoubleHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclDoubleHashMap.PutAll@IJclDoubleMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclDoubleHashMap.PutValue@Double@TObject +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclDoubleHashMap.Remove@Double +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclDoubleHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclDoubleHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclDoubleHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclDoubleHashMap.ValuesEqual@TObject@TObject +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclExtendedHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclExtendedHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclExtendedHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclExtendedHashMap.OwnsValues +<copy TJclHashMap.OwnsValues> +\ \ + + +@@TJclExtendedHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclExtendedHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclExtendedHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclExtendedHashMap.ContainsKey@Extended +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclExtendedHashMap.ContainsValue@TObject +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclExtendedHashMap.Create@Integer@Boolean +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclExtendedHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclExtendedHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclExtendedHashMap.Extract@Extended +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclExtendedHashMap.FreeKey@Extended +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclExtendedHashMap.FreeValue@TObject +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclExtendedHashMap.OwnsValues +<copy TJclHashMap.OwnsValues> +\ \ + + +@@TJclExtendedHashMap.GetValue@Extended +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclExtendedHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclExtendedHashMap.KeyOfValue@TObject +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclExtendedHashMap.KeysEqual@Extended@Extended +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclExtendedHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclExtendedHashMap.MapEquals@IJclExtendedMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclExtendedHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclExtendedHashMap.PutAll@IJclExtendedMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclExtendedHashMap.PutValue@Extended@TObject +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclExtendedHashMap.Remove@Extended +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclExtendedHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclExtendedHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclExtendedHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclExtendedHashMap.ValuesEqual@TObject@TObject +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclIntegerHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntegerHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclIntegerHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclIntegerHashMap.OwnsValues +<copy TJclHashMap.OwnsValues> +\ \ + + +@@TJclIntegerHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntegerHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntegerHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclIntegerHashMap.ContainsKey@Integer +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclIntegerHashMap.ContainsValue@TObject +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclIntegerHashMap.Create@Integer@Boolean +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclIntegerHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclIntegerHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclIntegerHashMap.Extract@Integer +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclIntegerHashMap.FreeKey@Integer +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclIntegerHashMap.FreeValue@TObject +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclIntegerHashMap.OwnsValues +<copy TJclHashMap.OwnsValues> +\ \ + + +@@TJclIntegerHashMap.GetValue@Integer +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclIntegerHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclIntegerHashMap.KeyOfValue@TObject +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclIntegerHashMap.KeysEqual@Integer@Integer +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclIntegerHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclIntegerHashMap.MapEquals@IJclIntegerMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclIntegerHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclIntegerHashMap.PutAll@IJclIntegerMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclIntegerHashMap.PutValue@Integer@TObject +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntegerHashMap.Remove@Integer +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclIntegerHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclIntegerHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclIntegerHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclIntegerHashMap.ValuesEqual@TObject@TObject +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclCardinalHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclCardinalHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclCardinalHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclCardinalHashMap.OwnsValues +<copy TJclHashMap.OwnsValues> +\ \ + + +@@TJclCardinalHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclCardinalHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclCardinalHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclCardinalHashMap.ContainsKey@Cardinal +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclCardinalHashMap.ContainsValue@TObject +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclCardinalHashMap.Create@Integer@Boolean +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclCardinalHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclCardinalHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclCardinalHashMap.Extract@Cardinal +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclCardinalHashMap.FreeKey@Cardinal +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclCardinalHashMap.FreeValue@TObject +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclCardinalHashMap.OwnsValues +<copy TJclHashMap.OwnsValues> +\ \ + + +@@TJclCardinalHashMap.GetValue@Cardinal +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclCardinalHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclCardinalHashMap.KeyOfValue@TObject +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclCardinalHashMap.KeysEqual@Cardinal@Cardinal +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclCardinalHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclCardinalHashMap.MapEquals@IJclCardinalMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclCardinalHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclCardinalHashMap.PutAll@IJclCardinalMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclCardinalHashMap.PutValue@Cardinal@TObject +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclCardinalHashMap.Remove@Cardinal +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclCardinalHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclCardinalHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclCardinalHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclCardinalHashMap.ValuesEqual@TObject@TObject +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclInt64HashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclInt64HashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclInt64HashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclInt64HashMap.OwnsValues +<copy TJclHashMap.OwnsValues> +\ \ + + +@@TJclInt64HashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclInt64HashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclInt64HashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclInt64HashMap.ContainsKey@Int64 +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclInt64HashMap.ContainsValue@TObject +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclInt64HashMap.Create@Integer@Boolean +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclInt64HashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclInt64HashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclInt64HashMap.Extract@Int64 +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclInt64HashMap.FreeKey@Int64 +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclInt64HashMap.FreeValue@TObject +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclInt64HashMap.OwnsValues +<copy TJclHashMap.OwnsValues> +\ \ + + +@@TJclInt64HashMap.GetValue@Int64 +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclInt64HashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclInt64HashMap.KeyOfValue@TObject +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclInt64HashMap.KeysEqual@Int64@Int64 +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclInt64HashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclInt64HashMap.MapEquals@IJclInt64Map +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclInt64HashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclInt64HashMap.PutAll@IJclInt64Map +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclInt64HashMap.PutValue@Int64@TObject +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclInt64HashMap.Remove@Int64 +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclInt64HashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclInt64HashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclInt64HashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclInt64HashMap.ValuesEqual@TObject@TObject +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +@@TJclPtrHashMap +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclPtrHashMap +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@TJclPtrHashMap.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + + + +@@TJclPtrHashMap.OwnsValues +<copy TJclHashMap.OwnsValues> +\ \ + + +@@TJclPtrHashMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclPtrHashMap.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclPtrHashMap.Clear +<copy TJclHashMap.Clear> +\ \ + +@@TJclPtrHashMap.ContainsKey@Pointer +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@TJclPtrHashMap.ContainsValue@TObject +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@TJclPtrHashMap.Create@Integer@Boolean +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@TJclPtrHashMap.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@TJclPtrHashMap.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@TJclPtrHashMap.Extract@Pointer +<copy TJclHashMap.Extract@TObject> +\ \ + +@@TJclPtrHashMap.FreeKey@Pointer +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@TJclPtrHashMap.FreeValue@TObject +<copy TJclHashMap.FreeValue@TObject> +\ \ + + + +@@TJclPtrHashMap.OwnsValues +<copy TJclHashMap.OwnsValues> +\ \ + + +@@TJclPtrHashMap.GetValue@Pointer +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@TJclPtrHashMap.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@TJclPtrHashMap.KeyOfValue@TObject +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@TJclPtrHashMap.KeysEqual@Pointer@Pointer +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@TJclPtrHashMap.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@TJclPtrHashMap.MapEquals@IJclPtrMap +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@TJclPtrHashMap.Pack +<copy TJclHashMap.Pack> +\ \ + +@@TJclPtrHashMap.PutAll@IJclPtrMap +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@TJclPtrHashMap.PutValue@Pointer@TObject +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@TJclPtrHashMap.Remove@Pointer +<copy TJclHashMap.Remove@TObject> +\ \ + +@@TJclPtrHashMap.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@TJclPtrHashMap.Size +<copy TJclHashMap.Size> +\ \ + +@@TJclPtrHashMap.Values +<copy TJclHashMap.Values> +\ \ + +@@TJclPtrHashMap.ValuesEqual@TObject@TObject +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ + +@@TJclIntfHashSet +<copy TJclHashSet> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfHashSet +<copy !!MEMBEROVERVIEW_TJclHashSet> +\ \ + +@@TJclIntfHashSet.Add@IInterface +<copy TJclHashSet.Add@TObject> +\ \ + +@@TJclIntfHashSet.AddAll@IJclIntfCollection +<copy TJclHashSet.AddAll@IJclCollection> +\ \ + +@@TJclIntfHashSet.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashSet.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfHashSet.Clear +<copy TJclHashSet.Clear> +\ \ + +@@TJclIntfHashSet.CollectionEquals@IJclIntfCollection +<copy TJclHashSet.CollectionEquals@IJclCollection> +\ \ + +@@TJclIntfHashSet.Contains@IInterface +<copy TJclHashSet.Contains@TObject> +\ \ + +@@TJclIntfHashSet.ContainsAll@IJclIntfCollection +<copy TJclHashSet.ContainsAll@IJclCollection> +\ \ + +@@TJclIntfHashSet.Create@IJclIntfMap +<copy TJclHashSet.Create@IJclMap> +\ \ + +@@TJclIntfHashSet.Create@Integer +<copy TJclHashSet.Create@Integer@Boolean> +\ \ + +@@TJclIntfHashSet.CreateEmptyContainer +<copy TJclHashSet.CreateEmptyContainer> +\ \ + +@@TJclIntfHashSet.Destroy +<copy TJclHashSet.Destroy> +\ \ + +@@TJclIntfHashSet.Extract@IInterface +<copy TJclHashSet.Extract@TObject> +\ \ + +@@TJclIntfHashSet.ExtractAll@IJclIntfCollection +<copy TJclHashSet.ExtractAll@IJclCollection> +\ \ + +@@TJclIntfHashSet.First +<copy TJclHashSet.First> +\ \ + +@@TJclIntfHashSet.GetAllowDefaultElements +<copy TJclHashSet.GetAllowDefaultElements> +\ \ + +@@TJclIntfHashSet.GetAutoPackParameter +<copy TJclHashSet.GetAutoPackParameter> +\ \ + +@@TJclIntfHashSet.GetAutoPackStrategy +<copy TJclHashSet.GetAutoPackStrategy> +\ \ + +@@TJclIntfHashSet.GetCapacity +<copy TJclHashSet.GetCapacity> +\ \ + +@@TJclIntfHashSet.GetDuplicates +<copy TJclHashSet.GetDuplicates> +\ \ + +@@TJclIntfHashSet.GetEnumerator +<copy TJclHashSet.GetEnumerator> +\ \ + +@@TJclIntfHashSet.GetReadOnly +<copy TJclHashSet.GetReadOnly> +\ \ + +@@TJclIntfHashSet.GetRemoveSingleElement +<copy TJclHashSet.GetRemoveSingleElement> +\ \ + +@@TJclIntfHashSet.GetReturnDefaultElements +<copy TJclHashSet.GetReturnDefaultElements> +\ \ + +@@TJclIntfHashSet.GetThreadSafe +<copy TJclHashSet.GetThreadSafe> +\ \ + +@@TJclIntfHashSet.Intersect@IJclIntfCollection +<copy TJclHashSet.Intersect@IJclCollection> +\ \ + +@@TJclIntfHashSet.IsEmpty +<copy TJclHashSet.IsEmpty> +\ \ + +@@TJclIntfHashSet.Last +<copy TJclHashSet.Last> +\ \ + +@@TJclIntfHashSet.Pack +<copy TJclHashSet.Pack> +\ \ + +@@TJclIntfHashSet.Remove@IInterface +<copy TJclHashSet.Remove@TObject> +\ \ + +@@TJclIntfHashSet.RemoveAll@IJclIntfCollection +<copy TJclHashSet.RemoveAll@IJclCollection> +\ \ + +@@TJclIntfHashSet.RetainAll@IJclIntfCollection +<copy TJclHashSet.RetainAll@IJclCollection> +\ \ + +@@TJclIntfHashSet.SetAllowDefaultElements@Boolean +<copy TJclHashSet.SetAllowDefaultElements@Boolean> +\ \ + +@@TJclIntfHashSet.SetAutoPackParameter@Integer +<copy TJclHashSet.SetAutoPackParameter@Integer> +\ \ + +@@TJclIntfHashSet.SetAutoPackStrategy@TJclAutoPackStrategy +<copy TJclHashSet.SetAutoPackStrategy@TJclAutoPackStrategy> +\ \ + +@@TJclIntfHashSet.SetCapacity@Integer +<copy TJclHashSet.SetCapacity@Integer> +\ \ + +@@TJclIntfHashSet.SetDuplicates@TDuplicates +<copy TJclHashSet.SetDuplicates@TDuplicates> +\ \ + +@@TJclIntfHashSet.SetReadOnly@Boolean +<copy TJclHashSet.SetReadOnly@Boolean> +\ \ + +@@TJclIntfHashSet.SetRemoveSingleElement@Boolean +<copy TJclHashSet.SetRemoveSingleElement@Boolean> +\ \ + +@@TJclIntfHashSet.SetReturnDefaultElements@Boolean +<copy TJclHashSet.SetReturnDefaultElements@Boolean> +\ \ + +@@TJclIntfHashSet.SetThreadSafe@Boolean +<copy TJclHashSet.SetThreadSafe@Boolean> +\ \ + +@@TJclIntfHashSet.Size +<copy TJclHashSet.Size> +\ \ + +@@TJclIntfHashSet.Subtract@IJclIntfCollection +<copy TJclHashSet.Subtract@IJclCollection> +\ \ + +@@TJclIntfHashSet.Union@IJclIntfCollection +<copy TJclHashSet.Union@IJclCollection> +\ \ +@@TJclAnsiStrHashSet +<copy TJclHashSet> +\ \ + +@@!!MEMBEROVERVIEW_TJclAnsiStrHashSet +<copy !!MEMBEROVERVIEW_TJclHashSet> +\ \ + +@@TJclAnsiStrHashSet.Add@AnsiString +<copy TJclHashSet.Add@TObject> +\ \ + +@@TJclAnsiStrHashSet.AddAll@IJclAnsiStrCollection +<copy TJclHashSet.AddAll@IJclCollection> +\ \ + +@@TJclAnsiStrHashSet.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashSet.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclAnsiStrHashSet.Clear +<copy TJclHashSet.Clear> +\ \ + +@@TJclAnsiStrHashSet.CollectionEquals@IJclAnsiStrCollection +<copy TJclHashSet.CollectionEquals@IJclCollection> +\ \ + +@@TJclAnsiStrHashSet.Contains@AnsiString +<copy TJclHashSet.Contains@TObject> +\ \ + +@@TJclAnsiStrHashSet.ContainsAll@IJclAnsiStrCollection +<copy TJclHashSet.ContainsAll@IJclCollection> +\ \ + +@@TJclAnsiStrHashSet.Create@IJclAnsiStrMap +<copy TJclHashSet.Create@IJclMap> +\ \ + +@@TJclAnsiStrHashSet.Create@Integer +<copy TJclHashSet.Create@Integer@Boolean> +\ \ + +@@TJclAnsiStrHashSet.CreateEmptyContainer +<copy TJclHashSet.CreateEmptyContainer> +\ \ + +@@TJclAnsiStrHashSet.Destroy +<copy TJclHashSet.Destroy> +\ \ + +@@TJclAnsiStrHashSet.Extract@AnsiString +<copy TJclHashSet.Extract@TObject> +\ \ + +@@TJclAnsiStrHashSet.ExtractAll@IJclAnsiStrCollection +<copy TJclHashSet.ExtractAll@IJclCollection> +\ \ + +@@TJclAnsiStrHashSet.First +<copy TJclHashSet.First> +\ \ + +@@TJclAnsiStrHashSet.GetAllowDefaultElements +<copy TJclHashSet.GetAllowDefaultElements> +\ \ + +@@TJclAnsiStrHashSet.GetAutoPackParameter +<copy TJclHashSet.GetAutoPackParameter> +\ \ + +@@TJclAnsiStrHashSet.GetAutoPackStrategy +<copy TJclHashSet.GetAutoPackStrategy> +\ \ + +@@TJclAnsiStrHashSet.GetCapacity +<copy TJclHashSet.GetCapacity> +\ \ + +@@TJclAnsiStrHashSet.GetDuplicates +<copy TJclHashSet.GetDuplicates> +\ \ + +@@TJclAnsiStrHashSet.GetEnumerator +<copy TJclHashSet.GetEnumerator> +\ \ + +@@TJclAnsiStrHashSet.GetReadOnly +<copy TJclHashSet.GetReadOnly> +\ \ + +@@TJclAnsiStrHashSet.GetRemoveSingleElement +<copy TJclHashSet.GetRemoveSingleElement> +\ \ + +@@TJclAnsiStrHashSet.GetReturnDefaultElements +<copy TJclHashSet.GetReturnDefaultElements> +\ \ + +@@TJclAnsiStrHashSet.GetThreadSafe +<copy TJclHashSet.GetThreadSafe> +\ \ + +@@TJclAnsiStrHashSet.Intersect@IJclAnsiStrCollection +<copy TJclHashSet.Intersect@IJclCollection> +\ \ + +@@TJclAnsiStrHashSet.IsEmpty +<copy TJclHashSet.IsEmpty> +\ \ + +@@TJclAnsiStrHashSet.Last +<copy TJclHashSet.Last> +\ \ + +@@TJclAnsiStrHashSet.Pack +<copy TJclHashSet.Pack> +\ \ + +@@TJclAnsiStrHashSet.Remove@AnsiString +<copy TJclHashSet.Remove@TObject> +\ \ + +@@TJclAnsiStrHashSet.RemoveAll@IJclAnsiStrCollection +<copy TJclHashSet.RemoveAll@IJclCollection> +\ \ + +@@TJclAnsiStrHashSet.RetainAll@IJclAnsiStrCollection +<copy TJclHashSet.RetainAll@IJclCollection> +\ \ + +@@TJclAnsiStrHashSet.SetAllowDefaultElements@Boolean +<copy TJclHashSet.SetAllowDefaultElements@Boolean> +\ \ + +@@TJclAnsiStrHashSet.SetAutoPackParameter@Integer +<copy TJclHashSet.SetAutoPackParameter@Integer> +\ \ + +@@TJclAnsiStrHashSet.SetAutoPackStrategy@TJclAutoPackStrategy +<copy TJclHashSet.SetAutoPackStrategy@TJclAutoPackStrategy> +\ \ + +@@TJclAnsiStrHashSet.SetCapacity@Integer +<copy TJclHashSet.SetCapacity@Integer> +\ \ + +@@TJclAnsiStrHashSet.SetDuplicates@TDuplicates +<copy TJclHashSet.SetDuplicates@TDuplicates> +\ \ + +@@TJclAnsiStrHashSet.SetReadOnly@Boolean +<copy TJclHashSet.SetReadOnly@Boolean> +\ \ + +@@TJclAnsiStrHashSet.SetRemoveSingleElement@Boolean +<copy TJclHashSet.SetRemoveSingleElement@Boolean> +\ \ + +@@TJclAnsiStrHashSet.SetReturnDefaultElements@Boolean +<copy TJclHashSet.SetReturnDefaultElements@Boolean> +\ \ + +@@TJclAnsiStrHashSet.SetThreadSafe@Boolean +<copy TJclHashSet.SetThreadSafe@Boolean> +\ \ + +@@TJclAnsiStrHashSet.Size +<copy TJclHashSet.Size> +\ \ + +@@TJclAnsiStrHashSet.Subtract@IJclAnsiStrCollection +<copy TJclHashSet.Subtract@IJclCollection> +\ \ + +@@TJclAnsiStrHashSet.Union@IJclAnsiStrCollection +<copy TJclHashSet.Union@IJclCollection> +\ \ +@@TJclWideStrHashSet +<copy TJclHashSet> +\ \ + +@@!!MEMBEROVERVIEW_TJclWideStrHashSet +<copy !!MEMBEROVERVIEW_TJclHashSet> +\ \ + +@@TJclWideStrHashSet.Add@WideString +<copy TJclHashSet.Add@TObject> +\ \ + +@@TJclWideStrHashSet.AddAll@IJclWideStrCollection +<copy TJclHashSet.AddAll@IJclCollection> +\ \ + +@@TJclWideStrHashSet.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashSet.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclWideStrHashSet.Clear +<copy TJclHashSet.Clear> +\ \ + +@@TJclWideStrHashSet.CollectionEquals@IJclWideStrCollection +<copy TJclHashSet.CollectionEquals@IJclCollection> +\ \ + +@@TJclWideStrHashSet.Contains@WideString +<copy TJclHashSet.Contains@TObject> +\ \ + +@@TJclWideStrHashSet.ContainsAll@IJclWideStrCollection +<copy TJclHashSet.ContainsAll@IJclCollection> +\ \ + +@@TJclWideStrHashSet.Create@IJclWideStrMap +<copy TJclHashSet.Create@IJclMap> +\ \ + +@@TJclWideStrHashSet.Create@Integer +<copy TJclHashSet.Create@Integer@Boolean> +\ \ + +@@TJclWideStrHashSet.CreateEmptyContainer +<copy TJclHashSet.CreateEmptyContainer> +\ \ + +@@TJclWideStrHashSet.Destroy +<copy TJclHashSet.Destroy> +\ \ + +@@TJclWideStrHashSet.Extract@WideString +<copy TJclHashSet.Extract@TObject> +\ \ + +@@TJclWideStrHashSet.ExtractAll@IJclWideStrCollection +<copy TJclHashSet.ExtractAll@IJclCollection> +\ \ + +@@TJclWideStrHashSet.First +<copy TJclHashSet.First> +\ \ + +@@TJclWideStrHashSet.GetAllowDefaultElements +<copy TJclHashSet.GetAllowDefaultElements> +\ \ + +@@TJclWideStrHashSet.GetAutoPackParameter +<copy TJclHashSet.GetAutoPackParameter> +\ \ + +@@TJclWideStrHashSet.GetAutoPackStrategy +<copy TJclHashSet.GetAutoPackStrategy> +\ \ + +@@TJclWideStrHashSet.GetCapacity +<copy TJclHashSet.GetCapacity> +\ \ + +@@TJclWideStrHashSet.GetDuplicates +<copy TJclHashSet.GetDuplicates> +\ \ + +@@TJclWideStrHashSet.GetEnumerator +<copy TJclHashSet.GetEnumerator> +\ \ + +@@TJclWideStrHashSet.GetReadOnly +<copy TJclHashSet.GetReadOnly> +\ \ + +@@TJclWideStrHashSet.GetRemoveSingleElement +<copy TJclHashSet.GetRemoveSingleElement> +\ \ + +@@TJclWideStrHashSet.GetReturnDefaultElements +<copy TJclHashSet.GetReturnDefaultElements> +\ \ + +@@TJclWideStrHashSet.GetThreadSafe +<copy TJclHashSet.GetThreadSafe> +\ \ + +@@TJclWideStrHashSet.Intersect@IJclWideStrCollection +<copy TJclHashSet.Intersect@IJclCollection> +\ \ + +@@TJclWideStrHashSet.IsEmpty +<copy TJclHashSet.IsEmpty> +\ \ + +@@TJclWideStrHashSet.Last +<copy TJclHashSet.Last> +\ \ + +@@TJclWideStrHashSet.Pack +<copy TJclHashSet.Pack> +\ \ + +@@TJclWideStrHashSet.Remove@WideString +<copy TJclHashSet.Remove@TObject> +\ \ + +@@TJclWideStrHashSet.RemoveAll@IJclWideStrCollection +<copy TJclHashSet.RemoveAll@IJclCollection> +\ \ + +@@TJclWideStrHashSet.RetainAll@IJclWideStrCollection +<copy TJclHashSet.RetainAll@IJclCollection> +\ \ + +@@TJclWideStrHashSet.SetAllowDefaultElements@Boolean +<copy TJclHashSet.SetAllowDefaultElements@Boolean> +\ \ + +@@TJclWideStrHashSet.SetAutoPackParameter@Integer +<copy TJclHashSet.SetAutoPackParameter@Integer> +\ \ + +@@TJclWideStrHashSet.SetAutoPackStrategy@TJclAutoPackStrategy +<copy TJclHashSet.SetAutoPackStrategy@TJclAutoPackStrategy> +\ \ + +@@TJclWideStrHashSet.SetCapacity@Integer +<copy TJclHashSet.SetCapacity@Integer> +\ \ + +@@TJclWideStrHashSet.SetDuplicates@TDuplicates +<copy TJclHashSet.SetDuplicates@TDuplicates> +\ \ + +@@TJclWideStrHashSet.SetReadOnly@Boolean +<copy TJclHashSet.SetReadOnly@Boolean> +\ \ + +@@TJclWideStrHashSet.SetRemoveSingleElement@Boolean +<copy TJclHashSet.SetRemoveSingleElement@Boolean> +\ \ + +@@TJclWideStrHashSet.SetReturnDefaultElements@Boolean +<copy TJclHashSet.SetReturnDefaultElements@Boolean> +\ \ + +@@TJclWideStrHashSet.SetThreadSafe@Boolean +<copy TJclHashSet.SetThreadSafe@Boolean> +\ \ + +@@TJclWideStrHashSet.Size +<copy TJclHashSet.Size> +\ \ + +@@TJclWideStrHashSet.Subtract@IJclWideStrCollection +<copy TJclHashSet.Subtract@IJclCollection> +\ \ + +@@TJclWideStrHashSet.Union@IJclWideStrCollection +<copy TJclHashSet.Union@IJclCollection> +\ \ +@@TJclUnicodeStrHashSet +<copy TJclHashSet> +\ \ + +@@!!MEMBEROVERVIEW_TJclUnicodeStrHashSet +<copy !!MEMBEROVERVIEW_TJclHashSet> +\ \ + +@@TJclUnicodeStrHashSet.Add@UnicodeString +<copy TJclHashSet.Add@TObject> +\ \ + +@@TJclUnicodeStrHashSet.AddAll@IJclUnicodeStrCollection +<copy TJclHashSet.AddAll@IJclCollection> +\ \ + +@@TJclUnicodeStrHashSet.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashSet.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclUnicodeStrHashSet.Clear +<copy TJclHashSet.Clear> +\ \ + +@@TJclUnicodeStrHashSet.CollectionEquals@IJclUnicodeStrCollection +<copy TJclHashSet.CollectionEquals@IJclCollection> +\ \ + +@@TJclUnicodeStrHashSet.Contains@UnicodeString +<copy TJclHashSet.Contains@TObject> +\ \ + +@@TJclUnicodeStrHashSet.ContainsAll@IJclUnicodeStrCollection +<copy TJclHashSet.ContainsAll@IJclCollection> +\ \ + +@@TJclUnicodeStrHashSet.Create@IJclUnicodeStrMap +<copy TJclHashSet.Create@IJclMap> +\ \ + +@@TJclUnicodeStrHashSet.Create@Integer +<copy TJclHashSet.Create@Integer@Boolean> +\ \ + +@@TJclUnicodeStrHashSet.CreateEmptyContainer +<copy TJclHashSet.CreateEmptyContainer> +\ \ + +@@TJclUnicodeStrHashSet.Destroy +<copy TJclHashSet.Destroy> +\ \ + +@@TJclUnicodeStrHashSet.Extract@UnicodeString +<copy TJclHashSet.Extract@TObject> +\ \ + +@@TJclUnicodeStrHashSet.ExtractAll@IJclUnicodeStrCollection +<copy TJclHashSet.ExtractAll@IJclCollection> +\ \ + +@@TJclUnicodeStrHashSet.First +<copy TJclHashSet.First> +\ \ + +@@TJclUnicodeStrHashSet.GetAllowDefaultElements +<copy TJclHashSet.GetAllowDefaultElements> +\ \ + +@@TJclUnicodeStrHashSet.GetAutoPackParameter +<copy TJclHashSet.GetAutoPackParameter> +\ \ + +@@TJclUnicodeStrHashSet.GetAutoPackStrategy +<copy TJclHashSet.GetAutoPackStrategy> +\ \ + +@@TJclUnicodeStrHashSet.GetCapacity +<copy TJclHashSet.GetCapacity> +\ \ + +@@TJclUnicodeStrHashSet.GetDuplicates +<copy TJclHashSet.GetDuplicates> +\ \ + +@@TJclUnicodeStrHashSet.GetEnumerator +<copy TJclHashSet.GetEnumerator> +\ \ + +@@TJclUnicodeStrHashSet.GetReadOnly +<copy TJclHashSet.GetReadOnly> +\ \ + +@@TJclUnicodeStrHashSet.GetRemoveSingleElement +<copy TJclHashSet.GetRemoveSingleElement> +\ \ + +@@TJclUnicodeStrHashSet.GetReturnDefaultElements +<copy TJclHashSet.GetReturnDefaultElements> +\ \ + +@@TJclUnicodeStrHashSet.GetThreadSafe +<copy TJclHashSet.GetThreadSafe> +\ \ + +@@TJclUnicodeStrHashSet.Intersect@IJclUnicodeStrCollection +<copy TJclHashSet.Intersect@IJclCollection> +\ \ + +@@TJclUnicodeStrHashSet.IsEmpty +<copy TJclHashSet.IsEmpty> +\ \ + +@@TJclUnicodeStrHashSet.Last +<copy TJclHashSet.Last> +\ \ + +@@TJclUnicodeStrHashSet.Pack +<copy TJclHashSet.Pack> +\ \ + +@@TJclUnicodeStrHashSet.Remove@UnicodeString +<copy TJclHashSet.Remove@TObject> +\ \ + +@@TJclUnicodeStrHashSet.RemoveAll@IJclUnicodeStrCollection +<copy TJclHashSet.RemoveAll@IJclCollection> +\ \ + +@@TJclUnicodeStrHashSet.RetainAll@IJclUnicodeStrCollection +<copy TJclHashSet.RetainAll@IJclCollection> +\ \ + +@@TJclUnicodeStrHashSet.SetAllowDefaultElements@Boolean +<copy TJclHashSet.SetAllowDefaultElements@Boolean> +\ \ + +@@TJclUnicodeStrHashSet.SetAutoPackParameter@Integer +<copy TJclHashSet.SetAutoPackParameter@Integer> +\ \ + +@@TJclUnicodeStrHashSet.SetAutoPackStrategy@TJclAutoPackStrategy +<copy TJclHashSet.SetAutoPackStrategy@TJclAutoPackStrategy> +\ \ + +@@TJclUnicodeStrHashSet.SetCapacity@Integer +<copy TJclHashSet.SetCapacity@Integer> +\ \ + +@@TJclUnicodeStrHashSet.SetDuplicates@TDuplicates +<copy TJclHashSet.SetDuplicates@TDuplicates> +\ \ + +@@TJclUnicodeStrHashSet.SetReadOnly@Boolean +<copy TJclHashSet.SetReadOnly@Boolean> +\ \ + +@@TJclUnicodeStrHashSet.SetRemoveSingleElement@Boolean +<copy TJclHashSet.SetRemoveSingleElement@Boolean> +\ \ + +@@TJclUnicodeStrHashSet.SetReturnDefaultElements@Boolean +<copy TJclHashSet.SetReturnDefaultElements@Boolean> +\ \ + +@@TJclUnicodeStrHashSet.SetThreadSafe@Boolean +<copy TJclHashSet.SetThreadSafe@Boolean> +\ \ + +@@TJclUnicodeStrHashSet.Size +<copy TJclHashSet.Size> +\ \ + +@@TJclUnicodeStrHashSet.Subtract@IJclUnicodeStrCollection +<copy TJclHashSet.Subtract@IJclCollection> +\ \ + +@@TJclUnicodeStrHashSet.Union@IJclUnicodeStrCollection +<copy TJclHashSet.Union@IJclCollection> +\ \ +@@TJclSingleHashSet +<copy TJclHashSet> +\ \ + +@@!!MEMBEROVERVIEW_TJclSingleHashSet +<copy !!MEMBEROVERVIEW_TJclHashSet> +\ \ + +@@TJclSingleHashSet.Add@Single +<copy TJclHashSet.Add@TObject> +\ \ + +@@TJclSingleHashSet.AddAll@IJclSingleCollection +<copy TJclHashSet.AddAll@IJclCollection> +\ \ + +@@TJclSingleHashSet.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashSet.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclSingleHashSet.Clear +<copy TJclHashSet.Clear> +\ \ + +@@TJclSingleHashSet.CollectionEquals@IJclSingleCollection +<copy TJclHashSet.CollectionEquals@IJclCollection> +\ \ + +@@TJclSingleHashSet.Contains@Single +<copy TJclHashSet.Contains@TObject> +\ \ + +@@TJclSingleHashSet.ContainsAll@IJclSingleCollection +<copy TJclHashSet.ContainsAll@IJclCollection> +\ \ + +@@TJclSingleHashSet.Create@IJclSingleMap +<copy TJclHashSet.Create@IJclMap> +\ \ + +@@TJclSingleHashSet.Create@Integer +<copy TJclHashSet.Create@Integer@Boolean> +\ \ + +@@TJclSingleHashSet.CreateEmptyContainer +<copy TJclHashSet.CreateEmptyContainer> +\ \ + +@@TJclSingleHashSet.Destroy +<copy TJclHashSet.Destroy> +\ \ + +@@TJclSingleHashSet.Extract@Single +<copy TJclHashSet.Extract@TObject> +\ \ + +@@TJclSingleHashSet.ExtractAll@IJclSingleCollection +<copy TJclHashSet.ExtractAll@IJclCollection> +\ \ + +@@TJclSingleHashSet.First +<copy TJclHashSet.First> +\ \ + +@@TJclSingleHashSet.GetAllowDefaultElements +<copy TJclHashSet.GetAllowDefaultElements> +\ \ + +@@TJclSingleHashSet.GetAutoPackParameter +<copy TJclHashSet.GetAutoPackParameter> +\ \ + +@@TJclSingleHashSet.GetAutoPackStrategy +<copy TJclHashSet.GetAutoPackStrategy> +\ \ + +@@TJclSingleHashSet.GetCapacity +<copy TJclHashSet.GetCapacity> +\ \ + +@@TJclSingleHashSet.GetDuplicates +<copy TJclHashSet.GetDuplicates> +\ \ + +@@TJclSingleHashSet.GetEnumerator +<copy TJclHashSet.GetEnumerator> +\ \ + +@@TJclSingleHashSet.GetReadOnly +<copy TJclHashSet.GetReadOnly> +\ \ + +@@TJclSingleHashSet.GetRemoveSingleElement +<copy TJclHashSet.GetRemoveSingleElement> +\ \ + +@@TJclSingleHashSet.GetReturnDefaultElements +<copy TJclHashSet.GetReturnDefaultElements> +\ \ + +@@TJclSingleHashSet.GetThreadSafe +<copy TJclHashSet.GetThreadSafe> +\ \ + +@@TJclSingleHashSet.Intersect@IJclSingleCollection +<copy TJclHashSet.Intersect@IJclCollection> +\ \ + +@@TJclSingleHashSet.IsEmpty +<copy TJclHashSet.IsEmpty> +\ \ + +@@TJclSingleHashSet.Last +<copy TJclHashSet.Last> +\ \ + +@@TJclSingleHashSet.Pack +<copy TJclHashSet.Pack> +\ \ + +@@TJclSingleHashSet.Remove@Single +<copy TJclHashSet.Remove@TObject> +\ \ + +@@TJclSingleHashSet.RemoveAll@IJclSingleCollection +<copy TJclHashSet.RemoveAll@IJclCollection> +\ \ + +@@TJclSingleHashSet.RetainAll@IJclSingleCollection +<copy TJclHashSet.RetainAll@IJclCollection> +\ \ + +@@TJclSingleHashSet.SetAllowDefaultElements@Boolean +<copy TJclHashSet.SetAllowDefaultElements@Boolean> +\ \ + +@@TJclSingleHashSet.SetAutoPackParameter@Integer +<copy TJclHashSet.SetAutoPackParameter@Integer> +\ \ + +@@TJclSingleHashSet.SetAutoPackStrategy@TJclAutoPackStrategy +<copy TJclHashSet.SetAutoPackStrategy@TJclAutoPackStrategy> +\ \ + +@@TJclSingleHashSet.SetCapacity@Integer +<copy TJclHashSet.SetCapacity@Integer> +\ \ + +@@TJclSingleHashSet.SetDuplicates@TDuplicates +<copy TJclHashSet.SetDuplicates@TDuplicates> +\ \ + +@@TJclSingleHashSet.SetReadOnly@Boolean +<copy TJclHashSet.SetReadOnly@Boolean> +\ \ + +@@TJclSingleHashSet.SetRemoveSingleElement@Boolean +<copy TJclHashSet.SetRemoveSingleElement@Boolean> +\ \ + +@@TJclSingleHashSet.SetReturnDefaultElements@Boolean +<copy TJclHashSet.SetReturnDefaultElements@Boolean> +\ \ + +@@TJclSingleHashSet.SetThreadSafe@Boolean +<copy TJclHashSet.SetThreadSafe@Boolean> +\ \ + +@@TJclSingleHashSet.Size +<copy TJclHashSet.Size> +\ \ + +@@TJclSingleHashSet.Subtract@IJclSingleCollection +<copy TJclHashSet.Subtract@IJclCollection> +\ \ + +@@TJclSingleHashSet.Union@IJclSingleCollection +<copy TJclHashSet.Union@IJclCollection> +\ \ +@@TJclDoubleHashSet +<copy TJclHashSet> +\ \ + +@@!!MEMBEROVERVIEW_TJclDoubleHashSet +<copy !!MEMBEROVERVIEW_TJclHashSet> +\ \ + +@@TJclDoubleHashSet.Add@Double +<copy TJclHashSet.Add@TObject> +\ \ + +@@TJclDoubleHashSet.AddAll@IJclDoubleCollection +<copy TJclHashSet.AddAll@IJclCollection> +\ \ + +@@TJclDoubleHashSet.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashSet.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclDoubleHashSet.Clear +<copy TJclHashSet.Clear> +\ \ + +@@TJclDoubleHashSet.CollectionEquals@IJclDoubleCollection +<copy TJclHashSet.CollectionEquals@IJclCollection> +\ \ + +@@TJclDoubleHashSet.Contains@Double +<copy TJclHashSet.Contains@TObject> +\ \ + +@@TJclDoubleHashSet.ContainsAll@IJclDoubleCollection +<copy TJclHashSet.ContainsAll@IJclCollection> +\ \ + +@@TJclDoubleHashSet.Create@IJclDoubleMap +<copy TJclHashSet.Create@IJclMap> +\ \ + +@@TJclDoubleHashSet.Create@Integer +<copy TJclHashSet.Create@Integer@Boolean> +\ \ + +@@TJclDoubleHashSet.CreateEmptyContainer +<copy TJclHashSet.CreateEmptyContainer> +\ \ + +@@TJclDoubleHashSet.Destroy +<copy TJclHashSet.Destroy> +\ \ + +@@TJclDoubleHashSet.Extract@Double +<copy TJclHashSet.Extract@TObject> +\ \ + +@@TJclDoubleHashSet.ExtractAll@IJclDoubleCollection +<copy TJclHashSet.ExtractAll@IJclCollection> +\ \ + +@@TJclDoubleHashSet.First +<copy TJclHashSet.First> +\ \ + +@@TJclDoubleHashSet.GetAllowDefaultElements +<copy TJclHashSet.GetAllowDefaultElements> +\ \ + +@@TJclDoubleHashSet.GetAutoPackParameter +<copy TJclHashSet.GetAutoPackParameter> +\ \ + +@@TJclDoubleHashSet.GetAutoPackStrategy +<copy TJclHashSet.GetAutoPackStrategy> +\ \ + +@@TJclDoubleHashSet.GetCapacity +<copy TJclHashSet.GetCapacity> +\ \ + +@@TJclDoubleHashSet.GetDuplicates +<copy TJclHashSet.GetDuplicates> +\ \ + +@@TJclDoubleHashSet.GetEnumerator +<copy TJclHashSet.GetEnumerator> +\ \ + +@@TJclDoubleHashSet.GetReadOnly +<copy TJclHashSet.GetReadOnly> +\ \ + +@@TJclDoubleHashSet.GetRemoveSingleElement +<copy TJclHashSet.GetRemoveSingleElement> +\ \ + +@@TJclDoubleHashSet.GetReturnDefaultElements +<copy TJclHashSet.GetReturnDefaultElements> +\ \ + +@@TJclDoubleHashSet.GetThreadSafe +<copy TJclHashSet.GetThreadSafe> +\ \ + +@@TJclDoubleHashSet.Intersect@IJclDoubleCollection +<copy TJclHashSet.Intersect@IJclCollection> +\ \ + +@@TJclDoubleHashSet.IsEmpty +<copy TJclHashSet.IsEmpty> +\ \ + +@@TJclDoubleHashSet.Last +<copy TJclHashSet.Last> +\ \ + +@@TJclDoubleHashSet.Pack +<copy TJclHashSet.Pack> +\ \ + +@@TJclDoubleHashSet.Remove@Double +<copy TJclHashSet.Remove@TObject> +\ \ + +@@TJclDoubleHashSet.RemoveAll@IJclDoubleCollection +<copy TJclHashSet.RemoveAll@IJclCollection> +\ \ + +@@TJclDoubleHashSet.RetainAll@IJclDoubleCollection +<copy TJclHashSet.RetainAll@IJclCollection> +\ \ + +@@TJclDoubleHashSet.SetAllowDefaultElements@Boolean +<copy TJclHashSet.SetAllowDefaultElements@Boolean> +\ \ + +@@TJclDoubleHashSet.SetAutoPackParameter@Integer +<copy TJclHashSet.SetAutoPackParameter@Integer> +\ \ + +@@TJclDoubleHashSet.SetAutoPackStrategy@TJclAutoPackStrategy +<copy TJclHashSet.SetAutoPackStrategy@TJclAutoPackStrategy> +\ \ + +@@TJclDoubleHashSet.SetCapacity@Integer +<copy TJclHashSet.SetCapacity@Integer> +\ \ + +@@TJclDoubleHashSet.SetDuplicates@TDuplicates +<copy TJclHashSet.SetDuplicates@TDuplicates> +\ \ + +@@TJclDoubleHashSet.SetReadOnly@Boolean +<copy TJclHashSet.SetReadOnly@Boolean> +\ \ + +@@TJclDoubleHashSet.SetRemoveSingleElement@Boolean +<copy TJclHashSet.SetRemoveSingleElement@Boolean> +\ \ + +@@TJclDoubleHashSet.SetReturnDefaultElements@Boolean +<copy TJclHashSet.SetReturnDefaultElements@Boolean> +\ \ + +@@TJclDoubleHashSet.SetThreadSafe@Boolean +<copy TJclHashSet.SetThreadSafe@Boolean> +\ \ + +@@TJclDoubleHashSet.Size +<copy TJclHashSet.Size> +\ \ + +@@TJclDoubleHashSet.Subtract@IJclDoubleCollection +<copy TJclHashSet.Subtract@IJclCollection> +\ \ + +@@TJclDoubleHashSet.Union@IJclDoubleCollection +<copy TJclHashSet.Union@IJclCollection> +\ \ +@@TJclExtendedHashSet +<copy TJclHashSet> +\ \ + +@@!!MEMBEROVERVIEW_TJclExtendedHashSet +<copy !!MEMBEROVERVIEW_TJclHashSet> +\ \ + +@@TJclExtendedHashSet.Add@Extended +<copy TJclHashSet.Add@TObject> +\ \ + +@@TJclExtendedHashSet.AddAll@IJclExtendedCollection +<copy TJclHashSet.AddAll@IJclCollection> +\ \ + +@@TJclExtendedHashSet.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashSet.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclExtendedHashSet.Clear +<copy TJclHashSet.Clear> +\ \ + +@@TJclExtendedHashSet.CollectionEquals@IJclExtendedCollection +<copy TJclHashSet.CollectionEquals@IJclCollection> +\ \ + +@@TJclExtendedHashSet.Contains@Extended +<copy TJclHashSet.Contains@TObject> +\ \ + +@@TJclExtendedHashSet.ContainsAll@IJclExtendedCollection +<copy TJclHashSet.ContainsAll@IJclCollection> +\ \ + +@@TJclExtendedHashSet.Create@IJclExtendedMap +<copy TJclHashSet.Create@IJclMap> +\ \ + +@@TJclExtendedHashSet.Create@Integer +<copy TJclHashSet.Create@Integer@Boolean> +\ \ + +@@TJclExtendedHashSet.CreateEmptyContainer +<copy TJclHashSet.CreateEmptyContainer> +\ \ + +@@TJclExtendedHashSet.Destroy +<copy TJclHashSet.Destroy> +\ \ + +@@TJclExtendedHashSet.Extract@Extended +<copy TJclHashSet.Extract@TObject> +\ \ + +@@TJclExtendedHashSet.ExtractAll@IJclExtendedCollection +<copy TJclHashSet.ExtractAll@IJclCollection> +\ \ + +@@TJclExtendedHashSet.First +<copy TJclHashSet.First> +\ \ + +@@TJclExtendedHashSet.GetAllowDefaultElements +<copy TJclHashSet.GetAllowDefaultElements> +\ \ + +@@TJclExtendedHashSet.GetAutoPackParameter +<copy TJclHashSet.GetAutoPackParameter> +\ \ + +@@TJclExtendedHashSet.GetAutoPackStrategy +<copy TJclHashSet.GetAutoPackStrategy> +\ \ + +@@TJclExtendedHashSet.GetCapacity +<copy TJclHashSet.GetCapacity> +\ \ + +@@TJclExtendedHashSet.GetDuplicates +<copy TJclHashSet.GetDuplicates> +\ \ + +@@TJclExtendedHashSet.GetEnumerator +<copy TJclHashSet.GetEnumerator> +\ \ + +@@TJclExtendedHashSet.GetReadOnly +<copy TJclHashSet.GetReadOnly> +\ \ + +@@TJclExtendedHashSet.GetRemoveSingleElement +<copy TJclHashSet.GetRemoveSingleElement> +\ \ + +@@TJclExtendedHashSet.GetReturnDefaultElements +<copy TJclHashSet.GetReturnDefaultElements> +\ \ + +@@TJclExtendedHashSet.GetThreadSafe +<copy TJclHashSet.GetThreadSafe> +\ \ + +@@TJclExtendedHashSet.Intersect@IJclExtendedCollection +<copy TJclHashSet.Intersect@IJclCollection> +\ \ + +@@TJclExtendedHashSet.IsEmpty +<copy TJclHashSet.IsEmpty> +\ \ + +@@TJclExtendedHashSet.Last +<copy TJclHashSet.Last> +\ \ + +@@TJclExtendedHashSet.Pack +<copy TJclHashSet.Pack> +\ \ + +@@TJclExtendedHashSet.Remove@Extended +<copy TJclHashSet.Remove@TObject> +\ \ + +@@TJclExtendedHashSet.RemoveAll@IJclExtendedCollection +<copy TJclHashSet.RemoveAll@IJclCollection> +\ \ + +@@TJclExtendedHashSet.RetainAll@IJclExtendedCollection +<copy TJclHashSet.RetainAll@IJclCollection> +\ \ + +@@TJclExtendedHashSet.SetAllowDefaultElements@Boolean +<copy TJclHashSet.SetAllowDefaultElements@Boolean> +\ \ + +@@TJclExtendedHashSet.SetAutoPackParameter@Integer +<copy TJclHashSet.SetAutoPackParameter@Integer> +\ \ + +@@TJclExtendedHashSet.SetAutoPackStrategy@TJclAutoPackStrategy +<copy TJclHashSet.SetAutoPackStrategy@TJclAutoPackStrategy> +\ \ + +@@TJclExtendedHashSet.SetCapacity@Integer +<copy TJclHashSet.SetCapacity@Integer> +\ \ + +@@TJclExtendedHashSet.SetDuplicates@TDuplicates +<copy TJclHashSet.SetDuplicates@TDuplicates> +\ \ + +@@TJclExtendedHashSet.SetReadOnly@Boolean +<copy TJclHashSet.SetReadOnly@Boolean> +\ \ + +@@TJclExtendedHashSet.SetRemoveSingleElement@Boolean +<copy TJclHashSet.SetRemoveSingleElement@Boolean> +\ \ + +@@TJclExtendedHashSet.SetReturnDefaultElements@Boolean +<copy TJclHashSet.SetReturnDefaultElements@Boolean> +\ \ + +@@TJclExtendedHashSet.SetThreadSafe@Boolean +<copy TJclHashSet.SetThreadSafe@Boolean> +\ \ + +@@TJclExtendedHashSet.Size +<copy TJclHashSet.Size> +\ \ + +@@TJclExtendedHashSet.Subtract@IJclExtendedCollection +<copy TJclHashSet.Subtract@IJclCollection> +\ \ + +@@TJclExtendedHashSet.Union@IJclExtendedCollection +<copy TJclHashSet.Union@IJclCollection> +\ \ +@@TJclIntegerHashSet +<copy TJclHashSet> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntegerHashSet +<copy !!MEMBEROVERVIEW_TJclHashSet> +\ \ + +@@TJclIntegerHashSet.Add@Integer +<copy TJclHashSet.Add@TObject> +\ \ + +@@TJclIntegerHashSet.AddAll@IJclIntegerCollection +<copy TJclHashSet.AddAll@IJclCollection> +\ \ + +@@TJclIntegerHashSet.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashSet.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntegerHashSet.Clear +<copy TJclHashSet.Clear> +\ \ + +@@TJclIntegerHashSet.CollectionEquals@IJclIntegerCollection +<copy TJclHashSet.CollectionEquals@IJclCollection> +\ \ + +@@TJclIntegerHashSet.Contains@Integer +<copy TJclHashSet.Contains@TObject> +\ \ + +@@TJclIntegerHashSet.ContainsAll@IJclIntegerCollection +<copy TJclHashSet.ContainsAll@IJclCollection> +\ \ + +@@TJclIntegerHashSet.Create@IJclIntegerMap +<copy TJclHashSet.Create@IJclMap> +\ \ + +@@TJclIntegerHashSet.Create@Integer +<copy TJclHashSet.Create@Integer@Boolean> +\ \ + +@@TJclIntegerHashSet.CreateEmptyContainer +<copy TJclHashSet.CreateEmptyContainer> +\ \ + +@@TJclIntegerHashSet.Destroy +<copy TJclHashSet.Destroy> +\ \ + +@@TJclIntegerHashSet.Extract@Integer +<copy TJclHashSet.Extract@TObject> +\ \ + +@@TJclIntegerHashSet.ExtractAll@IJclIntegerCollection +<copy TJclHashSet.ExtractAll@IJclCollection> +\ \ + +@@TJclIntegerHashSet.First +<copy TJclHashSet.First> +\ \ + +@@TJclIntegerHashSet.GetAllowDefaultElements +<copy TJclHashSet.GetAllowDefaultElements> +\ \ + +@@TJclIntegerHashSet.GetAutoPackParameter +<copy TJclHashSet.GetAutoPackParameter> +\ \ + +@@TJclIntegerHashSet.GetAutoPackStrategy +<copy TJclHashSet.GetAutoPackStrategy> +\ \ + +@@TJclIntegerHashSet.GetCapacity +<copy TJclHashSet.GetCapacity> +\ \ + +@@TJclIntegerHashSet.GetDuplicates +<copy TJclHashSet.GetDuplicates> +\ \ + +@@TJclIntegerHashSet.GetEnumerator +<copy TJclHashSet.GetEnumerator> +\ \ + +@@TJclIntegerHashSet.GetReadOnly +<copy TJclHashSet.GetReadOnly> +\ \ + +@@TJclIntegerHashSet.GetRemoveSingleElement +<copy TJclHashSet.GetRemoveSingleElement> +\ \ + +@@TJclIntegerHashSet.GetReturnDefaultElements +<copy TJclHashSet.GetReturnDefaultElements> +\ \ + +@@TJclIntegerHashSet.GetThreadSafe +<copy TJclHashSet.GetThreadSafe> +\ \ + +@@TJclIntegerHashSet.Intersect@IJclIntegerCollection +<copy TJclHashSet.Intersect@IJclCollection> +\ \ + +@@TJclIntegerHashSet.IsEmpty +<copy TJclHashSet.IsEmpty> +\ \ + +@@TJclIntegerHashSet.Last +<copy TJclHashSet.Last> +\ \ + +@@TJclIntegerHashSet.Pack +<copy TJclHashSet.Pack> +\ \ + +@@TJclIntegerHashSet.Remove@Integer +<copy TJclHashSet.Remove@TObject> +\ \ + +@@TJclIntegerHashSet.RemoveAll@IJclIntegerCollection +<copy TJclHashSet.RemoveAll@IJclCollection> +\ \ + +@@TJclIntegerHashSet.RetainAll@IJclIntegerCollection +<copy TJclHashSet.RetainAll@IJclCollection> +\ \ + +@@TJclIntegerHashSet.SetAllowDefaultElements@Boolean +<copy TJclHashSet.SetAllowDefaultElements@Boolean> +\ \ + +@@TJclIntegerHashSet.SetAutoPackParameter@Integer +<copy TJclHashSet.SetAutoPackParameter@Integer> +\ \ + +@@TJclIntegerHashSet.SetAutoPackStrategy@TJclAutoPackStrategy +<copy TJclHashSet.SetAutoPackStrategy@TJclAutoPackStrategy> +\ \ + +@@TJclIntegerHashSet.SetCapacity@Integer +<copy TJclHashSet.SetCapacity@Integer> +\ \ + +@@TJclIntegerHashSet.SetDuplicates@TDuplicates +<copy TJclHashSet.SetDuplicates@TDuplicates> +\ \ + +@@TJclIntegerHashSet.SetReadOnly@Boolean +<copy TJclHashSet.SetReadOnly@Boolean> +\ \ + +@@TJclIntegerHashSet.SetRemoveSingleElement@Boolean +<copy TJclHashSet.SetRemoveSingleElement@Boolean> +\ \ + +@@TJclIntegerHashSet.SetReturnDefaultElements@Boolean +<copy TJclHashSet.SetReturnDefaultElements@Boolean> +\ \ + +@@TJclIntegerHashSet.SetThreadSafe@Boolean +<copy TJclHashSet.SetThreadSafe@Boolean> +\ \ + +@@TJclIntegerHashSet.Size +<copy TJclHashSet.Size> +\ \ + +@@TJclIntegerHashSet.Subtract@IJclIntegerCollection +<copy TJclHashSet.Subtract@IJclCollection> +\ \ + +@@TJclIntegerHashSet.Union@IJclIntegerCollection +<copy TJclHashSet.Union@IJclCollection> +\ \ +@@TJclCardinalHashSet +<copy TJclHashSet> +\ \ + +@@!!MEMBEROVERVIEW_TJclCardinalHashSet +<copy !!MEMBEROVERVIEW_TJclHashSet> +\ \ + +@@TJclCardinalHashSet.Add@Cardinal +<copy TJclHashSet.Add@TObject> +\ \ + +@@TJclCardinalHashSet.AddAll@IJclCardinalCollection +<copy TJclHashSet.AddAll@IJclCollection> +\ \ + +@@TJclCardinalHashSet.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashSet.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclCardinalHashSet.Clear +<copy TJclHashSet.Clear> +\ \ + +@@TJclCardinalHashSet.CollectionEquals@IJclCardinalCollection +<copy TJclHashSet.CollectionEquals@IJclCollection> +\ \ + +@@TJclCardinalHashSet.Contains@Cardinal +<copy TJclHashSet.Contains@TObject> +\ \ + +@@TJclCardinalHashSet.ContainsAll@IJclCardinalCollection +<copy TJclHashSet.ContainsAll@IJclCollection> +\ \ + +@@TJclCardinalHashSet.Create@IJclCardinalMap +<copy TJclHashSet.Create@IJclMap> +\ \ + +@@TJclCardinalHashSet.Create@Integer +<copy TJclHashSet.Create@Integer@Boolean> +\ \ + +@@TJclCardinalHashSet.CreateEmptyContainer +<copy TJclHashSet.CreateEmptyContainer> +\ \ + +@@TJclCardinalHashSet.Destroy +<copy TJclHashSet.Destroy> +\ \ + +@@TJclCardinalHashSet.Extract@Cardinal +<copy TJclHashSet.Extract@TObject> +\ \ + +@@TJclCardinalHashSet.ExtractAll@IJclCardinalCollection +<copy TJclHashSet.ExtractAll@IJclCollection> +\ \ + +@@TJclCardinalHashSet.First +<copy TJclHashSet.First> +\ \ + +@@TJclCardinalHashSet.GetAllowDefaultElements +<copy TJclHashSet.GetAllowDefaultElements> +\ \ + +@@TJclCardinalHashSet.GetAutoPackParameter +<copy TJclHashSet.GetAutoPackParameter> +\ \ + +@@TJclCardinalHashSet.GetAutoPackStrategy +<copy TJclHashSet.GetAutoPackStrategy> +\ \ + +@@TJclCardinalHashSet.GetCapacity +<copy TJclHashSet.GetCapacity> +\ \ + +@@TJclCardinalHashSet.GetDuplicates +<copy TJclHashSet.GetDuplicates> +\ \ + +@@TJclCardinalHashSet.GetEnumerator +<copy TJclHashSet.GetEnumerator> +\ \ + +@@TJclCardinalHashSet.GetReadOnly +<copy TJclHashSet.GetReadOnly> +\ \ + +@@TJclCardinalHashSet.GetRemoveSingleElement +<copy TJclHashSet.GetRemoveSingleElement> +\ \ + +@@TJclCardinalHashSet.GetReturnDefaultElements +<copy TJclHashSet.GetReturnDefaultElements> +\ \ + +@@TJclCardinalHashSet.GetThreadSafe +<copy TJclHashSet.GetThreadSafe> +\ \ + +@@TJclCardinalHashSet.Intersect@IJclCardinalCollection +<copy TJclHashSet.Intersect@IJclCollection> +\ \ + +@@TJclCardinalHashSet.IsEmpty +<copy TJclHashSet.IsEmpty> +\ \ + +@@TJclCardinalHashSet.Last +<copy TJclHashSet.Last> +\ \ + +@@TJclCardinalHashSet.Pack +<copy TJclHashSet.Pack> +\ \ + +@@TJclCardinalHashSet.Remove@Cardinal +<copy TJclHashSet.Remove@TObject> +\ \ + +@@TJclCardinalHashSet.RemoveAll@IJclCardinalCollection +<copy TJclHashSet.RemoveAll@IJclCollection> +\ \ + +@@TJclCardinalHashSet.RetainAll@IJclCardinalCollection +<copy TJclHashSet.RetainAll@IJclCollection> +\ \ + +@@TJclCardinalHashSet.SetAllowDefaultElements@Boolean +<copy TJclHashSet.SetAllowDefaultElements@Boolean> +\ \ + +@@TJclCardinalHashSet.SetAutoPackParameter@Integer +<copy TJclHashSet.SetAutoPackParameter@Integer> +\ \ + +@@TJclCardinalHashSet.SetAutoPackStrategy@TJclAutoPackStrategy +<copy TJclHashSet.SetAutoPackStrategy@TJclAutoPackStrategy> +\ \ + +@@TJclCardinalHashSet.SetCapacity@Integer +<copy TJclHashSet.SetCapacity@Integer> +\ \ + +@@TJclCardinalHashSet.SetDuplicates@TDuplicates +<copy TJclHashSet.SetDuplicates@TDuplicates> +\ \ + +@@TJclCardinalHashSet.SetReadOnly@Boolean +<copy TJclHashSet.SetReadOnly@Boolean> +\ \ + +@@TJclCardinalHashSet.SetRemoveSingleElement@Boolean +<copy TJclHashSet.SetRemoveSingleElement@Boolean> +\ \ + +@@TJclCardinalHashSet.SetReturnDefaultElements@Boolean +<copy TJclHashSet.SetReturnDefaultElements@Boolean> +\ \ + +@@TJclCardinalHashSet.SetThreadSafe@Boolean +<copy TJclHashSet.SetThreadSafe@Boolean> +\ \ + +@@TJclCardinalHashSet.Size +<copy TJclHashSet.Size> +\ \ + +@@TJclCardinalHashSet.Subtract@IJclCardinalCollection +<copy TJclHashSet.Subtract@IJclCollection> +\ \ + +@@TJclCardinalHashSet.Union@IJclCardinalCollection +<copy TJclHashSet.Union@IJclCollection> +\ \ +@@TJclInt64HashSet +<copy TJclHashSet> +\ \ + +@@!!MEMBEROVERVIEW_TJclInt64HashSet +<copy !!MEMBEROVERVIEW_TJclHashSet> +\ \ + +@@TJclInt64HashSet.Add@Int64 +<copy TJclHashSet.Add@TObject> +\ \ + +@@TJclInt64HashSet.AddAll@IJclInt64Collection +<copy TJclHashSet.AddAll@IJclCollection> +\ \ + +@@TJclInt64HashSet.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashSet.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclInt64HashSet.Clear +<copy TJclHashSet.Clear> +\ \ + +@@TJclInt64HashSet.CollectionEquals@IJclInt64Collection +<copy TJclHashSet.CollectionEquals@IJclCollection> +\ \ + +@@TJclInt64HashSet.Contains@Int64 +<copy TJclHashSet.Contains@TObject> +\ \ + +@@TJclInt64HashSet.ContainsAll@IJclInt64Collection +<copy TJclHashSet.ContainsAll@IJclCollection> +\ \ + +@@TJclInt64HashSet.Create@IJclInt64Map +<copy TJclHashSet.Create@IJclMap> +\ \ + +@@TJclInt64HashSet.Create@Integer +<copy TJclHashSet.Create@Integer@Boolean> +\ \ + +@@TJclInt64HashSet.CreateEmptyContainer +<copy TJclHashSet.CreateEmptyContainer> +\ \ + +@@TJclInt64HashSet.Destroy +<copy TJclHashSet.Destroy> +\ \ + +@@TJclInt64HashSet.Extract@Int64 +<copy TJclHashSet.Extract@TObject> +\ \ + +@@TJclInt64HashSet.ExtractAll@IJclInt64Collection +<copy TJclHashSet.ExtractAll@IJclCollection> +\ \ + +@@TJclInt64HashSet.First +<copy TJclHashSet.First> +\ \ + +@@TJclInt64HashSet.GetAllowDefaultElements +<copy TJclHashSet.GetAllowDefaultElements> +\ \ + +@@TJclInt64HashSet.GetAutoPackParameter +<copy TJclHashSet.GetAutoPackParameter> +\ \ + +@@TJclInt64HashSet.GetAutoPackStrategy +<copy TJclHashSet.GetAutoPackStrategy> +\ \ + +@@TJclInt64HashSet.GetCapacity +<copy TJclHashSet.GetCapacity> +\ \ + +@@TJclInt64HashSet.GetDuplicates +<copy TJclHashSet.GetDuplicates> +\ \ + +@@TJclInt64HashSet.GetEnumerator +<copy TJclHashSet.GetEnumerator> +\ \ + +@@TJclInt64HashSet.GetReadOnly +<copy TJclHashSet.GetReadOnly> +\ \ + +@@TJclInt64HashSet.GetRemoveSingleElement +<copy TJclHashSet.GetRemoveSingleElement> +\ \ + +@@TJclInt64HashSet.GetReturnDefaultElements +<copy TJclHashSet.GetReturnDefaultElements> +\ \ + +@@TJclInt64HashSet.GetThreadSafe +<copy TJclHashSet.GetThreadSafe> +\ \ + +@@TJclInt64HashSet.Intersect@IJclInt64Collection +<copy TJclHashSet.Intersect@IJclCollection> +\ \ + +@@TJclInt64HashSet.IsEmpty +<copy TJclHashSet.IsEmpty> +\ \ + +@@TJclInt64HashSet.Last +<copy TJclHashSet.Last> +\ \ + +@@TJclInt64HashSet.Pack +<copy TJclHashSet.Pack> +\ \ + +@@TJclInt64HashSet.Remove@Int64 +<copy TJclHashSet.Remove@TObject> +\ \ + +@@TJclInt64HashSet.RemoveAll@IJclInt64Collection +<copy TJclHashSet.RemoveAll@IJclCollection> +\ \ + +@@TJclInt64HashSet.RetainAll@IJclInt64Collection +<copy TJclHashSet.RetainAll@IJclCollection> +\ \ + +@@TJclInt64HashSet.SetAllowDefaultElements@Boolean +<copy TJclHashSet.SetAllowDefaultElements@Boolean> +\ \ + +@@TJclInt64HashSet.SetAutoPackParameter@Integer +<copy TJclHashSet.SetAutoPackParameter@Integer> +\ \ + +@@TJclInt64HashSet.SetAutoPackStrategy@TJclAutoPackStrategy +<copy TJclHashSet.SetAutoPackStrategy@TJclAutoPackStrategy> +\ \ + +@@TJclInt64HashSet.SetCapacity@Integer +<copy TJclHashSet.SetCapacity@Integer> +\ \ + +@@TJclInt64HashSet.SetDuplicates@TDuplicates +<copy TJclHashSet.SetDuplicates@TDuplicates> +\ \ + +@@TJclInt64HashSet.SetReadOnly@Boolean +<copy TJclHashSet.SetReadOnly@Boolean> +\ \ + +@@TJclInt64HashSet.SetRemoveSingleElement@Boolean +<copy TJclHashSet.SetRemoveSingleElement@Boolean> +\ \ + +@@TJclInt64HashSet.SetReturnDefaultElements@Boolean +<copy TJclHashSet.SetReturnDefaultElements@Boolean> +\ \ + +@@TJclInt64HashSet.SetThreadSafe@Boolean +<copy TJclHashSet.SetThreadSafe@Boolean> +\ \ + +@@TJclInt64HashSet.Size +<copy TJclHashSet.Size> +\ \ + +@@TJclInt64HashSet.Subtract@IJclInt64Collection +<copy TJclHashSet.Subtract@IJclCollection> +\ \ + +@@TJclInt64HashSet.Union@IJclInt64Collection +<copy TJclHashSet.Union@IJclCollection> +\ \ +@@TJclPtrHashSet +<copy TJclHashSet> +\ \ + +@@!!MEMBEROVERVIEW_TJclPtrHashSet +<copy !!MEMBEROVERVIEW_TJclHashSet> +\ \ + +@@TJclPtrHashSet.Add@Pointer +<copy TJclHashSet.Add@TObject> +\ \ + +@@TJclPtrHashSet.AddAll@IJclPtrCollection +<copy TJclHashSet.AddAll@IJclCollection> +\ \ + +@@TJclPtrHashSet.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashSet.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclPtrHashSet.Clear +<copy TJclHashSet.Clear> +\ \ + +@@TJclPtrHashSet.CollectionEquals@IJclPtrCollection +<copy TJclHashSet.CollectionEquals@IJclCollection> +\ \ + +@@TJclPtrHashSet.Contains@Pointer +<copy TJclHashSet.Contains@TObject> +\ \ + +@@TJclPtrHashSet.ContainsAll@IJclPtrCollection +<copy TJclHashSet.ContainsAll@IJclCollection> +\ \ + +@@TJclPtrHashSet.Create@IJclPtrMap +<copy TJclHashSet.Create@IJclMap> +\ \ + +@@TJclPtrHashSet.Create@Integer +<copy TJclHashSet.Create@Integer@Boolean> +\ \ + +@@TJclPtrHashSet.CreateEmptyContainer +<copy TJclHashSet.CreateEmptyContainer> +\ \ + +@@TJclPtrHashSet.Destroy +<copy TJclHashSet.Destroy> +\ \ + +@@TJclPtrHashSet.Extract@Pointer +<copy TJclHashSet.Extract@TObject> +\ \ + +@@TJclPtrHashSet.ExtractAll@IJclPtrCollection +<copy TJclHashSet.ExtractAll@IJclCollection> +\ \ + +@@TJclPtrHashSet.First +<copy TJclHashSet.First> +\ \ + +@@TJclPtrHashSet.GetAllowDefaultElements +<copy TJclHashSet.GetAllowDefaultElements> +\ \ + +@@TJclPtrHashSet.GetAutoPackParameter +<copy TJclHashSet.GetAutoPackParameter> +\ \ + +@@TJclPtrHashSet.GetAutoPackStrategy +<copy TJclHashSet.GetAutoPackStrategy> +\ \ + +@@TJclPtrHashSet.GetCapacity +<copy TJclHashSet.GetCapacity> +\ \ + +@@TJclPtrHashSet.GetDuplicates +<copy TJclHashSet.GetDuplicates> +\ \ + +@@TJclPtrHashSet.GetEnumerator +<copy TJclHashSet.GetEnumerator> +\ \ + +@@TJclPtrHashSet.GetReadOnly +<copy TJclHashSet.GetReadOnly> +\ \ + +@@TJclPtrHashSet.GetRemoveSingleElement +<copy TJclHashSet.GetRemoveSingleElement> +\ \ + +@@TJclPtrHashSet.GetReturnDefaultElements +<copy TJclHashSet.GetReturnDefaultElements> +\ \ + +@@TJclPtrHashSet.GetThreadSafe +<copy TJclHashSet.GetThreadSafe> +\ \ + +@@TJclPtrHashSet.Intersect@IJclPtrCollection +<copy TJclHashSet.Intersect@IJclCollection> +\ \ + +@@TJclPtrHashSet.IsEmpty +<copy TJclHashSet.IsEmpty> +\ \ + +@@TJclPtrHashSet.Last +<copy TJclHashSet.Last> +\ \ + +@@TJclPtrHashSet.Pack +<copy TJclHashSet.Pack> +\ \ + +@@TJclPtrHashSet.Remove@Pointer +<copy TJclHashSet.Remove@TObject> +\ \ + +@@TJclPtrHashSet.RemoveAll@IJclPtrCollection +<copy TJclHashSet.RemoveAll@IJclCollection> +\ \ + +@@TJclPtrHashSet.RetainAll@IJclPtrCollection +<copy TJclHashSet.RetainAll@IJclCollection> +\ \ + +@@TJclPtrHashSet.SetAllowDefaultElements@Boolean +<copy TJclHashSet.SetAllowDefaultElements@Boolean> +\ \ + +@@TJclPtrHashSet.SetAutoPackParameter@Integer +<copy TJclHashSet.SetAutoPackParameter@Integer> +\ \ + +@@TJclPtrHashSet.SetAutoPackStrategy@TJclAutoPackStrategy +<copy TJclHashSet.SetAutoPackStrategy@TJclAutoPackStrategy> +\ \ + +@@TJclPtrHashSet.SetCapacity@Integer +<copy TJclHashSet.SetCapacity@Integer> +\ \ + +@@TJclPtrHashSet.SetDuplicates@TDuplicates +<copy TJclHashSet.SetDuplicates@TDuplicates> +\ \ + +@@TJclPtrHashSet.SetReadOnly@Boolean +<copy TJclHashSet.SetReadOnly@Boolean> +\ \ + +@@TJclPtrHashSet.SetRemoveSingleElement@Boolean +<copy TJclHashSet.SetRemoveSingleElement@Boolean> +\ \ + +@@TJclPtrHashSet.SetReturnDefaultElements@Boolean +<copy TJclHashSet.SetReturnDefaultElements@Boolean> +\ \ + +@@TJclPtrHashSet.SetThreadSafe@Boolean +<copy TJclHashSet.SetThreadSafe@Boolean> +\ \ + +@@TJclPtrHashSet.Size +<copy TJclHashSet.Size> +\ \ + +@@TJclPtrHashSet.Subtract@IJclPtrCollection +<copy TJclHashSet.Subtract@IJclCollection> +\ \ + +@@TJclPtrHashSet.Union@IJclPtrCollection +<copy TJclHashSet.Union@IJclCollection> +\ \ + + +@@TJclIntfLinkedListItem +<copy TJclLinkedListItem> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfLinkedListItem +<copy !!MEMBEROVERVIEW_TJclLinkedListItem> +\ \ + +@@TJclIntfLinkedListItem.Next +<copy TJclLinkedListItem.Next> +\ \ + +@@TJclIntfLinkedListItem.Previous +<copy TJclLinkedListItem.Previous> +\ \ + +@@TJclIntfLinkedListItem.Value +<copy TJclLinkedListItem.Value> +\ \ +@@TJclAnsiStrLinkedListItem +<copy TJclLinkedListItem> +\ \ + +@@!!MEMBEROVERVIEW_TJclAnsiStrLinkedListItem +<copy !!MEMBEROVERVIEW_TJclLinkedListItem> +\ \ + +@@TJclAnsiStrLinkedListItem.Next +<copy TJclLinkedListItem.Next> +\ \ + +@@TJclAnsiStrLinkedListItem.Previous +<copy TJclLinkedListItem.Previous> +\ \ + +@@TJclAnsiStrLinkedListItem.Value +<copy TJclLinkedListItem.Value> +\ \ +@@TJclWideStrLinkedListItem +<copy TJclLinkedListItem> +\ \ + +@@!!MEMBEROVERVIEW_TJclWideStrLinkedListItem +<copy !!MEMBEROVERVIEW_TJclLinkedListItem> +\ \ + +@@TJclWideStrLinkedListItem.Next +<copy TJclLinkedListItem.Next> +\ \ + +@@TJclWideStrLinkedListItem.Previous +<copy TJclLinkedListItem.Previous> +\ \ + +@@TJclWideStrLinkedListItem.Value +<copy TJclLinkedListItem.Value> +\ \ +@@TJclUnicodeStrLinkedListItem +<copy TJclLinkedListItem> +\ \ + +@@!!MEMBEROVERVIEW_TJclUnicodeStrLinkedListItem +<copy !!MEMBEROVERVIEW_TJclLinkedListItem> +\ \ + +@@TJclUnicodeStrLinkedListItem.Next +<copy TJclLinkedListItem.Next> +\ \ + +@@TJclUnicodeStrLinkedListItem.Previous +<copy TJclLinkedListItem.Previous> +\ \ + +@@TJclUnicodeStrLinkedListItem.Value +<copy TJclLinkedListItem.Value> +\ \ +@@TJclSingleLinkedListItem +<copy TJclLinkedListItem> +\ \ + +@@!!MEMBEROVERVIEW_TJclSingleLinkedListItem +<copy !!MEMBEROVERVIEW_TJclLinkedListItem> +\ \ + +@@TJclSingleLinkedListItem.Next +<copy TJclLinkedListItem.Next> +\ \ + +@@TJclSingleLinkedListItem.Previous +<copy TJclLinkedListItem.Previous> +\ \ + +@@TJclSingleLinkedListItem.Value +<copy TJclLinkedListItem.Value> +\ \ +@@TJclDoubleLinkedListItem +<copy TJclLinkedListItem> +\ \ + +@@!!MEMBEROVERVIEW_TJclDoubleLinkedListItem +<copy !!MEMBEROVERVIEW_TJclLinkedListItem> +\ \ + +@@TJclDoubleLinkedListItem.Next +<copy TJclLinkedListItem.Next> +\ \ + +@@TJclDoubleLinkedListItem.Previous +<copy TJclLinkedListItem.Previous> +\ \ + +@@TJclDoubleLinkedListItem.Value +<copy TJclLinkedListItem.Value> +\ \ +@@TJclExtendedLinkedListItem +<copy TJclLinkedListItem> +\ \ + +@@!!MEMBEROVERVIEW_TJclExtendedLinkedListItem +<copy !!MEMBEROVERVIEW_TJclLinkedListItem> +\ \ + +@@TJclExtendedLinkedListItem.Next +<copy TJclLinkedListItem.Next> +\ \ + +@@TJclExtendedLinkedListItem.Previous +<copy TJclLinkedListItem.Previous> +\ \ + +@@TJclExtendedLinkedListItem.Value +<copy TJclLinkedListItem.Value> +\ \ +@@TJclIntegerLinkedListItem +<copy TJclLinkedListItem> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntegerLinkedListItem +<copy !!MEMBEROVERVIEW_TJclLinkedListItem> +\ \ + +@@TJclIntegerLinkedListItem.Next +<copy TJclLinkedListItem.Next> +\ \ + +@@TJclIntegerLinkedListItem.Previous +<copy TJclLinkedListItem.Previous> +\ \ + +@@TJclIntegerLinkedListItem.Value +<copy TJclLinkedListItem.Value> +\ \ +@@TJclCardinalLinkedListItem +<copy TJclLinkedListItem> +\ \ + +@@!!MEMBEROVERVIEW_TJclCardinalLinkedListItem +<copy !!MEMBEROVERVIEW_TJclLinkedListItem> +\ \ + +@@TJclCardinalLinkedListItem.Next +<copy TJclLinkedListItem.Next> +\ \ + +@@TJclCardinalLinkedListItem.Previous +<copy TJclLinkedListItem.Previous> +\ \ + +@@TJclCardinalLinkedListItem.Value +<copy TJclLinkedListItem.Value> +\ \ +@@TJclInt64LinkedListItem +<copy TJclLinkedListItem> +\ \ + +@@!!MEMBEROVERVIEW_TJclInt64LinkedListItem +<copy !!MEMBEROVERVIEW_TJclLinkedListItem> +\ \ + +@@TJclInt64LinkedListItem.Next +<copy TJclLinkedListItem.Next> +\ \ + +@@TJclInt64LinkedListItem.Previous +<copy TJclLinkedListItem.Previous> +\ \ + +@@TJclInt64LinkedListItem.Value +<copy TJclLinkedListItem.Value> +\ \ +@@TJclPtrLinkedListItem +<copy TJclLinkedListItem> +\ \ + +@@!!MEMBEROVERVIEW_TJclPtrLinkedListItem +<copy !!MEMBEROVERVIEW_TJclLinkedListItem> +\ \ + +@@TJclPtrLinkedListItem.Next +<copy TJclLinkedListItem.Next> +\ \ + +@@TJclPtrLinkedListItem.Previous +<copy TJclLinkedListItem.Previous> +\ \ + +@@TJclPtrLinkedListItem.Value +<copy TJclLinkedListItem.Value> +\ \ + + +@@TJclIntfLinkedList +<copy TJclLinkedList> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfLinkedList +<copy !!MEMBEROVERVIEW_TJclLinkedList> +\ \ + +@@TJclIntfLinkedList.Add@IInterface +<copy TJclLinkedList.Add@TObject> +\ \ + +@@TJclIntfLinkedList.AddAll@IJclIntfCollection +<copy TJclLinkedList.AddAll@IJclCollection> +\ \ + +@@TJclIntfLinkedList.AssignDataTo@TJclAbstractContainerBase +<copy TJclLinkedList.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfLinkedList.Clear +<copy TJclLinkedList.Clear> +\ \ + +@@TJclIntfLinkedList.CollectionEquals@IJclIntfCollection +<copy TJclLinkedList.CollectionEquals@IJclCollection> +\ \ + +@@TJclIntfLinkedList.Contains@IInterface +<copy TJclLinkedList.Contains@TObject> +\ \ + +@@TJclIntfLinkedList.ContainsAll@IJclIntfCollection +<copy TJclLinkedList.ContainsAll@IJclCollection> +\ \ + +@@TJclIntfLinkedList.Create@IJclIntfCollection +<copy TJclLinkedList.Create@IJclCollection@Boolean> +\ \ + +@@TJclIntfLinkedList.CreateEmptyContainer +<copy TJclLinkedList.CreateEmptyContainer> +\ \ + +@@TJclIntfLinkedList.Delete@Integer +<copy TJclLinkedList.Delete@Integer> +\ \ + +@@TJclIntfLinkedList.Destroy +<copy TJclLinkedList.Destroy> +\ \ + +@@TJclIntfLinkedList.Extract@IInterface +<copy TJclLinkedList.Extract@TObject> +\ \ + +@@TJclIntfLinkedList.ExtractAll@IJclIntfCollection +<copy TJclLinkedList.ExtractAll@IJclCollection> +\ \ + +@@TJclIntfLinkedList.ExtractIndex@Integer +<copy TJclLinkedList.ExtractIndex@Integer> +\ \ + +@@TJclIntfLinkedList.First +<copy TJclLinkedList.First> +\ \ + +@@TJclIntfLinkedList.GetEnumerator +<copy TJclLinkedList.GetEnumerator> +\ \ + +@@TJclIntfLinkedList.GetObject@Integer +<copy TJclLinkedList.GetObject@Integer> +\ \ + +@@TJclIntfLinkedList.IndexOf@IInterface +<copy TJclLinkedList.IndexOf@TObject> +\ \ + +@@TJclIntfLinkedList.Insert@Integer@IInterface +<copy TJclLinkedList.Insert@Integer@TObject> +\ \ + +@@TJclIntfLinkedList.InsertAll@Integer@IJclIntfCollection +<copy TJclLinkedList.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclIntfLinkedList.IsEmpty +<copy TJclLinkedList.IsEmpty> +\ \ + +@@TJclIntfLinkedList.Last +<copy TJclLinkedList.Last> +\ \ + +@@TJclIntfLinkedList.LastIndexOf@IInterface +<copy TJclLinkedList.LastIndexOf@TObject> +\ \ + +@@TJclIntfLinkedList.Remove@IInterface +<copy TJclLinkedList.Remove@TObject> +\ \ + +@@TJclIntfLinkedList.RemoveAll@IJclIntfCollection +<copy TJclLinkedList.RemoveAll@IJclCollection> +\ \ + +@@TJclIntfLinkedList.RetainAll@IJclIntfCollection +<copy TJclLinkedList.RetainAll@IJclCollection> +\ \ + +@@TJclIntfLinkedList.SetObject@Integer@IInterface +<copy TJclLinkedList.SetObject@Integer@TObject> +\ \ + +@@TJclIntfLinkedList.Size +<copy TJclLinkedList.Size> +\ \ + +@@TJclIntfLinkedList.SubList@Integer@Integer +<copy TJclLinkedList.SubList@Integer@Integer> +\ \ +@@TJclAnsiStrLinkedList +<copy TJclLinkedList> +\ \ + +@@!!MEMBEROVERVIEW_TJclAnsiStrLinkedList +<copy !!MEMBEROVERVIEW_TJclLinkedList> +\ \ + +@@TJclAnsiStrLinkedList.Add@AnsiString +<copy TJclLinkedList.Add@TObject> +\ \ + +@@TJclAnsiStrLinkedList.AddAll@IJclAnsiStrCollection +<copy TJclLinkedList.AddAll@IJclCollection> +\ \ + +@@TJclAnsiStrLinkedList.AssignDataTo@TJclAbstractContainerBase +<copy TJclLinkedList.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclAnsiStrLinkedList.Clear +<copy TJclLinkedList.Clear> +\ \ + +@@TJclAnsiStrLinkedList.CollectionEquals@IJclAnsiStrCollection +<copy TJclLinkedList.CollectionEquals@IJclCollection> +\ \ + +@@TJclAnsiStrLinkedList.Contains@AnsiString +<copy TJclLinkedList.Contains@TObject> +\ \ + +@@TJclAnsiStrLinkedList.ContainsAll@IJclAnsiStrCollection +<copy TJclLinkedList.ContainsAll@IJclCollection> +\ \ + +@@TJclAnsiStrLinkedList.Create@IJclAnsiStrCollection +<copy TJclLinkedList.Create@IJclCollection@Boolean> +\ \ + +@@TJclAnsiStrLinkedList.CreateEmptyContainer +<copy TJclLinkedList.CreateEmptyContainer> +\ \ + +@@TJclAnsiStrLinkedList.Delete@Integer +<copy TJclLinkedList.Delete@Integer> +\ \ + +@@TJclAnsiStrLinkedList.Destroy +<copy TJclLinkedList.Destroy> +\ \ + +@@TJclAnsiStrLinkedList.Extract@AnsiString +<copy TJclLinkedList.Extract@TObject> +\ \ + +@@TJclAnsiStrLinkedList.ExtractAll@IJclAnsiStrCollection +<copy TJclLinkedList.ExtractAll@IJclCollection> +\ \ + +@@TJclAnsiStrLinkedList.ExtractIndex@Integer +<copy TJclLinkedList.ExtractIndex@Integer> +\ \ + +@@TJclAnsiStrLinkedList.First +<copy TJclLinkedList.First> +\ \ + +@@TJclAnsiStrLinkedList.GetEnumerator +<copy TJclLinkedList.GetEnumerator> +\ \ + +@@TJclAnsiStrLinkedList.GetString@Integer +<copy TJclLinkedList.GetObject@Integer> +\ \ + +@@TJclAnsiStrLinkedList.IndexOf@AnsiString +<copy TJclLinkedList.IndexOf@TObject> +\ \ + +@@TJclAnsiStrLinkedList.Insert@Integer@AnsiString +<copy TJclLinkedList.Insert@Integer@TObject> +\ \ + +@@TJclAnsiStrLinkedList.InsertAll@Integer@IJclAnsiStrCollection +<copy TJclLinkedList.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclAnsiStrLinkedList.IsEmpty +<copy TJclLinkedList.IsEmpty> +\ \ + +@@TJclAnsiStrLinkedList.Last +<copy TJclLinkedList.Last> +\ \ + +@@TJclAnsiStrLinkedList.LastIndexOf@AnsiString +<copy TJclLinkedList.LastIndexOf@TObject> +\ \ + +@@TJclAnsiStrLinkedList.Remove@AnsiString +<copy TJclLinkedList.Remove@TObject> +\ \ + +@@TJclAnsiStrLinkedList.RemoveAll@IJclAnsiStrCollection +<copy TJclLinkedList.RemoveAll@IJclCollection> +\ \ + +@@TJclAnsiStrLinkedList.RetainAll@IJclAnsiStrCollection +<copy TJclLinkedList.RetainAll@IJclCollection> +\ \ + +@@TJclAnsiStrLinkedList.SetString@Integer@AnsiString +<copy TJclLinkedList.SetObject@Integer@TObject> +\ \ + +@@TJclAnsiStrLinkedList.Size +<copy TJclLinkedList.Size> +\ \ + +@@TJclAnsiStrLinkedList.SubList@Integer@Integer +<copy TJclLinkedList.SubList@Integer@Integer> +\ \ +@@TJclWideStrLinkedList +<copy TJclLinkedList> +\ \ + +@@!!MEMBEROVERVIEW_TJclWideStrLinkedList +<copy !!MEMBEROVERVIEW_TJclLinkedList> +\ \ + +@@TJclWideStrLinkedList.Add@WideString +<copy TJclLinkedList.Add@TObject> +\ \ + +@@TJclWideStrLinkedList.AddAll@IJclWideStrCollection +<copy TJclLinkedList.AddAll@IJclCollection> +\ \ + +@@TJclWideStrLinkedList.AssignDataTo@TJclAbstractContainerBase +<copy TJclLinkedList.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclWideStrLinkedList.Clear +<copy TJclLinkedList.Clear> +\ \ + +@@TJclWideStrLinkedList.CollectionEquals@IJclWideStrCollection +<copy TJclLinkedList.CollectionEquals@IJclCollection> +\ \ + +@@TJclWideStrLinkedList.Contains@WideString +<copy TJclLinkedList.Contains@TObject> +\ \ + +@@TJclWideStrLinkedList.ContainsAll@IJclWideStrCollection +<copy TJclLinkedList.ContainsAll@IJclCollection> +\ \ + +@@TJclWideStrLinkedList.Create@IJclWideStrCollection +<copy TJclLinkedList.Create@IJclCollection@Boolean> +\ \ + +@@TJclWideStrLinkedList.CreateEmptyContainer +<copy TJclLinkedList.CreateEmptyContainer> +\ \ + +@@TJclWideStrLinkedList.Delete@Integer +<copy TJclLinkedList.Delete@Integer> +\ \ + +@@TJclWideStrLinkedList.Destroy +<copy TJclLinkedList.Destroy> +\ \ + +@@TJclWideStrLinkedList.Extract@WideString +<copy TJclLinkedList.Extract@TObject> +\ \ + +@@TJclWideStrLinkedList.ExtractAll@IJclWideStrCollection +<copy TJclLinkedList.ExtractAll@IJclCollection> +\ \ + +@@TJclWideStrLinkedList.ExtractIndex@Integer +<copy TJclLinkedList.ExtractIndex@Integer> +\ \ + +@@TJclWideStrLinkedList.First +<copy TJclLinkedList.First> +\ \ + +@@TJclWideStrLinkedList.GetEnumerator +<copy TJclLinkedList.GetEnumerator> +\ \ + +@@TJclWideStrLinkedList.GetString@Integer +<copy TJclLinkedList.GetObject@Integer> +\ \ + +@@TJclWideStrLinkedList.IndexOf@WideString +<copy TJclLinkedList.IndexOf@TObject> +\ \ + +@@TJclWideStrLinkedList.Insert@Integer@WideString +<copy TJclLinkedList.Insert@Integer@TObject> +\ \ + +@@TJclWideStrLinkedList.InsertAll@Integer@IJclWideStrCollection +<copy TJclLinkedList.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclWideStrLinkedList.IsEmpty +<copy TJclLinkedList.IsEmpty> +\ \ + +@@TJclWideStrLinkedList.Last +<copy TJclLinkedList.Last> +\ \ + +@@TJclWideStrLinkedList.LastIndexOf@WideString +<copy TJclLinkedList.LastIndexOf@TObject> +\ \ + +@@TJclWideStrLinkedList.Remove@WideString +<copy TJclLinkedList.Remove@TObject> +\ \ + +@@TJclWideStrLinkedList.RemoveAll@IJclWideStrCollection +<copy TJclLinkedList.RemoveAll@IJclCollection> +\ \ + +@@TJclWideStrLinkedList.RetainAll@IJclWideStrCollection +<copy TJclLinkedList.RetainAll@IJclCollection> +\ \ + +@@TJclWideStrLinkedList.SetString@Integer@WideString +<copy TJclLinkedList.SetObject@Integer@TObject> +\ \ + +@@TJclWideStrLinkedList.Size +<copy TJclLinkedList.Size> +\ \ + +@@TJclWideStrLinkedList.SubList@Integer@Integer +<copy TJclLinkedList.SubList@Integer@Integer> +\ \ +@@TJclUnicodeStrLinkedList +<copy TJclLinkedList> +\ \ + +@@!!MEMBEROVERVIEW_TJclUnicodeStrLinkedList +<copy !!MEMBEROVERVIEW_TJclLinkedList> +\ \ + +@@TJclUnicodeStrLinkedList.Add@UnicodeString +<copy TJclLinkedList.Add@TObject> +\ \ + +@@TJclUnicodeStrLinkedList.AddAll@IJclUnicodeStrCollection +<copy TJclLinkedList.AddAll@IJclCollection> +\ \ + +@@TJclUnicodeStrLinkedList.AssignDataTo@TJclAbstractContainerBase +<copy TJclLinkedList.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclUnicodeStrLinkedList.Clear +<copy TJclLinkedList.Clear> +\ \ + +@@TJclUnicodeStrLinkedList.CollectionEquals@IJclUnicodeStrCollection +<copy TJclLinkedList.CollectionEquals@IJclCollection> +\ \ + +@@TJclUnicodeStrLinkedList.Contains@UnicodeString +<copy TJclLinkedList.Contains@TObject> +\ \ + +@@TJclUnicodeStrLinkedList.ContainsAll@IJclUnicodeStrCollection +<copy TJclLinkedList.ContainsAll@IJclCollection> +\ \ + +@@TJclUnicodeStrLinkedList.Create@IJclUnicodeStrCollection +<copy TJclLinkedList.Create@IJclCollection@Boolean> +\ \ + +@@TJclUnicodeStrLinkedList.CreateEmptyContainer +<copy TJclLinkedList.CreateEmptyContainer> +\ \ + +@@TJclUnicodeStrLinkedList.Delete@Integer +<copy TJclLinkedList.Delete@Integer> +\ \ + +@@TJclUnicodeStrLinkedList.Destroy +<copy TJclLinkedList.Destroy> +\ \ + +@@TJclUnicodeStrLinkedList.Extract@UnicodeString +<copy TJclLinkedList.Extract@TObject> +\ \ + +@@TJclUnicodeStrLinkedList.ExtractAll@IJclUnicodeStrCollection +<copy TJclLinkedList.ExtractAll@IJclCollection> +\ \ + +@@TJclUnicodeStrLinkedList.ExtractIndex@Integer +<copy TJclLinkedList.ExtractIndex@Integer> +\ \ + +@@TJclUnicodeStrLinkedList.First +<copy TJclLinkedList.First> +\ \ + +@@TJclUnicodeStrLinkedList.GetEnumerator +<copy TJclLinkedList.GetEnumerator> +\ \ + +@@TJclUnicodeStrLinkedList.GetString@Integer +<copy TJclLinkedList.GetObject@Integer> +\ \ + +@@TJclUnicodeStrLinkedList.IndexOf@UnicodeString +<copy TJclLinkedList.IndexOf@TObject> +\ \ + +@@TJclUnicodeStrLinkedList.Insert@Integer@UnicodeString +<copy TJclLinkedList.Insert@Integer@TObject> +\ \ + +@@TJclUnicodeStrLinkedList.InsertAll@Integer@IJclUnicodeStrCollection +<copy TJclLinkedList.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclUnicodeStrLinkedList.IsEmpty +<copy TJclLinkedList.IsEmpty> +\ \ + +@@TJclUnicodeStrLinkedList.Last +<copy TJclLinkedList.Last> +\ \ + +@@TJclUnicodeStrLinkedList.LastIndexOf@UnicodeString +<copy TJclLinkedList.LastIndexOf@TObject> +\ \ + +@@TJclUnicodeStrLinkedList.Remove@UnicodeString +<copy TJclLinkedList.Remove@TObject> +\ \ + +@@TJclUnicodeStrLinkedList.RemoveAll@IJclUnicodeStrCollection +<copy TJclLinkedList.RemoveAll@IJclCollection> +\ \ + +@@TJclUnicodeStrLinkedList.RetainAll@IJclUnicodeStrCollection +<copy TJclLinkedList.RetainAll@IJclCollection> +\ \ + +@@TJclUnicodeStrLinkedList.SetString@Integer@UnicodeString +<copy TJclLinkedList.SetObject@Integer@TObject> +\ \ + +@@TJclUnicodeStrLinkedList.Size +<copy TJclLinkedList.Size> +\ \ + +@@TJclUnicodeStrLinkedList.SubList@Integer@Integer +<copy TJclLinkedList.SubList@Integer@Integer> +\ \ +@@TJclSingleLinkedList +<copy TJclLinkedList> +\ \ + +@@!!MEMBEROVERVIEW_TJclSingleLinkedList +<copy !!MEMBEROVERVIEW_TJclLinkedList> +\ \ + +@@TJclSingleLinkedList.Add@Single +<copy TJclLinkedList.Add@TObject> +\ \ + +@@TJclSingleLinkedList.AddAll@IJclSingleCollection +<copy TJclLinkedList.AddAll@IJclCollection> +\ \ + +@@TJclSingleLinkedList.AssignDataTo@TJclAbstractContainerBase +<copy TJclLinkedList.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclSingleLinkedList.Clear +<copy TJclLinkedList.Clear> +\ \ + +@@TJclSingleLinkedList.CollectionEquals@IJclSingleCollection +<copy TJclLinkedList.CollectionEquals@IJclCollection> +\ \ + +@@TJclSingleLinkedList.Contains@Single +<copy TJclLinkedList.Contains@TObject> +\ \ + +@@TJclSingleLinkedList.ContainsAll@IJclSingleCollection +<copy TJclLinkedList.ContainsAll@IJclCollection> +\ \ + +@@TJclSingleLinkedList.Create@IJclSingleCollection +<copy TJclLinkedList.Create@IJclCollection@Boolean> +\ \ + +@@TJclSingleLinkedList.CreateEmptyContainer +<copy TJclLinkedList.CreateEmptyContainer> +\ \ + +@@TJclSingleLinkedList.Delete@Integer +<copy TJclLinkedList.Delete@Integer> +\ \ + +@@TJclSingleLinkedList.Destroy +<copy TJclLinkedList.Destroy> +\ \ + +@@TJclSingleLinkedList.Extract@Single +<copy TJclLinkedList.Extract@TObject> +\ \ + +@@TJclSingleLinkedList.ExtractAll@IJclSingleCollection +<copy TJclLinkedList.ExtractAll@IJclCollection> +\ \ + +@@TJclSingleLinkedList.ExtractIndex@Integer +<copy TJclLinkedList.ExtractIndex@Integer> +\ \ + +@@TJclSingleLinkedList.First +<copy TJclLinkedList.First> +\ \ + +@@TJclSingleLinkedList.GetEnumerator +<copy TJclLinkedList.GetEnumerator> +\ \ + +@@TJclSingleLinkedList.GetValue@Integer +<copy TJclLinkedList.GetObject@Integer> +\ \ + +@@TJclSingleLinkedList.IndexOf@Single +<copy TJclLinkedList.IndexOf@TObject> +\ \ + +@@TJclSingleLinkedList.Insert@Integer@Single +<copy TJclLinkedList.Insert@Integer@TObject> +\ \ + +@@TJclSingleLinkedList.InsertAll@Integer@IJclSingleCollection +<copy TJclLinkedList.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclSingleLinkedList.IsEmpty +<copy TJclLinkedList.IsEmpty> +\ \ + +@@TJclSingleLinkedList.Last +<copy TJclLinkedList.Last> +\ \ + +@@TJclSingleLinkedList.LastIndexOf@Single +<copy TJclLinkedList.LastIndexOf@TObject> +\ \ + +@@TJclSingleLinkedList.Remove@Single +<copy TJclLinkedList.Remove@TObject> +\ \ + +@@TJclSingleLinkedList.RemoveAll@IJclSingleCollection +<copy TJclLinkedList.RemoveAll@IJclCollection> +\ \ + +@@TJclSingleLinkedList.RetainAll@IJclSingleCollection +<copy TJclLinkedList.RetainAll@IJclCollection> +\ \ + +@@TJclSingleLinkedList.SetValue@Integer@Single +<copy TJclLinkedList.SetObject@Integer@TObject> +\ \ + +@@TJclSingleLinkedList.Size +<copy TJclLinkedList.Size> +\ \ + +@@TJclSingleLinkedList.SubList@Integer@Integer +<copy TJclLinkedList.SubList@Integer@Integer> +\ \ +@@TJclDoubleLinkedList +<copy TJclLinkedList> +\ \ + +@@!!MEMBEROVERVIEW_TJclDoubleLinkedList +<copy !!MEMBEROVERVIEW_TJclLinkedList> +\ \ + +@@TJclDoubleLinkedList.Add@Double +<copy TJclLinkedList.Add@TObject> +\ \ + +@@TJclDoubleLinkedList.AddAll@IJclDoubleCollection +<copy TJclLinkedList.AddAll@IJclCollection> +\ \ + +@@TJclDoubleLinkedList.AssignDataTo@TJclAbstractContainerBase +<copy TJclLinkedList.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclDoubleLinkedList.Clear +<copy TJclLinkedList.Clear> +\ \ + +@@TJclDoubleLinkedList.CollectionEquals@IJclDoubleCollection +<copy TJclLinkedList.CollectionEquals@IJclCollection> +\ \ + +@@TJclDoubleLinkedList.Contains@Double +<copy TJclLinkedList.Contains@TObject> +\ \ + +@@TJclDoubleLinkedList.ContainsAll@IJclDoubleCollection +<copy TJclLinkedList.ContainsAll@IJclCollection> +\ \ + +@@TJclDoubleLinkedList.Create@IJclDoubleCollection +<copy TJclLinkedList.Create@IJclCollection@Boolean> +\ \ + +@@TJclDoubleLinkedList.CreateEmptyContainer +<copy TJclLinkedList.CreateEmptyContainer> +\ \ + +@@TJclDoubleLinkedList.Delete@Integer +<copy TJclLinkedList.Delete@Integer> +\ \ + +@@TJclDoubleLinkedList.Destroy +<copy TJclLinkedList.Destroy> +\ \ + +@@TJclDoubleLinkedList.Extract@Double +<copy TJclLinkedList.Extract@TObject> +\ \ + +@@TJclDoubleLinkedList.ExtractAll@IJclDoubleCollection +<copy TJclLinkedList.ExtractAll@IJclCollection> +\ \ + +@@TJclDoubleLinkedList.ExtractIndex@Integer +<copy TJclLinkedList.ExtractIndex@Integer> +\ \ + +@@TJclDoubleLinkedList.First +<copy TJclLinkedList.First> +\ \ + +@@TJclDoubleLinkedList.GetEnumerator +<copy TJclLinkedList.GetEnumerator> +\ \ + +@@TJclDoubleLinkedList.GetValue@Integer +<copy TJclLinkedList.GetObject@Integer> +\ \ + +@@TJclDoubleLinkedList.IndexOf@Double +<copy TJclLinkedList.IndexOf@TObject> +\ \ + +@@TJclDoubleLinkedList.Insert@Integer@Double +<copy TJclLinkedList.Insert@Integer@TObject> +\ \ + +@@TJclDoubleLinkedList.InsertAll@Integer@IJclDoubleCollection +<copy TJclLinkedList.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclDoubleLinkedList.IsEmpty +<copy TJclLinkedList.IsEmpty> +\ \ + +@@TJclDoubleLinkedList.Last +<copy TJclLinkedList.Last> +\ \ + +@@TJclDoubleLinkedList.LastIndexOf@Double +<copy TJclLinkedList.LastIndexOf@TObject> +\ \ + +@@TJclDoubleLinkedList.Remove@Double +<copy TJclLinkedList.Remove@TObject> +\ \ + +@@TJclDoubleLinkedList.RemoveAll@IJclDoubleCollection +<copy TJclLinkedList.RemoveAll@IJclCollection> +\ \ + +@@TJclDoubleLinkedList.RetainAll@IJclDoubleCollection +<copy TJclLinkedList.RetainAll@IJclCollection> +\ \ + +@@TJclDoubleLinkedList.SetValue@Integer@Double +<copy TJclLinkedList.SetObject@Integer@TObject> +\ \ + +@@TJclDoubleLinkedList.Size +<copy TJclLinkedList.Size> +\ \ + +@@TJclDoubleLinkedList.SubList@Integer@Integer +<copy TJclLinkedList.SubList@Integer@Integer> +\ \ +@@TJclExtendedLinkedList +<copy TJclLinkedList> +\ \ + +@@!!MEMBEROVERVIEW_TJclExtendedLinkedList +<copy !!MEMBEROVERVIEW_TJclLinkedList> +\ \ + +@@TJclExtendedLinkedList.Add@Extended +<copy TJclLinkedList.Add@TObject> +\ \ + +@@TJclExtendedLinkedList.AddAll@IJclExtendedCollection +<copy TJclLinkedList.AddAll@IJclCollection> +\ \ + +@@TJclExtendedLinkedList.AssignDataTo@TJclAbstractContainerBase +<copy TJclLinkedList.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclExtendedLinkedList.Clear +<copy TJclLinkedList.Clear> +\ \ + +@@TJclExtendedLinkedList.CollectionEquals@IJclExtendedCollection +<copy TJclLinkedList.CollectionEquals@IJclCollection> +\ \ + +@@TJclExtendedLinkedList.Contains@Extended +<copy TJclLinkedList.Contains@TObject> +\ \ + +@@TJclExtendedLinkedList.ContainsAll@IJclExtendedCollection +<copy TJclLinkedList.ContainsAll@IJclCollection> +\ \ + +@@TJclExtendedLinkedList.Create@IJclExtendedCollection +<copy TJclLinkedList.Create@IJclCollection@Boolean> +\ \ + +@@TJclExtendedLinkedList.CreateEmptyContainer +<copy TJclLinkedList.CreateEmptyContainer> +\ \ + +@@TJclExtendedLinkedList.Delete@Integer +<copy TJclLinkedList.Delete@Integer> +\ \ + +@@TJclExtendedLinkedList.Destroy +<copy TJclLinkedList.Destroy> +\ \ + +@@TJclExtendedLinkedList.Extract@Extended +<copy TJclLinkedList.Extract@TObject> +\ \ + +@@TJclExtendedLinkedList.ExtractAll@IJclExtendedCollection +<copy TJclLinkedList.ExtractAll@IJclCollection> +\ \ + +@@TJclExtendedLinkedList.ExtractIndex@Integer +<copy TJclLinkedList.ExtractIndex@Integer> +\ \ + +@@TJclExtendedLinkedList.First +<copy TJclLinkedList.First> +\ \ + +@@TJclExtendedLinkedList.GetEnumerator +<copy TJclLinkedList.GetEnumerator> +\ \ + +@@TJclExtendedLinkedList.GetValue@Integer +<copy TJclLinkedList.GetObject@Integer> +\ \ + +@@TJclExtendedLinkedList.IndexOf@Extended +<copy TJclLinkedList.IndexOf@TObject> +\ \ + +@@TJclExtendedLinkedList.Insert@Integer@Extended +<copy TJclLinkedList.Insert@Integer@TObject> +\ \ + +@@TJclExtendedLinkedList.InsertAll@Integer@IJclExtendedCollection +<copy TJclLinkedList.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclExtendedLinkedList.IsEmpty +<copy TJclLinkedList.IsEmpty> +\ \ + +@@TJclExtendedLinkedList.Last +<copy TJclLinkedList.Last> +\ \ + +@@TJclExtendedLinkedList.LastIndexOf@Extended +<copy TJclLinkedList.LastIndexOf@TObject> +\ \ + +@@TJclExtendedLinkedList.Remove@Extended +<copy TJclLinkedList.Remove@TObject> +\ \ + +@@TJclExtendedLinkedList.RemoveAll@IJclExtendedCollection +<copy TJclLinkedList.RemoveAll@IJclCollection> +\ \ + +@@TJclExtendedLinkedList.RetainAll@IJclExtendedCollection +<copy TJclLinkedList.RetainAll@IJclCollection> +\ \ + +@@TJclExtendedLinkedList.SetValue@Integer@Extended +<copy TJclLinkedList.SetObject@Integer@TObject> +\ \ + +@@TJclExtendedLinkedList.Size +<copy TJclLinkedList.Size> +\ \ + +@@TJclExtendedLinkedList.SubList@Integer@Integer +<copy TJclLinkedList.SubList@Integer@Integer> +\ \ +@@TJclIntegerLinkedList +<copy TJclLinkedList> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntegerLinkedList +<copy !!MEMBEROVERVIEW_TJclLinkedList> +\ \ + +@@TJclIntegerLinkedList.Add@Integer +<copy TJclLinkedList.Add@TObject> +\ \ + +@@TJclIntegerLinkedList.AddAll@IJclIntegerCollection +<copy TJclLinkedList.AddAll@IJclCollection> +\ \ + +@@TJclIntegerLinkedList.AssignDataTo@TJclAbstractContainerBase +<copy TJclLinkedList.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntegerLinkedList.Clear +<copy TJclLinkedList.Clear> +\ \ + +@@TJclIntegerLinkedList.CollectionEquals@IJclIntegerCollection +<copy TJclLinkedList.CollectionEquals@IJclCollection> +\ \ + +@@TJclIntegerLinkedList.Contains@Integer +<copy TJclLinkedList.Contains@TObject> +\ \ + +@@TJclIntegerLinkedList.ContainsAll@IJclIntegerCollection +<copy TJclLinkedList.ContainsAll@IJclCollection> +\ \ + +@@TJclIntegerLinkedList.Create@IJclIntegerCollection +<copy TJclLinkedList.Create@IJclCollection@Boolean> +\ \ + +@@TJclIntegerLinkedList.CreateEmptyContainer +<copy TJclLinkedList.CreateEmptyContainer> +\ \ + +@@TJclIntegerLinkedList.Delete@Integer +<copy TJclLinkedList.Delete@Integer> +\ \ + +@@TJclIntegerLinkedList.Destroy +<copy TJclLinkedList.Destroy> +\ \ + +@@TJclIntegerLinkedList.Extract@Integer +<copy TJclLinkedList.Extract@TObject> +\ \ + +@@TJclIntegerLinkedList.ExtractAll@IJclIntegerCollection +<copy TJclLinkedList.ExtractAll@IJclCollection> +\ \ + +@@TJclIntegerLinkedList.ExtractIndex@Integer +<copy TJclLinkedList.ExtractIndex@Integer> +\ \ + +@@TJclIntegerLinkedList.First +<copy TJclLinkedList.First> +\ \ + +@@TJclIntegerLinkedList.GetEnumerator +<copy TJclLinkedList.GetEnumerator> +\ \ + +@@TJclIntegerLinkedList.GetValue@Integer +<copy TJclLinkedList.GetObject@Integer> +\ \ + +@@TJclIntegerLinkedList.IndexOf@Integer +<copy TJclLinkedList.IndexOf@TObject> +\ \ + +@@TJclIntegerLinkedList.Insert@Integer@Integer +<copy TJclLinkedList.Insert@Integer@TObject> +\ \ + +@@TJclIntegerLinkedList.InsertAll@Integer@IJclIntegerCollection +<copy TJclLinkedList.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclIntegerLinkedList.IsEmpty +<copy TJclLinkedList.IsEmpty> +\ \ + +@@TJclIntegerLinkedList.Last +<copy TJclLinkedList.Last> +\ \ + +@@TJclIntegerLinkedList.LastIndexOf@Integer +<copy TJclLinkedList.LastIndexOf@TObject> +\ \ + +@@TJclIntegerLinkedList.Remove@Integer +<copy TJclLinkedList.Remove@TObject> +\ \ + +@@TJclIntegerLinkedList.RemoveAll@IJclIntegerCollection +<copy TJclLinkedList.RemoveAll@IJclCollection> +\ \ + +@@TJclIntegerLinkedList.RetainAll@IJclIntegerCollection +<copy TJclLinkedList.RetainAll@IJclCollection> +\ \ + +@@TJclIntegerLinkedList.SetValue@Integer@Integer +<copy TJclLinkedList.SetObject@Integer@TObject> +\ \ + +@@TJclIntegerLinkedList.Size +<copy TJclLinkedList.Size> +\ \ + +@@TJclIntegerLinkedList.SubList@Integer@Integer +<copy TJclLinkedList.SubList@Integer@Integer> +\ \ +@@TJclCardinalLinkedList +<copy TJclLinkedList> +\ \ + +@@!!MEMBEROVERVIEW_TJclCardinalLinkedList +<copy !!MEMBEROVERVIEW_TJclLinkedList> +\ \ + +@@TJclCardinalLinkedList.Add@Cardinal +<copy TJclLinkedList.Add@TObject> +\ \ + +@@TJclCardinalLinkedList.AddAll@IJclCardinalCollection +<copy TJclLinkedList.AddAll@IJclCollection> +\ \ + +@@TJclCardinalLinkedList.AssignDataTo@TJclAbstractContainerBase +<copy TJclLinkedList.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclCardinalLinkedList.Clear +<copy TJclLinkedList.Clear> +\ \ + +@@TJclCardinalLinkedList.CollectionEquals@IJclCardinalCollection +<copy TJclLinkedList.CollectionEquals@IJclCollection> +\ \ + +@@TJclCardinalLinkedList.Contains@Cardinal +<copy TJclLinkedList.Contains@TObject> +\ \ + +@@TJclCardinalLinkedList.ContainsAll@IJclCardinalCollection +<copy TJclLinkedList.ContainsAll@IJclCollection> +\ \ + +@@TJclCardinalLinkedList.Create@IJclCardinalCollection +<copy TJclLinkedList.Create@IJclCollection@Boolean> +\ \ + +@@TJclCardinalLinkedList.CreateEmptyContainer +<copy TJclLinkedList.CreateEmptyContainer> +\ \ + +@@TJclCardinalLinkedList.Delete@Integer +<copy TJclLinkedList.Delete@Integer> +\ \ + +@@TJclCardinalLinkedList.Destroy +<copy TJclLinkedList.Destroy> +\ \ + +@@TJclCardinalLinkedList.Extract@Cardinal +<copy TJclLinkedList.Extract@TObject> +\ \ + +@@TJclCardinalLinkedList.ExtractAll@IJclCardinalCollection +<copy TJclLinkedList.ExtractAll@IJclCollection> +\ \ + +@@TJclCardinalLinkedList.ExtractIndex@Integer +<copy TJclLinkedList.ExtractIndex@Integer> +\ \ + +@@TJclCardinalLinkedList.First +<copy TJclLinkedList.First> +\ \ + +@@TJclCardinalLinkedList.GetEnumerator +<copy TJclLinkedList.GetEnumerator> +\ \ + +@@TJclCardinalLinkedList.GetValue@Integer +<copy TJclLinkedList.GetObject@Integer> +\ \ + +@@TJclCardinalLinkedList.IndexOf@Cardinal +<copy TJclLinkedList.IndexOf@TObject> +\ \ + +@@TJclCardinalLinkedList.Insert@Integer@Cardinal +<copy TJclLinkedList.Insert@Integer@TObject> +\ \ + +@@TJclCardinalLinkedList.InsertAll@Integer@IJclCardinalCollection +<copy TJclLinkedList.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclCardinalLinkedList.IsEmpty +<copy TJclLinkedList.IsEmpty> +\ \ + +@@TJclCardinalLinkedList.Last +<copy TJclLinkedList.Last> +\ \ + +@@TJclCardinalLinkedList.LastIndexOf@Cardinal +<copy TJclLinkedList.LastIndexOf@TObject> +\ \ + +@@TJclCardinalLinkedList.Remove@Cardinal +<copy TJclLinkedList.Remove@TObject> +\ \ + +@@TJclCardinalLinkedList.RemoveAll@IJclCardinalCollection +<copy TJclLinkedList.RemoveAll@IJclCollection> +\ \ + +@@TJclCardinalLinkedList.RetainAll@IJclCardinalCollection +<copy TJclLinkedList.RetainAll@IJclCollection> +\ \ + +@@TJclCardinalLinkedList.SetValue@Integer@Cardinal +<copy TJclLinkedList.SetObject@Integer@TObject> +\ \ + +@@TJclCardinalLinkedList.Size +<copy TJclLinkedList.Size> +\ \ + +@@TJclCardinalLinkedList.SubList@Integer@Integer +<copy TJclLinkedList.SubList@Integer@Integer> +\ \ +@@TJclInt64LinkedList +<copy TJclLinkedList> +\ \ + +@@!!MEMBEROVERVIEW_TJclInt64LinkedList +<copy !!MEMBEROVERVIEW_TJclLinkedList> +\ \ + +@@TJclInt64LinkedList.Add@Int64 +<copy TJclLinkedList.Add@TObject> +\ \ + +@@TJclInt64LinkedList.AddAll@IJclInt64Collection +<copy TJclLinkedList.AddAll@IJclCollection> +\ \ + +@@TJclInt64LinkedList.AssignDataTo@TJclAbstractContainerBase +<copy TJclLinkedList.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclInt64LinkedList.Clear +<copy TJclLinkedList.Clear> +\ \ + +@@TJclInt64LinkedList.CollectionEquals@IJclInt64Collection +<copy TJclLinkedList.CollectionEquals@IJclCollection> +\ \ + +@@TJclInt64LinkedList.Contains@Int64 +<copy TJclLinkedList.Contains@TObject> +\ \ + +@@TJclInt64LinkedList.ContainsAll@IJclInt64Collection +<copy TJclLinkedList.ContainsAll@IJclCollection> +\ \ + +@@TJclInt64LinkedList.Create@IJclInt64Collection +<copy TJclLinkedList.Create@IJclCollection@Boolean> +\ \ + +@@TJclInt64LinkedList.CreateEmptyContainer +<copy TJclLinkedList.CreateEmptyContainer> +\ \ + +@@TJclInt64LinkedList.Delete@Integer +<copy TJclLinkedList.Delete@Integer> +\ \ + +@@TJclInt64LinkedList.Destroy +<copy TJclLinkedList.Destroy> +\ \ + +@@TJclInt64LinkedList.Extract@Int64 +<copy TJclLinkedList.Extract@TObject> +\ \ + +@@TJclInt64LinkedList.ExtractAll@IJclInt64Collection +<copy TJclLinkedList.ExtractAll@IJclCollection> +\ \ + +@@TJclInt64LinkedList.ExtractIndex@Integer +<copy TJclLinkedList.ExtractIndex@Integer> +\ \ + +@@TJclInt64LinkedList.First +<copy TJclLinkedList.First> +\ \ + +@@TJclInt64LinkedList.GetEnumerator +<copy TJclLinkedList.GetEnumerator> +\ \ + +@@TJclInt64LinkedList.GetValue@Integer +<copy TJclLinkedList.GetObject@Integer> +\ \ + +@@TJclInt64LinkedList.IndexOf@Int64 +<copy TJclLinkedList.IndexOf@TObject> +\ \ + +@@TJclInt64LinkedList.Insert@Integer@Int64 +<copy TJclLinkedList.Insert@Integer@TObject> +\ \ + +@@TJclInt64LinkedList.InsertAll@Integer@IJclInt64Collection +<copy TJclLinkedList.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclInt64LinkedList.IsEmpty +<copy TJclLinkedList.IsEmpty> +\ \ + +@@TJclInt64LinkedList.Last +<copy TJclLinkedList.Last> +\ \ + +@@TJclInt64LinkedList.LastIndexOf@Int64 +<copy TJclLinkedList.LastIndexOf@TObject> +\ \ + +@@TJclInt64LinkedList.Remove@Int64 +<copy TJclLinkedList.Remove@TObject> +\ \ + +@@TJclInt64LinkedList.RemoveAll@IJclInt64Collection +<copy TJclLinkedList.RemoveAll@IJclCollection> +\ \ + +@@TJclInt64LinkedList.RetainAll@IJclInt64Collection +<copy TJclLinkedList.RetainAll@IJclCollection> +\ \ + +@@TJclInt64LinkedList.SetValue@Integer@Int64 +<copy TJclLinkedList.SetObject@Integer@TObject> +\ \ + +@@TJclInt64LinkedList.Size +<copy TJclLinkedList.Size> +\ \ + +@@TJclInt64LinkedList.SubList@Integer@Integer +<copy TJclLinkedList.SubList@Integer@Integer> +\ \ +@@TJclPtrLinkedList +<copy TJclLinkedList> +\ \ + +@@!!MEMBEROVERVIEW_TJclPtrLinkedList +<copy !!MEMBEROVERVIEW_TJclLinkedList> +\ \ + +@@TJclPtrLinkedList.Add@Pointer +<copy TJclLinkedList.Add@TObject> +\ \ + +@@TJclPtrLinkedList.AddAll@IJclPtrCollection +<copy TJclLinkedList.AddAll@IJclCollection> +\ \ + +@@TJclPtrLinkedList.AssignDataTo@TJclAbstractContainerBase +<copy TJclLinkedList.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclPtrLinkedList.Clear +<copy TJclLinkedList.Clear> +\ \ + +@@TJclPtrLinkedList.CollectionEquals@IJclPtrCollection +<copy TJclLinkedList.CollectionEquals@IJclCollection> +\ \ + +@@TJclPtrLinkedList.Contains@Pointer +<copy TJclLinkedList.Contains@TObject> +\ \ + +@@TJclPtrLinkedList.ContainsAll@IJclPtrCollection +<copy TJclLinkedList.ContainsAll@IJclCollection> +\ \ + +@@TJclPtrLinkedList.Create@IJclPtrCollection +<copy TJclLinkedList.Create@IJclCollection@Boolean> +\ \ + +@@TJclPtrLinkedList.CreateEmptyContainer +<copy TJclLinkedList.CreateEmptyContainer> +\ \ + +@@TJclPtrLinkedList.Delete@Integer +<copy TJclLinkedList.Delete@Integer> +\ \ + +@@TJclPtrLinkedList.Destroy +<copy TJclLinkedList.Destroy> +\ \ + +@@TJclPtrLinkedList.Extract@Pointer +<copy TJclLinkedList.Extract@TObject> +\ \ + +@@TJclPtrLinkedList.ExtractAll@IJclPtrCollection +<copy TJclLinkedList.ExtractAll@IJclCollection> +\ \ + +@@TJclPtrLinkedList.ExtractIndex@Integer +<copy TJclLinkedList.ExtractIndex@Integer> +\ \ + +@@TJclPtrLinkedList.First +<copy TJclLinkedList.First> +\ \ + +@@TJclPtrLinkedList.GetEnumerator +<copy TJclLinkedList.GetEnumerator> +\ \ + +@@TJclPtrLinkedList.GetPointer@Integer +<copy TJclLinkedList.GetObject@Integer> +\ \ + +@@TJclPtrLinkedList.IndexOf@Pointer +<copy TJclLinkedList.IndexOf@TObject> +\ \ + +@@TJclPtrLinkedList.Insert@Integer@Pointer +<copy TJclLinkedList.Insert@Integer@TObject> +\ \ + +@@TJclPtrLinkedList.InsertAll@Integer@IJclPtrCollection +<copy TJclLinkedList.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclPtrLinkedList.IsEmpty +<copy TJclLinkedList.IsEmpty> +\ \ + +@@TJclPtrLinkedList.Last +<copy TJclLinkedList.Last> +\ \ + +@@TJclPtrLinkedList.LastIndexOf@Pointer +<copy TJclLinkedList.LastIndexOf@TObject> +\ \ + +@@TJclPtrLinkedList.Remove@Pointer +<copy TJclLinkedList.Remove@TObject> +\ \ + +@@TJclPtrLinkedList.RemoveAll@IJclPtrCollection +<copy TJclLinkedList.RemoveAll@IJclCollection> +\ \ + +@@TJclPtrLinkedList.RetainAll@IJclPtrCollection +<copy TJclLinkedList.RetainAll@IJclCollection> +\ \ + +@@TJclPtrLinkedList.SetPointer@Integer@Pointer +<copy TJclLinkedList.SetObject@Integer@TObject> +\ \ + +@@TJclPtrLinkedList.Size +<copy TJclLinkedList.Size> +\ \ + +@@TJclPtrLinkedList.SubList@Integer@Integer +<copy TJclLinkedList.SubList@Integer@Integer> +\ \ + + +@@TJclIntfLinkedListIterator +<copy TJclLinkedListIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfLinkedListIterator +<copy !!MEMBEROVERVIEW_TJclLinkedListIterator> +\ \ + +@@TJclIntfLinkedListIterator.Current +<copy TJclLinkedListIterator.Current> +\ \ + +@@TJclIntfLinkedListIterator.Add@IInterface +<copy TJclLinkedListIterator.Add@TObject> +\ \ + +@@TJclIntfLinkedListIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclLinkedListIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclIntfLinkedListIterator.Create@IJclIntfList@TJclIntfLinkedListItem@Boolean@TItrStart +<copy TJclLinkedListIterator.Create@IJclList@TJclLinkedListItem@Boolean@TItrStart> +\ \ + +@@TJclIntfLinkedListIterator.CreateEmptyIterator +<copy TJclLinkedListIterator.CreateEmptyIterator> +\ \ + +@@TJclIntfLinkedListIterator.Extract +<copy TJclLinkedListIterator.Extract> +\ \ + +@@TJclIntfLinkedListIterator.GetObject +<copy TJclLinkedListIterator.GetObject> +\ \ + +@@TJclIntfLinkedListIterator.HasNext +<copy TJclLinkedListIterator.HasNext> +\ \ + +@@TJclIntfLinkedListIterator.HasPrevious +<copy TJclLinkedListIterator.HasPrevious> +\ \ + +@@TJclIntfLinkedListIterator.Insert@IInterface +<copy TJclLinkedListIterator.Insert@TObject> +\ \ + +@@TJclIntfLinkedListIterator.IteratorEquals@IJclIntfIterator +<copy TJclLinkedListIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclIntfLinkedListIterator.MoveNext +<copy TJclLinkedListIterator.MoveNext> +\ \ + +@@TJclIntfLinkedListIterator.Next +<copy TJclLinkedListIterator.Next> +\ \ + +@@TJclIntfLinkedListIterator.NextIndex +<copy TJclLinkedListIterator.NextIndex> +\ \ + +@@TJclIntfLinkedListIterator.Previous +<copy TJclLinkedListIterator.Previous> +\ \ + +@@TJclIntfLinkedListIterator.PreviousIndex +<copy TJclLinkedListIterator.PreviousIndex> +\ \ + +@@TJclIntfLinkedListIterator.Remove +<copy TJclLinkedListIterator.Remove> +\ \ + +@@TJclIntfLinkedListIterator.Reset +<copy TJclLinkedListIterator.Reset> +\ \ + +@@TJclIntfLinkedListIterator.SetObject@IInterface +<copy TJclLinkedListIterator.SetObject@TObject> +\ \ +@@TJclAnsiStrLinkedListIterator +<copy TJclLinkedListIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclAnsiStrLinkedListIterator +<copy !!MEMBEROVERVIEW_TJclLinkedListIterator> +\ \ + +@@TJclAnsiStrLinkedListIterator.Current +<copy TJclLinkedListIterator.Current> +\ \ + +@@TJclAnsiStrLinkedListIterator.Add@AnsiString +<copy TJclLinkedListIterator.Add@TObject> +\ \ + +@@TJclAnsiStrLinkedListIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclLinkedListIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclAnsiStrLinkedListIterator.Create@IJclAnsiStrList@TJclAnsiStrLinkedListItem@Boolean@TItrStart +<copy TJclLinkedListIterator.Create@IJclList@TJclLinkedListItem@Boolean@TItrStart> +\ \ + +@@TJclAnsiStrLinkedListIterator.CreateEmptyIterator +<copy TJclLinkedListIterator.CreateEmptyIterator> +\ \ + +@@TJclAnsiStrLinkedListIterator.Extract +<copy TJclLinkedListIterator.Extract> +\ \ + +@@TJclAnsiStrLinkedListIterator.GetString +<copy TJclLinkedListIterator.GetObject> +\ \ + +@@TJclAnsiStrLinkedListIterator.HasNext +<copy TJclLinkedListIterator.HasNext> +\ \ + +@@TJclAnsiStrLinkedListIterator.HasPrevious +<copy TJclLinkedListIterator.HasPrevious> +\ \ + +@@TJclAnsiStrLinkedListIterator.Insert@AnsiString +<copy TJclLinkedListIterator.Insert@TObject> +\ \ + +@@TJclAnsiStrLinkedListIterator.IteratorEquals@IJclAnsiStrIterator +<copy TJclLinkedListIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclAnsiStrLinkedListIterator.MoveNext +<copy TJclLinkedListIterator.MoveNext> +\ \ + +@@TJclAnsiStrLinkedListIterator.Next +<copy TJclLinkedListIterator.Next> +\ \ + +@@TJclAnsiStrLinkedListIterator.NextIndex +<copy TJclLinkedListIterator.NextIndex> +\ \ + +@@TJclAnsiStrLinkedListIterator.Previous +<copy TJclLinkedListIterator.Previous> +\ \ + +@@TJclAnsiStrLinkedListIterator.PreviousIndex +<copy TJclLinkedListIterator.PreviousIndex> +\ \ + +@@TJclAnsiStrLinkedListIterator.Remove +<copy TJclLinkedListIterator.Remove> +\ \ + +@@TJclAnsiStrLinkedListIterator.Reset +<copy TJclLinkedListIterator.Reset> +\ \ + +@@TJclAnsiStrLinkedListIterator.SetString@AnsiString +<copy TJclLinkedListIterator.SetObject@TObject> +\ \ +@@TJclWideStrLinkedListIterator +<copy TJclLinkedListIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclWideStrLinkedListIterator +<copy !!MEMBEROVERVIEW_TJclLinkedListIterator> +\ \ + +@@TJclWideStrLinkedListIterator.Current +<copy TJclLinkedListIterator.Current> +\ \ + +@@TJclWideStrLinkedListIterator.Add@WideString +<copy TJclLinkedListIterator.Add@TObject> +\ \ + +@@TJclWideStrLinkedListIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclLinkedListIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclWideStrLinkedListIterator.Create@IJclWideStrList@TJclWideStrLinkedListItem@Boolean@TItrStart +<copy TJclLinkedListIterator.Create@IJclList@TJclLinkedListItem@Boolean@TItrStart> +\ \ + +@@TJclWideStrLinkedListIterator.CreateEmptyIterator +<copy TJclLinkedListIterator.CreateEmptyIterator> +\ \ + +@@TJclWideStrLinkedListIterator.Extract +<copy TJclLinkedListIterator.Extract> +\ \ + +@@TJclWideStrLinkedListIterator.GetString +<copy TJclLinkedListIterator.GetObject> +\ \ + +@@TJclWideStrLinkedListIterator.HasNext +<copy TJclLinkedListIterator.HasNext> +\ \ + +@@TJclWideStrLinkedListIterator.HasPrevious +<copy TJclLinkedListIterator.HasPrevious> +\ \ + +@@TJclWideStrLinkedListIterator.Insert@WideString +<copy TJclLinkedListIterator.Insert@TObject> +\ \ + +@@TJclWideStrLinkedListIterator.IteratorEquals@IJclWideStrIterator +<copy TJclLinkedListIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclWideStrLinkedListIterator.MoveNext +<copy TJclLinkedListIterator.MoveNext> +\ \ + +@@TJclWideStrLinkedListIterator.Next +<copy TJclLinkedListIterator.Next> +\ \ + +@@TJclWideStrLinkedListIterator.NextIndex +<copy TJclLinkedListIterator.NextIndex> +\ \ + +@@TJclWideStrLinkedListIterator.Previous +<copy TJclLinkedListIterator.Previous> +\ \ + +@@TJclWideStrLinkedListIterator.PreviousIndex +<copy TJclLinkedListIterator.PreviousIndex> +\ \ + +@@TJclWideStrLinkedListIterator.Remove +<copy TJclLinkedListIterator.Remove> +\ \ + +@@TJclWideStrLinkedListIterator.Reset +<copy TJclLinkedListIterator.Reset> +\ \ + +@@TJclWideStrLinkedListIterator.SetString@WideString +<copy TJclLinkedListIterator.SetObject@TObject> +\ \ +@@TJclUnicodeStrLinkedListIterator +<copy TJclLinkedListIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclUnicodeStrLinkedListIterator +<copy !!MEMBEROVERVIEW_TJclLinkedListIterator> +\ \ + +@@TJclUnicodeStrLinkedListIterator.Current +<copy TJclLinkedListIterator.Current> +\ \ + +@@TJclUnicodeStrLinkedListIterator.Add@UnicodeString +<copy TJclLinkedListIterator.Add@TObject> +\ \ + +@@TJclUnicodeStrLinkedListIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclLinkedListIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclUnicodeStrLinkedListIterator.Create@IJclUnicodeStrList@TJclUnicodeStrLinkedListItem@Boolean@TItrStart +<copy TJclLinkedListIterator.Create@IJclList@TJclLinkedListItem@Boolean@TItrStart> +\ \ + +@@TJclUnicodeStrLinkedListIterator.CreateEmptyIterator +<copy TJclLinkedListIterator.CreateEmptyIterator> +\ \ + +@@TJclUnicodeStrLinkedListIterator.Extract +<copy TJclLinkedListIterator.Extract> +\ \ + +@@TJclUnicodeStrLinkedListIterator.GetString +<copy TJclLinkedListIterator.GetObject> +\ \ + +@@TJclUnicodeStrLinkedListIterator.HasNext +<copy TJclLinkedListIterator.HasNext> +\ \ + +@@TJclUnicodeStrLinkedListIterator.HasPrevious +<copy TJclLinkedListIterator.HasPrevious> +\ \ + +@@TJclUnicodeStrLinkedListIterator.Insert@UnicodeString +<copy TJclLinkedListIterator.Insert@TObject> +\ \ + +@@TJclUnicodeStrLinkedListIterator.IteratorEquals@IJclUnicodeStrIterator +<copy TJclLinkedListIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclUnicodeStrLinkedListIterator.MoveNext +<copy TJclLinkedListIterator.MoveNext> +\ \ + +@@TJclUnicodeStrLinkedListIterator.Next +<copy TJclLinkedListIterator.Next> +\ \ + +@@TJclUnicodeStrLinkedListIterator.NextIndex +<copy TJclLinkedListIterator.NextIndex> +\ \ + +@@TJclUnicodeStrLinkedListIterator.Previous +<copy TJclLinkedListIterator.Previous> +\ \ + +@@TJclUnicodeStrLinkedListIterator.PreviousIndex +<copy TJclLinkedListIterator.PreviousIndex> +\ \ + +@@TJclUnicodeStrLinkedListIterator.Remove +<copy TJclLinkedListIterator.Remove> +\ \ + +@@TJclUnicodeStrLinkedListIterator.Reset +<copy TJclLinkedListIterator.Reset> +\ \ + +@@TJclUnicodeStrLinkedListIterator.SetString@UnicodeString +<copy TJclLinkedListIterator.SetObject@TObject> +\ \ +@@TJclSingleLinkedListIterator +<copy TJclLinkedListIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclSingleLinkedListIterator +<copy !!MEMBEROVERVIEW_TJclLinkedListIterator> +\ \ + +@@TJclSingleLinkedListIterator.Current +<copy TJclLinkedListIterator.Current> +\ \ + +@@TJclSingleLinkedListIterator.Add@Single +<copy TJclLinkedListIterator.Add@TObject> +\ \ + +@@TJclSingleLinkedListIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclLinkedListIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclSingleLinkedListIterator.Create@IJclSingleList@TJclSingleLinkedListItem@Boolean@TItrStart +<copy TJclLinkedListIterator.Create@IJclList@TJclLinkedListItem@Boolean@TItrStart> +\ \ + +@@TJclSingleLinkedListIterator.CreateEmptyIterator +<copy TJclLinkedListIterator.CreateEmptyIterator> +\ \ + +@@TJclSingleLinkedListIterator.Extract +<copy TJclLinkedListIterator.Extract> +\ \ + +@@TJclSingleLinkedListIterator.GetValue +<copy TJclLinkedListIterator.GetObject> +\ \ + +@@TJclSingleLinkedListIterator.HasNext +<copy TJclLinkedListIterator.HasNext> +\ \ + +@@TJclSingleLinkedListIterator.HasPrevious +<copy TJclLinkedListIterator.HasPrevious> +\ \ + +@@TJclSingleLinkedListIterator.Insert@Single +<copy TJclLinkedListIterator.Insert@TObject> +\ \ + +@@TJclSingleLinkedListIterator.IteratorEquals@IJclSingleIterator +<copy TJclLinkedListIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclSingleLinkedListIterator.MoveNext +<copy TJclLinkedListIterator.MoveNext> +\ \ + +@@TJclSingleLinkedListIterator.Next +<copy TJclLinkedListIterator.Next> +\ \ + +@@TJclSingleLinkedListIterator.NextIndex +<copy TJclLinkedListIterator.NextIndex> +\ \ + +@@TJclSingleLinkedListIterator.Previous +<copy TJclLinkedListIterator.Previous> +\ \ + +@@TJclSingleLinkedListIterator.PreviousIndex +<copy TJclLinkedListIterator.PreviousIndex> +\ \ + +@@TJclSingleLinkedListIterator.Remove +<copy TJclLinkedListIterator.Remove> +\ \ + +@@TJclSingleLinkedListIterator.Reset +<copy TJclLinkedListIterator.Reset> +\ \ + +@@TJclSingleLinkedListIterator.SetValue@Single +<copy TJclLinkedListIterator.SetObject@TObject> +\ \ +@@TJclDoubleLinkedListIterator +<copy TJclLinkedListIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclDoubleLinkedListIterator +<copy !!MEMBEROVERVIEW_TJclLinkedListIterator> +\ \ + +@@TJclDoubleLinkedListIterator.Current +<copy TJclLinkedListIterator.Current> +\ \ + +@@TJclDoubleLinkedListIterator.Add@Double +<copy TJclLinkedListIterator.Add@TObject> +\ \ + +@@TJclDoubleLinkedListIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclLinkedListIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclDoubleLinkedListIterator.Create@IJclDoubleList@TJclDoubleLinkedListItem@Boolean@TItrStart +<copy TJclLinkedListIterator.Create@IJclList@TJclLinkedListItem@Boolean@TItrStart> +\ \ + +@@TJclDoubleLinkedListIterator.CreateEmptyIterator +<copy TJclLinkedListIterator.CreateEmptyIterator> +\ \ + +@@TJclDoubleLinkedListIterator.Extract +<copy TJclLinkedListIterator.Extract> +\ \ + +@@TJclDoubleLinkedListIterator.GetValue +<copy TJclLinkedListIterator.GetObject> +\ \ + +@@TJclDoubleLinkedListIterator.HasNext +<copy TJclLinkedListIterator.HasNext> +\ \ + +@@TJclDoubleLinkedListIterator.HasPrevious +<copy TJclLinkedListIterator.HasPrevious> +\ \ + +@@TJclDoubleLinkedListIterator.Insert@Double +<copy TJclLinkedListIterator.Insert@TObject> +\ \ + +@@TJclDoubleLinkedListIterator.IteratorEquals@IJclDoubleIterator +<copy TJclLinkedListIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclDoubleLinkedListIterator.MoveNext +<copy TJclLinkedListIterator.MoveNext> +\ \ + +@@TJclDoubleLinkedListIterator.Next +<copy TJclLinkedListIterator.Next> +\ \ + +@@TJclDoubleLinkedListIterator.NextIndex +<copy TJclLinkedListIterator.NextIndex> +\ \ + +@@TJclDoubleLinkedListIterator.Previous +<copy TJclLinkedListIterator.Previous> +\ \ + +@@TJclDoubleLinkedListIterator.PreviousIndex +<copy TJclLinkedListIterator.PreviousIndex> +\ \ + +@@TJclDoubleLinkedListIterator.Remove +<copy TJclLinkedListIterator.Remove> +\ \ + +@@TJclDoubleLinkedListIterator.Reset +<copy TJclLinkedListIterator.Reset> +\ \ + +@@TJclDoubleLinkedListIterator.SetValue@Double +<copy TJclLinkedListIterator.SetObject@TObject> +\ \ +@@TJclExtendedLinkedListIterator +<copy TJclLinkedListIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclExtendedLinkedListIterator +<copy !!MEMBEROVERVIEW_TJclLinkedListIterator> +\ \ + +@@TJclExtendedLinkedListIterator.Current +<copy TJclLinkedListIterator.Current> +\ \ + +@@TJclExtendedLinkedListIterator.Add@Extended +<copy TJclLinkedListIterator.Add@TObject> +\ \ + +@@TJclExtendedLinkedListIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclLinkedListIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclExtendedLinkedListIterator.Create@IJclExtendedList@TJclExtendedLinkedListItem@Boolean@TItrStart +<copy TJclLinkedListIterator.Create@IJclList@TJclLinkedListItem@Boolean@TItrStart> +\ \ + +@@TJclExtendedLinkedListIterator.CreateEmptyIterator +<copy TJclLinkedListIterator.CreateEmptyIterator> +\ \ + +@@TJclExtendedLinkedListIterator.Extract +<copy TJclLinkedListIterator.Extract> +\ \ + +@@TJclExtendedLinkedListIterator.GetValue +<copy TJclLinkedListIterator.GetObject> +\ \ + +@@TJclExtendedLinkedListIterator.HasNext +<copy TJclLinkedListIterator.HasNext> +\ \ + +@@TJclExtendedLinkedListIterator.HasPrevious +<copy TJclLinkedListIterator.HasPrevious> +\ \ + +@@TJclExtendedLinkedListIterator.Insert@Extended +<copy TJclLinkedListIterator.Insert@TObject> +\ \ + +@@TJclExtendedLinkedListIterator.IteratorEquals@IJclExtendedIterator +<copy TJclLinkedListIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclExtendedLinkedListIterator.MoveNext +<copy TJclLinkedListIterator.MoveNext> +\ \ + +@@TJclExtendedLinkedListIterator.Next +<copy TJclLinkedListIterator.Next> +\ \ + +@@TJclExtendedLinkedListIterator.NextIndex +<copy TJclLinkedListIterator.NextIndex> +\ \ + +@@TJclExtendedLinkedListIterator.Previous +<copy TJclLinkedListIterator.Previous> +\ \ + +@@TJclExtendedLinkedListIterator.PreviousIndex +<copy TJclLinkedListIterator.PreviousIndex> +\ \ + +@@TJclExtendedLinkedListIterator.Remove +<copy TJclLinkedListIterator.Remove> +\ \ + +@@TJclExtendedLinkedListIterator.Reset +<copy TJclLinkedListIterator.Reset> +\ \ + +@@TJclExtendedLinkedListIterator.SetValue@Extended +<copy TJclLinkedListIterator.SetObject@TObject> +\ \ +@@TJclIntegerLinkedListIterator +<copy TJclLinkedListIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntegerLinkedListIterator +<copy !!MEMBEROVERVIEW_TJclLinkedListIterator> +\ \ + +@@TJclIntegerLinkedListIterator.Current +<copy TJclLinkedListIterator.Current> +\ \ + +@@TJclIntegerLinkedListIterator.Add@Integer +<copy TJclLinkedListIterator.Add@TObject> +\ \ + +@@TJclIntegerLinkedListIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclLinkedListIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclIntegerLinkedListIterator.Create@IJclIntegerList@TJclIntegerLinkedListItem@Boolean@TItrStart +<copy TJclLinkedListIterator.Create@IJclList@TJclLinkedListItem@Boolean@TItrStart> +\ \ + +@@TJclIntegerLinkedListIterator.CreateEmptyIterator +<copy TJclLinkedListIterator.CreateEmptyIterator> +\ \ + +@@TJclIntegerLinkedListIterator.Extract +<copy TJclLinkedListIterator.Extract> +\ \ + +@@TJclIntegerLinkedListIterator.GetValue +<copy TJclLinkedListIterator.GetObject> +\ \ + +@@TJclIntegerLinkedListIterator.HasNext +<copy TJclLinkedListIterator.HasNext> +\ \ + +@@TJclIntegerLinkedListIterator.HasPrevious +<copy TJclLinkedListIterator.HasPrevious> +\ \ + +@@TJclIntegerLinkedListIterator.Insert@Integer +<copy TJclLinkedListIterator.Insert@TObject> +\ \ + +@@TJclIntegerLinkedListIterator.IteratorEquals@IJclIntegerIterator +<copy TJclLinkedListIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclIntegerLinkedListIterator.MoveNext +<copy TJclLinkedListIterator.MoveNext> +\ \ + +@@TJclIntegerLinkedListIterator.Next +<copy TJclLinkedListIterator.Next> +\ \ + +@@TJclIntegerLinkedListIterator.NextIndex +<copy TJclLinkedListIterator.NextIndex> +\ \ + +@@TJclIntegerLinkedListIterator.Previous +<copy TJclLinkedListIterator.Previous> +\ \ + +@@TJclIntegerLinkedListIterator.PreviousIndex +<copy TJclLinkedListIterator.PreviousIndex> +\ \ + +@@TJclIntegerLinkedListIterator.Remove +<copy TJclLinkedListIterator.Remove> +\ \ + +@@TJclIntegerLinkedListIterator.Reset +<copy TJclLinkedListIterator.Reset> +\ \ + +@@TJclIntegerLinkedListIterator.SetValue@Integer +<copy TJclLinkedListIterator.SetObject@TObject> +\ \ +@@TJclCardinalLinkedListIterator +<copy TJclLinkedListIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclCardinalLinkedListIterator +<copy !!MEMBEROVERVIEW_TJclLinkedListIterator> +\ \ + +@@TJclCardinalLinkedListIterator.Current +<copy TJclLinkedListIterator.Current> +\ \ + +@@TJclCardinalLinkedListIterator.Add@Cardinal +<copy TJclLinkedListIterator.Add@TObject> +\ \ + +@@TJclCardinalLinkedListIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclLinkedListIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclCardinalLinkedListIterator.Create@IJclCardinalList@TJclCardinalLinkedListItem@Boolean@TItrStart +<copy TJclLinkedListIterator.Create@IJclList@TJclLinkedListItem@Boolean@TItrStart> +\ \ + +@@TJclCardinalLinkedListIterator.CreateEmptyIterator +<copy TJclLinkedListIterator.CreateEmptyIterator> +\ \ + +@@TJclCardinalLinkedListIterator.Extract +<copy TJclLinkedListIterator.Extract> +\ \ + +@@TJclCardinalLinkedListIterator.GetValue +<copy TJclLinkedListIterator.GetObject> +\ \ + +@@TJclCardinalLinkedListIterator.HasNext +<copy TJclLinkedListIterator.HasNext> +\ \ + +@@TJclCardinalLinkedListIterator.HasPrevious +<copy TJclLinkedListIterator.HasPrevious> +\ \ + +@@TJclCardinalLinkedListIterator.Insert@Cardinal +<copy TJclLinkedListIterator.Insert@TObject> +\ \ + +@@TJclCardinalLinkedListIterator.IteratorEquals@IJclCardinalIterator +<copy TJclLinkedListIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclCardinalLinkedListIterator.MoveNext +<copy TJclLinkedListIterator.MoveNext> +\ \ + +@@TJclCardinalLinkedListIterator.Next +<copy TJclLinkedListIterator.Next> +\ \ + +@@TJclCardinalLinkedListIterator.NextIndex +<copy TJclLinkedListIterator.NextIndex> +\ \ + +@@TJclCardinalLinkedListIterator.Previous +<copy TJclLinkedListIterator.Previous> +\ \ + +@@TJclCardinalLinkedListIterator.PreviousIndex +<copy TJclLinkedListIterator.PreviousIndex> +\ \ + +@@TJclCardinalLinkedListIterator.Remove +<copy TJclLinkedListIterator.Remove> +\ \ + +@@TJclCardinalLinkedListIterator.Reset +<copy TJclLinkedListIterator.Reset> +\ \ + +@@TJclCardinalLinkedListIterator.SetValue@Cardinal +<copy TJclLinkedListIterator.SetObject@TObject> +\ \ +@@TJclInt64LinkedListIterator +<copy TJclLinkedListIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclInt64LinkedListIterator +<copy !!MEMBEROVERVIEW_TJclLinkedListIterator> +\ \ + +@@TJclInt64LinkedListIterator.Current +<copy TJclLinkedListIterator.Current> +\ \ + +@@TJclInt64LinkedListIterator.Add@Int64 +<copy TJclLinkedListIterator.Add@TObject> +\ \ + +@@TJclInt64LinkedListIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclLinkedListIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclInt64LinkedListIterator.Create@IJclInt64List@TJclInt64LinkedListItem@Boolean@TItrStart +<copy TJclLinkedListIterator.Create@IJclList@TJclLinkedListItem@Boolean@TItrStart> +\ \ + +@@TJclInt64LinkedListIterator.CreateEmptyIterator +<copy TJclLinkedListIterator.CreateEmptyIterator> +\ \ + +@@TJclInt64LinkedListIterator.Extract +<copy TJclLinkedListIterator.Extract> +\ \ + +@@TJclInt64LinkedListIterator.GetValue +<copy TJclLinkedListIterator.GetObject> +\ \ + +@@TJclInt64LinkedListIterator.HasNext +<copy TJclLinkedListIterator.HasNext> +\ \ + +@@TJclInt64LinkedListIterator.HasPrevious +<copy TJclLinkedListIterator.HasPrevious> +\ \ + +@@TJclInt64LinkedListIterator.Insert@Int64 +<copy TJclLinkedListIterator.Insert@TObject> +\ \ + +@@TJclInt64LinkedListIterator.IteratorEquals@IJclInt64Iterator +<copy TJclLinkedListIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclInt64LinkedListIterator.MoveNext +<copy TJclLinkedListIterator.MoveNext> +\ \ + +@@TJclInt64LinkedListIterator.Next +<copy TJclLinkedListIterator.Next> +\ \ + +@@TJclInt64LinkedListIterator.NextIndex +<copy TJclLinkedListIterator.NextIndex> +\ \ + +@@TJclInt64LinkedListIterator.Previous +<copy TJclLinkedListIterator.Previous> +\ \ + +@@TJclInt64LinkedListIterator.PreviousIndex +<copy TJclLinkedListIterator.PreviousIndex> +\ \ + +@@TJclInt64LinkedListIterator.Remove +<copy TJclLinkedListIterator.Remove> +\ \ + +@@TJclInt64LinkedListIterator.Reset +<copy TJclLinkedListIterator.Reset> +\ \ + +@@TJclInt64LinkedListIterator.SetValue@Int64 +<copy TJclLinkedListIterator.SetObject@TObject> +\ \ +@@TJclPtrLinkedListIterator +<copy TJclLinkedListIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPtrLinkedListIterator +<copy !!MEMBEROVERVIEW_TJclLinkedListIterator> +\ \ + +@@TJclPtrLinkedListIterator.Current +<copy TJclLinkedListIterator.Current> +\ \ + +@@TJclPtrLinkedListIterator.Add@Pointer +<copy TJclLinkedListIterator.Add@TObject> +\ \ + +@@TJclPtrLinkedListIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclLinkedListIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclPtrLinkedListIterator.Create@IJclPtrList@TJclPtrLinkedListItem@Boolean@TItrStart +<copy TJclLinkedListIterator.Create@IJclList@TJclLinkedListItem@Boolean@TItrStart> +\ \ + +@@TJclPtrLinkedListIterator.CreateEmptyIterator +<copy TJclLinkedListIterator.CreateEmptyIterator> +\ \ + +@@TJclPtrLinkedListIterator.Extract +<copy TJclLinkedListIterator.Extract> +\ \ + +@@TJclPtrLinkedListIterator.GetPointer +<copy TJclLinkedListIterator.GetObject> +\ \ + +@@TJclPtrLinkedListIterator.HasNext +<copy TJclLinkedListIterator.HasNext> +\ \ + +@@TJclPtrLinkedListIterator.HasPrevious +<copy TJclLinkedListIterator.HasPrevious> +\ \ + +@@TJclPtrLinkedListIterator.Insert@Pointer +<copy TJclLinkedListIterator.Insert@TObject> +\ \ + +@@TJclPtrLinkedListIterator.IteratorEquals@IJclPtrIterator +<copy TJclLinkedListIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclPtrLinkedListIterator.MoveNext +<copy TJclLinkedListIterator.MoveNext> +\ \ + +@@TJclPtrLinkedListIterator.Next +<copy TJclLinkedListIterator.Next> +\ \ + +@@TJclPtrLinkedListIterator.NextIndex +<copy TJclLinkedListIterator.NextIndex> +\ \ + +@@TJclPtrLinkedListIterator.Previous +<copy TJclLinkedListIterator.Previous> +\ \ + +@@TJclPtrLinkedListIterator.PreviousIndex +<copy TJclLinkedListIterator.PreviousIndex> +\ \ + +@@TJclPtrLinkedListIterator.Remove +<copy TJclLinkedListIterator.Remove> +\ \ + +@@TJclPtrLinkedListIterator.Reset +<copy TJclLinkedListIterator.Reset> +\ \ + +@@TJclPtrLinkedListIterator.SetPointer@Pointer +<copy TJclLinkedListIterator.SetObject@TObject> +\ \ + + +@@TJclIntfQueue +<copy TJclQueue> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfQueue +<copy !!MEMBEROVERVIEW_TJclQueue> +\ \ + +@@TJclIntfQueue.AssignDataTo@TJclAbstractContainerBase +<copy TJclQueue.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfQueue.Clear +<copy TJclQueue.Clear> +\ \ + +@@TJclIntfQueue.Contains@IInterface +<copy TJclQueue.Contains@TObject> +\ \ + +@@TJclIntfQueue.Create@Integer +<copy TJclQueue.Create@Integer@Boolean> +\ \ + +@@TJclIntfQueue.CreateEmptyContainer +<copy TJclQueue.CreateEmptyContainer> +\ \ + +@@TJclIntfQueue.Dequeue +<copy TJclQueue.Dequeue> +\ \ + +@@TJclIntfQueue.Destroy +<copy TJclQueue.Destroy> +\ \ + +@@TJclIntfQueue.Empty +<copy TJclQueue.Empty> +\ \ + +@@TJclIntfQueue.Enqueue@IInterface +<copy TJclQueue.Enqueue@TObject> +\ \ + +@@TJclIntfQueue.Pack +<copy TJclQueue.Pack> +\ \ + +@@TJclIntfQueue.Peek +<copy TJclQueue.Peek> +\ \ + +@@TJclIntfQueue.SetCapacity@Integer +<copy TJclQueue.SetCapacity@Integer> +\ \ + +@@TJclIntfQueue.Size +<copy TJclQueue.Size> +\ \ +@@TJclAnsiStrQueue +<copy TJclQueue> +\ \ + +@@!!MEMBEROVERVIEW_TJclAnsiStrQueue +<copy !!MEMBEROVERVIEW_TJclQueue> +\ \ + +@@TJclAnsiStrQueue.AssignDataTo@TJclAbstractContainerBase +<copy TJclQueue.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclAnsiStrQueue.Clear +<copy TJclQueue.Clear> +\ \ + +@@TJclAnsiStrQueue.Contains@AnsiString +<copy TJclQueue.Contains@TObject> +\ \ + +@@TJclAnsiStrQueue.Create@Integer +<copy TJclQueue.Create@Integer@Boolean> +\ \ + +@@TJclAnsiStrQueue.CreateEmptyContainer +<copy TJclQueue.CreateEmptyContainer> +\ \ + +@@TJclAnsiStrQueue.Dequeue +<copy TJclQueue.Dequeue> +\ \ + +@@TJclAnsiStrQueue.Destroy +<copy TJclQueue.Destroy> +\ \ + +@@TJclAnsiStrQueue.Empty +<copy TJclQueue.Empty> +\ \ + +@@TJclAnsiStrQueue.Enqueue@AnsiString +<copy TJclQueue.Enqueue@TObject> +\ \ + +@@TJclAnsiStrQueue.Pack +<copy TJclQueue.Pack> +\ \ + +@@TJclAnsiStrQueue.Peek +<copy TJclQueue.Peek> +\ \ + +@@TJclAnsiStrQueue.SetCapacity@Integer +<copy TJclQueue.SetCapacity@Integer> +\ \ + +@@TJclAnsiStrQueue.Size +<copy TJclQueue.Size> +\ \ +@@TJclWideStrQueue +<copy TJclQueue> +\ \ + +@@!!MEMBEROVERVIEW_TJclWideStrQueue +<copy !!MEMBEROVERVIEW_TJclQueue> +\ \ + +@@TJclWideStrQueue.AssignDataTo@TJclAbstractContainerBase +<copy TJclQueue.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclWideStrQueue.Clear +<copy TJclQueue.Clear> +\ \ + +@@TJclWideStrQueue.Contains@WideString +<copy TJclQueue.Contains@TObject> +\ \ + +@@TJclWideStrQueue.Create@Integer +<copy TJclQueue.Create@Integer@Boolean> +\ \ + +@@TJclWideStrQueue.CreateEmptyContainer +<copy TJclQueue.CreateEmptyContainer> +\ \ + +@@TJclWideStrQueue.Dequeue +<copy TJclQueue.Dequeue> +\ \ + +@@TJclWideStrQueue.Destroy +<copy TJclQueue.Destroy> +\ \ + +@@TJclWideStrQueue.Empty +<copy TJclQueue.Empty> +\ \ + +@@TJclWideStrQueue.Enqueue@WideString +<copy TJclQueue.Enqueue@TObject> +\ \ + +@@TJclWideStrQueue.Pack +<copy TJclQueue.Pack> +\ \ + +@@TJclWideStrQueue.Peek +<copy TJclQueue.Peek> +\ \ + +@@TJclWideStrQueue.SetCapacity@Integer +<copy TJclQueue.SetCapacity@Integer> +\ \ + +@@TJclWideStrQueue.Size +<copy TJclQueue.Size> +\ \ +@@TJclUnicodeStrQueue +<copy TJclQueue> +\ \ + +@@!!MEMBEROVERVIEW_TJclUnicodeStrQueue +<copy !!MEMBEROVERVIEW_TJclQueue> +\ \ + +@@TJclUnicodeStrQueue.AssignDataTo@TJclAbstractContainerBase +<copy TJclQueue.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclUnicodeStrQueue.Clear +<copy TJclQueue.Clear> +\ \ + +@@TJclUnicodeStrQueue.Contains@UnicodeString +<copy TJclQueue.Contains@TObject> +\ \ + +@@TJclUnicodeStrQueue.Create@Integer +<copy TJclQueue.Create@Integer@Boolean> +\ \ + +@@TJclUnicodeStrQueue.CreateEmptyContainer +<copy TJclQueue.CreateEmptyContainer> +\ \ + +@@TJclUnicodeStrQueue.Dequeue +<copy TJclQueue.Dequeue> +\ \ + +@@TJclUnicodeStrQueue.Destroy +<copy TJclQueue.Destroy> +\ \ + +@@TJclUnicodeStrQueue.Empty +<copy TJclQueue.Empty> +\ \ + +@@TJclUnicodeStrQueue.Enqueue@UnicodeString +<copy TJclQueue.Enqueue@TObject> +\ \ + +@@TJclUnicodeStrQueue.Pack +<copy TJclQueue.Pack> +\ \ + +@@TJclUnicodeStrQueue.Peek +<copy TJclQueue.Peek> +\ \ + +@@TJclUnicodeStrQueue.SetCapacity@Integer +<copy TJclQueue.SetCapacity@Integer> +\ \ + +@@TJclUnicodeStrQueue.Size +<copy TJclQueue.Size> +\ \ +@@TJclSingleQueue +<copy TJclQueue> +\ \ + +@@!!MEMBEROVERVIEW_TJclSingleQueue +<copy !!MEMBEROVERVIEW_TJclQueue> +\ \ + +@@TJclSingleQueue.AssignDataTo@TJclAbstractContainerBase +<copy TJclQueue.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclSingleQueue.Clear +<copy TJclQueue.Clear> +\ \ + +@@TJclSingleQueue.Contains@Single +<copy TJclQueue.Contains@TObject> +\ \ + +@@TJclSingleQueue.Create@Integer +<copy TJclQueue.Create@Integer@Boolean> +\ \ + +@@TJclSingleQueue.CreateEmptyContainer +<copy TJclQueue.CreateEmptyContainer> +\ \ + +@@TJclSingleQueue.Dequeue +<copy TJclQueue.Dequeue> +\ \ + +@@TJclSingleQueue.Destroy +<copy TJclQueue.Destroy> +\ \ + +@@TJclSingleQueue.Empty +<copy TJclQueue.Empty> +\ \ + +@@TJclSingleQueue.Enqueue@Single +<copy TJclQueue.Enqueue@TObject> +\ \ + +@@TJclSingleQueue.Pack +<copy TJclQueue.Pack> +\ \ + +@@TJclSingleQueue.Peek +<copy TJclQueue.Peek> +\ \ + +@@TJclSingleQueue.SetCapacity@Integer +<copy TJclQueue.SetCapacity@Integer> +\ \ + +@@TJclSingleQueue.Size +<copy TJclQueue.Size> +\ \ +@@TJclDoubleQueue +<copy TJclQueue> +\ \ + +@@!!MEMBEROVERVIEW_TJclDoubleQueue +<copy !!MEMBEROVERVIEW_TJclQueue> +\ \ + +@@TJclDoubleQueue.AssignDataTo@TJclAbstractContainerBase +<copy TJclQueue.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclDoubleQueue.Clear +<copy TJclQueue.Clear> +\ \ + +@@TJclDoubleQueue.Contains@Double +<copy TJclQueue.Contains@TObject> +\ \ + +@@TJclDoubleQueue.Create@Integer +<copy TJclQueue.Create@Integer@Boolean> +\ \ + +@@TJclDoubleQueue.CreateEmptyContainer +<copy TJclQueue.CreateEmptyContainer> +\ \ + +@@TJclDoubleQueue.Dequeue +<copy TJclQueue.Dequeue> +\ \ + +@@TJclDoubleQueue.Destroy +<copy TJclQueue.Destroy> +\ \ + +@@TJclDoubleQueue.Empty +<copy TJclQueue.Empty> +\ \ + +@@TJclDoubleQueue.Enqueue@Double +<copy TJclQueue.Enqueue@TObject> +\ \ + +@@TJclDoubleQueue.Pack +<copy TJclQueue.Pack> +\ \ + +@@TJclDoubleQueue.Peek +<copy TJclQueue.Peek> +\ \ + +@@TJclDoubleQueue.SetCapacity@Integer +<copy TJclQueue.SetCapacity@Integer> +\ \ + +@@TJclDoubleQueue.Size +<copy TJclQueue.Size> +\ \ +@@TJclExtendedQueue +<copy TJclQueue> +\ \ + +@@!!MEMBEROVERVIEW_TJclExtendedQueue +<copy !!MEMBEROVERVIEW_TJclQueue> +\ \ + +@@TJclExtendedQueue.AssignDataTo@TJclAbstractContainerBase +<copy TJclQueue.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclExtendedQueue.Clear +<copy TJclQueue.Clear> +\ \ + +@@TJclExtendedQueue.Contains@Extended +<copy TJclQueue.Contains@TObject> +\ \ + +@@TJclExtendedQueue.Create@Integer +<copy TJclQueue.Create@Integer@Boolean> +\ \ + +@@TJclExtendedQueue.CreateEmptyContainer +<copy TJclQueue.CreateEmptyContainer> +\ \ + +@@TJclExtendedQueue.Dequeue +<copy TJclQueue.Dequeue> +\ \ + +@@TJclExtendedQueue.Destroy +<copy TJclQueue.Destroy> +\ \ + +@@TJclExtendedQueue.Empty +<copy TJclQueue.Empty> +\ \ + +@@TJclExtendedQueue.Enqueue@Extended +<copy TJclQueue.Enqueue@TObject> +\ \ + +@@TJclExtendedQueue.Pack +<copy TJclQueue.Pack> +\ \ + +@@TJclExtendedQueue.Peek +<copy TJclQueue.Peek> +\ \ + +@@TJclExtendedQueue.SetCapacity@Integer +<copy TJclQueue.SetCapacity@Integer> +\ \ + +@@TJclExtendedQueue.Size +<copy TJclQueue.Size> +\ \ +@@TJclIntegerQueue +<copy TJclQueue> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntegerQueue +<copy !!MEMBEROVERVIEW_TJclQueue> +\ \ + +@@TJclIntegerQueue.AssignDataTo@TJclAbstractContainerBase +<copy TJclQueue.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntegerQueue.Clear +<copy TJclQueue.Clear> +\ \ + +@@TJclIntegerQueue.Contains@Integer +<copy TJclQueue.Contains@TObject> +\ \ + +@@TJclIntegerQueue.Create@Integer +<copy TJclQueue.Create@Integer@Boolean> +\ \ + +@@TJclIntegerQueue.CreateEmptyContainer +<copy TJclQueue.CreateEmptyContainer> +\ \ + +@@TJclIntegerQueue.Dequeue +<copy TJclQueue.Dequeue> +\ \ + +@@TJclIntegerQueue.Destroy +<copy TJclQueue.Destroy> +\ \ + +@@TJclIntegerQueue.Empty +<copy TJclQueue.Empty> +\ \ + +@@TJclIntegerQueue.Enqueue@Integer +<copy TJclQueue.Enqueue@TObject> +\ \ + +@@TJclIntegerQueue.Pack +<copy TJclQueue.Pack> +\ \ + +@@TJclIntegerQueue.Peek +<copy TJclQueue.Peek> +\ \ + +@@TJclIntegerQueue.SetCapacity@Integer +<copy TJclQueue.SetCapacity@Integer> +\ \ + +@@TJclIntegerQueue.Size +<copy TJclQueue.Size> +\ \ +@@TJclCardinalQueue +<copy TJclQueue> +\ \ + +@@!!MEMBEROVERVIEW_TJclCardinalQueue +<copy !!MEMBEROVERVIEW_TJclQueue> +\ \ + +@@TJclCardinalQueue.AssignDataTo@TJclAbstractContainerBase +<copy TJclQueue.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclCardinalQueue.Clear +<copy TJclQueue.Clear> +\ \ + +@@TJclCardinalQueue.Contains@Cardinal +<copy TJclQueue.Contains@TObject> +\ \ + +@@TJclCardinalQueue.Create@Integer +<copy TJclQueue.Create@Integer@Boolean> +\ \ + +@@TJclCardinalQueue.CreateEmptyContainer +<copy TJclQueue.CreateEmptyContainer> +\ \ + +@@TJclCardinalQueue.Dequeue +<copy TJclQueue.Dequeue> +\ \ + +@@TJclCardinalQueue.Destroy +<copy TJclQueue.Destroy> +\ \ + +@@TJclCardinalQueue.Empty +<copy TJclQueue.Empty> +\ \ + +@@TJclCardinalQueue.Enqueue@Cardinal +<copy TJclQueue.Enqueue@TObject> +\ \ + +@@TJclCardinalQueue.Pack +<copy TJclQueue.Pack> +\ \ + +@@TJclCardinalQueue.Peek +<copy TJclQueue.Peek> +\ \ + +@@TJclCardinalQueue.SetCapacity@Integer +<copy TJclQueue.SetCapacity@Integer> +\ \ + +@@TJclCardinalQueue.Size +<copy TJclQueue.Size> +\ \ +@@TJclInt64Queue +<copy TJclQueue> +\ \ + +@@!!MEMBEROVERVIEW_TJclInt64Queue +<copy !!MEMBEROVERVIEW_TJclQueue> +\ \ + +@@TJclInt64Queue.AssignDataTo@TJclAbstractContainerBase +<copy TJclQueue.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclInt64Queue.Clear +<copy TJclQueue.Clear> +\ \ + +@@TJclInt64Queue.Contains@Int64 +<copy TJclQueue.Contains@TObject> +\ \ + +@@TJclInt64Queue.Create@Integer +<copy TJclQueue.Create@Integer@Boolean> +\ \ + +@@TJclInt64Queue.CreateEmptyContainer +<copy TJclQueue.CreateEmptyContainer> +\ \ + +@@TJclInt64Queue.Dequeue +<copy TJclQueue.Dequeue> +\ \ + +@@TJclInt64Queue.Destroy +<copy TJclQueue.Destroy> +\ \ + +@@TJclInt64Queue.Empty +<copy TJclQueue.Empty> +\ \ + +@@TJclInt64Queue.Enqueue@Int64 +<copy TJclQueue.Enqueue@TObject> +\ \ + +@@TJclInt64Queue.Pack +<copy TJclQueue.Pack> +\ \ + +@@TJclInt64Queue.Peek +<copy TJclQueue.Peek> +\ \ + +@@TJclInt64Queue.SetCapacity@Integer +<copy TJclQueue.SetCapacity@Integer> +\ \ + +@@TJclInt64Queue.Size +<copy TJclQueue.Size> +\ \ +@@TJclPtrQueue +<copy TJclQueue> +\ \ + +@@!!MEMBEROVERVIEW_TJclPtrQueue +<copy !!MEMBEROVERVIEW_TJclQueue> +\ \ + +@@TJclPtrQueue.AssignDataTo@TJclAbstractContainerBase +<copy TJclQueue.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclPtrQueue.Clear +<copy TJclQueue.Clear> +\ \ + +@@TJclPtrQueue.Contains@Pointer +<copy TJclQueue.Contains@TObject> +\ \ + +@@TJclPtrQueue.Create@Integer +<copy TJclQueue.Create@Integer@Boolean> +\ \ + +@@TJclPtrQueue.CreateEmptyContainer +<copy TJclQueue.CreateEmptyContainer> +\ \ + +@@TJclPtrQueue.Dequeue +<copy TJclQueue.Dequeue> +\ \ + +@@TJclPtrQueue.Destroy +<copy TJclQueue.Destroy> +\ \ + +@@TJclPtrQueue.Empty +<copy TJclQueue.Empty> +\ \ + +@@TJclPtrQueue.Enqueue@Pointer +<copy TJclQueue.Enqueue@TObject> +\ \ + +@@TJclPtrQueue.Pack +<copy TJclQueue.Pack> +\ \ + +@@TJclPtrQueue.Peek +<copy TJclQueue.Peek> +\ \ + +@@TJclPtrQueue.SetCapacity@Integer +<copy TJclQueue.SetCapacity@Integer> +\ \ + +@@TJclPtrQueue.Size +<copy TJclQueue.Size> +\ \ + + +@@TJclIntfIntfSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclIntfIntfSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclIntfIntfSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclAnsiStrIntfSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclAnsiStrIntfSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclAnsiStrIntfSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclIntfAnsiStrSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclIntfAnsiStrSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclIntfAnsiStrSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclAnsiStrAnsiStrSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclAnsiStrAnsiStrSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclAnsiStrAnsiStrSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclWideStrIntfSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclWideStrIntfSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclWideStrIntfSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclIntfWideStrSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclIntfWideStrSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclIntfWideStrSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclWideStrWideStrSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclWideStrWideStrSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclWideStrWideStrSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclUnicodeStrIntfSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclUnicodeStrIntfSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclUnicodeStrIntfSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclIntfUnicodeStrSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclIntfUnicodeStrSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclIntfUnicodeStrSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclUnicodeStrUnicodeStrSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclSingleIntfSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclSingleIntfSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclSingleIntfSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclIntfSingleSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclIntfSingleSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclIntfSingleSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclSingleSingleSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclSingleSingleSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclSingleSingleSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclDoubleIntfSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclDoubleIntfSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclDoubleIntfSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclIntfDoubleSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclIntfDoubleSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclIntfDoubleSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclDoubleDoubleSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclDoubleDoubleSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclDoubleDoubleSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclExtendedIntfSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclExtendedIntfSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclExtendedIntfSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclIntfExtendedSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclIntfExtendedSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclIntfExtendedSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclExtendedExtendedSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclExtendedExtendedSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclExtendedExtendedSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclIntegerIntfSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclIntegerIntfSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclIntegerIntfSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclIntfIntegerSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclIntfIntegerSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclIntfIntegerSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclIntegerIntegerSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclIntegerIntegerSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclIntegerIntegerSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclCardinalIntfSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclCardinalIntfSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclCardinalIntfSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclIntfCardinalSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclIntfCardinalSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclIntfCardinalSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclCardinalCardinalSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclCardinalCardinalSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclCardinalCardinalSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclInt64IntfSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclInt64IntfSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclInt64IntfSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclIntfInt64SortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclIntfInt64SortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclIntfInt64SortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclInt64Int64SortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclInt64Int64SortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclInt64Int64SortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclPtrIntfSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclPtrIntfSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclPtrIntfSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclIntfPtrSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclIntfPtrSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclIntfPtrSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclPtrPtrSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclPtrPtrSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclPtrPtrSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclIntfSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclIntfSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclIntfSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclAnsiStrSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclAnsiStrSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclAnsiStrSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclWideStrSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclWideStrSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclWideStrSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclUnicodeStrSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclUnicodeStrSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclUnicodeStrSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclSingleSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclSingleSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclSingleSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclDoubleSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclDoubleSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclDoubleSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclExtendedSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclExtendedSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclExtendedSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclIntegerSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclIntegerSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclIntegerSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclCardinalSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclCardinalSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclCardinalSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclInt64SortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclInt64SortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclInt64SortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ +@@TJclPtrSortedEntry +<copy TJclSortedEntry> +\ \ + +@@TJclPtrSortedEntry.Key +<copy TJclSortedEntry.Key> +\ \ + +@@TJclPtrSortedEntry.Value +<copy TJclSortedEntry.Value> +\ \ + + +@@TJclIntfIntfSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfIntfSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclIntfIntfSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfIntfSortedMap.BinarySearch@IInterface +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclIntfIntfSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclIntfIntfSortedMap.ContainsKey@IInterface +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclIntfIntfSortedMap.ContainsValue@IInterface +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclIntfIntfSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclIntfIntfSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclIntfIntfSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclIntfIntfSortedMap.Extract@IInterface +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclIntfIntfSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclIntfIntfSortedMap.FreeKey@IInterface +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclIntfIntfSortedMap.FreeValue@IInterface +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclIntfIntfSortedMap.GetValue@IInterface +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclIntfIntfSortedMap.HeadMap@IInterface +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclIntfIntfSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclIntfIntfSortedMap.KeyOfValue@IInterface +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclIntfIntfSortedMap.KeysCompare@IInterface@IInterface +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclIntfIntfSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclIntfIntfSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclIntfIntfSortedMap.MapEquals@IJclIntfIntfMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclIntfIntfSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclIntfIntfSortedMap.PutAll@IJclIntfIntfMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclIntfIntfSortedMap.PutValue@IInterface@IInterface +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntfIntfSortedMap.Remove@IInterface +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclIntfIntfSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclIntfIntfSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclIntfIntfSortedMap.SubMap@IInterface@IInterface +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclIntfIntfSortedMap.TailMap@IInterface +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclIntfIntfSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclIntfIntfSortedMap.ValuesCompare@IInterface@IInterface +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclAnsiStrIntfSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclAnsiStrIntfSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclAnsiStrIntfSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclAnsiStrIntfSortedMap.BinarySearch@AnsiString +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclAnsiStrIntfSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclAnsiStrIntfSortedMap.ContainsKey@AnsiString +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclAnsiStrIntfSortedMap.ContainsValue@IInterface +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclAnsiStrIntfSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclAnsiStrIntfSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclAnsiStrIntfSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclAnsiStrIntfSortedMap.Extract@AnsiString +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclAnsiStrIntfSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclAnsiStrIntfSortedMap.FreeKey@AnsiString +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclAnsiStrIntfSortedMap.FreeValue@IInterface +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclAnsiStrIntfSortedMap.GetValue@AnsiString +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclAnsiStrIntfSortedMap.HeadMap@AnsiString +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclAnsiStrIntfSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclAnsiStrIntfSortedMap.KeyOfValue@IInterface +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclAnsiStrIntfSortedMap.KeysCompare@AnsiString@AnsiString +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclAnsiStrIntfSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclAnsiStrIntfSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclAnsiStrIntfSortedMap.MapEquals@IJclAnsiStrIntfMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclAnsiStrIntfSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclAnsiStrIntfSortedMap.PutAll@IJclAnsiStrIntfMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclAnsiStrIntfSortedMap.PutValue@AnsiString@IInterface +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclAnsiStrIntfSortedMap.Remove@AnsiString +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclAnsiStrIntfSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclAnsiStrIntfSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclAnsiStrIntfSortedMap.SubMap@AnsiString@AnsiString +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclAnsiStrIntfSortedMap.TailMap@AnsiString +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclAnsiStrIntfSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclAnsiStrIntfSortedMap.ValuesCompare@IInterface@IInterface +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclIntfAnsiStrSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfAnsiStrSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclIntfAnsiStrSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfAnsiStrSortedMap.BinarySearch@IInterface +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclIntfAnsiStrSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclIntfAnsiStrSortedMap.ContainsKey@IInterface +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclIntfAnsiStrSortedMap.ContainsValue@AnsiString +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclIntfAnsiStrSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclIntfAnsiStrSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclIntfAnsiStrSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclIntfAnsiStrSortedMap.Extract@IInterface +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclIntfAnsiStrSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclIntfAnsiStrSortedMap.FreeKey@IInterface +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclIntfAnsiStrSortedMap.FreeValue@AnsiString +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclIntfAnsiStrSortedMap.GetValue@IInterface +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclIntfAnsiStrSortedMap.HeadMap@IInterface +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclIntfAnsiStrSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclIntfAnsiStrSortedMap.KeyOfValue@AnsiString +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclIntfAnsiStrSortedMap.KeysCompare@IInterface@IInterface +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclIntfAnsiStrSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclIntfAnsiStrSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclIntfAnsiStrSortedMap.MapEquals@IJclIntfAnsiStrMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclIntfAnsiStrSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclIntfAnsiStrSortedMap.PutAll@IJclIntfAnsiStrMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclIntfAnsiStrSortedMap.PutValue@IInterface@AnsiString +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntfAnsiStrSortedMap.Remove@IInterface +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclIntfAnsiStrSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclIntfAnsiStrSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclIntfAnsiStrSortedMap.SubMap@IInterface@IInterface +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclIntfAnsiStrSortedMap.TailMap@IInterface +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclIntfAnsiStrSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclIntfAnsiStrSortedMap.ValuesCompare@AnsiString@AnsiString +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclAnsiStrAnsiStrSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclAnsiStrAnsiStrSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclAnsiStrAnsiStrSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.BinarySearch@AnsiString +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.ContainsKey@AnsiString +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.ContainsValue@AnsiString +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.Extract@AnsiString +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.FreeKey@AnsiString +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.FreeValue@AnsiString +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclAnsiStrAnsiStrSortedMap.GetValue@AnsiString +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.HeadMap@AnsiString +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.KeyOfValue@AnsiString +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.KeysCompare@AnsiString@AnsiString +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.MapEquals@IJclAnsiStrAnsiStrMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.PutAll@IJclAnsiStrAnsiStrMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.PutValue@AnsiString@AnsiString +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.Remove@AnsiString +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.SubMap@AnsiString@AnsiString +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.TailMap@AnsiString +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclAnsiStrAnsiStrSortedMap.ValuesCompare@AnsiString@AnsiString +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclWideStrIntfSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclWideStrIntfSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclWideStrIntfSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclWideStrIntfSortedMap.BinarySearch@WideString +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclWideStrIntfSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclWideStrIntfSortedMap.ContainsKey@WideString +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclWideStrIntfSortedMap.ContainsValue@IInterface +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclWideStrIntfSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclWideStrIntfSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclWideStrIntfSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclWideStrIntfSortedMap.Extract@WideString +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclWideStrIntfSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclWideStrIntfSortedMap.FreeKey@WideString +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclWideStrIntfSortedMap.FreeValue@IInterface +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclWideStrIntfSortedMap.GetValue@WideString +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclWideStrIntfSortedMap.HeadMap@WideString +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclWideStrIntfSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclWideStrIntfSortedMap.KeyOfValue@IInterface +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclWideStrIntfSortedMap.KeysCompare@WideString@WideString +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclWideStrIntfSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclWideStrIntfSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclWideStrIntfSortedMap.MapEquals@IJclWideStrIntfMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclWideStrIntfSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclWideStrIntfSortedMap.PutAll@IJclWideStrIntfMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclWideStrIntfSortedMap.PutValue@WideString@IInterface +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclWideStrIntfSortedMap.Remove@WideString +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclWideStrIntfSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclWideStrIntfSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclWideStrIntfSortedMap.SubMap@WideString@WideString +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclWideStrIntfSortedMap.TailMap@WideString +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclWideStrIntfSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclWideStrIntfSortedMap.ValuesCompare@IInterface@IInterface +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclIntfWideStrSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfWideStrSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclIntfWideStrSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfWideStrSortedMap.BinarySearch@IInterface +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclIntfWideStrSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclIntfWideStrSortedMap.ContainsKey@IInterface +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclIntfWideStrSortedMap.ContainsValue@WideString +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclIntfWideStrSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclIntfWideStrSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclIntfWideStrSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclIntfWideStrSortedMap.Extract@IInterface +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclIntfWideStrSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclIntfWideStrSortedMap.FreeKey@IInterface +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclIntfWideStrSortedMap.FreeValue@WideString +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclIntfWideStrSortedMap.GetValue@IInterface +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclIntfWideStrSortedMap.HeadMap@IInterface +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclIntfWideStrSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclIntfWideStrSortedMap.KeyOfValue@WideString +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclIntfWideStrSortedMap.KeysCompare@IInterface@IInterface +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclIntfWideStrSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclIntfWideStrSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclIntfWideStrSortedMap.MapEquals@IJclIntfWideStrMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclIntfWideStrSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclIntfWideStrSortedMap.PutAll@IJclIntfWideStrMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclIntfWideStrSortedMap.PutValue@IInterface@WideString +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntfWideStrSortedMap.Remove@IInterface +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclIntfWideStrSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclIntfWideStrSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclIntfWideStrSortedMap.SubMap@IInterface@IInterface +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclIntfWideStrSortedMap.TailMap@IInterface +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclIntfWideStrSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclIntfWideStrSortedMap.ValuesCompare@WideString@WideString +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclWideStrWideStrSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclWideStrWideStrSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclWideStrWideStrSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclWideStrWideStrSortedMap.BinarySearch@WideString +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclWideStrWideStrSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclWideStrWideStrSortedMap.ContainsKey@WideString +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclWideStrWideStrSortedMap.ContainsValue@WideString +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclWideStrWideStrSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclWideStrWideStrSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclWideStrWideStrSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclWideStrWideStrSortedMap.Extract@WideString +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclWideStrWideStrSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclWideStrWideStrSortedMap.FreeKey@WideString +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclWideStrWideStrSortedMap.FreeValue@WideString +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclWideStrWideStrSortedMap.GetValue@WideString +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclWideStrWideStrSortedMap.HeadMap@WideString +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclWideStrWideStrSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclWideStrWideStrSortedMap.KeyOfValue@WideString +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclWideStrWideStrSortedMap.KeysCompare@WideString@WideString +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclWideStrWideStrSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclWideStrWideStrSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclWideStrWideStrSortedMap.MapEquals@IJclWideStrWideStrMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclWideStrWideStrSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclWideStrWideStrSortedMap.PutAll@IJclWideStrWideStrMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclWideStrWideStrSortedMap.PutValue@WideString@WideString +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclWideStrWideStrSortedMap.Remove@WideString +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclWideStrWideStrSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclWideStrWideStrSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclWideStrWideStrSortedMap.SubMap@WideString@WideString +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclWideStrWideStrSortedMap.TailMap@WideString +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclWideStrWideStrSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclWideStrWideStrSortedMap.ValuesCompare@WideString@WideString +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclUnicodeStrIntfSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclUnicodeStrIntfSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclUnicodeStrIntfSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclUnicodeStrIntfSortedMap.BinarySearch@UnicodeString +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclUnicodeStrIntfSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclUnicodeStrIntfSortedMap.ContainsKey@UnicodeString +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclUnicodeStrIntfSortedMap.ContainsValue@IInterface +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclUnicodeStrIntfSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclUnicodeStrIntfSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclUnicodeStrIntfSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclUnicodeStrIntfSortedMap.Extract@UnicodeString +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclUnicodeStrIntfSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclUnicodeStrIntfSortedMap.FreeKey@UnicodeString +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclUnicodeStrIntfSortedMap.FreeValue@IInterface +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclUnicodeStrIntfSortedMap.GetValue@UnicodeString +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclUnicodeStrIntfSortedMap.HeadMap@UnicodeString +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclUnicodeStrIntfSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclUnicodeStrIntfSortedMap.KeyOfValue@IInterface +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclUnicodeStrIntfSortedMap.KeysCompare@UnicodeString@UnicodeString +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclUnicodeStrIntfSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclUnicodeStrIntfSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclUnicodeStrIntfSortedMap.MapEquals@IJclUnicodeStrIntfMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclUnicodeStrIntfSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclUnicodeStrIntfSortedMap.PutAll@IJclUnicodeStrIntfMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclUnicodeStrIntfSortedMap.PutValue@UnicodeString@IInterface +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclUnicodeStrIntfSortedMap.Remove@UnicodeString +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclUnicodeStrIntfSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclUnicodeStrIntfSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclUnicodeStrIntfSortedMap.SubMap@UnicodeString@UnicodeString +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclUnicodeStrIntfSortedMap.TailMap@UnicodeString +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclUnicodeStrIntfSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclUnicodeStrIntfSortedMap.ValuesCompare@IInterface@IInterface +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclIntfUnicodeStrSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfUnicodeStrSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclIntfUnicodeStrSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfUnicodeStrSortedMap.BinarySearch@IInterface +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclIntfUnicodeStrSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclIntfUnicodeStrSortedMap.ContainsKey@IInterface +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclIntfUnicodeStrSortedMap.ContainsValue@UnicodeString +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclIntfUnicodeStrSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclIntfUnicodeStrSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclIntfUnicodeStrSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclIntfUnicodeStrSortedMap.Extract@IInterface +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclIntfUnicodeStrSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclIntfUnicodeStrSortedMap.FreeKey@IInterface +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclIntfUnicodeStrSortedMap.FreeValue@UnicodeString +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclIntfUnicodeStrSortedMap.GetValue@IInterface +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclIntfUnicodeStrSortedMap.HeadMap@IInterface +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclIntfUnicodeStrSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclIntfUnicodeStrSortedMap.KeyOfValue@UnicodeString +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclIntfUnicodeStrSortedMap.KeysCompare@IInterface@IInterface +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclIntfUnicodeStrSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclIntfUnicodeStrSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclIntfUnicodeStrSortedMap.MapEquals@IJclIntfUnicodeStrMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclIntfUnicodeStrSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclIntfUnicodeStrSortedMap.PutAll@IJclIntfUnicodeStrMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclIntfUnicodeStrSortedMap.PutValue@IInterface@UnicodeString +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntfUnicodeStrSortedMap.Remove@IInterface +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclIntfUnicodeStrSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclIntfUnicodeStrSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclIntfUnicodeStrSortedMap.SubMap@IInterface@IInterface +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclIntfUnicodeStrSortedMap.TailMap@IInterface +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclIntfUnicodeStrSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclIntfUnicodeStrSortedMap.ValuesCompare@UnicodeString@UnicodeString +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclUnicodeStrUnicodeStrSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclUnicodeStrUnicodeStrSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclUnicodeStrUnicodeStrSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.BinarySearch@UnicodeString +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.ContainsKey@UnicodeString +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.ContainsValue@UnicodeString +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.Extract@UnicodeString +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.FreeKey@UnicodeString +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.FreeValue@UnicodeString +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclUnicodeStrUnicodeStrSortedMap.GetValue@UnicodeString +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.HeadMap@UnicodeString +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.KeyOfValue@UnicodeString +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.KeysCompare@UnicodeString@UnicodeString +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.MapEquals@IJclUnicodeStrUnicodeStrMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.PutAll@IJclUnicodeStrUnicodeStrMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.PutValue@UnicodeString@UnicodeString +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.Remove@UnicodeString +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.SubMap@UnicodeString@UnicodeString +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.TailMap@UnicodeString +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclUnicodeStrUnicodeStrSortedMap.ValuesCompare@UnicodeString@UnicodeString +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclSingleIntfSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclSingleIntfSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclSingleIntfSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclSingleIntfSortedMap.BinarySearch@Single +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclSingleIntfSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclSingleIntfSortedMap.ContainsKey@Single +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclSingleIntfSortedMap.ContainsValue@IInterface +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclSingleIntfSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclSingleIntfSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclSingleIntfSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclSingleIntfSortedMap.Extract@Single +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclSingleIntfSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclSingleIntfSortedMap.FreeKey@Single +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclSingleIntfSortedMap.FreeValue@IInterface +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclSingleIntfSortedMap.GetValue@Single +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclSingleIntfSortedMap.HeadMap@Single +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclSingleIntfSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclSingleIntfSortedMap.KeyOfValue@IInterface +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclSingleIntfSortedMap.KeysCompare@Single@Single +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclSingleIntfSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclSingleIntfSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclSingleIntfSortedMap.MapEquals@IJclSingleIntfMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclSingleIntfSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclSingleIntfSortedMap.PutAll@IJclSingleIntfMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclSingleIntfSortedMap.PutValue@Single@IInterface +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclSingleIntfSortedMap.Remove@Single +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclSingleIntfSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclSingleIntfSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclSingleIntfSortedMap.SubMap@Single@Single +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclSingleIntfSortedMap.TailMap@Single +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclSingleIntfSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclSingleIntfSortedMap.ValuesCompare@IInterface@IInterface +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclIntfSingleSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfSingleSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclIntfSingleSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfSingleSortedMap.BinarySearch@IInterface +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclIntfSingleSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclIntfSingleSortedMap.ContainsKey@IInterface +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclIntfSingleSortedMap.ContainsValue@Single +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclIntfSingleSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclIntfSingleSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclIntfSingleSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclIntfSingleSortedMap.Extract@IInterface +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclIntfSingleSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclIntfSingleSortedMap.FreeKey@IInterface +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclIntfSingleSortedMap.FreeValue@Single +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclIntfSingleSortedMap.GetValue@IInterface +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclIntfSingleSortedMap.HeadMap@IInterface +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclIntfSingleSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclIntfSingleSortedMap.KeyOfValue@Single +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclIntfSingleSortedMap.KeysCompare@IInterface@IInterface +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclIntfSingleSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclIntfSingleSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclIntfSingleSortedMap.MapEquals@IJclIntfSingleMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclIntfSingleSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclIntfSingleSortedMap.PutAll@IJclIntfSingleMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclIntfSingleSortedMap.PutValue@IInterface@Single +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntfSingleSortedMap.Remove@IInterface +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclIntfSingleSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclIntfSingleSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclIntfSingleSortedMap.SubMap@IInterface@IInterface +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclIntfSingleSortedMap.TailMap@IInterface +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclIntfSingleSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclIntfSingleSortedMap.ValuesCompare@Single@Single +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclSingleSingleSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclSingleSingleSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclSingleSingleSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclSingleSingleSortedMap.BinarySearch@Single +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclSingleSingleSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclSingleSingleSortedMap.ContainsKey@Single +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclSingleSingleSortedMap.ContainsValue@Single +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclSingleSingleSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclSingleSingleSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclSingleSingleSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclSingleSingleSortedMap.Extract@Single +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclSingleSingleSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclSingleSingleSortedMap.FreeKey@Single +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclSingleSingleSortedMap.FreeValue@Single +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclSingleSingleSortedMap.GetValue@Single +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclSingleSingleSortedMap.HeadMap@Single +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclSingleSingleSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclSingleSingleSortedMap.KeyOfValue@Single +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclSingleSingleSortedMap.KeysCompare@Single@Single +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclSingleSingleSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclSingleSingleSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclSingleSingleSortedMap.MapEquals@IJclSingleSingleMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclSingleSingleSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclSingleSingleSortedMap.PutAll@IJclSingleSingleMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclSingleSingleSortedMap.PutValue@Single@Single +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclSingleSingleSortedMap.Remove@Single +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclSingleSingleSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclSingleSingleSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclSingleSingleSortedMap.SubMap@Single@Single +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclSingleSingleSortedMap.TailMap@Single +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclSingleSingleSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclSingleSingleSortedMap.ValuesCompare@Single@Single +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclDoubleIntfSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclDoubleIntfSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclDoubleIntfSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclDoubleIntfSortedMap.BinarySearch@Double +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclDoubleIntfSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclDoubleIntfSortedMap.ContainsKey@Double +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclDoubleIntfSortedMap.ContainsValue@IInterface +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclDoubleIntfSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclDoubleIntfSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclDoubleIntfSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclDoubleIntfSortedMap.Extract@Double +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclDoubleIntfSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclDoubleIntfSortedMap.FreeKey@Double +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclDoubleIntfSortedMap.FreeValue@IInterface +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclDoubleIntfSortedMap.GetValue@Double +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclDoubleIntfSortedMap.HeadMap@Double +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclDoubleIntfSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclDoubleIntfSortedMap.KeyOfValue@IInterface +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclDoubleIntfSortedMap.KeysCompare@Double@Double +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclDoubleIntfSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclDoubleIntfSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclDoubleIntfSortedMap.MapEquals@IJclDoubleIntfMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclDoubleIntfSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclDoubleIntfSortedMap.PutAll@IJclDoubleIntfMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclDoubleIntfSortedMap.PutValue@Double@IInterface +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclDoubleIntfSortedMap.Remove@Double +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclDoubleIntfSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclDoubleIntfSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclDoubleIntfSortedMap.SubMap@Double@Double +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclDoubleIntfSortedMap.TailMap@Double +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclDoubleIntfSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclDoubleIntfSortedMap.ValuesCompare@IInterface@IInterface +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclIntfDoubleSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfDoubleSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclIntfDoubleSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfDoubleSortedMap.BinarySearch@IInterface +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclIntfDoubleSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclIntfDoubleSortedMap.ContainsKey@IInterface +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclIntfDoubleSortedMap.ContainsValue@Double +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclIntfDoubleSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclIntfDoubleSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclIntfDoubleSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclIntfDoubleSortedMap.Extract@IInterface +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclIntfDoubleSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclIntfDoubleSortedMap.FreeKey@IInterface +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclIntfDoubleSortedMap.FreeValue@Double +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclIntfDoubleSortedMap.GetValue@IInterface +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclIntfDoubleSortedMap.HeadMap@IInterface +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclIntfDoubleSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclIntfDoubleSortedMap.KeyOfValue@Double +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclIntfDoubleSortedMap.KeysCompare@IInterface@IInterface +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclIntfDoubleSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclIntfDoubleSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclIntfDoubleSortedMap.MapEquals@IJclIntfDoubleMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclIntfDoubleSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclIntfDoubleSortedMap.PutAll@IJclIntfDoubleMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclIntfDoubleSortedMap.PutValue@IInterface@Double +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntfDoubleSortedMap.Remove@IInterface +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclIntfDoubleSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclIntfDoubleSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclIntfDoubleSortedMap.SubMap@IInterface@IInterface +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclIntfDoubleSortedMap.TailMap@IInterface +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclIntfDoubleSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclIntfDoubleSortedMap.ValuesCompare@Double@Double +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclDoubleDoubleSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclDoubleDoubleSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclDoubleDoubleSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclDoubleDoubleSortedMap.BinarySearch@Double +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclDoubleDoubleSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclDoubleDoubleSortedMap.ContainsKey@Double +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclDoubleDoubleSortedMap.ContainsValue@Double +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclDoubleDoubleSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclDoubleDoubleSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclDoubleDoubleSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclDoubleDoubleSortedMap.Extract@Double +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclDoubleDoubleSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclDoubleDoubleSortedMap.FreeKey@Double +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclDoubleDoubleSortedMap.FreeValue@Double +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclDoubleDoubleSortedMap.GetValue@Double +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclDoubleDoubleSortedMap.HeadMap@Double +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclDoubleDoubleSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclDoubleDoubleSortedMap.KeyOfValue@Double +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclDoubleDoubleSortedMap.KeysCompare@Double@Double +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclDoubleDoubleSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclDoubleDoubleSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclDoubleDoubleSortedMap.MapEquals@IJclDoubleDoubleMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclDoubleDoubleSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclDoubleDoubleSortedMap.PutAll@IJclDoubleDoubleMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclDoubleDoubleSortedMap.PutValue@Double@Double +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclDoubleDoubleSortedMap.Remove@Double +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclDoubleDoubleSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclDoubleDoubleSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclDoubleDoubleSortedMap.SubMap@Double@Double +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclDoubleDoubleSortedMap.TailMap@Double +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclDoubleDoubleSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclDoubleDoubleSortedMap.ValuesCompare@Double@Double +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclExtendedIntfSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclExtendedIntfSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclExtendedIntfSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclExtendedIntfSortedMap.BinarySearch@Extended +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclExtendedIntfSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclExtendedIntfSortedMap.ContainsKey@Extended +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclExtendedIntfSortedMap.ContainsValue@IInterface +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclExtendedIntfSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclExtendedIntfSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclExtendedIntfSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclExtendedIntfSortedMap.Extract@Extended +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclExtendedIntfSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclExtendedIntfSortedMap.FreeKey@Extended +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclExtendedIntfSortedMap.FreeValue@IInterface +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclExtendedIntfSortedMap.GetValue@Extended +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclExtendedIntfSortedMap.HeadMap@Extended +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclExtendedIntfSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclExtendedIntfSortedMap.KeyOfValue@IInterface +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclExtendedIntfSortedMap.KeysCompare@Extended@Extended +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclExtendedIntfSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclExtendedIntfSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclExtendedIntfSortedMap.MapEquals@IJclExtendedIntfMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclExtendedIntfSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclExtendedIntfSortedMap.PutAll@IJclExtendedIntfMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclExtendedIntfSortedMap.PutValue@Extended@IInterface +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclExtendedIntfSortedMap.Remove@Extended +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclExtendedIntfSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclExtendedIntfSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclExtendedIntfSortedMap.SubMap@Extended@Extended +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclExtendedIntfSortedMap.TailMap@Extended +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclExtendedIntfSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclExtendedIntfSortedMap.ValuesCompare@IInterface@IInterface +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclIntfExtendedSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfExtendedSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclIntfExtendedSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfExtendedSortedMap.BinarySearch@IInterface +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclIntfExtendedSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclIntfExtendedSortedMap.ContainsKey@IInterface +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclIntfExtendedSortedMap.ContainsValue@Extended +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclIntfExtendedSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclIntfExtendedSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclIntfExtendedSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclIntfExtendedSortedMap.Extract@IInterface +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclIntfExtendedSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclIntfExtendedSortedMap.FreeKey@IInterface +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclIntfExtendedSortedMap.FreeValue@Extended +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclIntfExtendedSortedMap.GetValue@IInterface +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclIntfExtendedSortedMap.HeadMap@IInterface +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclIntfExtendedSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclIntfExtendedSortedMap.KeyOfValue@Extended +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclIntfExtendedSortedMap.KeysCompare@IInterface@IInterface +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclIntfExtendedSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclIntfExtendedSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclIntfExtendedSortedMap.MapEquals@IJclIntfExtendedMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclIntfExtendedSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclIntfExtendedSortedMap.PutAll@IJclIntfExtendedMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclIntfExtendedSortedMap.PutValue@IInterface@Extended +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntfExtendedSortedMap.Remove@IInterface +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclIntfExtendedSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclIntfExtendedSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclIntfExtendedSortedMap.SubMap@IInterface@IInterface +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclIntfExtendedSortedMap.TailMap@IInterface +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclIntfExtendedSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclIntfExtendedSortedMap.ValuesCompare@Extended@Extended +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclExtendedExtendedSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclExtendedExtendedSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclExtendedExtendedSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclExtendedExtendedSortedMap.BinarySearch@Extended +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclExtendedExtendedSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclExtendedExtendedSortedMap.ContainsKey@Extended +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclExtendedExtendedSortedMap.ContainsValue@Extended +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclExtendedExtendedSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclExtendedExtendedSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclExtendedExtendedSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclExtendedExtendedSortedMap.Extract@Extended +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclExtendedExtendedSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclExtendedExtendedSortedMap.FreeKey@Extended +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclExtendedExtendedSortedMap.FreeValue@Extended +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclExtendedExtendedSortedMap.GetValue@Extended +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclExtendedExtendedSortedMap.HeadMap@Extended +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclExtendedExtendedSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclExtendedExtendedSortedMap.KeyOfValue@Extended +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclExtendedExtendedSortedMap.KeysCompare@Extended@Extended +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclExtendedExtendedSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclExtendedExtendedSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclExtendedExtendedSortedMap.MapEquals@IJclExtendedExtendedMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclExtendedExtendedSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclExtendedExtendedSortedMap.PutAll@IJclExtendedExtendedMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclExtendedExtendedSortedMap.PutValue@Extended@Extended +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclExtendedExtendedSortedMap.Remove@Extended +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclExtendedExtendedSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclExtendedExtendedSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclExtendedExtendedSortedMap.SubMap@Extended@Extended +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclExtendedExtendedSortedMap.TailMap@Extended +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclExtendedExtendedSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclExtendedExtendedSortedMap.ValuesCompare@Extended@Extended +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclIntegerIntfSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntegerIntfSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclIntegerIntfSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntegerIntfSortedMap.BinarySearch@Integer +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclIntegerIntfSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclIntegerIntfSortedMap.ContainsKey@Integer +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclIntegerIntfSortedMap.ContainsValue@IInterface +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclIntegerIntfSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclIntegerIntfSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclIntegerIntfSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclIntegerIntfSortedMap.Extract@Integer +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclIntegerIntfSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclIntegerIntfSortedMap.FreeKey@Integer +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclIntegerIntfSortedMap.FreeValue@IInterface +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclIntegerIntfSortedMap.GetValue@Integer +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclIntegerIntfSortedMap.HeadMap@Integer +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclIntegerIntfSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclIntegerIntfSortedMap.KeyOfValue@IInterface +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclIntegerIntfSortedMap.KeysCompare@Integer@Integer +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclIntegerIntfSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclIntegerIntfSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclIntegerIntfSortedMap.MapEquals@IJclIntegerIntfMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclIntegerIntfSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclIntegerIntfSortedMap.PutAll@IJclIntegerIntfMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclIntegerIntfSortedMap.PutValue@Integer@IInterface +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntegerIntfSortedMap.Remove@Integer +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclIntegerIntfSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclIntegerIntfSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclIntegerIntfSortedMap.SubMap@Integer@Integer +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclIntegerIntfSortedMap.TailMap@Integer +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclIntegerIntfSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclIntegerIntfSortedMap.ValuesCompare@IInterface@IInterface +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclIntfIntegerSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfIntegerSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclIntfIntegerSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfIntegerSortedMap.BinarySearch@IInterface +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclIntfIntegerSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclIntfIntegerSortedMap.ContainsKey@IInterface +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclIntfIntegerSortedMap.ContainsValue@Integer +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclIntfIntegerSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclIntfIntegerSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclIntfIntegerSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclIntfIntegerSortedMap.Extract@IInterface +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclIntfIntegerSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclIntfIntegerSortedMap.FreeKey@IInterface +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclIntfIntegerSortedMap.FreeValue@Integer +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclIntfIntegerSortedMap.GetValue@IInterface +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclIntfIntegerSortedMap.HeadMap@IInterface +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclIntfIntegerSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclIntfIntegerSortedMap.KeyOfValue@Integer +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclIntfIntegerSortedMap.KeysCompare@IInterface@IInterface +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclIntfIntegerSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclIntfIntegerSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclIntfIntegerSortedMap.MapEquals@IJclIntfIntegerMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclIntfIntegerSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclIntfIntegerSortedMap.PutAll@IJclIntfIntegerMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclIntfIntegerSortedMap.PutValue@IInterface@Integer +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntfIntegerSortedMap.Remove@IInterface +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclIntfIntegerSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclIntfIntegerSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclIntfIntegerSortedMap.SubMap@IInterface@IInterface +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclIntfIntegerSortedMap.TailMap@IInterface +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclIntfIntegerSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclIntfIntegerSortedMap.ValuesCompare@Integer@Integer +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclIntegerIntegerSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntegerIntegerSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclIntegerIntegerSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntegerIntegerSortedMap.BinarySearch@Integer +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclIntegerIntegerSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclIntegerIntegerSortedMap.ContainsKey@Integer +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclIntegerIntegerSortedMap.ContainsValue@Integer +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclIntegerIntegerSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclIntegerIntegerSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclIntegerIntegerSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclIntegerIntegerSortedMap.Extract@Integer +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclIntegerIntegerSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclIntegerIntegerSortedMap.FreeKey@Integer +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclIntegerIntegerSortedMap.FreeValue@Integer +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclIntegerIntegerSortedMap.GetValue@Integer +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclIntegerIntegerSortedMap.HeadMap@Integer +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclIntegerIntegerSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclIntegerIntegerSortedMap.KeyOfValue@Integer +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclIntegerIntegerSortedMap.KeysCompare@Integer@Integer +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclIntegerIntegerSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclIntegerIntegerSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclIntegerIntegerSortedMap.MapEquals@IJclIntegerIntegerMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclIntegerIntegerSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclIntegerIntegerSortedMap.PutAll@IJclIntegerIntegerMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclIntegerIntegerSortedMap.PutValue@Integer@Integer +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntegerIntegerSortedMap.Remove@Integer +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclIntegerIntegerSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclIntegerIntegerSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclIntegerIntegerSortedMap.SubMap@Integer@Integer +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclIntegerIntegerSortedMap.TailMap@Integer +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclIntegerIntegerSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclIntegerIntegerSortedMap.ValuesCompare@Integer@Integer +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclCardinalIntfSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclCardinalIntfSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclCardinalIntfSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclCardinalIntfSortedMap.BinarySearch@Cardinal +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclCardinalIntfSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclCardinalIntfSortedMap.ContainsKey@Cardinal +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclCardinalIntfSortedMap.ContainsValue@IInterface +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclCardinalIntfSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclCardinalIntfSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclCardinalIntfSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclCardinalIntfSortedMap.Extract@Cardinal +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclCardinalIntfSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclCardinalIntfSortedMap.FreeKey@Cardinal +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclCardinalIntfSortedMap.FreeValue@IInterface +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclCardinalIntfSortedMap.GetValue@Cardinal +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclCardinalIntfSortedMap.HeadMap@Cardinal +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclCardinalIntfSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclCardinalIntfSortedMap.KeyOfValue@IInterface +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclCardinalIntfSortedMap.KeysCompare@Cardinal@Cardinal +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclCardinalIntfSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclCardinalIntfSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclCardinalIntfSortedMap.MapEquals@IJclCardinalIntfMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclCardinalIntfSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclCardinalIntfSortedMap.PutAll@IJclCardinalIntfMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclCardinalIntfSortedMap.PutValue@Cardinal@IInterface +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclCardinalIntfSortedMap.Remove@Cardinal +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclCardinalIntfSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclCardinalIntfSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclCardinalIntfSortedMap.SubMap@Cardinal@Cardinal +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclCardinalIntfSortedMap.TailMap@Cardinal +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclCardinalIntfSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclCardinalIntfSortedMap.ValuesCompare@IInterface@IInterface +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclIntfCardinalSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfCardinalSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclIntfCardinalSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfCardinalSortedMap.BinarySearch@IInterface +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclIntfCardinalSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclIntfCardinalSortedMap.ContainsKey@IInterface +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclIntfCardinalSortedMap.ContainsValue@Cardinal +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclIntfCardinalSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclIntfCardinalSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclIntfCardinalSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclIntfCardinalSortedMap.Extract@IInterface +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclIntfCardinalSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclIntfCardinalSortedMap.FreeKey@IInterface +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclIntfCardinalSortedMap.FreeValue@Cardinal +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclIntfCardinalSortedMap.GetValue@IInterface +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclIntfCardinalSortedMap.HeadMap@IInterface +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclIntfCardinalSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclIntfCardinalSortedMap.KeyOfValue@Cardinal +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclIntfCardinalSortedMap.KeysCompare@IInterface@IInterface +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclIntfCardinalSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclIntfCardinalSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclIntfCardinalSortedMap.MapEquals@IJclIntfCardinalMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclIntfCardinalSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclIntfCardinalSortedMap.PutAll@IJclIntfCardinalMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclIntfCardinalSortedMap.PutValue@IInterface@Cardinal +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntfCardinalSortedMap.Remove@IInterface +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclIntfCardinalSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclIntfCardinalSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclIntfCardinalSortedMap.SubMap@IInterface@IInterface +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclIntfCardinalSortedMap.TailMap@IInterface +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclIntfCardinalSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclIntfCardinalSortedMap.ValuesCompare@Cardinal@Cardinal +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclCardinalCardinalSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclCardinalCardinalSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclCardinalCardinalSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclCardinalCardinalSortedMap.BinarySearch@Cardinal +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclCardinalCardinalSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclCardinalCardinalSortedMap.ContainsKey@Cardinal +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclCardinalCardinalSortedMap.ContainsValue@Cardinal +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclCardinalCardinalSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclCardinalCardinalSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclCardinalCardinalSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclCardinalCardinalSortedMap.Extract@Cardinal +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclCardinalCardinalSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclCardinalCardinalSortedMap.FreeKey@Cardinal +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclCardinalCardinalSortedMap.FreeValue@Cardinal +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclCardinalCardinalSortedMap.GetValue@Cardinal +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclCardinalCardinalSortedMap.HeadMap@Cardinal +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclCardinalCardinalSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclCardinalCardinalSortedMap.KeyOfValue@Cardinal +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclCardinalCardinalSortedMap.KeysCompare@Cardinal@Cardinal +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclCardinalCardinalSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclCardinalCardinalSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclCardinalCardinalSortedMap.MapEquals@IJclCardinalCardinalMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclCardinalCardinalSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclCardinalCardinalSortedMap.PutAll@IJclCardinalCardinalMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclCardinalCardinalSortedMap.PutValue@Cardinal@Cardinal +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclCardinalCardinalSortedMap.Remove@Cardinal +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclCardinalCardinalSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclCardinalCardinalSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclCardinalCardinalSortedMap.SubMap@Cardinal@Cardinal +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclCardinalCardinalSortedMap.TailMap@Cardinal +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclCardinalCardinalSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclCardinalCardinalSortedMap.ValuesCompare@Cardinal@Cardinal +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclInt64IntfSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclInt64IntfSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclInt64IntfSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclInt64IntfSortedMap.BinarySearch@Int64 +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclInt64IntfSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclInt64IntfSortedMap.ContainsKey@Int64 +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclInt64IntfSortedMap.ContainsValue@IInterface +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclInt64IntfSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclInt64IntfSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclInt64IntfSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclInt64IntfSortedMap.Extract@Int64 +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclInt64IntfSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclInt64IntfSortedMap.FreeKey@Int64 +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclInt64IntfSortedMap.FreeValue@IInterface +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclInt64IntfSortedMap.GetValue@Int64 +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclInt64IntfSortedMap.HeadMap@Int64 +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclInt64IntfSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclInt64IntfSortedMap.KeyOfValue@IInterface +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclInt64IntfSortedMap.KeysCompare@Int64@Int64 +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclInt64IntfSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclInt64IntfSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclInt64IntfSortedMap.MapEquals@IJclInt64IntfMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclInt64IntfSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclInt64IntfSortedMap.PutAll@IJclInt64IntfMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclInt64IntfSortedMap.PutValue@Int64@IInterface +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclInt64IntfSortedMap.Remove@Int64 +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclInt64IntfSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclInt64IntfSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclInt64IntfSortedMap.SubMap@Int64@Int64 +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclInt64IntfSortedMap.TailMap@Int64 +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclInt64IntfSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclInt64IntfSortedMap.ValuesCompare@IInterface@IInterface +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclIntfInt64SortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfInt64SortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclIntfInt64SortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfInt64SortedMap.BinarySearch@IInterface +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclIntfInt64SortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclIntfInt64SortedMap.ContainsKey@IInterface +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclIntfInt64SortedMap.ContainsValue@Int64 +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclIntfInt64SortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclIntfInt64SortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclIntfInt64SortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclIntfInt64SortedMap.Extract@IInterface +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclIntfInt64SortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclIntfInt64SortedMap.FreeKey@IInterface +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclIntfInt64SortedMap.FreeValue@Int64 +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclIntfInt64SortedMap.GetValue@IInterface +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclIntfInt64SortedMap.HeadMap@IInterface +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclIntfInt64SortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclIntfInt64SortedMap.KeyOfValue@Int64 +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclIntfInt64SortedMap.KeysCompare@IInterface@IInterface +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclIntfInt64SortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclIntfInt64SortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclIntfInt64SortedMap.MapEquals@IJclIntfInt64Map +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclIntfInt64SortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclIntfInt64SortedMap.PutAll@IJclIntfInt64Map +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclIntfInt64SortedMap.PutValue@IInterface@Int64 +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntfInt64SortedMap.Remove@IInterface +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclIntfInt64SortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclIntfInt64SortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclIntfInt64SortedMap.SubMap@IInterface@IInterface +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclIntfInt64SortedMap.TailMap@IInterface +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclIntfInt64SortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclIntfInt64SortedMap.ValuesCompare@Int64@Int64 +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclInt64Int64SortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclInt64Int64SortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclInt64Int64SortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclInt64Int64SortedMap.BinarySearch@Int64 +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclInt64Int64SortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclInt64Int64SortedMap.ContainsKey@Int64 +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclInt64Int64SortedMap.ContainsValue@Int64 +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclInt64Int64SortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclInt64Int64SortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclInt64Int64SortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclInt64Int64SortedMap.Extract@Int64 +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclInt64Int64SortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclInt64Int64SortedMap.FreeKey@Int64 +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclInt64Int64SortedMap.FreeValue@Int64 +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclInt64Int64SortedMap.GetValue@Int64 +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclInt64Int64SortedMap.HeadMap@Int64 +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclInt64Int64SortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclInt64Int64SortedMap.KeyOfValue@Int64 +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclInt64Int64SortedMap.KeysCompare@Int64@Int64 +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclInt64Int64SortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclInt64Int64SortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclInt64Int64SortedMap.MapEquals@IJclInt64Int64Map +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclInt64Int64SortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclInt64Int64SortedMap.PutAll@IJclInt64Int64Map +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclInt64Int64SortedMap.PutValue@Int64@Int64 +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclInt64Int64SortedMap.Remove@Int64 +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclInt64Int64SortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclInt64Int64SortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclInt64Int64SortedMap.SubMap@Int64@Int64 +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclInt64Int64SortedMap.TailMap@Int64 +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclInt64Int64SortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclInt64Int64SortedMap.ValuesCompare@Int64@Int64 +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclPtrIntfSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclPtrIntfSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclPtrIntfSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclPtrIntfSortedMap.BinarySearch@Pointer +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclPtrIntfSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclPtrIntfSortedMap.ContainsKey@Pointer +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclPtrIntfSortedMap.ContainsValue@IInterface +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclPtrIntfSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclPtrIntfSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclPtrIntfSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclPtrIntfSortedMap.Extract@Pointer +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclPtrIntfSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclPtrIntfSortedMap.FreeKey@Pointer +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclPtrIntfSortedMap.FreeValue@IInterface +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclPtrIntfSortedMap.GetValue@Pointer +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclPtrIntfSortedMap.HeadMap@Pointer +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclPtrIntfSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclPtrIntfSortedMap.KeyOfValue@IInterface +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclPtrIntfSortedMap.KeysCompare@Pointer@Pointer +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclPtrIntfSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclPtrIntfSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclPtrIntfSortedMap.MapEquals@IJclPtrIntfMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclPtrIntfSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclPtrIntfSortedMap.PutAll@IJclPtrIntfMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclPtrIntfSortedMap.PutValue@Pointer@IInterface +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclPtrIntfSortedMap.Remove@Pointer +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclPtrIntfSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclPtrIntfSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclPtrIntfSortedMap.SubMap@Pointer@Pointer +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclPtrIntfSortedMap.TailMap@Pointer +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclPtrIntfSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclPtrIntfSortedMap.ValuesCompare@IInterface@IInterface +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclIntfPtrSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfPtrSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclIntfPtrSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfPtrSortedMap.BinarySearch@IInterface +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclIntfPtrSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclIntfPtrSortedMap.ContainsKey@IInterface +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclIntfPtrSortedMap.ContainsValue@Pointer +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclIntfPtrSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclIntfPtrSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclIntfPtrSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclIntfPtrSortedMap.Extract@IInterface +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclIntfPtrSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclIntfPtrSortedMap.FreeKey@IInterface +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclIntfPtrSortedMap.FreeValue@Pointer +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclIntfPtrSortedMap.GetValue@IInterface +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclIntfPtrSortedMap.HeadMap@IInterface +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclIntfPtrSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclIntfPtrSortedMap.KeyOfValue@Pointer +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclIntfPtrSortedMap.KeysCompare@IInterface@IInterface +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclIntfPtrSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclIntfPtrSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclIntfPtrSortedMap.MapEquals@IJclIntfPtrMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclIntfPtrSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclIntfPtrSortedMap.PutAll@IJclIntfPtrMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclIntfPtrSortedMap.PutValue@IInterface@Pointer +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntfPtrSortedMap.Remove@IInterface +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclIntfPtrSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclIntfPtrSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclIntfPtrSortedMap.SubMap@IInterface@IInterface +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclIntfPtrSortedMap.TailMap@IInterface +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclIntfPtrSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclIntfPtrSortedMap.ValuesCompare@Pointer@Pointer +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclPtrPtrSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclPtrPtrSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclPtrPtrSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclPtrPtrSortedMap.BinarySearch@Pointer +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclPtrPtrSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclPtrPtrSortedMap.ContainsKey@Pointer +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclPtrPtrSortedMap.ContainsValue@Pointer +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclPtrPtrSortedMap.Create@Integer +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclPtrPtrSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclPtrPtrSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclPtrPtrSortedMap.Extract@Pointer +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclPtrPtrSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclPtrPtrSortedMap.FreeKey@Pointer +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclPtrPtrSortedMap.FreeValue@Pointer +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclPtrPtrSortedMap.GetValue@Pointer +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclPtrPtrSortedMap.HeadMap@Pointer +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclPtrPtrSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclPtrPtrSortedMap.KeyOfValue@Pointer +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclPtrPtrSortedMap.KeysCompare@Pointer@Pointer +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclPtrPtrSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclPtrPtrSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclPtrPtrSortedMap.MapEquals@IJclPtrPtrMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclPtrPtrSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclPtrPtrSortedMap.PutAll@IJclPtrPtrMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclPtrPtrSortedMap.PutValue@Pointer@Pointer +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclPtrPtrSortedMap.Remove@Pointer +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclPtrPtrSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclPtrPtrSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclPtrPtrSortedMap.SubMap@Pointer@Pointer +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclPtrPtrSortedMap.TailMap@Pointer +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclPtrPtrSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclPtrPtrSortedMap.ValuesCompare@Pointer@Pointer +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclIntfSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclIntfSortedMap.OwnsValues +<copy TJclSortedMap.OwnsValues> +\ \ + + +@@TJclIntfSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfSortedMap.BinarySearch@IInterface +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclIntfSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclIntfSortedMap.ContainsKey@IInterface +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclIntfSortedMap.ContainsValue@TObject +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclIntfSortedMap.Create@Integer@Boolean +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclIntfSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclIntfSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclIntfSortedMap.Extract@IInterface +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclIntfSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclIntfSortedMap.FreeKey@IInterface +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclIntfSortedMap.FreeValue@TObject +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclIntfSortedMap.GetOwnsValues +<copy TJclSortedMap.GetOwnsValues> +\ \ + + +@@TJclIntfSortedMap.GetValue@IInterface +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclIntfSortedMap.HeadMap@IInterface +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclIntfSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclIntfSortedMap.KeyOfValue@TObject +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclIntfSortedMap.KeysCompare@IInterface@IInterface +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclIntfSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclIntfSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclIntfSortedMap.MapEquals@IJclIntfMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclIntfSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclIntfSortedMap.PutAll@IJclIntfMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclIntfSortedMap.PutValue@IInterface@TObject +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntfSortedMap.Remove@IInterface +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclIntfSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclIntfSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclIntfSortedMap.SubMap@IInterface@IInterface +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclIntfSortedMap.TailMap@IInterface +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclIntfSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclIntfSortedMap.ValuesCompare@TObject@TObject +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclAnsiStrSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclAnsiStrSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclAnsiStrSortedMap.OwnsValues +<copy TJclSortedMap.OwnsValues> +\ \ + + +@@TJclAnsiStrSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclAnsiStrSortedMap.BinarySearch@AnsiString +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclAnsiStrSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclAnsiStrSortedMap.ContainsKey@AnsiString +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclAnsiStrSortedMap.ContainsValue@TObject +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclAnsiStrSortedMap.Create@Integer@Boolean +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclAnsiStrSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclAnsiStrSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclAnsiStrSortedMap.Extract@AnsiString +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclAnsiStrSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclAnsiStrSortedMap.FreeKey@AnsiString +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclAnsiStrSortedMap.FreeValue@TObject +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclAnsiStrSortedMap.GetOwnsValues +<copy TJclSortedMap.GetOwnsValues> +\ \ + + +@@TJclAnsiStrSortedMap.GetValue@AnsiString +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclAnsiStrSortedMap.HeadMap@AnsiString +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclAnsiStrSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclAnsiStrSortedMap.KeyOfValue@TObject +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclAnsiStrSortedMap.KeysCompare@AnsiString@AnsiString +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclAnsiStrSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclAnsiStrSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclAnsiStrSortedMap.MapEquals@IJclAnsiStrMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclAnsiStrSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclAnsiStrSortedMap.PutAll@IJclAnsiStrMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclAnsiStrSortedMap.PutValue@AnsiString@TObject +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclAnsiStrSortedMap.Remove@AnsiString +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclAnsiStrSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclAnsiStrSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclAnsiStrSortedMap.SubMap@AnsiString@AnsiString +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclAnsiStrSortedMap.TailMap@AnsiString +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclAnsiStrSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclAnsiStrSortedMap.ValuesCompare@TObject@TObject +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclWideStrSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclWideStrSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclWideStrSortedMap.OwnsValues +<copy TJclSortedMap.OwnsValues> +\ \ + + +@@TJclWideStrSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclWideStrSortedMap.BinarySearch@WideString +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclWideStrSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclWideStrSortedMap.ContainsKey@WideString +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclWideStrSortedMap.ContainsValue@TObject +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclWideStrSortedMap.Create@Integer@Boolean +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclWideStrSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclWideStrSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclWideStrSortedMap.Extract@WideString +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclWideStrSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclWideStrSortedMap.FreeKey@WideString +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclWideStrSortedMap.FreeValue@TObject +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclWideStrSortedMap.GetOwnsValues +<copy TJclSortedMap.GetOwnsValues> +\ \ + + +@@TJclWideStrSortedMap.GetValue@WideString +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclWideStrSortedMap.HeadMap@WideString +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclWideStrSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclWideStrSortedMap.KeyOfValue@TObject +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclWideStrSortedMap.KeysCompare@WideString@WideString +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclWideStrSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclWideStrSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclWideStrSortedMap.MapEquals@IJclWideStrMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclWideStrSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclWideStrSortedMap.PutAll@IJclWideStrMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclWideStrSortedMap.PutValue@WideString@TObject +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclWideStrSortedMap.Remove@WideString +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclWideStrSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclWideStrSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclWideStrSortedMap.SubMap@WideString@WideString +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclWideStrSortedMap.TailMap@WideString +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclWideStrSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclWideStrSortedMap.ValuesCompare@TObject@TObject +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclUnicodeStrSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclUnicodeStrSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclUnicodeStrSortedMap.OwnsValues +<copy TJclSortedMap.OwnsValues> +\ \ + + +@@TJclUnicodeStrSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclUnicodeStrSortedMap.BinarySearch@UnicodeString +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclUnicodeStrSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclUnicodeStrSortedMap.ContainsKey@UnicodeString +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclUnicodeStrSortedMap.ContainsValue@TObject +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclUnicodeStrSortedMap.Create@Integer@Boolean +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclUnicodeStrSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclUnicodeStrSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclUnicodeStrSortedMap.Extract@UnicodeString +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclUnicodeStrSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclUnicodeStrSortedMap.FreeKey@UnicodeString +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclUnicodeStrSortedMap.FreeValue@TObject +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclUnicodeStrSortedMap.GetOwnsValues +<copy TJclSortedMap.GetOwnsValues> +\ \ + + +@@TJclUnicodeStrSortedMap.GetValue@UnicodeString +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclUnicodeStrSortedMap.HeadMap@UnicodeString +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclUnicodeStrSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclUnicodeStrSortedMap.KeyOfValue@TObject +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclUnicodeStrSortedMap.KeysCompare@UnicodeString@UnicodeString +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclUnicodeStrSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclUnicodeStrSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclUnicodeStrSortedMap.MapEquals@IJclUnicodeStrMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclUnicodeStrSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclUnicodeStrSortedMap.PutAll@IJclUnicodeStrMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclUnicodeStrSortedMap.PutValue@UnicodeString@TObject +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclUnicodeStrSortedMap.Remove@UnicodeString +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclUnicodeStrSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclUnicodeStrSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclUnicodeStrSortedMap.SubMap@UnicodeString@UnicodeString +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclUnicodeStrSortedMap.TailMap@UnicodeString +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclUnicodeStrSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclUnicodeStrSortedMap.ValuesCompare@TObject@TObject +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclSingleSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclSingleSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclSingleSortedMap.OwnsValues +<copy TJclSortedMap.OwnsValues> +\ \ + + +@@TJclSingleSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclSingleSortedMap.BinarySearch@Single +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclSingleSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclSingleSortedMap.ContainsKey@Single +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclSingleSortedMap.ContainsValue@TObject +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclSingleSortedMap.Create@Integer@Boolean +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclSingleSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclSingleSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclSingleSortedMap.Extract@Single +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclSingleSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclSingleSortedMap.FreeKey@Single +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclSingleSortedMap.FreeValue@TObject +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclSingleSortedMap.GetOwnsValues +<copy TJclSortedMap.GetOwnsValues> +\ \ + + +@@TJclSingleSortedMap.GetValue@Single +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclSingleSortedMap.HeadMap@Single +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclSingleSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclSingleSortedMap.KeyOfValue@TObject +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclSingleSortedMap.KeysCompare@Single@Single +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclSingleSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclSingleSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclSingleSortedMap.MapEquals@IJclSingleMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclSingleSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclSingleSortedMap.PutAll@IJclSingleMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclSingleSortedMap.PutValue@Single@TObject +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclSingleSortedMap.Remove@Single +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclSingleSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclSingleSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclSingleSortedMap.SubMap@Single@Single +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclSingleSortedMap.TailMap@Single +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclSingleSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclSingleSortedMap.ValuesCompare@TObject@TObject +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclDoubleSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclDoubleSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclDoubleSortedMap.OwnsValues +<copy TJclSortedMap.OwnsValues> +\ \ + + +@@TJclDoubleSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclDoubleSortedMap.BinarySearch@Double +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclDoubleSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclDoubleSortedMap.ContainsKey@Double +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclDoubleSortedMap.ContainsValue@TObject +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclDoubleSortedMap.Create@Integer@Boolean +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclDoubleSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclDoubleSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclDoubleSortedMap.Extract@Double +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclDoubleSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclDoubleSortedMap.FreeKey@Double +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclDoubleSortedMap.FreeValue@TObject +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclDoubleSortedMap.GetOwnsValues +<copy TJclSortedMap.GetOwnsValues> +\ \ + + +@@TJclDoubleSortedMap.GetValue@Double +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclDoubleSortedMap.HeadMap@Double +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclDoubleSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclDoubleSortedMap.KeyOfValue@TObject +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclDoubleSortedMap.KeysCompare@Double@Double +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclDoubleSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclDoubleSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclDoubleSortedMap.MapEquals@IJclDoubleMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclDoubleSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclDoubleSortedMap.PutAll@IJclDoubleMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclDoubleSortedMap.PutValue@Double@TObject +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclDoubleSortedMap.Remove@Double +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclDoubleSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclDoubleSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclDoubleSortedMap.SubMap@Double@Double +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclDoubleSortedMap.TailMap@Double +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclDoubleSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclDoubleSortedMap.ValuesCompare@TObject@TObject +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclExtendedSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclExtendedSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclExtendedSortedMap.OwnsValues +<copy TJclSortedMap.OwnsValues> +\ \ + + +@@TJclExtendedSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclExtendedSortedMap.BinarySearch@Extended +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclExtendedSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclExtendedSortedMap.ContainsKey@Extended +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclExtendedSortedMap.ContainsValue@TObject +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclExtendedSortedMap.Create@Integer@Boolean +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclExtendedSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclExtendedSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclExtendedSortedMap.Extract@Extended +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclExtendedSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclExtendedSortedMap.FreeKey@Extended +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclExtendedSortedMap.FreeValue@TObject +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclExtendedSortedMap.GetOwnsValues +<copy TJclSortedMap.GetOwnsValues> +\ \ + + +@@TJclExtendedSortedMap.GetValue@Extended +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclExtendedSortedMap.HeadMap@Extended +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclExtendedSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclExtendedSortedMap.KeyOfValue@TObject +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclExtendedSortedMap.KeysCompare@Extended@Extended +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclExtendedSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclExtendedSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclExtendedSortedMap.MapEquals@IJclExtendedMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclExtendedSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclExtendedSortedMap.PutAll@IJclExtendedMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclExtendedSortedMap.PutValue@Extended@TObject +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclExtendedSortedMap.Remove@Extended +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclExtendedSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclExtendedSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclExtendedSortedMap.SubMap@Extended@Extended +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclExtendedSortedMap.TailMap@Extended +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclExtendedSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclExtendedSortedMap.ValuesCompare@TObject@TObject +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclIntegerSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntegerSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclIntegerSortedMap.OwnsValues +<copy TJclSortedMap.OwnsValues> +\ \ + + +@@TJclIntegerSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntegerSortedMap.BinarySearch@Integer +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclIntegerSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclIntegerSortedMap.ContainsKey@Integer +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclIntegerSortedMap.ContainsValue@TObject +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclIntegerSortedMap.Create@Integer@Boolean +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclIntegerSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclIntegerSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclIntegerSortedMap.Extract@Integer +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclIntegerSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclIntegerSortedMap.FreeKey@Integer +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclIntegerSortedMap.FreeValue@TObject +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclIntegerSortedMap.GetOwnsValues +<copy TJclSortedMap.GetOwnsValues> +\ \ + + +@@TJclIntegerSortedMap.GetValue@Integer +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclIntegerSortedMap.HeadMap@Integer +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclIntegerSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclIntegerSortedMap.KeyOfValue@TObject +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclIntegerSortedMap.KeysCompare@Integer@Integer +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclIntegerSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclIntegerSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclIntegerSortedMap.MapEquals@IJclIntegerMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclIntegerSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclIntegerSortedMap.PutAll@IJclIntegerMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclIntegerSortedMap.PutValue@Integer@TObject +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclIntegerSortedMap.Remove@Integer +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclIntegerSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclIntegerSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclIntegerSortedMap.SubMap@Integer@Integer +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclIntegerSortedMap.TailMap@Integer +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclIntegerSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclIntegerSortedMap.ValuesCompare@TObject@TObject +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclCardinalSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclCardinalSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclCardinalSortedMap.OwnsValues +<copy TJclSortedMap.OwnsValues> +\ \ + + +@@TJclCardinalSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclCardinalSortedMap.BinarySearch@Cardinal +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclCardinalSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclCardinalSortedMap.ContainsKey@Cardinal +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclCardinalSortedMap.ContainsValue@TObject +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclCardinalSortedMap.Create@Integer@Boolean +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclCardinalSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclCardinalSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclCardinalSortedMap.Extract@Cardinal +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclCardinalSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclCardinalSortedMap.FreeKey@Cardinal +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclCardinalSortedMap.FreeValue@TObject +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclCardinalSortedMap.GetOwnsValues +<copy TJclSortedMap.GetOwnsValues> +\ \ + + +@@TJclCardinalSortedMap.GetValue@Cardinal +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclCardinalSortedMap.HeadMap@Cardinal +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclCardinalSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclCardinalSortedMap.KeyOfValue@TObject +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclCardinalSortedMap.KeysCompare@Cardinal@Cardinal +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclCardinalSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclCardinalSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclCardinalSortedMap.MapEquals@IJclCardinalMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclCardinalSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclCardinalSortedMap.PutAll@IJclCardinalMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclCardinalSortedMap.PutValue@Cardinal@TObject +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclCardinalSortedMap.Remove@Cardinal +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclCardinalSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclCardinalSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclCardinalSortedMap.SubMap@Cardinal@Cardinal +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclCardinalSortedMap.TailMap@Cardinal +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclCardinalSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclCardinalSortedMap.ValuesCompare@TObject@TObject +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclInt64SortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclInt64SortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclInt64SortedMap.OwnsValues +<copy TJclSortedMap.OwnsValues> +\ \ + + +@@TJclInt64SortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclInt64SortedMap.BinarySearch@Int64 +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclInt64SortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclInt64SortedMap.ContainsKey@Int64 +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclInt64SortedMap.ContainsValue@TObject +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclInt64SortedMap.Create@Integer@Boolean +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclInt64SortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclInt64SortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclInt64SortedMap.Extract@Int64 +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclInt64SortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclInt64SortedMap.FreeKey@Int64 +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclInt64SortedMap.FreeValue@TObject +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclInt64SortedMap.GetOwnsValues +<copy TJclSortedMap.GetOwnsValues> +\ \ + + +@@TJclInt64SortedMap.GetValue@Int64 +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclInt64SortedMap.HeadMap@Int64 +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclInt64SortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclInt64SortedMap.KeyOfValue@TObject +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclInt64SortedMap.KeysCompare@Int64@Int64 +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclInt64SortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclInt64SortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclInt64SortedMap.MapEquals@IJclInt64Map +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclInt64SortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclInt64SortedMap.PutAll@IJclInt64Map +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclInt64SortedMap.PutValue@Int64@TObject +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclInt64SortedMap.Remove@Int64 +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclInt64SortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclInt64SortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclInt64SortedMap.SubMap@Int64@Int64 +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclInt64SortedMap.TailMap@Int64 +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclInt64SortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclInt64SortedMap.ValuesCompare@TObject@TObject +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +@@TJclPtrSortedMap +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_TJclPtrSortedMap +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + + + +@@TJclPtrSortedMap.OwnsValues +<copy TJclSortedMap.OwnsValues> +\ \ + + +@@TJclPtrSortedMap.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclPtrSortedMap.BinarySearch@Pointer +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@TJclPtrSortedMap.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@TJclPtrSortedMap.ContainsKey@Pointer +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@TJclPtrSortedMap.ContainsValue@TObject +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@TJclPtrSortedMap.Create@Integer@Boolean +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@TJclPtrSortedMap.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@TJclPtrSortedMap.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@TJclPtrSortedMap.Extract@Pointer +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@TJclPtrSortedMap.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@TJclPtrSortedMap.FreeKey@Pointer +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@TJclPtrSortedMap.FreeValue@TObject +<copy TJclSortedMap.FreeValue@TObject> +\ \ + + + +@@TJclPtrSortedMap.GetOwnsValues +<copy TJclSortedMap.GetOwnsValues> +\ \ + + +@@TJclPtrSortedMap.GetValue@Pointer +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@TJclPtrSortedMap.HeadMap@Pointer +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@TJclPtrSortedMap.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@TJclPtrSortedMap.KeyOfValue@TObject +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@TJclPtrSortedMap.KeysCompare@Pointer@Pointer +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@TJclPtrSortedMap.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@TJclPtrSortedMap.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@TJclPtrSortedMap.MapEquals@IJclPtrMap +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@TJclPtrSortedMap.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@TJclPtrSortedMap.PutAll@IJclPtrMap +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@TJclPtrSortedMap.PutValue@Pointer@TObject +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@TJclPtrSortedMap.Remove@Pointer +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@TJclPtrSortedMap.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@TJclPtrSortedMap.Size +<copy TJclSortedMap.Size> +\ \ + +@@TJclPtrSortedMap.SubMap@Pointer@Pointer +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@TJclPtrSortedMap.TailMap@Pointer +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@TJclPtrSortedMap.Values +<copy TJclSortedMap.Values> +\ \ + +@@TJclPtrSortedMap.ValuesCompare@TObject@TObject +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ + + +@@TJclIntfStack +<copy TJclStack> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfStack +<copy !!MEMBEROVERVIEW_TJclStack> +\ \ + +@@TJclIntfStack.AssignDataTo@TJclAbstractContainerBase +<copy TJclStack.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfStack.Clear +<copy TJclStack.Clear> +\ \ + +@@TJclIntfStack.Contains@IInterface +<copy TJclStack.Contains@TObject> +\ \ + +@@TJclIntfStack.Create@Integer +<copy TJclStack.Create@Integer@Boolean> +\ \ + +@@TJclIntfStack.CreateEmptyContainer +<copy TJclStack.CreateEmptyContainer> +\ \ + +@@TJclIntfStack.Destroy +<copy TJclStack.Destroy> +\ \ + +@@TJclIntfStack.Empty +<copy TJclStack.Empty> +\ \ + +@@TJclIntfStack.Peek +<copy TJclStack.Peek> +\ \ + +@@TJclIntfStack.Pop +<copy TJclStack.Pop> +\ \ + +@@TJclIntfStack.Push@IInterface +<copy TJclStack.Push@TObject> +\ \ + +@@TJclIntfStack.SetCapacity@Integer +<copy TJclStack.SetCapacity@Integer> +\ \ + +@@TJclIntfStack.Size +<copy TJclStack.Size> +\ \ +@@TJclAnsiStrStack +<copy TJclStack> +\ \ + +@@!!MEMBEROVERVIEW_TJclAnsiStrStack +<copy !!MEMBEROVERVIEW_TJclStack> +\ \ + +@@TJclAnsiStrStack.AssignDataTo@TJclAbstractContainerBase +<copy TJclStack.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclAnsiStrStack.Clear +<copy TJclStack.Clear> +\ \ + +@@TJclAnsiStrStack.Contains@AnsiString +<copy TJclStack.Contains@TObject> +\ \ + +@@TJclAnsiStrStack.Create@Integer +<copy TJclStack.Create@Integer@Boolean> +\ \ + +@@TJclAnsiStrStack.CreateEmptyContainer +<copy TJclStack.CreateEmptyContainer> +\ \ + +@@TJclAnsiStrStack.Destroy +<copy TJclStack.Destroy> +\ \ + +@@TJclAnsiStrStack.Empty +<copy TJclStack.Empty> +\ \ + +@@TJclAnsiStrStack.Peek +<copy TJclStack.Peek> +\ \ + +@@TJclAnsiStrStack.Pop +<copy TJclStack.Pop> +\ \ + +@@TJclAnsiStrStack.Push@AnsiString +<copy TJclStack.Push@TObject> +\ \ + +@@TJclAnsiStrStack.SetCapacity@Integer +<copy TJclStack.SetCapacity@Integer> +\ \ + +@@TJclAnsiStrStack.Size +<copy TJclStack.Size> +\ \ +@@TJclWideStrStack +<copy TJclStack> +\ \ + +@@!!MEMBEROVERVIEW_TJclWideStrStack +<copy !!MEMBEROVERVIEW_TJclStack> +\ \ + +@@TJclWideStrStack.AssignDataTo@TJclAbstractContainerBase +<copy TJclStack.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclWideStrStack.Clear +<copy TJclStack.Clear> +\ \ + +@@TJclWideStrStack.Contains@WideString +<copy TJclStack.Contains@TObject> +\ \ + +@@TJclWideStrStack.Create@Integer +<copy TJclStack.Create@Integer@Boolean> +\ \ + +@@TJclWideStrStack.CreateEmptyContainer +<copy TJclStack.CreateEmptyContainer> +\ \ + +@@TJclWideStrStack.Destroy +<copy TJclStack.Destroy> +\ \ + +@@TJclWideStrStack.Empty +<copy TJclStack.Empty> +\ \ + +@@TJclWideStrStack.Peek +<copy TJclStack.Peek> +\ \ + +@@TJclWideStrStack.Pop +<copy TJclStack.Pop> +\ \ + +@@TJclWideStrStack.Push@WideString +<copy TJclStack.Push@TObject> +\ \ + +@@TJclWideStrStack.SetCapacity@Integer +<copy TJclStack.SetCapacity@Integer> +\ \ + +@@TJclWideStrStack.Size +<copy TJclStack.Size> +\ \ +@@TJclUnicodeStrStack +<copy TJclStack> +\ \ + +@@!!MEMBEROVERVIEW_TJclUnicodeStrStack +<copy !!MEMBEROVERVIEW_TJclStack> +\ \ + +@@TJclUnicodeStrStack.AssignDataTo@TJclAbstractContainerBase +<copy TJclStack.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclUnicodeStrStack.Clear +<copy TJclStack.Clear> +\ \ + +@@TJclUnicodeStrStack.Contains@UnicodeString +<copy TJclStack.Contains@TObject> +\ \ + +@@TJclUnicodeStrStack.Create@Integer +<copy TJclStack.Create@Integer@Boolean> +\ \ + +@@TJclUnicodeStrStack.CreateEmptyContainer +<copy TJclStack.CreateEmptyContainer> +\ \ + +@@TJclUnicodeStrStack.Destroy +<copy TJclStack.Destroy> +\ \ + +@@TJclUnicodeStrStack.Empty +<copy TJclStack.Empty> +\ \ + +@@TJclUnicodeStrStack.Peek +<copy TJclStack.Peek> +\ \ + +@@TJclUnicodeStrStack.Pop +<copy TJclStack.Pop> +\ \ + +@@TJclUnicodeStrStack.Push@UnicodeString +<copy TJclStack.Push@TObject> +\ \ + +@@TJclUnicodeStrStack.SetCapacity@Integer +<copy TJclStack.SetCapacity@Integer> +\ \ + +@@TJclUnicodeStrStack.Size +<copy TJclStack.Size> +\ \ +@@TJclSingleStack +<copy TJclStack> +\ \ + +@@!!MEMBEROVERVIEW_TJclSingleStack +<copy !!MEMBEROVERVIEW_TJclStack> +\ \ + +@@TJclSingleStack.AssignDataTo@TJclAbstractContainerBase +<copy TJclStack.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclSingleStack.Clear +<copy TJclStack.Clear> +\ \ + +@@TJclSingleStack.Contains@Single +<copy TJclStack.Contains@TObject> +\ \ + +@@TJclSingleStack.Create@Integer +<copy TJclStack.Create@Integer@Boolean> +\ \ + +@@TJclSingleStack.CreateEmptyContainer +<copy TJclStack.CreateEmptyContainer> +\ \ + +@@TJclSingleStack.Destroy +<copy TJclStack.Destroy> +\ \ + +@@TJclSingleStack.Empty +<copy TJclStack.Empty> +\ \ + +@@TJclSingleStack.Peek +<copy TJclStack.Peek> +\ \ + +@@TJclSingleStack.Pop +<copy TJclStack.Pop> +\ \ + +@@TJclSingleStack.Push@Single +<copy TJclStack.Push@TObject> +\ \ + +@@TJclSingleStack.SetCapacity@Integer +<copy TJclStack.SetCapacity@Integer> +\ \ + +@@TJclSingleStack.Size +<copy TJclStack.Size> +\ \ +@@TJclDoubleStack +<copy TJclStack> +\ \ + +@@!!MEMBEROVERVIEW_TJclDoubleStack +<copy !!MEMBEROVERVIEW_TJclStack> +\ \ + +@@TJclDoubleStack.AssignDataTo@TJclAbstractContainerBase +<copy TJclStack.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclDoubleStack.Clear +<copy TJclStack.Clear> +\ \ + +@@TJclDoubleStack.Contains@Double +<copy TJclStack.Contains@TObject> +\ \ + +@@TJclDoubleStack.Create@Integer +<copy TJclStack.Create@Integer@Boolean> +\ \ + +@@TJclDoubleStack.CreateEmptyContainer +<copy TJclStack.CreateEmptyContainer> +\ \ + +@@TJclDoubleStack.Destroy +<copy TJclStack.Destroy> +\ \ + +@@TJclDoubleStack.Empty +<copy TJclStack.Empty> +\ \ + +@@TJclDoubleStack.Peek +<copy TJclStack.Peek> +\ \ + +@@TJclDoubleStack.Pop +<copy TJclStack.Pop> +\ \ + +@@TJclDoubleStack.Push@Double +<copy TJclStack.Push@TObject> +\ \ + +@@TJclDoubleStack.SetCapacity@Integer +<copy TJclStack.SetCapacity@Integer> +\ \ + +@@TJclDoubleStack.Size +<copy TJclStack.Size> +\ \ +@@TJclExtendedStack +<copy TJclStack> +\ \ + +@@!!MEMBEROVERVIEW_TJclExtendedStack +<copy !!MEMBEROVERVIEW_TJclStack> +\ \ + +@@TJclExtendedStack.AssignDataTo@TJclAbstractContainerBase +<copy TJclStack.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclExtendedStack.Clear +<copy TJclStack.Clear> +\ \ + +@@TJclExtendedStack.Contains@Extended +<copy TJclStack.Contains@TObject> +\ \ + +@@TJclExtendedStack.Create@Integer +<copy TJclStack.Create@Integer@Boolean> +\ \ + +@@TJclExtendedStack.CreateEmptyContainer +<copy TJclStack.CreateEmptyContainer> +\ \ + +@@TJclExtendedStack.Destroy +<copy TJclStack.Destroy> +\ \ + +@@TJclExtendedStack.Empty +<copy TJclStack.Empty> +\ \ + +@@TJclExtendedStack.Peek +<copy TJclStack.Peek> +\ \ + +@@TJclExtendedStack.Pop +<copy TJclStack.Pop> +\ \ + +@@TJclExtendedStack.Push@Extended +<copy TJclStack.Push@TObject> +\ \ + +@@TJclExtendedStack.SetCapacity@Integer +<copy TJclStack.SetCapacity@Integer> +\ \ + +@@TJclExtendedStack.Size +<copy TJclStack.Size> +\ \ +@@TJclIntegerStack +<copy TJclStack> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntegerStack +<copy !!MEMBEROVERVIEW_TJclStack> +\ \ + +@@TJclIntegerStack.AssignDataTo@TJclAbstractContainerBase +<copy TJclStack.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntegerStack.Clear +<copy TJclStack.Clear> +\ \ + +@@TJclIntegerStack.Contains@Integer +<copy TJclStack.Contains@TObject> +\ \ + +@@TJclIntegerStack.Create@Integer +<copy TJclStack.Create@Integer@Boolean> +\ \ + +@@TJclIntegerStack.CreateEmptyContainer +<copy TJclStack.CreateEmptyContainer> +\ \ + +@@TJclIntegerStack.Destroy +<copy TJclStack.Destroy> +\ \ + +@@TJclIntegerStack.Empty +<copy TJclStack.Empty> +\ \ + +@@TJclIntegerStack.Peek +<copy TJclStack.Peek> +\ \ + +@@TJclIntegerStack.Pop +<copy TJclStack.Pop> +\ \ + +@@TJclIntegerStack.Push@Integer +<copy TJclStack.Push@TObject> +\ \ + +@@TJclIntegerStack.SetCapacity@Integer +<copy TJclStack.SetCapacity@Integer> +\ \ + +@@TJclIntegerStack.Size +<copy TJclStack.Size> +\ \ +@@TJclCardinalStack +<copy TJclStack> +\ \ + +@@!!MEMBEROVERVIEW_TJclCardinalStack +<copy !!MEMBEROVERVIEW_TJclStack> +\ \ + +@@TJclCardinalStack.AssignDataTo@TJclAbstractContainerBase +<copy TJclStack.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclCardinalStack.Clear +<copy TJclStack.Clear> +\ \ + +@@TJclCardinalStack.Contains@Cardinal +<copy TJclStack.Contains@TObject> +\ \ + +@@TJclCardinalStack.Create@Integer +<copy TJclStack.Create@Integer@Boolean> +\ \ + +@@TJclCardinalStack.CreateEmptyContainer +<copy TJclStack.CreateEmptyContainer> +\ \ + +@@TJclCardinalStack.Destroy +<copy TJclStack.Destroy> +\ \ + +@@TJclCardinalStack.Empty +<copy TJclStack.Empty> +\ \ + +@@TJclCardinalStack.Peek +<copy TJclStack.Peek> +\ \ + +@@TJclCardinalStack.Pop +<copy TJclStack.Pop> +\ \ + +@@TJclCardinalStack.Push@Cardinal +<copy TJclStack.Push@TObject> +\ \ + +@@TJclCardinalStack.SetCapacity@Integer +<copy TJclStack.SetCapacity@Integer> +\ \ + +@@TJclCardinalStack.Size +<copy TJclStack.Size> +\ \ +@@TJclInt64Stack +<copy TJclStack> +\ \ + +@@!!MEMBEROVERVIEW_TJclInt64Stack +<copy !!MEMBEROVERVIEW_TJclStack> +\ \ + +@@TJclInt64Stack.AssignDataTo@TJclAbstractContainerBase +<copy TJclStack.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclInt64Stack.Clear +<copy TJclStack.Clear> +\ \ + +@@TJclInt64Stack.Contains@Int64 +<copy TJclStack.Contains@TObject> +\ \ + +@@TJclInt64Stack.Create@Integer +<copy TJclStack.Create@Integer@Boolean> +\ \ + +@@TJclInt64Stack.CreateEmptyContainer +<copy TJclStack.CreateEmptyContainer> +\ \ + +@@TJclInt64Stack.Destroy +<copy TJclStack.Destroy> +\ \ + +@@TJclInt64Stack.Empty +<copy TJclStack.Empty> +\ \ + +@@TJclInt64Stack.Peek +<copy TJclStack.Peek> +\ \ + +@@TJclInt64Stack.Pop +<copy TJclStack.Pop> +\ \ + +@@TJclInt64Stack.Push@Int64 +<copy TJclStack.Push@TObject> +\ \ + +@@TJclInt64Stack.SetCapacity@Integer +<copy TJclStack.SetCapacity@Integer> +\ \ + +@@TJclInt64Stack.Size +<copy TJclStack.Size> +\ \ +@@TJclPtrStack +<copy TJclStack> +\ \ + +@@!!MEMBEROVERVIEW_TJclPtrStack +<copy !!MEMBEROVERVIEW_TJclStack> +\ \ + +@@TJclPtrStack.AssignDataTo@TJclAbstractContainerBase +<copy TJclStack.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclPtrStack.Clear +<copy TJclStack.Clear> +\ \ + +@@TJclPtrStack.Contains@Pointer +<copy TJclStack.Contains@TObject> +\ \ + +@@TJclPtrStack.Create@Integer +<copy TJclStack.Create@Integer@Boolean> +\ \ + +@@TJclPtrStack.CreateEmptyContainer +<copy TJclStack.CreateEmptyContainer> +\ \ + +@@TJclPtrStack.Destroy +<copy TJclStack.Destroy> +\ \ + +@@TJclPtrStack.Empty +<copy TJclStack.Empty> +\ \ + +@@TJclPtrStack.Peek +<copy TJclStack.Peek> +\ \ + +@@TJclPtrStack.Pop +<copy TJclStack.Pop> +\ \ + +@@TJclPtrStack.Push@Pointer +<copy TJclStack.Push@TObject> +\ \ + +@@TJclPtrStack.SetCapacity@Integer +<copy TJclStack.SetCapacity@Integer> +\ \ + +@@TJclPtrStack.Size +<copy TJclStack.Size> +\ \ + + +@@TJclIntfTreeNode +<copy TJclTreeNode> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfTreeNode +<copy !!MEMBEROVERVIEW_TJclTreeNode> +\ \ + +@@TJclIntfTreeNode.Children +<copy TJclTreeNode.Children> +\ \ + +@@TJclIntfTreeNode.ChildrenCount +<copy TJclTreeNode.ChildrenCount> +\ \ + +@@TJclIntfTreeNode.Parent +<copy TJclTreeNode.Parent> +\ \ + +@@TJclIntfTreeNode.Value +<copy TJclTreeNode.Value> +\ \ + +@@TJclIntfTreeNode.IndexOfChild@TJclIntfTreeNode +<copy TJclTreeNode.IndexOfChild@TJclTreeNode> +\ \ + +@@TJclIntfTreeNode.IndexOfValue@IInterface@IJclIntfEqualityComparer +<copy TJclTreeNode.IndexOfValue@TObject@IJclEqualityComparer> +\ \ +@@TJclAnsiStrTreeNode +<copy TJclTreeNode> +\ \ + +@@!!MEMBEROVERVIEW_TJclAnsiStrTreeNode +<copy !!MEMBEROVERVIEW_TJclTreeNode> +\ \ + +@@TJclAnsiStrTreeNode.Children +<copy TJclTreeNode.Children> +\ \ + +@@TJclAnsiStrTreeNode.ChildrenCount +<copy TJclTreeNode.ChildrenCount> +\ \ + +@@TJclAnsiStrTreeNode.Parent +<copy TJclTreeNode.Parent> +\ \ + +@@TJclAnsiStrTreeNode.Value +<copy TJclTreeNode.Value> +\ \ + +@@TJclAnsiStrTreeNode.IndexOfChild@TJclAnsiStrTreeNode +<copy TJclTreeNode.IndexOfChild@TJclTreeNode> +\ \ + +@@TJclAnsiStrTreeNode.IndexOfValue@AnsiString@IJclAnsiStrEqualityComparer +<copy TJclTreeNode.IndexOfValue@TObject@IJclEqualityComparer> +\ \ +@@TJclWideStrTreeNode +<copy TJclTreeNode> +\ \ + +@@!!MEMBEROVERVIEW_TJclWideStrTreeNode +<copy !!MEMBEROVERVIEW_TJclTreeNode> +\ \ + +@@TJclWideStrTreeNode.Children +<copy TJclTreeNode.Children> +\ \ + +@@TJclWideStrTreeNode.ChildrenCount +<copy TJclTreeNode.ChildrenCount> +\ \ + +@@TJclWideStrTreeNode.Parent +<copy TJclTreeNode.Parent> +\ \ + +@@TJclWideStrTreeNode.Value +<copy TJclTreeNode.Value> +\ \ + +@@TJclWideStrTreeNode.IndexOfChild@TJclWideStrTreeNode +<copy TJclTreeNode.IndexOfChild@TJclTreeNode> +\ \ + +@@TJclWideStrTreeNode.IndexOfValue@WideString@IJclWideStrEqualityComparer +<copy TJclTreeNode.IndexOfValue@TObject@IJclEqualityComparer> +\ \ +@@TJclUnicodeStrTreeNode +<copy TJclTreeNode> +\ \ + +@@!!MEMBEROVERVIEW_TJclUnicodeStrTreeNode +<copy !!MEMBEROVERVIEW_TJclTreeNode> +\ \ + +@@TJclUnicodeStrTreeNode.Children +<copy TJclTreeNode.Children> +\ \ + +@@TJclUnicodeStrTreeNode.ChildrenCount +<copy TJclTreeNode.ChildrenCount> +\ \ + +@@TJclUnicodeStrTreeNode.Parent +<copy TJclTreeNode.Parent> +\ \ + +@@TJclUnicodeStrTreeNode.Value +<copy TJclTreeNode.Value> +\ \ + +@@TJclUnicodeStrTreeNode.IndexOfChild@TJclUnicodeStrTreeNode +<copy TJclTreeNode.IndexOfChild@TJclTreeNode> +\ \ + +@@TJclUnicodeStrTreeNode.IndexOfValue@UnicodeString@IJclUnicodeStrEqualityComparer +<copy TJclTreeNode.IndexOfValue@TObject@IJclEqualityComparer> +\ \ +@@TJclSingleTreeNode +<copy TJclTreeNode> +\ \ + +@@!!MEMBEROVERVIEW_TJclSingleTreeNode +<copy !!MEMBEROVERVIEW_TJclTreeNode> +\ \ + +@@TJclSingleTreeNode.Children +<copy TJclTreeNode.Children> +\ \ + +@@TJclSingleTreeNode.ChildrenCount +<copy TJclTreeNode.ChildrenCount> +\ \ + +@@TJclSingleTreeNode.Parent +<copy TJclTreeNode.Parent> +\ \ + +@@TJclSingleTreeNode.Value +<copy TJclTreeNode.Value> +\ \ + +@@TJclSingleTreeNode.IndexOfChild@TJclSingleTreeNode +<copy TJclTreeNode.IndexOfChild@TJclTreeNode> +\ \ + +@@TJclSingleTreeNode.IndexOfValue@Single@IJclSingleEqualityComparer +<copy TJclTreeNode.IndexOfValue@TObject@IJclEqualityComparer> +\ \ +@@TJclDoubleTreeNode +<copy TJclTreeNode> +\ \ + +@@!!MEMBEROVERVIEW_TJclDoubleTreeNode +<copy !!MEMBEROVERVIEW_TJclTreeNode> +\ \ + +@@TJclDoubleTreeNode.Children +<copy TJclTreeNode.Children> +\ \ + +@@TJclDoubleTreeNode.ChildrenCount +<copy TJclTreeNode.ChildrenCount> +\ \ + +@@TJclDoubleTreeNode.Parent +<copy TJclTreeNode.Parent> +\ \ + +@@TJclDoubleTreeNode.Value +<copy TJclTreeNode.Value> +\ \ + +@@TJclDoubleTreeNode.IndexOfChild@TJclDoubleTreeNode +<copy TJclTreeNode.IndexOfChild@TJclTreeNode> +\ \ + +@@TJclDoubleTreeNode.IndexOfValue@Double@IJclDoubleEqualityComparer +<copy TJclTreeNode.IndexOfValue@TObject@IJclEqualityComparer> +\ \ +@@TJclExtendedTreeNode +<copy TJclTreeNode> +\ \ + +@@!!MEMBEROVERVIEW_TJclExtendedTreeNode +<copy !!MEMBEROVERVIEW_TJclTreeNode> +\ \ + +@@TJclExtendedTreeNode.Children +<copy TJclTreeNode.Children> +\ \ + +@@TJclExtendedTreeNode.ChildrenCount +<copy TJclTreeNode.ChildrenCount> +\ \ + +@@TJclExtendedTreeNode.Parent +<copy TJclTreeNode.Parent> +\ \ + +@@TJclExtendedTreeNode.Value +<copy TJclTreeNode.Value> +\ \ + +@@TJclExtendedTreeNode.IndexOfChild@TJclExtendedTreeNode +<copy TJclTreeNode.IndexOfChild@TJclTreeNode> +\ \ + +@@TJclExtendedTreeNode.IndexOfValue@Extended@IJclExtendedEqualityComparer +<copy TJclTreeNode.IndexOfValue@TObject@IJclEqualityComparer> +\ \ +@@TJclIntegerTreeNode +<copy TJclTreeNode> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntegerTreeNode +<copy !!MEMBEROVERVIEW_TJclTreeNode> +\ \ + +@@TJclIntegerTreeNode.Children +<copy TJclTreeNode.Children> +\ \ + +@@TJclIntegerTreeNode.ChildrenCount +<copy TJclTreeNode.ChildrenCount> +\ \ + +@@TJclIntegerTreeNode.Parent +<copy TJclTreeNode.Parent> +\ \ + +@@TJclIntegerTreeNode.Value +<copy TJclTreeNode.Value> +\ \ + +@@TJclIntegerTreeNode.IndexOfChild@TJclIntegerTreeNode +<copy TJclTreeNode.IndexOfChild@TJclTreeNode> +\ \ + +@@TJclIntegerTreeNode.IndexOfValue@Integer@IJclIntegerEqualityComparer +<copy TJclTreeNode.IndexOfValue@TObject@IJclEqualityComparer> +\ \ +@@TJclCardinalTreeNode +<copy TJclTreeNode> +\ \ + +@@!!MEMBEROVERVIEW_TJclCardinalTreeNode +<copy !!MEMBEROVERVIEW_TJclTreeNode> +\ \ + +@@TJclCardinalTreeNode.Children +<copy TJclTreeNode.Children> +\ \ + +@@TJclCardinalTreeNode.ChildrenCount +<copy TJclTreeNode.ChildrenCount> +\ \ + +@@TJclCardinalTreeNode.Parent +<copy TJclTreeNode.Parent> +\ \ + +@@TJclCardinalTreeNode.Value +<copy TJclTreeNode.Value> +\ \ + +@@TJclCardinalTreeNode.IndexOfChild@TJclCardinalTreeNode +<copy TJclTreeNode.IndexOfChild@TJclTreeNode> +\ \ + +@@TJclCardinalTreeNode.IndexOfValue@Cardinal@IJclCardinalEqualityComparer +<copy TJclTreeNode.IndexOfValue@TObject@IJclEqualityComparer> +\ \ +@@TJclInt64TreeNode +<copy TJclTreeNode> +\ \ + +@@!!MEMBEROVERVIEW_TJclInt64TreeNode +<copy !!MEMBEROVERVIEW_TJclTreeNode> +\ \ + +@@TJclInt64TreeNode.Children +<copy TJclTreeNode.Children> +\ \ + +@@TJclInt64TreeNode.ChildrenCount +<copy TJclTreeNode.ChildrenCount> +\ \ + +@@TJclInt64TreeNode.Parent +<copy TJclTreeNode.Parent> +\ \ + +@@TJclInt64TreeNode.Value +<copy TJclTreeNode.Value> +\ \ + +@@TJclInt64TreeNode.IndexOfChild@TJclInt64TreeNode +<copy TJclTreeNode.IndexOfChild@TJclTreeNode> +\ \ + +@@TJclInt64TreeNode.IndexOfValue@Int64@IJclInt64EqualityComparer +<copy TJclTreeNode.IndexOfValue@TObject@IJclEqualityComparer> +\ \ +@@TJclPtrTreeNode +<copy TJclTreeNode> +\ \ + +@@!!MEMBEROVERVIEW_TJclPtrTreeNode +<copy !!MEMBEROVERVIEW_TJclTreeNode> +\ \ + +@@TJclPtrTreeNode.Children +<copy TJclTreeNode.Children> +\ \ + +@@TJclPtrTreeNode.ChildrenCount +<copy TJclTreeNode.ChildrenCount> +\ \ + +@@TJclPtrTreeNode.Parent +<copy TJclTreeNode.Parent> +\ \ + +@@TJclPtrTreeNode.Value +<copy TJclTreeNode.Value> +\ \ + +@@TJclPtrTreeNode.IndexOfChild@TJclPtrTreeNode +<copy TJclTreeNode.IndexOfChild@TJclTreeNode> +\ \ + +@@TJclPtrTreeNode.IndexOfValue@Pointer@IJclPtrEqualityComparer +<copy TJclTreeNode.IndexOfValue@TObject@IJclEqualityComparer> +\ \ + + +@@TJclIntfTree +<copy TJclTree> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfTree +<copy !!MEMBEROVERVIEW_TJclTree> +\ \ + +@@TJclIntfTree.Root +<copy TJclTree.Root> +\ \ + +@@TJclIntfTree.TraverseOrder +<copy TJclTree.TraverseOrder> +\ \ + +@@TJclIntfTree.Add@IInterface +<copy TJclTree.Add@TObject> +\ \ + +@@TJclIntfTree.AddAll@IJclIntfCollection +<copy TJclTree.AddAll@IJclCollection> +\ \ + +@@TJclIntfTree.AssignDataTo@TJclAbstractContainerBase +<copy TJclTree.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfTree.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclTree.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfTree.Clear +<copy TJclTree.Clear> +\ \ + +@@TJclIntfTree.CloneNode@TJclIntfTreeNode@TJclIntfTreeNode +<copy TJclTree.CloneNode@TJclTreeNode@TJclTreeNode> +\ \ + +@@TJclIntfTree.CollectionEquals@IJclIntfCollection +<copy TJclTree.CollectionEquals@IJclCollection> +\ \ + +@@TJclIntfTree.Contains@IInterface +<copy TJclTree.Contains@TObject> +\ \ + +@@TJclIntfTree.ContainsAll@IJclIntfCollection +<copy TJclTree.ContainsAll@IJclCollection> +\ \ + +@@TJclIntfTree.Create +<copy TJclTree.Create@Boolean> +\ \ + +@@TJclIntfTree.CreateEmptyContainer +<copy TJclTree.CreateEmptyContainer> +\ \ + +@@TJclIntfTree.Destroy +<copy TJclTree.Destroy> +\ \ + +@@TJclIntfTree.Extract@IInterface +<copy TJclTree.Extract@TObject> +\ \ + +@@TJclIntfTree.ExtractAll@IJclIntfCollection +<copy TJclTree.ExtractAll@IJclCollection> +\ \ + +@@TJclIntfTree.ExtractNode@TJclIntfTreeNode +<copy TJclTree.ExtractNode@TJclTreeNode> +\ \ + +@@TJclIntfTree.First +<copy TJclTree.First> +\ \ + +@@TJclIntfTree.GetEnumerator +<copy TJclTree.GetEnumerator> +\ \ + +@@TJclIntfTree.GetRoot +<copy TJclTree.GetRoot> +\ \ + +@@TJclIntfTree.GetTraverseOrder +<copy TJclTree.GetTraverseOrder> +\ \ + +@@TJclIntfTree.IsEmpty +<copy TJclTree.IsEmpty> +\ \ + +@@TJclIntfTree.Last +<copy TJclTree.Last> +\ \ + +@@TJclIntfTree.NodeContains@TJclIntfTreeNode@IInterface +<copy TJclTree.NodeContains@TJclTreeNode@TObject> +\ \ + +@@TJclIntfTree.Pack +<copy TJclTree.Pack> +\ \ + +@@TJclIntfTree.PackNode@TJclIntfTreeNode +<copy TJclTree.PackNode@TJclTreeNode> +\ \ + +@@TJclIntfTree.Remove@IInterface +<copy TJclTree.Remove@TObject> +\ \ + +@@TJclIntfTree.RemoveAll@IJclIntfCollection +<copy TJclTree.RemoveAll@IJclCollection> +\ \ + +@@TJclIntfTree.RemoveNode@TJclIntfTreeNode +<copy TJclTree.RemoveNode@TJclTreeNode> +\ \ + +@@TJclIntfTree.RetainAll@IJclIntfCollection +<copy TJclTree.RetainAll@IJclCollection> +\ \ + +@@TJclIntfTree.SetCapacity@Integer +<copy TJclTree.SetCapacity@Integer> +\ \ + +@@TJclIntfTree.SetTraverseOrder@TJclTraverseOrder +<copy TJclTree.SetTraverseOrder@TJclTraverseOrder> +\ \ + +@@TJclIntfTree.Size +<copy TJclTree.Size> +\ \ +@@TJclAnsiStrTree +<copy TJclTree> +\ \ + +@@!!MEMBEROVERVIEW_TJclAnsiStrTree +<copy !!MEMBEROVERVIEW_TJclTree> +\ \ + +@@TJclAnsiStrTree.Root +<copy TJclTree.Root> +\ \ + +@@TJclAnsiStrTree.TraverseOrder +<copy TJclTree.TraverseOrder> +\ \ + +@@TJclAnsiStrTree.Add@AnsiString +<copy TJclTree.Add@TObject> +\ \ + +@@TJclAnsiStrTree.AddAll@IJclAnsiStrCollection +<copy TJclTree.AddAll@IJclCollection> +\ \ + +@@TJclAnsiStrTree.AssignDataTo@TJclAbstractContainerBase +<copy TJclTree.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclAnsiStrTree.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclTree.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclAnsiStrTree.Clear +<copy TJclTree.Clear> +\ \ + +@@TJclAnsiStrTree.CloneNode@TJclAnsiStrTreeNode@TJclAnsiStrTreeNode +<copy TJclTree.CloneNode@TJclTreeNode@TJclTreeNode> +\ \ + +@@TJclAnsiStrTree.CollectionEquals@IJclAnsiStrCollection +<copy TJclTree.CollectionEquals@IJclCollection> +\ \ + +@@TJclAnsiStrTree.Contains@AnsiString +<copy TJclTree.Contains@TObject> +\ \ + +@@TJclAnsiStrTree.ContainsAll@IJclAnsiStrCollection +<copy TJclTree.ContainsAll@IJclCollection> +\ \ + +@@TJclAnsiStrTree.Create +<copy TJclTree.Create@Boolean> +\ \ + +@@TJclAnsiStrTree.CreateEmptyContainer +<copy TJclTree.CreateEmptyContainer> +\ \ + +@@TJclAnsiStrTree.Destroy +<copy TJclTree.Destroy> +\ \ + +@@TJclAnsiStrTree.Extract@AnsiString +<copy TJclTree.Extract@TObject> +\ \ + +@@TJclAnsiStrTree.ExtractAll@IJclAnsiStrCollection +<copy TJclTree.ExtractAll@IJclCollection> +\ \ + +@@TJclAnsiStrTree.ExtractNode@TJclAnsiStrTreeNode +<copy TJclTree.ExtractNode@TJclTreeNode> +\ \ + +@@TJclAnsiStrTree.First +<copy TJclTree.First> +\ \ + +@@TJclAnsiStrTree.GetEnumerator +<copy TJclTree.GetEnumerator> +\ \ + +@@TJclAnsiStrTree.GetRoot +<copy TJclTree.GetRoot> +\ \ + +@@TJclAnsiStrTree.GetTraverseOrder +<copy TJclTree.GetTraverseOrder> +\ \ + +@@TJclAnsiStrTree.IsEmpty +<copy TJclTree.IsEmpty> +\ \ + +@@TJclAnsiStrTree.Last +<copy TJclTree.Last> +\ \ + +@@TJclAnsiStrTree.NodeContains@TJclAnsiStrTreeNode@AnsiString +<copy TJclTree.NodeContains@TJclTreeNode@TObject> +\ \ + +@@TJclAnsiStrTree.Pack +<copy TJclTree.Pack> +\ \ + +@@TJclAnsiStrTree.PackNode@TJclAnsiStrTreeNode +<copy TJclTree.PackNode@TJclTreeNode> +\ \ + +@@TJclAnsiStrTree.Remove@AnsiString +<copy TJclTree.Remove@TObject> +\ \ + +@@TJclAnsiStrTree.RemoveAll@IJclAnsiStrCollection +<copy TJclTree.RemoveAll@IJclCollection> +\ \ + +@@TJclAnsiStrTree.RemoveNode@TJclAnsiStrTreeNode +<copy TJclTree.RemoveNode@TJclTreeNode> +\ \ + +@@TJclAnsiStrTree.RetainAll@IJclAnsiStrCollection +<copy TJclTree.RetainAll@IJclCollection> +\ \ + +@@TJclAnsiStrTree.SetCapacity@Integer +<copy TJclTree.SetCapacity@Integer> +\ \ + +@@TJclAnsiStrTree.SetTraverseOrder@TJclTraverseOrder +<copy TJclTree.SetTraverseOrder@TJclTraverseOrder> +\ \ + +@@TJclAnsiStrTree.Size +<copy TJclTree.Size> +\ \ +@@TJclWideStrTree +<copy TJclTree> +\ \ + +@@!!MEMBEROVERVIEW_TJclWideStrTree +<copy !!MEMBEROVERVIEW_TJclTree> +\ \ + +@@TJclWideStrTree.Root +<copy TJclTree.Root> +\ \ + +@@TJclWideStrTree.TraverseOrder +<copy TJclTree.TraverseOrder> +\ \ + +@@TJclWideStrTree.Add@WideString +<copy TJclTree.Add@TObject> +\ \ + +@@TJclWideStrTree.AddAll@IJclWideStrCollection +<copy TJclTree.AddAll@IJclCollection> +\ \ + +@@TJclWideStrTree.AssignDataTo@TJclAbstractContainerBase +<copy TJclTree.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclWideStrTree.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclTree.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclWideStrTree.Clear +<copy TJclTree.Clear> +\ \ + +@@TJclWideStrTree.CloneNode@TJclWideStrTreeNode@TJclWideStrTreeNode +<copy TJclTree.CloneNode@TJclTreeNode@TJclTreeNode> +\ \ + +@@TJclWideStrTree.CollectionEquals@IJclWideStrCollection +<copy TJclTree.CollectionEquals@IJclCollection> +\ \ + +@@TJclWideStrTree.Contains@WideString +<copy TJclTree.Contains@TObject> +\ \ + +@@TJclWideStrTree.ContainsAll@IJclWideStrCollection +<copy TJclTree.ContainsAll@IJclCollection> +\ \ + +@@TJclWideStrTree.Create +<copy TJclTree.Create@Boolean> +\ \ + +@@TJclWideStrTree.CreateEmptyContainer +<copy TJclTree.CreateEmptyContainer> +\ \ + +@@TJclWideStrTree.Destroy +<copy TJclTree.Destroy> +\ \ + +@@TJclWideStrTree.Extract@WideString +<copy TJclTree.Extract@TObject> +\ \ + +@@TJclWideStrTree.ExtractAll@IJclWideStrCollection +<copy TJclTree.ExtractAll@IJclCollection> +\ \ + +@@TJclWideStrTree.ExtractNode@TJclWideStrTreeNode +<copy TJclTree.ExtractNode@TJclTreeNode> +\ \ + +@@TJclWideStrTree.First +<copy TJclTree.First> +\ \ + +@@TJclWideStrTree.GetEnumerator +<copy TJclTree.GetEnumerator> +\ \ + +@@TJclWideStrTree.GetRoot +<copy TJclTree.GetRoot> +\ \ + +@@TJclWideStrTree.GetTraverseOrder +<copy TJclTree.GetTraverseOrder> +\ \ + +@@TJclWideStrTree.IsEmpty +<copy TJclTree.IsEmpty> +\ \ + +@@TJclWideStrTree.Last +<copy TJclTree.Last> +\ \ + +@@TJclWideStrTree.NodeContains@TJclWideStrTreeNode@WideString +<copy TJclTree.NodeContains@TJclTreeNode@TObject> +\ \ + +@@TJclWideStrTree.Pack +<copy TJclTree.Pack> +\ \ + +@@TJclWideStrTree.PackNode@TJclWideStrTreeNode +<copy TJclTree.PackNode@TJclTreeNode> +\ \ + +@@TJclWideStrTree.Remove@WideString +<copy TJclTree.Remove@TObject> +\ \ + +@@TJclWideStrTree.RemoveAll@IJclWideStrCollection +<copy TJclTree.RemoveAll@IJclCollection> +\ \ + +@@TJclWideStrTree.RemoveNode@TJclWideStrTreeNode +<copy TJclTree.RemoveNode@TJclTreeNode> +\ \ + +@@TJclWideStrTree.RetainAll@IJclWideStrCollection +<copy TJclTree.RetainAll@IJclCollection> +\ \ + +@@TJclWideStrTree.SetCapacity@Integer +<copy TJclTree.SetCapacity@Integer> +\ \ + +@@TJclWideStrTree.SetTraverseOrder@TJclTraverseOrder +<copy TJclTree.SetTraverseOrder@TJclTraverseOrder> +\ \ + +@@TJclWideStrTree.Size +<copy TJclTree.Size> +\ \ +@@TJclUnicodeStrTree +<copy TJclTree> +\ \ + +@@!!MEMBEROVERVIEW_TJclUnicodeStrTree +<copy !!MEMBEROVERVIEW_TJclTree> +\ \ + +@@TJclUnicodeStrTree.Root +<copy TJclTree.Root> +\ \ + +@@TJclUnicodeStrTree.TraverseOrder +<copy TJclTree.TraverseOrder> +\ \ + +@@TJclUnicodeStrTree.Add@UnicodeString +<copy TJclTree.Add@TObject> +\ \ + +@@TJclUnicodeStrTree.AddAll@IJclUnicodeStrCollection +<copy TJclTree.AddAll@IJclCollection> +\ \ + +@@TJclUnicodeStrTree.AssignDataTo@TJclAbstractContainerBase +<copy TJclTree.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclUnicodeStrTree.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclTree.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclUnicodeStrTree.Clear +<copy TJclTree.Clear> +\ \ + +@@TJclUnicodeStrTree.CloneNode@TJclUnicodeStrTreeNode@TJclUnicodeStrTreeNode +<copy TJclTree.CloneNode@TJclTreeNode@TJclTreeNode> +\ \ + +@@TJclUnicodeStrTree.CollectionEquals@IJclUnicodeStrCollection +<copy TJclTree.CollectionEquals@IJclCollection> +\ \ + +@@TJclUnicodeStrTree.Contains@UnicodeString +<copy TJclTree.Contains@TObject> +\ \ + +@@TJclUnicodeStrTree.ContainsAll@IJclUnicodeStrCollection +<copy TJclTree.ContainsAll@IJclCollection> +\ \ + +@@TJclUnicodeStrTree.Create +<copy TJclTree.Create@Boolean> +\ \ + +@@TJclUnicodeStrTree.CreateEmptyContainer +<copy TJclTree.CreateEmptyContainer> +\ \ + +@@TJclUnicodeStrTree.Destroy +<copy TJclTree.Destroy> +\ \ + +@@TJclUnicodeStrTree.Extract@UnicodeString +<copy TJclTree.Extract@TObject> +\ \ + +@@TJclUnicodeStrTree.ExtractAll@IJclUnicodeStrCollection +<copy TJclTree.ExtractAll@IJclCollection> +\ \ + +@@TJclUnicodeStrTree.ExtractNode@TJclUnicodeStrTreeNode +<copy TJclTree.ExtractNode@TJclTreeNode> +\ \ + +@@TJclUnicodeStrTree.First +<copy TJclTree.First> +\ \ + +@@TJclUnicodeStrTree.GetEnumerator +<copy TJclTree.GetEnumerator> +\ \ + +@@TJclUnicodeStrTree.GetRoot +<copy TJclTree.GetRoot> +\ \ + +@@TJclUnicodeStrTree.GetTraverseOrder +<copy TJclTree.GetTraverseOrder> +\ \ + +@@TJclUnicodeStrTree.IsEmpty +<copy TJclTree.IsEmpty> +\ \ + +@@TJclUnicodeStrTree.Last +<copy TJclTree.Last> +\ \ + +@@TJclUnicodeStrTree.NodeContains@TJclUnicodeStrTreeNode@UnicodeString +<copy TJclTree.NodeContains@TJclTreeNode@TObject> +\ \ + +@@TJclUnicodeStrTree.Pack +<copy TJclTree.Pack> +\ \ + +@@TJclUnicodeStrTree.PackNode@TJclUnicodeStrTreeNode +<copy TJclTree.PackNode@TJclTreeNode> +\ \ + +@@TJclUnicodeStrTree.Remove@UnicodeString +<copy TJclTree.Remove@TObject> +\ \ + +@@TJclUnicodeStrTree.RemoveAll@IJclUnicodeStrCollection +<copy TJclTree.RemoveAll@IJclCollection> +\ \ + +@@TJclUnicodeStrTree.RemoveNode@TJclUnicodeStrTreeNode +<copy TJclTree.RemoveNode@TJclTreeNode> +\ \ + +@@TJclUnicodeStrTree.RetainAll@IJclUnicodeStrCollection +<copy TJclTree.RetainAll@IJclCollection> +\ \ + +@@TJclUnicodeStrTree.SetCapacity@Integer +<copy TJclTree.SetCapacity@Integer> +\ \ + +@@TJclUnicodeStrTree.SetTraverseOrder@TJclTraverseOrder +<copy TJclTree.SetTraverseOrder@TJclTraverseOrder> +\ \ + +@@TJclUnicodeStrTree.Size +<copy TJclTree.Size> +\ \ +@@TJclSingleTree +<copy TJclTree> +\ \ + +@@!!MEMBEROVERVIEW_TJclSingleTree +<copy !!MEMBEROVERVIEW_TJclTree> +\ \ + +@@TJclSingleTree.Root +<copy TJclTree.Root> +\ \ + +@@TJclSingleTree.TraverseOrder +<copy TJclTree.TraverseOrder> +\ \ + +@@TJclSingleTree.Add@Single +<copy TJclTree.Add@TObject> +\ \ + +@@TJclSingleTree.AddAll@IJclSingleCollection +<copy TJclTree.AddAll@IJclCollection> +\ \ + +@@TJclSingleTree.AssignDataTo@TJclAbstractContainerBase +<copy TJclTree.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclSingleTree.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclTree.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclSingleTree.Clear +<copy TJclTree.Clear> +\ \ + +@@TJclSingleTree.CloneNode@TJclSingleTreeNode@TJclSingleTreeNode +<copy TJclTree.CloneNode@TJclTreeNode@TJclTreeNode> +\ \ + +@@TJclSingleTree.CollectionEquals@IJclSingleCollection +<copy TJclTree.CollectionEquals@IJclCollection> +\ \ + +@@TJclSingleTree.Contains@Single +<copy TJclTree.Contains@TObject> +\ \ + +@@TJclSingleTree.ContainsAll@IJclSingleCollection +<copy TJclTree.ContainsAll@IJclCollection> +\ \ + +@@TJclSingleTree.Create +<copy TJclTree.Create@Boolean> +\ \ + +@@TJclSingleTree.CreateEmptyContainer +<copy TJclTree.CreateEmptyContainer> +\ \ + +@@TJclSingleTree.Destroy +<copy TJclTree.Destroy> +\ \ + +@@TJclSingleTree.Extract@Single +<copy TJclTree.Extract@TObject> +\ \ + +@@TJclSingleTree.ExtractAll@IJclSingleCollection +<copy TJclTree.ExtractAll@IJclCollection> +\ \ + +@@TJclSingleTree.ExtractNode@TJclSingleTreeNode +<copy TJclTree.ExtractNode@TJclTreeNode> +\ \ + +@@TJclSingleTree.First +<copy TJclTree.First> +\ \ + +@@TJclSingleTree.GetEnumerator +<copy TJclTree.GetEnumerator> +\ \ + +@@TJclSingleTree.GetRoot +<copy TJclTree.GetRoot> +\ \ + +@@TJclSingleTree.GetTraverseOrder +<copy TJclTree.GetTraverseOrder> +\ \ + +@@TJclSingleTree.IsEmpty +<copy TJclTree.IsEmpty> +\ \ + +@@TJclSingleTree.Last +<copy TJclTree.Last> +\ \ + +@@TJclSingleTree.NodeContains@TJclSingleTreeNode@Single +<copy TJclTree.NodeContains@TJclTreeNode@TObject> +\ \ + +@@TJclSingleTree.Pack +<copy TJclTree.Pack> +\ \ + +@@TJclSingleTree.PackNode@TJclSingleTreeNode +<copy TJclTree.PackNode@TJclTreeNode> +\ \ + +@@TJclSingleTree.Remove@Single +<copy TJclTree.Remove@TObject> +\ \ + +@@TJclSingleTree.RemoveAll@IJclSingleCollection +<copy TJclTree.RemoveAll@IJclCollection> +\ \ + +@@TJclSingleTree.RemoveNode@TJclSingleTreeNode +<copy TJclTree.RemoveNode@TJclTreeNode> +\ \ + +@@TJclSingleTree.RetainAll@IJclSingleCollection +<copy TJclTree.RetainAll@IJclCollection> +\ \ + +@@TJclSingleTree.SetCapacity@Integer +<copy TJclTree.SetCapacity@Integer> +\ \ + +@@TJclSingleTree.SetTraverseOrder@TJclTraverseOrder +<copy TJclTree.SetTraverseOrder@TJclTraverseOrder> +\ \ + +@@TJclSingleTree.Size +<copy TJclTree.Size> +\ \ +@@TJclDoubleTree +<copy TJclTree> +\ \ + +@@!!MEMBEROVERVIEW_TJclDoubleTree +<copy !!MEMBEROVERVIEW_TJclTree> +\ \ + +@@TJclDoubleTree.Root +<copy TJclTree.Root> +\ \ + +@@TJclDoubleTree.TraverseOrder +<copy TJclTree.TraverseOrder> +\ \ + +@@TJclDoubleTree.Add@Double +<copy TJclTree.Add@TObject> +\ \ + +@@TJclDoubleTree.AddAll@IJclDoubleCollection +<copy TJclTree.AddAll@IJclCollection> +\ \ + +@@TJclDoubleTree.AssignDataTo@TJclAbstractContainerBase +<copy TJclTree.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclDoubleTree.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclTree.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclDoubleTree.Clear +<copy TJclTree.Clear> +\ \ + +@@TJclDoubleTree.CloneNode@TJclDoubleTreeNode@TJclDoubleTreeNode +<copy TJclTree.CloneNode@TJclTreeNode@TJclTreeNode> +\ \ + +@@TJclDoubleTree.CollectionEquals@IJclDoubleCollection +<copy TJclTree.CollectionEquals@IJclCollection> +\ \ + +@@TJclDoubleTree.Contains@Double +<copy TJclTree.Contains@TObject> +\ \ + +@@TJclDoubleTree.ContainsAll@IJclDoubleCollection +<copy TJclTree.ContainsAll@IJclCollection> +\ \ + +@@TJclDoubleTree.Create +<copy TJclTree.Create@Boolean> +\ \ + +@@TJclDoubleTree.CreateEmptyContainer +<copy TJclTree.CreateEmptyContainer> +\ \ + +@@TJclDoubleTree.Destroy +<copy TJclTree.Destroy> +\ \ + +@@TJclDoubleTree.Extract@Double +<copy TJclTree.Extract@TObject> +\ \ + +@@TJclDoubleTree.ExtractAll@IJclDoubleCollection +<copy TJclTree.ExtractAll@IJclCollection> +\ \ + +@@TJclDoubleTree.ExtractNode@TJclDoubleTreeNode +<copy TJclTree.ExtractNode@TJclTreeNode> +\ \ + +@@TJclDoubleTree.First +<copy TJclTree.First> +\ \ + +@@TJclDoubleTree.GetEnumerator +<copy TJclTree.GetEnumerator> +\ \ + +@@TJclDoubleTree.GetRoot +<copy TJclTree.GetRoot> +\ \ + +@@TJclDoubleTree.GetTraverseOrder +<copy TJclTree.GetTraverseOrder> +\ \ + +@@TJclDoubleTree.IsEmpty +<copy TJclTree.IsEmpty> +\ \ + +@@TJclDoubleTree.Last +<copy TJclTree.Last> +\ \ + +@@TJclDoubleTree.NodeContains@TJclDoubleTreeNode@Double +<copy TJclTree.NodeContains@TJclTreeNode@TObject> +\ \ + +@@TJclDoubleTree.Pack +<copy TJclTree.Pack> +\ \ + +@@TJclDoubleTree.PackNode@TJclDoubleTreeNode +<copy TJclTree.PackNode@TJclTreeNode> +\ \ + +@@TJclDoubleTree.Remove@Double +<copy TJclTree.Remove@TObject> +\ \ + +@@TJclDoubleTree.RemoveAll@IJclDoubleCollection +<copy TJclTree.RemoveAll@IJclCollection> +\ \ + +@@TJclDoubleTree.RemoveNode@TJclDoubleTreeNode +<copy TJclTree.RemoveNode@TJclTreeNode> +\ \ + +@@TJclDoubleTree.RetainAll@IJclDoubleCollection +<copy TJclTree.RetainAll@IJclCollection> +\ \ + +@@TJclDoubleTree.SetCapacity@Integer +<copy TJclTree.SetCapacity@Integer> +\ \ + +@@TJclDoubleTree.SetTraverseOrder@TJclTraverseOrder +<copy TJclTree.SetTraverseOrder@TJclTraverseOrder> +\ \ + +@@TJclDoubleTree.Size +<copy TJclTree.Size> +\ \ +@@TJclExtendedTree +<copy TJclTree> +\ \ + +@@!!MEMBEROVERVIEW_TJclExtendedTree +<copy !!MEMBEROVERVIEW_TJclTree> +\ \ + +@@TJclExtendedTree.Root +<copy TJclTree.Root> +\ \ + +@@TJclExtendedTree.TraverseOrder +<copy TJclTree.TraverseOrder> +\ \ + +@@TJclExtendedTree.Add@Extended +<copy TJclTree.Add@TObject> +\ \ + +@@TJclExtendedTree.AddAll@IJclExtendedCollection +<copy TJclTree.AddAll@IJclCollection> +\ \ + +@@TJclExtendedTree.AssignDataTo@TJclAbstractContainerBase +<copy TJclTree.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclExtendedTree.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclTree.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclExtendedTree.Clear +<copy TJclTree.Clear> +\ \ + +@@TJclExtendedTree.CloneNode@TJclExtendedTreeNode@TJclExtendedTreeNode +<copy TJclTree.CloneNode@TJclTreeNode@TJclTreeNode> +\ \ + +@@TJclExtendedTree.CollectionEquals@IJclExtendedCollection +<copy TJclTree.CollectionEquals@IJclCollection> +\ \ + +@@TJclExtendedTree.Contains@Extended +<copy TJclTree.Contains@TObject> +\ \ + +@@TJclExtendedTree.ContainsAll@IJclExtendedCollection +<copy TJclTree.ContainsAll@IJclCollection> +\ \ + +@@TJclExtendedTree.Create +<copy TJclTree.Create@Boolean> +\ \ + +@@TJclExtendedTree.CreateEmptyContainer +<copy TJclTree.CreateEmptyContainer> +\ \ + +@@TJclExtendedTree.Destroy +<copy TJclTree.Destroy> +\ \ + +@@TJclExtendedTree.Extract@Extended +<copy TJclTree.Extract@TObject> +\ \ + +@@TJclExtendedTree.ExtractAll@IJclExtendedCollection +<copy TJclTree.ExtractAll@IJclCollection> +\ \ + +@@TJclExtendedTree.ExtractNode@TJclExtendedTreeNode +<copy TJclTree.ExtractNode@TJclTreeNode> +\ \ + +@@TJclExtendedTree.First +<copy TJclTree.First> +\ \ + +@@TJclExtendedTree.GetEnumerator +<copy TJclTree.GetEnumerator> +\ \ + +@@TJclExtendedTree.GetRoot +<copy TJclTree.GetRoot> +\ \ + +@@TJclExtendedTree.GetTraverseOrder +<copy TJclTree.GetTraverseOrder> +\ \ + +@@TJclExtendedTree.IsEmpty +<copy TJclTree.IsEmpty> +\ \ + +@@TJclExtendedTree.Last +<copy TJclTree.Last> +\ \ + +@@TJclExtendedTree.NodeContains@TJclExtendedTreeNode@Extended +<copy TJclTree.NodeContains@TJclTreeNode@TObject> +\ \ + +@@TJclExtendedTree.Pack +<copy TJclTree.Pack> +\ \ + +@@TJclExtendedTree.PackNode@TJclExtendedTreeNode +<copy TJclTree.PackNode@TJclTreeNode> +\ \ + +@@TJclExtendedTree.Remove@Extended +<copy TJclTree.Remove@TObject> +\ \ + +@@TJclExtendedTree.RemoveAll@IJclExtendedCollection +<copy TJclTree.RemoveAll@IJclCollection> +\ \ + +@@TJclExtendedTree.RemoveNode@TJclExtendedTreeNode +<copy TJclTree.RemoveNode@TJclTreeNode> +\ \ + +@@TJclExtendedTree.RetainAll@IJclExtendedCollection +<copy TJclTree.RetainAll@IJclCollection> +\ \ + +@@TJclExtendedTree.SetCapacity@Integer +<copy TJclTree.SetCapacity@Integer> +\ \ + +@@TJclExtendedTree.SetTraverseOrder@TJclTraverseOrder +<copy TJclTree.SetTraverseOrder@TJclTraverseOrder> +\ \ + +@@TJclExtendedTree.Size +<copy TJclTree.Size> +\ \ +@@TJclIntegerTree +<copy TJclTree> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntegerTree +<copy !!MEMBEROVERVIEW_TJclTree> +\ \ + +@@TJclIntegerTree.Root +<copy TJclTree.Root> +\ \ + +@@TJclIntegerTree.TraverseOrder +<copy TJclTree.TraverseOrder> +\ \ + +@@TJclIntegerTree.Add@Integer +<copy TJclTree.Add@TObject> +\ \ + +@@TJclIntegerTree.AddAll@IJclIntegerCollection +<copy TJclTree.AddAll@IJclCollection> +\ \ + +@@TJclIntegerTree.AssignDataTo@TJclAbstractContainerBase +<copy TJclTree.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntegerTree.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclTree.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntegerTree.Clear +<copy TJclTree.Clear> +\ \ + +@@TJclIntegerTree.CloneNode@TJclIntegerTreeNode@TJclIntegerTreeNode +<copy TJclTree.CloneNode@TJclTreeNode@TJclTreeNode> +\ \ + +@@TJclIntegerTree.CollectionEquals@IJclIntegerCollection +<copy TJclTree.CollectionEquals@IJclCollection> +\ \ + +@@TJclIntegerTree.Contains@Integer +<copy TJclTree.Contains@TObject> +\ \ + +@@TJclIntegerTree.ContainsAll@IJclIntegerCollection +<copy TJclTree.ContainsAll@IJclCollection> +\ \ + +@@TJclIntegerTree.Create +<copy TJclTree.Create@Boolean> +\ \ + +@@TJclIntegerTree.CreateEmptyContainer +<copy TJclTree.CreateEmptyContainer> +\ \ + +@@TJclIntegerTree.Destroy +<copy TJclTree.Destroy> +\ \ + +@@TJclIntegerTree.Extract@Integer +<copy TJclTree.Extract@TObject> +\ \ + +@@TJclIntegerTree.ExtractAll@IJclIntegerCollection +<copy TJclTree.ExtractAll@IJclCollection> +\ \ + +@@TJclIntegerTree.ExtractNode@TJclIntegerTreeNode +<copy TJclTree.ExtractNode@TJclTreeNode> +\ \ + +@@TJclIntegerTree.First +<copy TJclTree.First> +\ \ + +@@TJclIntegerTree.GetEnumerator +<copy TJclTree.GetEnumerator> +\ \ + +@@TJclIntegerTree.GetRoot +<copy TJclTree.GetRoot> +\ \ + +@@TJclIntegerTree.GetTraverseOrder +<copy TJclTree.GetTraverseOrder> +\ \ + +@@TJclIntegerTree.IsEmpty +<copy TJclTree.IsEmpty> +\ \ + +@@TJclIntegerTree.Last +<copy TJclTree.Last> +\ \ + +@@TJclIntegerTree.NodeContains@TJclIntegerTreeNode@Integer +<copy TJclTree.NodeContains@TJclTreeNode@TObject> +\ \ + +@@TJclIntegerTree.Pack +<copy TJclTree.Pack> +\ \ + +@@TJclIntegerTree.PackNode@TJclIntegerTreeNode +<copy TJclTree.PackNode@TJclTreeNode> +\ \ + +@@TJclIntegerTree.Remove@Integer +<copy TJclTree.Remove@TObject> +\ \ + +@@TJclIntegerTree.RemoveAll@IJclIntegerCollection +<copy TJclTree.RemoveAll@IJclCollection> +\ \ + +@@TJclIntegerTree.RemoveNode@TJclIntegerTreeNode +<copy TJclTree.RemoveNode@TJclTreeNode> +\ \ + +@@TJclIntegerTree.RetainAll@IJclIntegerCollection +<copy TJclTree.RetainAll@IJclCollection> +\ \ + +@@TJclIntegerTree.SetCapacity@Integer +<copy TJclTree.SetCapacity@Integer> +\ \ + +@@TJclIntegerTree.SetTraverseOrder@TJclTraverseOrder +<copy TJclTree.SetTraverseOrder@TJclTraverseOrder> +\ \ + +@@TJclIntegerTree.Size +<copy TJclTree.Size> +\ \ +@@TJclCardinalTree +<copy TJclTree> +\ \ + +@@!!MEMBEROVERVIEW_TJclCardinalTree +<copy !!MEMBEROVERVIEW_TJclTree> +\ \ + +@@TJclCardinalTree.Root +<copy TJclTree.Root> +\ \ + +@@TJclCardinalTree.TraverseOrder +<copy TJclTree.TraverseOrder> +\ \ + +@@TJclCardinalTree.Add@Cardinal +<copy TJclTree.Add@TObject> +\ \ + +@@TJclCardinalTree.AddAll@IJclCardinalCollection +<copy TJclTree.AddAll@IJclCollection> +\ \ + +@@TJclCardinalTree.AssignDataTo@TJclAbstractContainerBase +<copy TJclTree.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclCardinalTree.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclTree.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclCardinalTree.Clear +<copy TJclTree.Clear> +\ \ + +@@TJclCardinalTree.CloneNode@TJclCardinalTreeNode@TJclCardinalTreeNode +<copy TJclTree.CloneNode@TJclTreeNode@TJclTreeNode> +\ \ + +@@TJclCardinalTree.CollectionEquals@IJclCardinalCollection +<copy TJclTree.CollectionEquals@IJclCollection> +\ \ + +@@TJclCardinalTree.Contains@Cardinal +<copy TJclTree.Contains@TObject> +\ \ + +@@TJclCardinalTree.ContainsAll@IJclCardinalCollection +<copy TJclTree.ContainsAll@IJclCollection> +\ \ + +@@TJclCardinalTree.Create +<copy TJclTree.Create@Boolean> +\ \ + +@@TJclCardinalTree.CreateEmptyContainer +<copy TJclTree.CreateEmptyContainer> +\ \ + +@@TJclCardinalTree.Destroy +<copy TJclTree.Destroy> +\ \ + +@@TJclCardinalTree.Extract@Cardinal +<copy TJclTree.Extract@TObject> +\ \ + +@@TJclCardinalTree.ExtractAll@IJclCardinalCollection +<copy TJclTree.ExtractAll@IJclCollection> +\ \ + +@@TJclCardinalTree.ExtractNode@TJclCardinalTreeNode +<copy TJclTree.ExtractNode@TJclTreeNode> +\ \ + +@@TJclCardinalTree.First +<copy TJclTree.First> +\ \ + +@@TJclCardinalTree.GetEnumerator +<copy TJclTree.GetEnumerator> +\ \ + +@@TJclCardinalTree.GetRoot +<copy TJclTree.GetRoot> +\ \ + +@@TJclCardinalTree.GetTraverseOrder +<copy TJclTree.GetTraverseOrder> +\ \ + +@@TJclCardinalTree.IsEmpty +<copy TJclTree.IsEmpty> +\ \ + +@@TJclCardinalTree.Last +<copy TJclTree.Last> +\ \ + +@@TJclCardinalTree.NodeContains@TJclCardinalTreeNode@Cardinal +<copy TJclTree.NodeContains@TJclTreeNode@TObject> +\ \ + +@@TJclCardinalTree.Pack +<copy TJclTree.Pack> +\ \ + +@@TJclCardinalTree.PackNode@TJclCardinalTreeNode +<copy TJclTree.PackNode@TJclTreeNode> +\ \ + +@@TJclCardinalTree.Remove@Cardinal +<copy TJclTree.Remove@TObject> +\ \ + +@@TJclCardinalTree.RemoveAll@IJclCardinalCollection +<copy TJclTree.RemoveAll@IJclCollection> +\ \ + +@@TJclCardinalTree.RemoveNode@TJclCardinalTreeNode +<copy TJclTree.RemoveNode@TJclTreeNode> +\ \ + +@@TJclCardinalTree.RetainAll@IJclCardinalCollection +<copy TJclTree.RetainAll@IJclCollection> +\ \ + +@@TJclCardinalTree.SetCapacity@Integer +<copy TJclTree.SetCapacity@Integer> +\ \ + +@@TJclCardinalTree.SetTraverseOrder@TJclTraverseOrder +<copy TJclTree.SetTraverseOrder@TJclTraverseOrder> +\ \ + +@@TJclCardinalTree.Size +<copy TJclTree.Size> +\ \ +@@TJclInt64Tree +<copy TJclTree> +\ \ + +@@!!MEMBEROVERVIEW_TJclInt64Tree +<copy !!MEMBEROVERVIEW_TJclTree> +\ \ + +@@TJclInt64Tree.Root +<copy TJclTree.Root> +\ \ + +@@TJclInt64Tree.TraverseOrder +<copy TJclTree.TraverseOrder> +\ \ + +@@TJclInt64Tree.Add@Int64 +<copy TJclTree.Add@TObject> +\ \ + +@@TJclInt64Tree.AddAll@IJclInt64Collection +<copy TJclTree.AddAll@IJclCollection> +\ \ + +@@TJclInt64Tree.AssignDataTo@TJclAbstractContainerBase +<copy TJclTree.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclInt64Tree.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclTree.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclInt64Tree.Clear +<copy TJclTree.Clear> +\ \ + +@@TJclInt64Tree.CloneNode@TJclInt64TreeNode@TJclInt64TreeNode +<copy TJclTree.CloneNode@TJclTreeNode@TJclTreeNode> +\ \ + +@@TJclInt64Tree.CollectionEquals@IJclInt64Collection +<copy TJclTree.CollectionEquals@IJclCollection> +\ \ + +@@TJclInt64Tree.Contains@Int64 +<copy TJclTree.Contains@TObject> +\ \ + +@@TJclInt64Tree.ContainsAll@IJclInt64Collection +<copy TJclTree.ContainsAll@IJclCollection> +\ \ + +@@TJclInt64Tree.Create +<copy TJclTree.Create@Boolean> +\ \ + +@@TJclInt64Tree.CreateEmptyContainer +<copy TJclTree.CreateEmptyContainer> +\ \ + +@@TJclInt64Tree.Destroy +<copy TJclTree.Destroy> +\ \ + +@@TJclInt64Tree.Extract@Int64 +<copy TJclTree.Extract@TObject> +\ \ + +@@TJclInt64Tree.ExtractAll@IJclInt64Collection +<copy TJclTree.ExtractAll@IJclCollection> +\ \ + +@@TJclInt64Tree.ExtractNode@TJclInt64TreeNode +<copy TJclTree.ExtractNode@TJclTreeNode> +\ \ + +@@TJclInt64Tree.First +<copy TJclTree.First> +\ \ + +@@TJclInt64Tree.GetEnumerator +<copy TJclTree.GetEnumerator> +\ \ + +@@TJclInt64Tree.GetRoot +<copy TJclTree.GetRoot> +\ \ + +@@TJclInt64Tree.GetTraverseOrder +<copy TJclTree.GetTraverseOrder> +\ \ + +@@TJclInt64Tree.IsEmpty +<copy TJclTree.IsEmpty> +\ \ + +@@TJclInt64Tree.Last +<copy TJclTree.Last> +\ \ + +@@TJclInt64Tree.NodeContains@TJclInt64TreeNode@Int64 +<copy TJclTree.NodeContains@TJclTreeNode@TObject> +\ \ + +@@TJclInt64Tree.Pack +<copy TJclTree.Pack> +\ \ + +@@TJclInt64Tree.PackNode@TJclInt64TreeNode +<copy TJclTree.PackNode@TJclTreeNode> +\ \ + +@@TJclInt64Tree.Remove@Int64 +<copy TJclTree.Remove@TObject> +\ \ + +@@TJclInt64Tree.RemoveAll@IJclInt64Collection +<copy TJclTree.RemoveAll@IJclCollection> +\ \ + +@@TJclInt64Tree.RemoveNode@TJclInt64TreeNode +<copy TJclTree.RemoveNode@TJclTreeNode> +\ \ + +@@TJclInt64Tree.RetainAll@IJclInt64Collection +<copy TJclTree.RetainAll@IJclCollection> +\ \ + +@@TJclInt64Tree.SetCapacity@Integer +<copy TJclTree.SetCapacity@Integer> +\ \ + +@@TJclInt64Tree.SetTraverseOrder@TJclTraverseOrder +<copy TJclTree.SetTraverseOrder@TJclTraverseOrder> +\ \ + +@@TJclInt64Tree.Size +<copy TJclTree.Size> +\ \ +@@TJclPtrTree +<copy TJclTree> +\ \ + +@@!!MEMBEROVERVIEW_TJclPtrTree +<copy !!MEMBEROVERVIEW_TJclTree> +\ \ + +@@TJclPtrTree.Root +<copy TJclTree.Root> +\ \ + +@@TJclPtrTree.TraverseOrder +<copy TJclTree.TraverseOrder> +\ \ + +@@TJclPtrTree.Add@Pointer +<copy TJclTree.Add@TObject> +\ \ + +@@TJclPtrTree.AddAll@IJclPtrCollection +<copy TJclTree.AddAll@IJclCollection> +\ \ + +@@TJclPtrTree.AssignDataTo@TJclAbstractContainerBase +<copy TJclTree.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclPtrTree.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclTree.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@TJclPtrTree.Clear +<copy TJclTree.Clear> +\ \ + +@@TJclPtrTree.CloneNode@TJclPtrTreeNode@TJclPtrTreeNode +<copy TJclTree.CloneNode@TJclTreeNode@TJclTreeNode> +\ \ + +@@TJclPtrTree.CollectionEquals@IJclPtrCollection +<copy TJclTree.CollectionEquals@IJclCollection> +\ \ + +@@TJclPtrTree.Contains@Pointer +<copy TJclTree.Contains@TObject> +\ \ + +@@TJclPtrTree.ContainsAll@IJclPtrCollection +<copy TJclTree.ContainsAll@IJclCollection> +\ \ + +@@TJclPtrTree.Create +<copy TJclTree.Create@Boolean> +\ \ + +@@TJclPtrTree.CreateEmptyContainer +<copy TJclTree.CreateEmptyContainer> +\ \ + +@@TJclPtrTree.Destroy +<copy TJclTree.Destroy> +\ \ + +@@TJclPtrTree.Extract@Pointer +<copy TJclTree.Extract@TObject> +\ \ + +@@TJclPtrTree.ExtractAll@IJclPtrCollection +<copy TJclTree.ExtractAll@IJclCollection> +\ \ + +@@TJclPtrTree.ExtractNode@TJclPtrTreeNode +<copy TJclTree.ExtractNode@TJclTreeNode> +\ \ + +@@TJclPtrTree.First +<copy TJclTree.First> +\ \ + +@@TJclPtrTree.GetEnumerator +<copy TJclTree.GetEnumerator> +\ \ + +@@TJclPtrTree.GetRoot +<copy TJclTree.GetRoot> +\ \ + +@@TJclPtrTree.GetTraverseOrder +<copy TJclTree.GetTraverseOrder> +\ \ + +@@TJclPtrTree.IsEmpty +<copy TJclTree.IsEmpty> +\ \ + +@@TJclPtrTree.Last +<copy TJclTree.Last> +\ \ + +@@TJclPtrTree.NodeContains@TJclPtrTreeNode@Pointer +<copy TJclTree.NodeContains@TJclTreeNode@TObject> +\ \ + +@@TJclPtrTree.Pack +<copy TJclTree.Pack> +\ \ + +@@TJclPtrTree.PackNode@TJclPtrTreeNode +<copy TJclTree.PackNode@TJclTreeNode> +\ \ + +@@TJclPtrTree.Remove@Pointer +<copy TJclTree.Remove@TObject> +\ \ + +@@TJclPtrTree.RemoveAll@IJclPtrCollection +<copy TJclTree.RemoveAll@IJclCollection> +\ \ + +@@TJclPtrTree.RemoveNode@TJclPtrTreeNode +<copy TJclTree.RemoveNode@TJclTreeNode> +\ \ + +@@TJclPtrTree.RetainAll@IJclPtrCollection +<copy TJclTree.RetainAll@IJclCollection> +\ \ + +@@TJclPtrTree.SetCapacity@Integer +<copy TJclTree.SetCapacity@Integer> +\ \ + +@@TJclPtrTree.SetTraverseOrder@TJclTraverseOrder +<copy TJclTree.SetTraverseOrder@TJclTraverseOrder> +\ \ + +@@TJclPtrTree.Size +<copy TJclTree.Size> +\ \ + + +@@TJclIntfTreeIterator +<copy TJclTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfTreeIterator +<copy !!MEMBEROVERVIEW_TJclTreeIterator> +\ \ + +@@TJclIntfTreeIterator.Current +<copy TJclTreeIterator.Current> +\ \ + +@@TJclIntfTreeIterator.Add@IInterface +<copy TJclTreeIterator.Add@TObject> +\ \ + +@@TJclIntfTreeIterator.AddChild@IInterface +<copy TJclTreeIterator.AddChild@TObject> +\ \ + +@@TJclIntfTreeIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclTreeIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclIntfTreeIterator.ChildrenCount +<copy TJclTreeIterator.ChildrenCount> +\ \ + +@@TJclIntfTreeIterator.Create@TJclIntfTree@TJclIntfTreeNode@Boolean@TItrStart +<copy TJclTreeIterator.Create@TJclTree@TJclTreeNode@Boolean@TItrStart> +\ \ + +@@TJclIntfTreeIterator.DeleteChild@Integer +<copy TJclTreeIterator.DeleteChild@Integer> +\ \ + +@@TJclIntfTreeIterator.DeleteChildren +<copy TJclTreeIterator.DeleteChildren> +\ \ + +@@TJclIntfTreeIterator.Extract +<copy TJclTreeIterator.Extract> +\ \ + +@@TJclIntfTreeIterator.ExtractChild@Integer +<copy TJclTreeIterator.ExtractChild@Integer> +\ \ + +@@TJclIntfTreeIterator.ExtractChildren +<copy TJclTreeIterator.ExtractChildren> +\ \ + +@@TJclIntfTreeIterator.GetChild@Integer +<copy TJclTreeIterator.GetChild@Integer> +\ \ + +@@TJclIntfTreeIterator.GetNextCursor +<copy TJclTreeIterator.GetNextCursor> +\ \ + +@@TJclIntfTreeIterator.GetNextSibling +<copy TJclTreeIterator.GetNextSibling> +\ \ + +@@TJclIntfTreeIterator.GetObject +<copy TJclTreeIterator.GetObject> +\ \ + +@@TJclIntfTreeIterator.GetPreviousCursor +<copy TJclTreeIterator.GetPreviousCursor> +\ \ + +@@TJclIntfTreeIterator.HasChild@Integer +<copy TJclTreeIterator.HasChild@Integer> +\ \ + +@@TJclIntfTreeIterator.HasNext +<copy TJclTreeIterator.HasNext> +\ \ + +@@TJclIntfTreeIterator.HasParent +<copy TJclTreeIterator.HasParent> +\ \ + +@@TJclIntfTreeIterator.HasPrevious +<copy TJclTreeIterator.HasPrevious> +\ \ + +@@TJclIntfTreeIterator.IndexOfChild@IInterface +<copy TJclTreeIterator.IndexOfChild@TObject> +\ \ + +@@TJclIntfTreeIterator.Insert@IInterface +<copy TJclTreeIterator.Insert@TObject> +\ \ + +@@TJclIntfTreeIterator.InsertChild@Integer@IInterface +<copy TJclTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@TJclIntfTreeIterator.IteratorEquals@IJclIntfIterator +<copy TJclTreeIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclIntfTreeIterator.MoveNext +<copy TJclTreeIterator.MoveNext> +\ \ + +@@TJclIntfTreeIterator.Next +<copy TJclTreeIterator.Next> +\ \ + +@@TJclIntfTreeIterator.NextIndex +<copy TJclTreeIterator.NextIndex> +\ \ + +@@TJclIntfTreeIterator.Parent +<copy TJclTreeIterator.Parent> +\ \ + +@@TJclIntfTreeIterator.Previous +<copy TJclTreeIterator.Previous> +\ \ + +@@TJclIntfTreeIterator.PreviousIndex +<copy TJclTreeIterator.PreviousIndex> +\ \ + +@@TJclIntfTreeIterator.Remove +<copy TJclTreeIterator.Remove> +\ \ + +@@TJclIntfTreeIterator.Reset +<copy TJclTreeIterator.Reset> +\ \ + +@@TJclIntfTreeIterator.SetChild@Integer@IInterface +<copy TJclTreeIterator.SetChild@Integer@TObject> +\ \ + +@@TJclIntfTreeIterator.SetObject@IInterface +<copy TJclTreeIterator.SetObject@TObject> +\ \ + +@@TJclPreOrderIntfTreeIterator +<copy TJclPreOrderTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPreOrderIntfTreeIterator +<copy !!MEMBEROVERVIEW_TJclPreOrderTreeIterator> +\ \ + +@@TJclPreOrderIntfTreeIterator.CreateEmptyIterator +<copy TJclPreOrderTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPreOrderIntfTreeIterator.GetNextCursor +<copy TJclPreOrderTreeIterator.GetNextCursor> +\ \ + +@@TJclPreOrderIntfTreeIterator.GetNextSibling +<copy TJclPreOrderTreeIterator.GetNextSibling> +\ \ + +@@TJclPreOrderIntfTreeIterator.GetPreviousCursor +<copy TJclPreOrderTreeIterator.GetPreviousCursor> +\ \ + +@@TJclPostOrderIntfTreeIterator +<copy TJclPostOrderTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPostOrderIntfTreeIterator +<copy !!MEMBEROVERVIEW_TJclPostOrderTreeIterator> +\ \ + +@@TJclPostOrderIntfTreeIterator.CreateEmptyIterator +<copy TJclPostOrderTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPostOrderIntfTreeIterator.GetNextCursor +<copy TJclPostOrderTreeIterator.GetNextCursor> +\ \ + +@@TJclPostOrderIntfTreeIterator.GetNextSibling +<copy TJclPostOrderTreeIterator.GetNextSibling> +\ \ + +@@TJclPostOrderIntfTreeIterator.GetPreviousCursor +<copy TJclPostOrderTreeIterator.GetPreviousCursor> +\ \ +@@TJclAnsiStrTreeIterator +<copy TJclTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclAnsiStrTreeIterator +<copy !!MEMBEROVERVIEW_TJclTreeIterator> +\ \ + +@@TJclAnsiStrTreeIterator.Current +<copy TJclTreeIterator.Current> +\ \ + +@@TJclAnsiStrTreeIterator.Add@AnsiString +<copy TJclTreeIterator.Add@TObject> +\ \ + +@@TJclAnsiStrTreeIterator.AddChild@AnsiString +<copy TJclTreeIterator.AddChild@TObject> +\ \ + +@@TJclAnsiStrTreeIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclTreeIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclAnsiStrTreeIterator.ChildrenCount +<copy TJclTreeIterator.ChildrenCount> +\ \ + +@@TJclAnsiStrTreeIterator.Create@TJclAnsiStrTree@TJclAnsiStrTreeNode@Boolean@TItrStart +<copy TJclTreeIterator.Create@TJclTree@TJclTreeNode@Boolean@TItrStart> +\ \ + +@@TJclAnsiStrTreeIterator.DeleteChild@Integer +<copy TJclTreeIterator.DeleteChild@Integer> +\ \ + +@@TJclAnsiStrTreeIterator.DeleteChildren +<copy TJclTreeIterator.DeleteChildren> +\ \ + +@@TJclAnsiStrTreeIterator.Extract +<copy TJclTreeIterator.Extract> +\ \ + +@@TJclAnsiStrTreeIterator.ExtractChild@Integer +<copy TJclTreeIterator.ExtractChild@Integer> +\ \ + +@@TJclAnsiStrTreeIterator.ExtractChildren +<copy TJclTreeIterator.ExtractChildren> +\ \ + +@@TJclAnsiStrTreeIterator.GetChild@Integer +<copy TJclTreeIterator.GetChild@Integer> +\ \ + +@@TJclAnsiStrTreeIterator.GetNextCursor +<copy TJclTreeIterator.GetNextCursor> +\ \ + +@@TJclAnsiStrTreeIterator.GetNextSibling +<copy TJclTreeIterator.GetNextSibling> +\ \ + +@@TJclAnsiStrTreeIterator.GetString +<copy TJclTreeIterator.GetObject> +\ \ + +@@TJclAnsiStrTreeIterator.GetPreviousCursor +<copy TJclTreeIterator.GetPreviousCursor> +\ \ + +@@TJclAnsiStrTreeIterator.HasChild@Integer +<copy TJclTreeIterator.HasChild@Integer> +\ \ + +@@TJclAnsiStrTreeIterator.HasNext +<copy TJclTreeIterator.HasNext> +\ \ + +@@TJclAnsiStrTreeIterator.HasParent +<copy TJclTreeIterator.HasParent> +\ \ + +@@TJclAnsiStrTreeIterator.HasPrevious +<copy TJclTreeIterator.HasPrevious> +\ \ + +@@TJclAnsiStrTreeIterator.IndexOfChild@AnsiString +<copy TJclTreeIterator.IndexOfChild@TObject> +\ \ + +@@TJclAnsiStrTreeIterator.Insert@AnsiString +<copy TJclTreeIterator.Insert@TObject> +\ \ + +@@TJclAnsiStrTreeIterator.InsertChild@Integer@AnsiString +<copy TJclTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@TJclAnsiStrTreeIterator.IteratorEquals@IJclAnsiStrIterator +<copy TJclTreeIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclAnsiStrTreeIterator.MoveNext +<copy TJclTreeIterator.MoveNext> +\ \ + +@@TJclAnsiStrTreeIterator.Next +<copy TJclTreeIterator.Next> +\ \ + +@@TJclAnsiStrTreeIterator.NextIndex +<copy TJclTreeIterator.NextIndex> +\ \ + +@@TJclAnsiStrTreeIterator.Parent +<copy TJclTreeIterator.Parent> +\ \ + +@@TJclAnsiStrTreeIterator.Previous +<copy TJclTreeIterator.Previous> +\ \ + +@@TJclAnsiStrTreeIterator.PreviousIndex +<copy TJclTreeIterator.PreviousIndex> +\ \ + +@@TJclAnsiStrTreeIterator.Remove +<copy TJclTreeIterator.Remove> +\ \ + +@@TJclAnsiStrTreeIterator.Reset +<copy TJclTreeIterator.Reset> +\ \ + +@@TJclAnsiStrTreeIterator.SetChild@Integer@AnsiString +<copy TJclTreeIterator.SetChild@Integer@TObject> +\ \ + +@@TJclAnsiStrTreeIterator.SetString@AnsiString +<copy TJclTreeIterator.SetObject@TObject> +\ \ + +@@TJclPreOrderAnsiStrTreeIterator +<copy TJclPreOrderTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPreOrderAnsiStrTreeIterator +<copy !!MEMBEROVERVIEW_TJclPreOrderTreeIterator> +\ \ + +@@TJclPreOrderAnsiStrTreeIterator.CreateEmptyIterator +<copy TJclPreOrderTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPreOrderAnsiStrTreeIterator.GetNextCursor +<copy TJclPreOrderTreeIterator.GetNextCursor> +\ \ + +@@TJclPreOrderAnsiStrTreeIterator.GetNextSibling +<copy TJclPreOrderTreeIterator.GetNextSibling> +\ \ + +@@TJclPreOrderAnsiStrTreeIterator.GetPreviousCursor +<copy TJclPreOrderTreeIterator.GetPreviousCursor> +\ \ + +@@TJclPostOrderAnsiStrTreeIterator +<copy TJclPostOrderTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPostOrderAnsiStrTreeIterator +<copy !!MEMBEROVERVIEW_TJclPostOrderTreeIterator> +\ \ + +@@TJclPostOrderAnsiStrTreeIterator.CreateEmptyIterator +<copy TJclPostOrderTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPostOrderAnsiStrTreeIterator.GetNextCursor +<copy TJclPostOrderTreeIterator.GetNextCursor> +\ \ + +@@TJclPostOrderAnsiStrTreeIterator.GetNextSibling +<copy TJclPostOrderTreeIterator.GetNextSibling> +\ \ + +@@TJclPostOrderAnsiStrTreeIterator.GetPreviousCursor +<copy TJclPostOrderTreeIterator.GetPreviousCursor> +\ \ +@@TJclWideStrTreeIterator +<copy TJclTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclWideStrTreeIterator +<copy !!MEMBEROVERVIEW_TJclTreeIterator> +\ \ + +@@TJclWideStrTreeIterator.Current +<copy TJclTreeIterator.Current> +\ \ + +@@TJclWideStrTreeIterator.Add@WideString +<copy TJclTreeIterator.Add@TObject> +\ \ + +@@TJclWideStrTreeIterator.AddChild@WideString +<copy TJclTreeIterator.AddChild@TObject> +\ \ + +@@TJclWideStrTreeIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclTreeIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclWideStrTreeIterator.ChildrenCount +<copy TJclTreeIterator.ChildrenCount> +\ \ + +@@TJclWideStrTreeIterator.Create@TJclWideStrTree@TJclWideStrTreeNode@Boolean@TItrStart +<copy TJclTreeIterator.Create@TJclTree@TJclTreeNode@Boolean@TItrStart> +\ \ + +@@TJclWideStrTreeIterator.DeleteChild@Integer +<copy TJclTreeIterator.DeleteChild@Integer> +\ \ + +@@TJclWideStrTreeIterator.DeleteChildren +<copy TJclTreeIterator.DeleteChildren> +\ \ + +@@TJclWideStrTreeIterator.Extract +<copy TJclTreeIterator.Extract> +\ \ + +@@TJclWideStrTreeIterator.ExtractChild@Integer +<copy TJclTreeIterator.ExtractChild@Integer> +\ \ + +@@TJclWideStrTreeIterator.ExtractChildren +<copy TJclTreeIterator.ExtractChildren> +\ \ + +@@TJclWideStrTreeIterator.GetChild@Integer +<copy TJclTreeIterator.GetChild@Integer> +\ \ + +@@TJclWideStrTreeIterator.GetNextCursor +<copy TJclTreeIterator.GetNextCursor> +\ \ + +@@TJclWideStrTreeIterator.GetNextSibling +<copy TJclTreeIterator.GetNextSibling> +\ \ + +@@TJclWideStrTreeIterator.GetString +<copy TJclTreeIterator.GetObject> +\ \ + +@@TJclWideStrTreeIterator.GetPreviousCursor +<copy TJclTreeIterator.GetPreviousCursor> +\ \ + +@@TJclWideStrTreeIterator.HasChild@Integer +<copy TJclTreeIterator.HasChild@Integer> +\ \ + +@@TJclWideStrTreeIterator.HasNext +<copy TJclTreeIterator.HasNext> +\ \ + +@@TJclWideStrTreeIterator.HasParent +<copy TJclTreeIterator.HasParent> +\ \ + +@@TJclWideStrTreeIterator.HasPrevious +<copy TJclTreeIterator.HasPrevious> +\ \ + +@@TJclWideStrTreeIterator.IndexOfChild@WideString +<copy TJclTreeIterator.IndexOfChild@TObject> +\ \ + +@@TJclWideStrTreeIterator.Insert@WideString +<copy TJclTreeIterator.Insert@TObject> +\ \ + +@@TJclWideStrTreeIterator.InsertChild@Integer@WideString +<copy TJclTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@TJclWideStrTreeIterator.IteratorEquals@IJclWideStrIterator +<copy TJclTreeIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclWideStrTreeIterator.MoveNext +<copy TJclTreeIterator.MoveNext> +\ \ + +@@TJclWideStrTreeIterator.Next +<copy TJclTreeIterator.Next> +\ \ + +@@TJclWideStrTreeIterator.NextIndex +<copy TJclTreeIterator.NextIndex> +\ \ + +@@TJclWideStrTreeIterator.Parent +<copy TJclTreeIterator.Parent> +\ \ + +@@TJclWideStrTreeIterator.Previous +<copy TJclTreeIterator.Previous> +\ \ + +@@TJclWideStrTreeIterator.PreviousIndex +<copy TJclTreeIterator.PreviousIndex> +\ \ + +@@TJclWideStrTreeIterator.Remove +<copy TJclTreeIterator.Remove> +\ \ + +@@TJclWideStrTreeIterator.Reset +<copy TJclTreeIterator.Reset> +\ \ + +@@TJclWideStrTreeIterator.SetChild@Integer@WideString +<copy TJclTreeIterator.SetChild@Integer@TObject> +\ \ + +@@TJclWideStrTreeIterator.SetString@WideString +<copy TJclTreeIterator.SetObject@TObject> +\ \ + +@@TJclPreOrderWideStrTreeIterator +<copy TJclPreOrderTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPreOrderWideStrTreeIterator +<copy !!MEMBEROVERVIEW_TJclPreOrderTreeIterator> +\ \ + +@@TJclPreOrderWideStrTreeIterator.CreateEmptyIterator +<copy TJclPreOrderTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPreOrderWideStrTreeIterator.GetNextCursor +<copy TJclPreOrderTreeIterator.GetNextCursor> +\ \ + +@@TJclPreOrderWideStrTreeIterator.GetNextSibling +<copy TJclPreOrderTreeIterator.GetNextSibling> +\ \ + +@@TJclPreOrderWideStrTreeIterator.GetPreviousCursor +<copy TJclPreOrderTreeIterator.GetPreviousCursor> +\ \ + +@@TJclPostOrderWideStrTreeIterator +<copy TJclPostOrderTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPostOrderWideStrTreeIterator +<copy !!MEMBEROVERVIEW_TJclPostOrderTreeIterator> +\ \ + +@@TJclPostOrderWideStrTreeIterator.CreateEmptyIterator +<copy TJclPostOrderTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPostOrderWideStrTreeIterator.GetNextCursor +<copy TJclPostOrderTreeIterator.GetNextCursor> +\ \ + +@@TJclPostOrderWideStrTreeIterator.GetNextSibling +<copy TJclPostOrderTreeIterator.GetNextSibling> +\ \ + +@@TJclPostOrderWideStrTreeIterator.GetPreviousCursor +<copy TJclPostOrderTreeIterator.GetPreviousCursor> +\ \ +@@TJclUnicodeStrTreeIterator +<copy TJclTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclUnicodeStrTreeIterator +<copy !!MEMBEROVERVIEW_TJclTreeIterator> +\ \ + +@@TJclUnicodeStrTreeIterator.Current +<copy TJclTreeIterator.Current> +\ \ + +@@TJclUnicodeStrTreeIterator.Add@UnicodeString +<copy TJclTreeIterator.Add@TObject> +\ \ + +@@TJclUnicodeStrTreeIterator.AddChild@UnicodeString +<copy TJclTreeIterator.AddChild@TObject> +\ \ + +@@TJclUnicodeStrTreeIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclTreeIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclUnicodeStrTreeIterator.ChildrenCount +<copy TJclTreeIterator.ChildrenCount> +\ \ + +@@TJclUnicodeStrTreeIterator.Create@TJclUnicodeStrTree@TJclUnicodeStrTreeNode@Boolean@TItrStart +<copy TJclTreeIterator.Create@TJclTree@TJclTreeNode@Boolean@TItrStart> +\ \ + +@@TJclUnicodeStrTreeIterator.DeleteChild@Integer +<copy TJclTreeIterator.DeleteChild@Integer> +\ \ + +@@TJclUnicodeStrTreeIterator.DeleteChildren +<copy TJclTreeIterator.DeleteChildren> +\ \ + +@@TJclUnicodeStrTreeIterator.Extract +<copy TJclTreeIterator.Extract> +\ \ + +@@TJclUnicodeStrTreeIterator.ExtractChild@Integer +<copy TJclTreeIterator.ExtractChild@Integer> +\ \ + +@@TJclUnicodeStrTreeIterator.ExtractChildren +<copy TJclTreeIterator.ExtractChildren> +\ \ + +@@TJclUnicodeStrTreeIterator.GetChild@Integer +<copy TJclTreeIterator.GetChild@Integer> +\ \ + +@@TJclUnicodeStrTreeIterator.GetNextCursor +<copy TJclTreeIterator.GetNextCursor> +\ \ + +@@TJclUnicodeStrTreeIterator.GetNextSibling +<copy TJclTreeIterator.GetNextSibling> +\ \ + +@@TJclUnicodeStrTreeIterator.GetString +<copy TJclTreeIterator.GetObject> +\ \ + +@@TJclUnicodeStrTreeIterator.GetPreviousCursor +<copy TJclTreeIterator.GetPreviousCursor> +\ \ + +@@TJclUnicodeStrTreeIterator.HasChild@Integer +<copy TJclTreeIterator.HasChild@Integer> +\ \ + +@@TJclUnicodeStrTreeIterator.HasNext +<copy TJclTreeIterator.HasNext> +\ \ + +@@TJclUnicodeStrTreeIterator.HasParent +<copy TJclTreeIterator.HasParent> +\ \ + +@@TJclUnicodeStrTreeIterator.HasPrevious +<copy TJclTreeIterator.HasPrevious> +\ \ + +@@TJclUnicodeStrTreeIterator.IndexOfChild@UnicodeString +<copy TJclTreeIterator.IndexOfChild@TObject> +\ \ + +@@TJclUnicodeStrTreeIterator.Insert@UnicodeString +<copy TJclTreeIterator.Insert@TObject> +\ \ + +@@TJclUnicodeStrTreeIterator.InsertChild@Integer@UnicodeString +<copy TJclTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@TJclUnicodeStrTreeIterator.IteratorEquals@IJclUnicodeStrIterator +<copy TJclTreeIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclUnicodeStrTreeIterator.MoveNext +<copy TJclTreeIterator.MoveNext> +\ \ + +@@TJclUnicodeStrTreeIterator.Next +<copy TJclTreeIterator.Next> +\ \ + +@@TJclUnicodeStrTreeIterator.NextIndex +<copy TJclTreeIterator.NextIndex> +\ \ + +@@TJclUnicodeStrTreeIterator.Parent +<copy TJclTreeIterator.Parent> +\ \ + +@@TJclUnicodeStrTreeIterator.Previous +<copy TJclTreeIterator.Previous> +\ \ + +@@TJclUnicodeStrTreeIterator.PreviousIndex +<copy TJclTreeIterator.PreviousIndex> +\ \ + +@@TJclUnicodeStrTreeIterator.Remove +<copy TJclTreeIterator.Remove> +\ \ + +@@TJclUnicodeStrTreeIterator.Reset +<copy TJclTreeIterator.Reset> +\ \ + +@@TJclUnicodeStrTreeIterator.SetChild@Integer@UnicodeString +<copy TJclTreeIterator.SetChild@Integer@TObject> +\ \ + +@@TJclUnicodeStrTreeIterator.SetString@UnicodeString +<copy TJclTreeIterator.SetObject@TObject> +\ \ + +@@TJclPreOrderUnicodeStrTreeIterator +<copy TJclPreOrderTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPreOrderUnicodeStrTreeIterator +<copy !!MEMBEROVERVIEW_TJclPreOrderTreeIterator> +\ \ + +@@TJclPreOrderUnicodeStrTreeIterator.CreateEmptyIterator +<copy TJclPreOrderTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPreOrderUnicodeStrTreeIterator.GetNextCursor +<copy TJclPreOrderTreeIterator.GetNextCursor> +\ \ + +@@TJclPreOrderUnicodeStrTreeIterator.GetNextSibling +<copy TJclPreOrderTreeIterator.GetNextSibling> +\ \ + +@@TJclPreOrderUnicodeStrTreeIterator.GetPreviousCursor +<copy TJclPreOrderTreeIterator.GetPreviousCursor> +\ \ + +@@TJclPostOrderUnicodeStrTreeIterator +<copy TJclPostOrderTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPostOrderUnicodeStrTreeIterator +<copy !!MEMBEROVERVIEW_TJclPostOrderTreeIterator> +\ \ + +@@TJclPostOrderUnicodeStrTreeIterator.CreateEmptyIterator +<copy TJclPostOrderTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPostOrderUnicodeStrTreeIterator.GetNextCursor +<copy TJclPostOrderTreeIterator.GetNextCursor> +\ \ + +@@TJclPostOrderUnicodeStrTreeIterator.GetNextSibling +<copy TJclPostOrderTreeIterator.GetNextSibling> +\ \ + +@@TJclPostOrderUnicodeStrTreeIterator.GetPreviousCursor +<copy TJclPostOrderTreeIterator.GetPreviousCursor> +\ \ +@@TJclSingleTreeIterator +<copy TJclTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclSingleTreeIterator +<copy !!MEMBEROVERVIEW_TJclTreeIterator> +\ \ + +@@TJclSingleTreeIterator.Current +<copy TJclTreeIterator.Current> +\ \ + +@@TJclSingleTreeIterator.Add@Single +<copy TJclTreeIterator.Add@TObject> +\ \ + +@@TJclSingleTreeIterator.AddChild@Single +<copy TJclTreeIterator.AddChild@TObject> +\ \ + +@@TJclSingleTreeIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclTreeIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclSingleTreeIterator.ChildrenCount +<copy TJclTreeIterator.ChildrenCount> +\ \ + +@@TJclSingleTreeIterator.Create@TJclSingleTree@TJclSingleTreeNode@Boolean@TItrStart +<copy TJclTreeIterator.Create@TJclTree@TJclTreeNode@Boolean@TItrStart> +\ \ + +@@TJclSingleTreeIterator.DeleteChild@Integer +<copy TJclTreeIterator.DeleteChild@Integer> +\ \ + +@@TJclSingleTreeIterator.DeleteChildren +<copy TJclTreeIterator.DeleteChildren> +\ \ + +@@TJclSingleTreeIterator.Extract +<copy TJclTreeIterator.Extract> +\ \ + +@@TJclSingleTreeIterator.ExtractChild@Integer +<copy TJclTreeIterator.ExtractChild@Integer> +\ \ + +@@TJclSingleTreeIterator.ExtractChildren +<copy TJclTreeIterator.ExtractChildren> +\ \ + +@@TJclSingleTreeIterator.GetChild@Integer +<copy TJclTreeIterator.GetChild@Integer> +\ \ + +@@TJclSingleTreeIterator.GetNextCursor +<copy TJclTreeIterator.GetNextCursor> +\ \ + +@@TJclSingleTreeIterator.GetNextSibling +<copy TJclTreeIterator.GetNextSibling> +\ \ + +@@TJclSingleTreeIterator.GetValue +<copy TJclTreeIterator.GetObject> +\ \ + +@@TJclSingleTreeIterator.GetPreviousCursor +<copy TJclTreeIterator.GetPreviousCursor> +\ \ + +@@TJclSingleTreeIterator.HasChild@Integer +<copy TJclTreeIterator.HasChild@Integer> +\ \ + +@@TJclSingleTreeIterator.HasNext +<copy TJclTreeIterator.HasNext> +\ \ + +@@TJclSingleTreeIterator.HasParent +<copy TJclTreeIterator.HasParent> +\ \ + +@@TJclSingleTreeIterator.HasPrevious +<copy TJclTreeIterator.HasPrevious> +\ \ + +@@TJclSingleTreeIterator.IndexOfChild@Single +<copy TJclTreeIterator.IndexOfChild@TObject> +\ \ + +@@TJclSingleTreeIterator.Insert@Single +<copy TJclTreeIterator.Insert@TObject> +\ \ + +@@TJclSingleTreeIterator.InsertChild@Integer@Single +<copy TJclTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@TJclSingleTreeIterator.IteratorEquals@IJclSingleIterator +<copy TJclTreeIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclSingleTreeIterator.MoveNext +<copy TJclTreeIterator.MoveNext> +\ \ + +@@TJclSingleTreeIterator.Next +<copy TJclTreeIterator.Next> +\ \ + +@@TJclSingleTreeIterator.NextIndex +<copy TJclTreeIterator.NextIndex> +\ \ + +@@TJclSingleTreeIterator.Parent +<copy TJclTreeIterator.Parent> +\ \ + +@@TJclSingleTreeIterator.Previous +<copy TJclTreeIterator.Previous> +\ \ + +@@TJclSingleTreeIterator.PreviousIndex +<copy TJclTreeIterator.PreviousIndex> +\ \ + +@@TJclSingleTreeIterator.Remove +<copy TJclTreeIterator.Remove> +\ \ + +@@TJclSingleTreeIterator.Reset +<copy TJclTreeIterator.Reset> +\ \ + +@@TJclSingleTreeIterator.SetChild@Integer@Single +<copy TJclTreeIterator.SetChild@Integer@TObject> +\ \ + +@@TJclSingleTreeIterator.SetValue@Single +<copy TJclTreeIterator.SetObject@TObject> +\ \ + +@@TJclPreOrderSingleTreeIterator +<copy TJclPreOrderTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPreOrderSingleTreeIterator +<copy !!MEMBEROVERVIEW_TJclPreOrderTreeIterator> +\ \ + +@@TJclPreOrderSingleTreeIterator.CreateEmptyIterator +<copy TJclPreOrderTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPreOrderSingleTreeIterator.GetNextCursor +<copy TJclPreOrderTreeIterator.GetNextCursor> +\ \ + +@@TJclPreOrderSingleTreeIterator.GetNextSibling +<copy TJclPreOrderTreeIterator.GetNextSibling> +\ \ + +@@TJclPreOrderSingleTreeIterator.GetPreviousCursor +<copy TJclPreOrderTreeIterator.GetPreviousCursor> +\ \ + +@@TJclPostOrderSingleTreeIterator +<copy TJclPostOrderTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPostOrderSingleTreeIterator +<copy !!MEMBEROVERVIEW_TJclPostOrderTreeIterator> +\ \ + +@@TJclPostOrderSingleTreeIterator.CreateEmptyIterator +<copy TJclPostOrderTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPostOrderSingleTreeIterator.GetNextCursor +<copy TJclPostOrderTreeIterator.GetNextCursor> +\ \ + +@@TJclPostOrderSingleTreeIterator.GetNextSibling +<copy TJclPostOrderTreeIterator.GetNextSibling> +\ \ + +@@TJclPostOrderSingleTreeIterator.GetPreviousCursor +<copy TJclPostOrderTreeIterator.GetPreviousCursor> +\ \ +@@TJclDoubleTreeIterator +<copy TJclTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclDoubleTreeIterator +<copy !!MEMBEROVERVIEW_TJclTreeIterator> +\ \ + +@@TJclDoubleTreeIterator.Current +<copy TJclTreeIterator.Current> +\ \ + +@@TJclDoubleTreeIterator.Add@Double +<copy TJclTreeIterator.Add@TObject> +\ \ + +@@TJclDoubleTreeIterator.AddChild@Double +<copy TJclTreeIterator.AddChild@TObject> +\ \ + +@@TJclDoubleTreeIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclTreeIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclDoubleTreeIterator.ChildrenCount +<copy TJclTreeIterator.ChildrenCount> +\ \ + +@@TJclDoubleTreeIterator.Create@TJclDoubleTree@TJclDoubleTreeNode@Boolean@TItrStart +<copy TJclTreeIterator.Create@TJclTree@TJclTreeNode@Boolean@TItrStart> +\ \ + +@@TJclDoubleTreeIterator.DeleteChild@Integer +<copy TJclTreeIterator.DeleteChild@Integer> +\ \ + +@@TJclDoubleTreeIterator.DeleteChildren +<copy TJclTreeIterator.DeleteChildren> +\ \ + +@@TJclDoubleTreeIterator.Extract +<copy TJclTreeIterator.Extract> +\ \ + +@@TJclDoubleTreeIterator.ExtractChild@Integer +<copy TJclTreeIterator.ExtractChild@Integer> +\ \ + +@@TJclDoubleTreeIterator.ExtractChildren +<copy TJclTreeIterator.ExtractChildren> +\ \ + +@@TJclDoubleTreeIterator.GetChild@Integer +<copy TJclTreeIterator.GetChild@Integer> +\ \ + +@@TJclDoubleTreeIterator.GetNextCursor +<copy TJclTreeIterator.GetNextCursor> +\ \ + +@@TJclDoubleTreeIterator.GetNextSibling +<copy TJclTreeIterator.GetNextSibling> +\ \ + +@@TJclDoubleTreeIterator.GetValue +<copy TJclTreeIterator.GetObject> +\ \ + +@@TJclDoubleTreeIterator.GetPreviousCursor +<copy TJclTreeIterator.GetPreviousCursor> +\ \ + +@@TJclDoubleTreeIterator.HasChild@Integer +<copy TJclTreeIterator.HasChild@Integer> +\ \ + +@@TJclDoubleTreeIterator.HasNext +<copy TJclTreeIterator.HasNext> +\ \ + +@@TJclDoubleTreeIterator.HasParent +<copy TJclTreeIterator.HasParent> +\ \ + +@@TJclDoubleTreeIterator.HasPrevious +<copy TJclTreeIterator.HasPrevious> +\ \ + +@@TJclDoubleTreeIterator.IndexOfChild@Double +<copy TJclTreeIterator.IndexOfChild@TObject> +\ \ + +@@TJclDoubleTreeIterator.Insert@Double +<copy TJclTreeIterator.Insert@TObject> +\ \ + +@@TJclDoubleTreeIterator.InsertChild@Integer@Double +<copy TJclTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@TJclDoubleTreeIterator.IteratorEquals@IJclDoubleIterator +<copy TJclTreeIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclDoubleTreeIterator.MoveNext +<copy TJclTreeIterator.MoveNext> +\ \ + +@@TJclDoubleTreeIterator.Next +<copy TJclTreeIterator.Next> +\ \ + +@@TJclDoubleTreeIterator.NextIndex +<copy TJclTreeIterator.NextIndex> +\ \ + +@@TJclDoubleTreeIterator.Parent +<copy TJclTreeIterator.Parent> +\ \ + +@@TJclDoubleTreeIterator.Previous +<copy TJclTreeIterator.Previous> +\ \ + +@@TJclDoubleTreeIterator.PreviousIndex +<copy TJclTreeIterator.PreviousIndex> +\ \ + +@@TJclDoubleTreeIterator.Remove +<copy TJclTreeIterator.Remove> +\ \ + +@@TJclDoubleTreeIterator.Reset +<copy TJclTreeIterator.Reset> +\ \ + +@@TJclDoubleTreeIterator.SetChild@Integer@Double +<copy TJclTreeIterator.SetChild@Integer@TObject> +\ \ + +@@TJclDoubleTreeIterator.SetValue@Double +<copy TJclTreeIterator.SetObject@TObject> +\ \ + +@@TJclPreOrderDoubleTreeIterator +<copy TJclPreOrderTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPreOrderDoubleTreeIterator +<copy !!MEMBEROVERVIEW_TJclPreOrderTreeIterator> +\ \ + +@@TJclPreOrderDoubleTreeIterator.CreateEmptyIterator +<copy TJclPreOrderTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPreOrderDoubleTreeIterator.GetNextCursor +<copy TJclPreOrderTreeIterator.GetNextCursor> +\ \ + +@@TJclPreOrderDoubleTreeIterator.GetNextSibling +<copy TJclPreOrderTreeIterator.GetNextSibling> +\ \ + +@@TJclPreOrderDoubleTreeIterator.GetPreviousCursor +<copy TJclPreOrderTreeIterator.GetPreviousCursor> +\ \ + +@@TJclPostOrderDoubleTreeIterator +<copy TJclPostOrderTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPostOrderDoubleTreeIterator +<copy !!MEMBEROVERVIEW_TJclPostOrderTreeIterator> +\ \ + +@@TJclPostOrderDoubleTreeIterator.CreateEmptyIterator +<copy TJclPostOrderTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPostOrderDoubleTreeIterator.GetNextCursor +<copy TJclPostOrderTreeIterator.GetNextCursor> +\ \ + +@@TJclPostOrderDoubleTreeIterator.GetNextSibling +<copy TJclPostOrderTreeIterator.GetNextSibling> +\ \ + +@@TJclPostOrderDoubleTreeIterator.GetPreviousCursor +<copy TJclPostOrderTreeIterator.GetPreviousCursor> +\ \ +@@TJclExtendedTreeIterator +<copy TJclTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclExtendedTreeIterator +<copy !!MEMBEROVERVIEW_TJclTreeIterator> +\ \ + +@@TJclExtendedTreeIterator.Current +<copy TJclTreeIterator.Current> +\ \ + +@@TJclExtendedTreeIterator.Add@Extended +<copy TJclTreeIterator.Add@TObject> +\ \ + +@@TJclExtendedTreeIterator.AddChild@Extended +<copy TJclTreeIterator.AddChild@TObject> +\ \ + +@@TJclExtendedTreeIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclTreeIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclExtendedTreeIterator.ChildrenCount +<copy TJclTreeIterator.ChildrenCount> +\ \ + +@@TJclExtendedTreeIterator.Create@TJclExtendedTree@TJclExtendedTreeNode@Boolean@TItrStart +<copy TJclTreeIterator.Create@TJclTree@TJclTreeNode@Boolean@TItrStart> +\ \ + +@@TJclExtendedTreeIterator.DeleteChild@Integer +<copy TJclTreeIterator.DeleteChild@Integer> +\ \ + +@@TJclExtendedTreeIterator.DeleteChildren +<copy TJclTreeIterator.DeleteChildren> +\ \ + +@@TJclExtendedTreeIterator.Extract +<copy TJclTreeIterator.Extract> +\ \ + +@@TJclExtendedTreeIterator.ExtractChild@Integer +<copy TJclTreeIterator.ExtractChild@Integer> +\ \ + +@@TJclExtendedTreeIterator.ExtractChildren +<copy TJclTreeIterator.ExtractChildren> +\ \ + +@@TJclExtendedTreeIterator.GetChild@Integer +<copy TJclTreeIterator.GetChild@Integer> +\ \ + +@@TJclExtendedTreeIterator.GetNextCursor +<copy TJclTreeIterator.GetNextCursor> +\ \ + +@@TJclExtendedTreeIterator.GetNextSibling +<copy TJclTreeIterator.GetNextSibling> +\ \ + +@@TJclExtendedTreeIterator.GetValue +<copy TJclTreeIterator.GetObject> +\ \ + +@@TJclExtendedTreeIterator.GetPreviousCursor +<copy TJclTreeIterator.GetPreviousCursor> +\ \ + +@@TJclExtendedTreeIterator.HasChild@Integer +<copy TJclTreeIterator.HasChild@Integer> +\ \ + +@@TJclExtendedTreeIterator.HasNext +<copy TJclTreeIterator.HasNext> +\ \ + +@@TJclExtendedTreeIterator.HasParent +<copy TJclTreeIterator.HasParent> +\ \ + +@@TJclExtendedTreeIterator.HasPrevious +<copy TJclTreeIterator.HasPrevious> +\ \ + +@@TJclExtendedTreeIterator.IndexOfChild@Extended +<copy TJclTreeIterator.IndexOfChild@TObject> +\ \ + +@@TJclExtendedTreeIterator.Insert@Extended +<copy TJclTreeIterator.Insert@TObject> +\ \ + +@@TJclExtendedTreeIterator.InsertChild@Integer@Extended +<copy TJclTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@TJclExtendedTreeIterator.IteratorEquals@IJclExtendedIterator +<copy TJclTreeIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclExtendedTreeIterator.MoveNext +<copy TJclTreeIterator.MoveNext> +\ \ + +@@TJclExtendedTreeIterator.Next +<copy TJclTreeIterator.Next> +\ \ + +@@TJclExtendedTreeIterator.NextIndex +<copy TJclTreeIterator.NextIndex> +\ \ + +@@TJclExtendedTreeIterator.Parent +<copy TJclTreeIterator.Parent> +\ \ + +@@TJclExtendedTreeIterator.Previous +<copy TJclTreeIterator.Previous> +\ \ + +@@TJclExtendedTreeIterator.PreviousIndex +<copy TJclTreeIterator.PreviousIndex> +\ \ + +@@TJclExtendedTreeIterator.Remove +<copy TJclTreeIterator.Remove> +\ \ + +@@TJclExtendedTreeIterator.Reset +<copy TJclTreeIterator.Reset> +\ \ + +@@TJclExtendedTreeIterator.SetChild@Integer@Extended +<copy TJclTreeIterator.SetChild@Integer@TObject> +\ \ + +@@TJclExtendedTreeIterator.SetValue@Extended +<copy TJclTreeIterator.SetObject@TObject> +\ \ + +@@TJclPreOrderExtendedTreeIterator +<copy TJclPreOrderTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPreOrderExtendedTreeIterator +<copy !!MEMBEROVERVIEW_TJclPreOrderTreeIterator> +\ \ + +@@TJclPreOrderExtendedTreeIterator.CreateEmptyIterator +<copy TJclPreOrderTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPreOrderExtendedTreeIterator.GetNextCursor +<copy TJclPreOrderTreeIterator.GetNextCursor> +\ \ + +@@TJclPreOrderExtendedTreeIterator.GetNextSibling +<copy TJclPreOrderTreeIterator.GetNextSibling> +\ \ + +@@TJclPreOrderExtendedTreeIterator.GetPreviousCursor +<copy TJclPreOrderTreeIterator.GetPreviousCursor> +\ \ + +@@TJclPostOrderExtendedTreeIterator +<copy TJclPostOrderTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPostOrderExtendedTreeIterator +<copy !!MEMBEROVERVIEW_TJclPostOrderTreeIterator> +\ \ + +@@TJclPostOrderExtendedTreeIterator.CreateEmptyIterator +<copy TJclPostOrderTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPostOrderExtendedTreeIterator.GetNextCursor +<copy TJclPostOrderTreeIterator.GetNextCursor> +\ \ + +@@TJclPostOrderExtendedTreeIterator.GetNextSibling +<copy TJclPostOrderTreeIterator.GetNextSibling> +\ \ + +@@TJclPostOrderExtendedTreeIterator.GetPreviousCursor +<copy TJclPostOrderTreeIterator.GetPreviousCursor> +\ \ +@@TJclIntegerTreeIterator +<copy TJclTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntegerTreeIterator +<copy !!MEMBEROVERVIEW_TJclTreeIterator> +\ \ + +@@TJclIntegerTreeIterator.Current +<copy TJclTreeIterator.Current> +\ \ + +@@TJclIntegerTreeIterator.Add@Integer +<copy TJclTreeIterator.Add@TObject> +\ \ + +@@TJclIntegerTreeIterator.AddChild@Integer +<copy TJclTreeIterator.AddChild@TObject> +\ \ + +@@TJclIntegerTreeIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclTreeIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclIntegerTreeIterator.ChildrenCount +<copy TJclTreeIterator.ChildrenCount> +\ \ + +@@TJclIntegerTreeIterator.Create@TJclIntegerTree@TJclIntegerTreeNode@Boolean@TItrStart +<copy TJclTreeIterator.Create@TJclTree@TJclTreeNode@Boolean@TItrStart> +\ \ + +@@TJclIntegerTreeIterator.DeleteChild@Integer +<copy TJclTreeIterator.DeleteChild@Integer> +\ \ + +@@TJclIntegerTreeIterator.DeleteChildren +<copy TJclTreeIterator.DeleteChildren> +\ \ + +@@TJclIntegerTreeIterator.Extract +<copy TJclTreeIterator.Extract> +\ \ + +@@TJclIntegerTreeIterator.ExtractChild@Integer +<copy TJclTreeIterator.ExtractChild@Integer> +\ \ + +@@TJclIntegerTreeIterator.ExtractChildren +<copy TJclTreeIterator.ExtractChildren> +\ \ + +@@TJclIntegerTreeIterator.GetChild@Integer +<copy TJclTreeIterator.GetChild@Integer> +\ \ + +@@TJclIntegerTreeIterator.GetNextCursor +<copy TJclTreeIterator.GetNextCursor> +\ \ + +@@TJclIntegerTreeIterator.GetNextSibling +<copy TJclTreeIterator.GetNextSibling> +\ \ + +@@TJclIntegerTreeIterator.GetValue +<copy TJclTreeIterator.GetObject> +\ \ + +@@TJclIntegerTreeIterator.GetPreviousCursor +<copy TJclTreeIterator.GetPreviousCursor> +\ \ + +@@TJclIntegerTreeIterator.HasChild@Integer +<copy TJclTreeIterator.HasChild@Integer> +\ \ + +@@TJclIntegerTreeIterator.HasNext +<copy TJclTreeIterator.HasNext> +\ \ + +@@TJclIntegerTreeIterator.HasParent +<copy TJclTreeIterator.HasParent> +\ \ + +@@TJclIntegerTreeIterator.HasPrevious +<copy TJclTreeIterator.HasPrevious> +\ \ + +@@TJclIntegerTreeIterator.IndexOfChild@Integer +<copy TJclTreeIterator.IndexOfChild@TObject> +\ \ + +@@TJclIntegerTreeIterator.Insert@Integer +<copy TJclTreeIterator.Insert@TObject> +\ \ + +@@TJclIntegerTreeIterator.InsertChild@Integer@Integer +<copy TJclTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@TJclIntegerTreeIterator.IteratorEquals@IJclIntegerIterator +<copy TJclTreeIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclIntegerTreeIterator.MoveNext +<copy TJclTreeIterator.MoveNext> +\ \ + +@@TJclIntegerTreeIterator.Next +<copy TJclTreeIterator.Next> +\ \ + +@@TJclIntegerTreeIterator.NextIndex +<copy TJclTreeIterator.NextIndex> +\ \ + +@@TJclIntegerTreeIterator.Parent +<copy TJclTreeIterator.Parent> +\ \ + +@@TJclIntegerTreeIterator.Previous +<copy TJclTreeIterator.Previous> +\ \ + +@@TJclIntegerTreeIterator.PreviousIndex +<copy TJclTreeIterator.PreviousIndex> +\ \ + +@@TJclIntegerTreeIterator.Remove +<copy TJclTreeIterator.Remove> +\ \ + +@@TJclIntegerTreeIterator.Reset +<copy TJclTreeIterator.Reset> +\ \ + +@@TJclIntegerTreeIterator.SetChild@Integer@Integer +<copy TJclTreeIterator.SetChild@Integer@TObject> +\ \ + +@@TJclIntegerTreeIterator.SetValue@Integer +<copy TJclTreeIterator.SetObject@TObject> +\ \ + +@@TJclPreOrderIntegerTreeIterator +<copy TJclPreOrderTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPreOrderIntegerTreeIterator +<copy !!MEMBEROVERVIEW_TJclPreOrderTreeIterator> +\ \ + +@@TJclPreOrderIntegerTreeIterator.CreateEmptyIterator +<copy TJclPreOrderTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPreOrderIntegerTreeIterator.GetNextCursor +<copy TJclPreOrderTreeIterator.GetNextCursor> +\ \ + +@@TJclPreOrderIntegerTreeIterator.GetNextSibling +<copy TJclPreOrderTreeIterator.GetNextSibling> +\ \ + +@@TJclPreOrderIntegerTreeIterator.GetPreviousCursor +<copy TJclPreOrderTreeIterator.GetPreviousCursor> +\ \ + +@@TJclPostOrderIntegerTreeIterator +<copy TJclPostOrderTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPostOrderIntegerTreeIterator +<copy !!MEMBEROVERVIEW_TJclPostOrderTreeIterator> +\ \ + +@@TJclPostOrderIntegerTreeIterator.CreateEmptyIterator +<copy TJclPostOrderTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPostOrderIntegerTreeIterator.GetNextCursor +<copy TJclPostOrderTreeIterator.GetNextCursor> +\ \ + +@@TJclPostOrderIntegerTreeIterator.GetNextSibling +<copy TJclPostOrderTreeIterator.GetNextSibling> +\ \ + +@@TJclPostOrderIntegerTreeIterator.GetPreviousCursor +<copy TJclPostOrderTreeIterator.GetPreviousCursor> +\ \ +@@TJclCardinalTreeIterator +<copy TJclTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclCardinalTreeIterator +<copy !!MEMBEROVERVIEW_TJclTreeIterator> +\ \ + +@@TJclCardinalTreeIterator.Current +<copy TJclTreeIterator.Current> +\ \ + +@@TJclCardinalTreeIterator.Add@Cardinal +<copy TJclTreeIterator.Add@TObject> +\ \ + +@@TJclCardinalTreeIterator.AddChild@Cardinal +<copy TJclTreeIterator.AddChild@TObject> +\ \ + +@@TJclCardinalTreeIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclTreeIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclCardinalTreeIterator.ChildrenCount +<copy TJclTreeIterator.ChildrenCount> +\ \ + +@@TJclCardinalTreeIterator.Create@TJclCardinalTree@TJclCardinalTreeNode@Boolean@TItrStart +<copy TJclTreeIterator.Create@TJclTree@TJclTreeNode@Boolean@TItrStart> +\ \ + +@@TJclCardinalTreeIterator.DeleteChild@Integer +<copy TJclTreeIterator.DeleteChild@Integer> +\ \ + +@@TJclCardinalTreeIterator.DeleteChildren +<copy TJclTreeIterator.DeleteChildren> +\ \ + +@@TJclCardinalTreeIterator.Extract +<copy TJclTreeIterator.Extract> +\ \ + +@@TJclCardinalTreeIterator.ExtractChild@Integer +<copy TJclTreeIterator.ExtractChild@Integer> +\ \ + +@@TJclCardinalTreeIterator.ExtractChildren +<copy TJclTreeIterator.ExtractChildren> +\ \ + +@@TJclCardinalTreeIterator.GetChild@Integer +<copy TJclTreeIterator.GetChild@Integer> +\ \ + +@@TJclCardinalTreeIterator.GetNextCursor +<copy TJclTreeIterator.GetNextCursor> +\ \ + +@@TJclCardinalTreeIterator.GetNextSibling +<copy TJclTreeIterator.GetNextSibling> +\ \ + +@@TJclCardinalTreeIterator.GetValue +<copy TJclTreeIterator.GetObject> +\ \ + +@@TJclCardinalTreeIterator.GetPreviousCursor +<copy TJclTreeIterator.GetPreviousCursor> +\ \ + +@@TJclCardinalTreeIterator.HasChild@Integer +<copy TJclTreeIterator.HasChild@Integer> +\ \ + +@@TJclCardinalTreeIterator.HasNext +<copy TJclTreeIterator.HasNext> +\ \ + +@@TJclCardinalTreeIterator.HasParent +<copy TJclTreeIterator.HasParent> +\ \ + +@@TJclCardinalTreeIterator.HasPrevious +<copy TJclTreeIterator.HasPrevious> +\ \ + +@@TJclCardinalTreeIterator.IndexOfChild@Cardinal +<copy TJclTreeIterator.IndexOfChild@TObject> +\ \ + +@@TJclCardinalTreeIterator.Insert@Cardinal +<copy TJclTreeIterator.Insert@TObject> +\ \ + +@@TJclCardinalTreeIterator.InsertChild@Integer@Cardinal +<copy TJclTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@TJclCardinalTreeIterator.IteratorEquals@IJclCardinalIterator +<copy TJclTreeIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclCardinalTreeIterator.MoveNext +<copy TJclTreeIterator.MoveNext> +\ \ + +@@TJclCardinalTreeIterator.Next +<copy TJclTreeIterator.Next> +\ \ + +@@TJclCardinalTreeIterator.NextIndex +<copy TJclTreeIterator.NextIndex> +\ \ + +@@TJclCardinalTreeIterator.Parent +<copy TJclTreeIterator.Parent> +\ \ + +@@TJclCardinalTreeIterator.Previous +<copy TJclTreeIterator.Previous> +\ \ + +@@TJclCardinalTreeIterator.PreviousIndex +<copy TJclTreeIterator.PreviousIndex> +\ \ + +@@TJclCardinalTreeIterator.Remove +<copy TJclTreeIterator.Remove> +\ \ + +@@TJclCardinalTreeIterator.Reset +<copy TJclTreeIterator.Reset> +\ \ + +@@TJclCardinalTreeIterator.SetChild@Integer@Cardinal +<copy TJclTreeIterator.SetChild@Integer@TObject> +\ \ + +@@TJclCardinalTreeIterator.SetValue@Cardinal +<copy TJclTreeIterator.SetObject@TObject> +\ \ + +@@TJclPreOrderCardinalTreeIterator +<copy TJclPreOrderTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPreOrderCardinalTreeIterator +<copy !!MEMBEROVERVIEW_TJclPreOrderTreeIterator> +\ \ + +@@TJclPreOrderCardinalTreeIterator.CreateEmptyIterator +<copy TJclPreOrderTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPreOrderCardinalTreeIterator.GetNextCursor +<copy TJclPreOrderTreeIterator.GetNextCursor> +\ \ + +@@TJclPreOrderCardinalTreeIterator.GetNextSibling +<copy TJclPreOrderTreeIterator.GetNextSibling> +\ \ + +@@TJclPreOrderCardinalTreeIterator.GetPreviousCursor +<copy TJclPreOrderTreeIterator.GetPreviousCursor> +\ \ + +@@TJclPostOrderCardinalTreeIterator +<copy TJclPostOrderTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPostOrderCardinalTreeIterator +<copy !!MEMBEROVERVIEW_TJclPostOrderTreeIterator> +\ \ + +@@TJclPostOrderCardinalTreeIterator.CreateEmptyIterator +<copy TJclPostOrderTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPostOrderCardinalTreeIterator.GetNextCursor +<copy TJclPostOrderTreeIterator.GetNextCursor> +\ \ + +@@TJclPostOrderCardinalTreeIterator.GetNextSibling +<copy TJclPostOrderTreeIterator.GetNextSibling> +\ \ + +@@TJclPostOrderCardinalTreeIterator.GetPreviousCursor +<copy TJclPostOrderTreeIterator.GetPreviousCursor> +\ \ +@@TJclInt64TreeIterator +<copy TJclTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclInt64TreeIterator +<copy !!MEMBEROVERVIEW_TJclTreeIterator> +\ \ + +@@TJclInt64TreeIterator.Current +<copy TJclTreeIterator.Current> +\ \ + +@@TJclInt64TreeIterator.Add@Int64 +<copy TJclTreeIterator.Add@TObject> +\ \ + +@@TJclInt64TreeIterator.AddChild@Int64 +<copy TJclTreeIterator.AddChild@TObject> +\ \ + +@@TJclInt64TreeIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclTreeIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclInt64TreeIterator.ChildrenCount +<copy TJclTreeIterator.ChildrenCount> +\ \ + +@@TJclInt64TreeIterator.Create@TJclInt64Tree@TJclInt64TreeNode@Boolean@TItrStart +<copy TJclTreeIterator.Create@TJclTree@TJclTreeNode@Boolean@TItrStart> +\ \ + +@@TJclInt64TreeIterator.DeleteChild@Integer +<copy TJclTreeIterator.DeleteChild@Integer> +\ \ + +@@TJclInt64TreeIterator.DeleteChildren +<copy TJclTreeIterator.DeleteChildren> +\ \ + +@@TJclInt64TreeIterator.Extract +<copy TJclTreeIterator.Extract> +\ \ + +@@TJclInt64TreeIterator.ExtractChild@Integer +<copy TJclTreeIterator.ExtractChild@Integer> +\ \ + +@@TJclInt64TreeIterator.ExtractChildren +<copy TJclTreeIterator.ExtractChildren> +\ \ + +@@TJclInt64TreeIterator.GetChild@Integer +<copy TJclTreeIterator.GetChild@Integer> +\ \ + +@@TJclInt64TreeIterator.GetNextCursor +<copy TJclTreeIterator.GetNextCursor> +\ \ + +@@TJclInt64TreeIterator.GetNextSibling +<copy TJclTreeIterator.GetNextSibling> +\ \ + +@@TJclInt64TreeIterator.GetValue +<copy TJclTreeIterator.GetObject> +\ \ + +@@TJclInt64TreeIterator.GetPreviousCursor +<copy TJclTreeIterator.GetPreviousCursor> +\ \ + +@@TJclInt64TreeIterator.HasChild@Integer +<copy TJclTreeIterator.HasChild@Integer> +\ \ + +@@TJclInt64TreeIterator.HasNext +<copy TJclTreeIterator.HasNext> +\ \ + +@@TJclInt64TreeIterator.HasParent +<copy TJclTreeIterator.HasParent> +\ \ + +@@TJclInt64TreeIterator.HasPrevious +<copy TJclTreeIterator.HasPrevious> +\ \ + +@@TJclInt64TreeIterator.IndexOfChild@Int64 +<copy TJclTreeIterator.IndexOfChild@TObject> +\ \ + +@@TJclInt64TreeIterator.Insert@Int64 +<copy TJclTreeIterator.Insert@TObject> +\ \ + +@@TJclInt64TreeIterator.InsertChild@Integer@Int64 +<copy TJclTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@TJclInt64TreeIterator.IteratorEquals@IJclInt64Iterator +<copy TJclTreeIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclInt64TreeIterator.MoveNext +<copy TJclTreeIterator.MoveNext> +\ \ + +@@TJclInt64TreeIterator.Next +<copy TJclTreeIterator.Next> +\ \ + +@@TJclInt64TreeIterator.NextIndex +<copy TJclTreeIterator.NextIndex> +\ \ + +@@TJclInt64TreeIterator.Parent +<copy TJclTreeIterator.Parent> +\ \ + +@@TJclInt64TreeIterator.Previous +<copy TJclTreeIterator.Previous> +\ \ + +@@TJclInt64TreeIterator.PreviousIndex +<copy TJclTreeIterator.PreviousIndex> +\ \ + +@@TJclInt64TreeIterator.Remove +<copy TJclTreeIterator.Remove> +\ \ + +@@TJclInt64TreeIterator.Reset +<copy TJclTreeIterator.Reset> +\ \ + +@@TJclInt64TreeIterator.SetChild@Integer@Int64 +<copy TJclTreeIterator.SetChild@Integer@TObject> +\ \ + +@@TJclInt64TreeIterator.SetValue@Int64 +<copy TJclTreeIterator.SetObject@TObject> +\ \ + +@@TJclPreOrderInt64TreeIterator +<copy TJclPreOrderTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPreOrderInt64TreeIterator +<copy !!MEMBEROVERVIEW_TJclPreOrderTreeIterator> +\ \ + +@@TJclPreOrderInt64TreeIterator.CreateEmptyIterator +<copy TJclPreOrderTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPreOrderInt64TreeIterator.GetNextCursor +<copy TJclPreOrderTreeIterator.GetNextCursor> +\ \ + +@@TJclPreOrderInt64TreeIterator.GetNextSibling +<copy TJclPreOrderTreeIterator.GetNextSibling> +\ \ + +@@TJclPreOrderInt64TreeIterator.GetPreviousCursor +<copy TJclPreOrderTreeIterator.GetPreviousCursor> +\ \ + +@@TJclPostOrderInt64TreeIterator +<copy TJclPostOrderTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPostOrderInt64TreeIterator +<copy !!MEMBEROVERVIEW_TJclPostOrderTreeIterator> +\ \ + +@@TJclPostOrderInt64TreeIterator.CreateEmptyIterator +<copy TJclPostOrderTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPostOrderInt64TreeIterator.GetNextCursor +<copy TJclPostOrderTreeIterator.GetNextCursor> +\ \ + +@@TJclPostOrderInt64TreeIterator.GetNextSibling +<copy TJclPostOrderTreeIterator.GetNextSibling> +\ \ + +@@TJclPostOrderInt64TreeIterator.GetPreviousCursor +<copy TJclPostOrderTreeIterator.GetPreviousCursor> +\ \ +@@TJclPtrTreeIterator +<copy TJclTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPtrTreeIterator +<copy !!MEMBEROVERVIEW_TJclTreeIterator> +\ \ + +@@TJclPtrTreeIterator.Current +<copy TJclTreeIterator.Current> +\ \ + +@@TJclPtrTreeIterator.Add@Pointer +<copy TJclTreeIterator.Add@TObject> +\ \ + +@@TJclPtrTreeIterator.AddChild@Pointer +<copy TJclTreeIterator.AddChild@TObject> +\ \ + +@@TJclPtrTreeIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclTreeIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclPtrTreeIterator.ChildrenCount +<copy TJclTreeIterator.ChildrenCount> +\ \ + +@@TJclPtrTreeIterator.Create@TJclPtrTree@TJclPtrTreeNode@Boolean@TItrStart +<copy TJclTreeIterator.Create@TJclTree@TJclTreeNode@Boolean@TItrStart> +\ \ + +@@TJclPtrTreeIterator.DeleteChild@Integer +<copy TJclTreeIterator.DeleteChild@Integer> +\ \ + +@@TJclPtrTreeIterator.DeleteChildren +<copy TJclTreeIterator.DeleteChildren> +\ \ + +@@TJclPtrTreeIterator.Extract +<copy TJclTreeIterator.Extract> +\ \ + +@@TJclPtrTreeIterator.ExtractChild@Integer +<copy TJclTreeIterator.ExtractChild@Integer> +\ \ + +@@TJclPtrTreeIterator.ExtractChildren +<copy TJclTreeIterator.ExtractChildren> +\ \ + +@@TJclPtrTreeIterator.GetChild@Integer +<copy TJclTreeIterator.GetChild@Integer> +\ \ + +@@TJclPtrTreeIterator.GetNextCursor +<copy TJclTreeIterator.GetNextCursor> +\ \ + +@@TJclPtrTreeIterator.GetNextSibling +<copy TJclTreeIterator.GetNextSibling> +\ \ + +@@TJclPtrTreeIterator.GetPointer +<copy TJclTreeIterator.GetObject> +\ \ + +@@TJclPtrTreeIterator.GetPreviousCursor +<copy TJclTreeIterator.GetPreviousCursor> +\ \ + +@@TJclPtrTreeIterator.HasChild@Integer +<copy TJclTreeIterator.HasChild@Integer> +\ \ + +@@TJclPtrTreeIterator.HasNext +<copy TJclTreeIterator.HasNext> +\ \ + +@@TJclPtrTreeIterator.HasParent +<copy TJclTreeIterator.HasParent> +\ \ + +@@TJclPtrTreeIterator.HasPrevious +<copy TJclTreeIterator.HasPrevious> +\ \ + +@@TJclPtrTreeIterator.IndexOfChild@Pointer +<copy TJclTreeIterator.IndexOfChild@TObject> +\ \ + +@@TJclPtrTreeIterator.Insert@Pointer +<copy TJclTreeIterator.Insert@TObject> +\ \ + +@@TJclPtrTreeIterator.InsertChild@Integer@Pointer +<copy TJclTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@TJclPtrTreeIterator.IteratorEquals@IJclPtrIterator +<copy TJclTreeIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclPtrTreeIterator.MoveNext +<copy TJclTreeIterator.MoveNext> +\ \ + +@@TJclPtrTreeIterator.Next +<copy TJclTreeIterator.Next> +\ \ + +@@TJclPtrTreeIterator.NextIndex +<copy TJclTreeIterator.NextIndex> +\ \ + +@@TJclPtrTreeIterator.Parent +<copy TJclTreeIterator.Parent> +\ \ + +@@TJclPtrTreeIterator.Previous +<copy TJclTreeIterator.Previous> +\ \ + +@@TJclPtrTreeIterator.PreviousIndex +<copy TJclTreeIterator.PreviousIndex> +\ \ + +@@TJclPtrTreeIterator.Remove +<copy TJclTreeIterator.Remove> +\ \ + +@@TJclPtrTreeIterator.Reset +<copy TJclTreeIterator.Reset> +\ \ + +@@TJclPtrTreeIterator.SetChild@Integer@Pointer +<copy TJclTreeIterator.SetChild@Integer@TObject> +\ \ + +@@TJclPtrTreeIterator.SetPointer@Pointer +<copy TJclTreeIterator.SetObject@TObject> +\ \ + +@@TJclPreOrderPtrTreeIterator +<copy TJclPreOrderTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPreOrderPtrTreeIterator +<copy !!MEMBEROVERVIEW_TJclPreOrderTreeIterator> +\ \ + +@@TJclPreOrderPtrTreeIterator.CreateEmptyIterator +<copy TJclPreOrderTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPreOrderPtrTreeIterator.GetNextCursor +<copy TJclPreOrderTreeIterator.GetNextCursor> +\ \ + +@@TJclPreOrderPtrTreeIterator.GetNextSibling +<copy TJclPreOrderTreeIterator.GetNextSibling> +\ \ + +@@TJclPreOrderPtrTreeIterator.GetPreviousCursor +<copy TJclPreOrderTreeIterator.GetPreviousCursor> +\ \ + +@@TJclPostOrderPtrTreeIterator +<copy TJclPostOrderTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPostOrderPtrTreeIterator +<copy !!MEMBEROVERVIEW_TJclPostOrderTreeIterator> +\ \ + +@@TJclPostOrderPtrTreeIterator.CreateEmptyIterator +<copy TJclPostOrderTreeIterator.CreateEmptyIterator> +\ \ + +@@TJclPostOrderPtrTreeIterator.GetNextCursor +<copy TJclPostOrderTreeIterator.GetNextCursor> +\ \ + +@@TJclPostOrderPtrTreeIterator.GetNextSibling +<copy TJclPostOrderTreeIterator.GetNextSibling> +\ \ + +@@TJclPostOrderPtrTreeIterator.GetPreviousCursor +<copy TJclPostOrderTreeIterator.GetPreviousCursor> +\ \ + + +@@TJclIntfVector +<copy TJclVector> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfVector +<copy !!MEMBEROVERVIEW_TJclVector> +\ \ + +@@TJclIntfVector.Items +<copy TJclVector.Items> +\ \ + +@@TJclIntfVector.Add@IInterface +<copy TJclVector.Add@TObject> +\ \ + +@@TJclIntfVector.AddAll@IJclIntfCollection +<copy TJclVector.AddAll@IJclCollection> +\ \ + +@@TJclIntfVector.AssignDataTo@TJclAbstractContainerBase +<copy TJclVector.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntfVector.Clear +<copy TJclVector.Clear> +\ \ + +@@TJclIntfVector.CollectionEquals@IJclIntfCollection +<copy TJclVector.CollectionEquals@IJclCollection> +\ \ + +@@TJclIntfVector.Contains@IInterface +<copy TJclVector.Contains@TObject> +\ \ + +@@TJclIntfVector.ContainsAll@IJclIntfCollection +<copy TJclVector.ContainsAll@IJclCollection> +\ \ + +@@TJclIntfVector.Create@IJclIntfCollection +<copy TJclVector.Create@IJclCollection@Boolean> +\ \ + +@@TJclIntfVector.Create@Integer +<copy TJclVector.Create@Integer@Boolean> +\ \ + +@@TJclIntfVector.CreateEmptyContainer +<copy TJclVector.CreateEmptyContainer> +\ \ + +@@TJclIntfVector.Delete@Integer +<copy TJclVector.Delete@Integer> +\ \ + +@@TJclIntfVector.Destroy +<copy TJclVector.Destroy> +\ \ + +@@TJclIntfVector.Extract@IInterface +<copy TJclVector.Extract@TObject> +\ \ + +@@TJclIntfVector.ExtractAll@IJclIntfCollection +<copy TJclVector.ExtractAll@IJclCollection> +\ \ + +@@TJclIntfVector.ExtractIndex@Integer +<copy TJclVector.ExtractIndex@Integer> +\ \ + +@@TJclIntfVector.First +<copy TJclVector.First> +\ \ + +@@TJclIntfVector.GetEnumerator +<copy TJclVector.GetEnumerator> +\ \ + +@@TJclIntfVector.GetObject@Integer +<copy TJclVector.GetObject@Integer> +\ \ + +@@TJclIntfVector.IndexOf@IInterface +<copy TJclVector.IndexOf@TObject> +\ \ + +@@TJclIntfVector.Insert@Integer@IInterface +<copy TJclVector.Insert@Integer@TObject> +\ \ + +@@TJclIntfVector.InsertAll@Integer@IJclIntfCollection +<copy TJclVector.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclIntfVector.IsEmpty +<copy TJclVector.IsEmpty> +\ \ + +@@TJclIntfVector.Last +<copy TJclVector.Last> +\ \ + +@@TJclIntfVector.LastIndexOf@IInterface +<copy TJclVector.LastIndexOf@TObject> +\ \ + +@@TJclIntfVector.RaiseOutOfBoundsError +<copy TJclVector.RaiseOutOfBoundsError> +\ \ + +@@TJclIntfVector.Remove@IInterface +<copy TJclVector.Remove@TObject> +\ \ + +@@TJclIntfVector.RemoveAll@IJclIntfCollection +<copy TJclVector.RemoveAll@IJclCollection> +\ \ + +@@TJclIntfVector.RetainAll@IJclIntfCollection +<copy TJclVector.RetainAll@IJclCollection> +\ \ + +@@TJclIntfVector.SetCapacity@Integer +<copy TJclVector.SetCapacity@Integer> +\ \ + +@@TJclIntfVector.SetObject@Integer@IInterface +<copy TJclVector.SetObject@Integer@TObject> +\ \ + +@@TJclIntfVector.Size +<copy TJclVector.Size> +\ \ + +@@TJclIntfVector.SubList@Integer@Integer +<copy TJclVector.SubList@Integer@Integer> +\ \ +@@TJclAnsiStrVector +<copy TJclVector> +\ \ + +@@!!MEMBEROVERVIEW_TJclAnsiStrVector +<copy !!MEMBEROVERVIEW_TJclVector> +\ \ + +@@TJclAnsiStrVector.Items +<copy TJclVector.Items> +\ \ + +@@TJclAnsiStrVector.Add@AnsiString +<copy TJclVector.Add@TObject> +\ \ + +@@TJclAnsiStrVector.AddAll@IJclAnsiStrCollection +<copy TJclVector.AddAll@IJclCollection> +\ \ + +@@TJclAnsiStrVector.AssignDataTo@TJclAbstractContainerBase +<copy TJclVector.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclAnsiStrVector.Clear +<copy TJclVector.Clear> +\ \ + +@@TJclAnsiStrVector.CollectionEquals@IJclAnsiStrCollection +<copy TJclVector.CollectionEquals@IJclCollection> +\ \ + +@@TJclAnsiStrVector.Contains@AnsiString +<copy TJclVector.Contains@TObject> +\ \ + +@@TJclAnsiStrVector.ContainsAll@IJclAnsiStrCollection +<copy TJclVector.ContainsAll@IJclCollection> +\ \ + +@@TJclAnsiStrVector.Create@IJclAnsiStrCollection +<copy TJclVector.Create@IJclCollection@Boolean> +\ \ + +@@TJclAnsiStrVector.Create@Integer +<copy TJclVector.Create@Integer@Boolean> +\ \ + +@@TJclAnsiStrVector.CreateEmptyContainer +<copy TJclVector.CreateEmptyContainer> +\ \ + +@@TJclAnsiStrVector.Delete@Integer +<copy TJclVector.Delete@Integer> +\ \ + +@@TJclAnsiStrVector.Destroy +<copy TJclVector.Destroy> +\ \ + +@@TJclAnsiStrVector.Extract@AnsiString +<copy TJclVector.Extract@TObject> +\ \ + +@@TJclAnsiStrVector.ExtractAll@IJclAnsiStrCollection +<copy TJclVector.ExtractAll@IJclCollection> +\ \ + +@@TJclAnsiStrVector.ExtractIndex@Integer +<copy TJclVector.ExtractIndex@Integer> +\ \ + +@@TJclAnsiStrVector.First +<copy TJclVector.First> +\ \ + +@@TJclAnsiStrVector.GetEnumerator +<copy TJclVector.GetEnumerator> +\ \ + +@@TJclAnsiStrVector.GetString@Integer +<copy TJclVector.GetObject@Integer> +\ \ + +@@TJclAnsiStrVector.IndexOf@AnsiString +<copy TJclVector.IndexOf@TObject> +\ \ + +@@TJclAnsiStrVector.Insert@Integer@AnsiString +<copy TJclVector.Insert@Integer@TObject> +\ \ + +@@TJclAnsiStrVector.InsertAll@Integer@IJclAnsiStrCollection +<copy TJclVector.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclAnsiStrVector.IsEmpty +<copy TJclVector.IsEmpty> +\ \ + +@@TJclAnsiStrVector.Last +<copy TJclVector.Last> +\ \ + +@@TJclAnsiStrVector.LastIndexOf@AnsiString +<copy TJclVector.LastIndexOf@TObject> +\ \ + +@@TJclAnsiStrVector.RaiseOutOfBoundsError +<copy TJclVector.RaiseOutOfBoundsError> +\ \ + +@@TJclAnsiStrVector.Remove@AnsiString +<copy TJclVector.Remove@TObject> +\ \ + +@@TJclAnsiStrVector.RemoveAll@IJclAnsiStrCollection +<copy TJclVector.RemoveAll@IJclCollection> +\ \ + +@@TJclAnsiStrVector.RetainAll@IJclAnsiStrCollection +<copy TJclVector.RetainAll@IJclCollection> +\ \ + +@@TJclAnsiStrVector.SetCapacity@Integer +<copy TJclVector.SetCapacity@Integer> +\ \ + +@@TJclAnsiStrVector.SetString@Integer@AnsiString +<copy TJclVector.SetObject@Integer@TObject> +\ \ + +@@TJclAnsiStrVector.Size +<copy TJclVector.Size> +\ \ + +@@TJclAnsiStrVector.SubList@Integer@Integer +<copy TJclVector.SubList@Integer@Integer> +\ \ +@@TJclWideStrVector +<copy TJclVector> +\ \ + +@@!!MEMBEROVERVIEW_TJclWideStrVector +<copy !!MEMBEROVERVIEW_TJclVector> +\ \ + +@@TJclWideStrVector.Items +<copy TJclVector.Items> +\ \ + +@@TJclWideStrVector.Add@WideString +<copy TJclVector.Add@TObject> +\ \ + +@@TJclWideStrVector.AddAll@IJclWideStrCollection +<copy TJclVector.AddAll@IJclCollection> +\ \ + +@@TJclWideStrVector.AssignDataTo@TJclAbstractContainerBase +<copy TJclVector.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclWideStrVector.Clear +<copy TJclVector.Clear> +\ \ + +@@TJclWideStrVector.CollectionEquals@IJclWideStrCollection +<copy TJclVector.CollectionEquals@IJclCollection> +\ \ + +@@TJclWideStrVector.Contains@WideString +<copy TJclVector.Contains@TObject> +\ \ + +@@TJclWideStrVector.ContainsAll@IJclWideStrCollection +<copy TJclVector.ContainsAll@IJclCollection> +\ \ + +@@TJclWideStrVector.Create@IJclWideStrCollection +<copy TJclVector.Create@IJclCollection@Boolean> +\ \ + +@@TJclWideStrVector.Create@Integer +<copy TJclVector.Create@Integer@Boolean> +\ \ + +@@TJclWideStrVector.CreateEmptyContainer +<copy TJclVector.CreateEmptyContainer> +\ \ + +@@TJclWideStrVector.Delete@Integer +<copy TJclVector.Delete@Integer> +\ \ + +@@TJclWideStrVector.Destroy +<copy TJclVector.Destroy> +\ \ + +@@TJclWideStrVector.Extract@WideString +<copy TJclVector.Extract@TObject> +\ \ + +@@TJclWideStrVector.ExtractAll@IJclWideStrCollection +<copy TJclVector.ExtractAll@IJclCollection> +\ \ + +@@TJclWideStrVector.ExtractIndex@Integer +<copy TJclVector.ExtractIndex@Integer> +\ \ + +@@TJclWideStrVector.First +<copy TJclVector.First> +\ \ + +@@TJclWideStrVector.GetEnumerator +<copy TJclVector.GetEnumerator> +\ \ + +@@TJclWideStrVector.GetString@Integer +<copy TJclVector.GetObject@Integer> +\ \ + +@@TJclWideStrVector.IndexOf@WideString +<copy TJclVector.IndexOf@TObject> +\ \ + +@@TJclWideStrVector.Insert@Integer@WideString +<copy TJclVector.Insert@Integer@TObject> +\ \ + +@@TJclWideStrVector.InsertAll@Integer@IJclWideStrCollection +<copy TJclVector.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclWideStrVector.IsEmpty +<copy TJclVector.IsEmpty> +\ \ + +@@TJclWideStrVector.Last +<copy TJclVector.Last> +\ \ + +@@TJclWideStrVector.LastIndexOf@WideString +<copy TJclVector.LastIndexOf@TObject> +\ \ + +@@TJclWideStrVector.RaiseOutOfBoundsError +<copy TJclVector.RaiseOutOfBoundsError> +\ \ + +@@TJclWideStrVector.Remove@WideString +<copy TJclVector.Remove@TObject> +\ \ + +@@TJclWideStrVector.RemoveAll@IJclWideStrCollection +<copy TJclVector.RemoveAll@IJclCollection> +\ \ + +@@TJclWideStrVector.RetainAll@IJclWideStrCollection +<copy TJclVector.RetainAll@IJclCollection> +\ \ + +@@TJclWideStrVector.SetCapacity@Integer +<copy TJclVector.SetCapacity@Integer> +\ \ + +@@TJclWideStrVector.SetString@Integer@WideString +<copy TJclVector.SetObject@Integer@TObject> +\ \ + +@@TJclWideStrVector.Size +<copy TJclVector.Size> +\ \ + +@@TJclWideStrVector.SubList@Integer@Integer +<copy TJclVector.SubList@Integer@Integer> +\ \ +@@TJclUnicodeStrVector +<copy TJclVector> +\ \ + +@@!!MEMBEROVERVIEW_TJclUnicodeStrVector +<copy !!MEMBEROVERVIEW_TJclVector> +\ \ + +@@TJclUnicodeStrVector.Items +<copy TJclVector.Items> +\ \ + +@@TJclUnicodeStrVector.Add@UnicodeString +<copy TJclVector.Add@TObject> +\ \ + +@@TJclUnicodeStrVector.AddAll@IJclUnicodeStrCollection +<copy TJclVector.AddAll@IJclCollection> +\ \ + +@@TJclUnicodeStrVector.AssignDataTo@TJclAbstractContainerBase +<copy TJclVector.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclUnicodeStrVector.Clear +<copy TJclVector.Clear> +\ \ + +@@TJclUnicodeStrVector.CollectionEquals@IJclUnicodeStrCollection +<copy TJclVector.CollectionEquals@IJclCollection> +\ \ + +@@TJclUnicodeStrVector.Contains@UnicodeString +<copy TJclVector.Contains@TObject> +\ \ + +@@TJclUnicodeStrVector.ContainsAll@IJclUnicodeStrCollection +<copy TJclVector.ContainsAll@IJclCollection> +\ \ + +@@TJclUnicodeStrVector.Create@IJclUnicodeStrCollection +<copy TJclVector.Create@IJclCollection@Boolean> +\ \ + +@@TJclUnicodeStrVector.Create@Integer +<copy TJclVector.Create@Integer@Boolean> +\ \ + +@@TJclUnicodeStrVector.CreateEmptyContainer +<copy TJclVector.CreateEmptyContainer> +\ \ + +@@TJclUnicodeStrVector.Delete@Integer +<copy TJclVector.Delete@Integer> +\ \ + +@@TJclUnicodeStrVector.Destroy +<copy TJclVector.Destroy> +\ \ + +@@TJclUnicodeStrVector.Extract@UnicodeString +<copy TJclVector.Extract@TObject> +\ \ + +@@TJclUnicodeStrVector.ExtractAll@IJclUnicodeStrCollection +<copy TJclVector.ExtractAll@IJclCollection> +\ \ + +@@TJclUnicodeStrVector.ExtractIndex@Integer +<copy TJclVector.ExtractIndex@Integer> +\ \ + +@@TJclUnicodeStrVector.First +<copy TJclVector.First> +\ \ + +@@TJclUnicodeStrVector.GetEnumerator +<copy TJclVector.GetEnumerator> +\ \ + +@@TJclUnicodeStrVector.GetString@Integer +<copy TJclVector.GetObject@Integer> +\ \ + +@@TJclUnicodeStrVector.IndexOf@UnicodeString +<copy TJclVector.IndexOf@TObject> +\ \ + +@@TJclUnicodeStrVector.Insert@Integer@UnicodeString +<copy TJclVector.Insert@Integer@TObject> +\ \ + +@@TJclUnicodeStrVector.InsertAll@Integer@IJclUnicodeStrCollection +<copy TJclVector.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclUnicodeStrVector.IsEmpty +<copy TJclVector.IsEmpty> +\ \ + +@@TJclUnicodeStrVector.Last +<copy TJclVector.Last> +\ \ + +@@TJclUnicodeStrVector.LastIndexOf@UnicodeString +<copy TJclVector.LastIndexOf@TObject> +\ \ + +@@TJclUnicodeStrVector.RaiseOutOfBoundsError +<copy TJclVector.RaiseOutOfBoundsError> +\ \ + +@@TJclUnicodeStrVector.Remove@UnicodeString +<copy TJclVector.Remove@TObject> +\ \ + +@@TJclUnicodeStrVector.RemoveAll@IJclUnicodeStrCollection +<copy TJclVector.RemoveAll@IJclCollection> +\ \ + +@@TJclUnicodeStrVector.RetainAll@IJclUnicodeStrCollection +<copy TJclVector.RetainAll@IJclCollection> +\ \ + +@@TJclUnicodeStrVector.SetCapacity@Integer +<copy TJclVector.SetCapacity@Integer> +\ \ + +@@TJclUnicodeStrVector.SetString@Integer@UnicodeString +<copy TJclVector.SetObject@Integer@TObject> +\ \ + +@@TJclUnicodeStrVector.Size +<copy TJclVector.Size> +\ \ + +@@TJclUnicodeStrVector.SubList@Integer@Integer +<copy TJclVector.SubList@Integer@Integer> +\ \ +@@TJclSingleVector +<copy TJclVector> +\ \ + +@@!!MEMBEROVERVIEW_TJclSingleVector +<copy !!MEMBEROVERVIEW_TJclVector> +\ \ + +@@TJclSingleVector.Items +<copy TJclVector.Items> +\ \ + +@@TJclSingleVector.Add@Single +<copy TJclVector.Add@TObject> +\ \ + +@@TJclSingleVector.AddAll@IJclSingleCollection +<copy TJclVector.AddAll@IJclCollection> +\ \ + +@@TJclSingleVector.AssignDataTo@TJclAbstractContainerBase +<copy TJclVector.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclSingleVector.Clear +<copy TJclVector.Clear> +\ \ + +@@TJclSingleVector.CollectionEquals@IJclSingleCollection +<copy TJclVector.CollectionEquals@IJclCollection> +\ \ + +@@TJclSingleVector.Contains@Single +<copy TJclVector.Contains@TObject> +\ \ + +@@TJclSingleVector.ContainsAll@IJclSingleCollection +<copy TJclVector.ContainsAll@IJclCollection> +\ \ + +@@TJclSingleVector.Create@IJclSingleCollection +<copy TJclVector.Create@IJclCollection@Boolean> +\ \ + +@@TJclSingleVector.Create@Integer +<copy TJclVector.Create@Integer@Boolean> +\ \ + +@@TJclSingleVector.CreateEmptyContainer +<copy TJclVector.CreateEmptyContainer> +\ \ + +@@TJclSingleVector.Delete@Integer +<copy TJclVector.Delete@Integer> +\ \ + +@@TJclSingleVector.Destroy +<copy TJclVector.Destroy> +\ \ + +@@TJclSingleVector.Extract@Single +<copy TJclVector.Extract@TObject> +\ \ + +@@TJclSingleVector.ExtractAll@IJclSingleCollection +<copy TJclVector.ExtractAll@IJclCollection> +\ \ + +@@TJclSingleVector.ExtractIndex@Integer +<copy TJclVector.ExtractIndex@Integer> +\ \ + +@@TJclSingleVector.First +<copy TJclVector.First> +\ \ + +@@TJclSingleVector.GetEnumerator +<copy TJclVector.GetEnumerator> +\ \ + +@@TJclSingleVector.GetValue@Integer +<copy TJclVector.GetObject@Integer> +\ \ + +@@TJclSingleVector.IndexOf@Single +<copy TJclVector.IndexOf@TObject> +\ \ + +@@TJclSingleVector.Insert@Integer@Single +<copy TJclVector.Insert@Integer@TObject> +\ \ + +@@TJclSingleVector.InsertAll@Integer@IJclSingleCollection +<copy TJclVector.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclSingleVector.IsEmpty +<copy TJclVector.IsEmpty> +\ \ + +@@TJclSingleVector.Last +<copy TJclVector.Last> +\ \ + +@@TJclSingleVector.LastIndexOf@Single +<copy TJclVector.LastIndexOf@TObject> +\ \ + +@@TJclSingleVector.RaiseOutOfBoundsError +<copy TJclVector.RaiseOutOfBoundsError> +\ \ + +@@TJclSingleVector.Remove@Single +<copy TJclVector.Remove@TObject> +\ \ + +@@TJclSingleVector.RemoveAll@IJclSingleCollection +<copy TJclVector.RemoveAll@IJclCollection> +\ \ + +@@TJclSingleVector.RetainAll@IJclSingleCollection +<copy TJclVector.RetainAll@IJclCollection> +\ \ + +@@TJclSingleVector.SetCapacity@Integer +<copy TJclVector.SetCapacity@Integer> +\ \ + +@@TJclSingleVector.SetValue@Integer@Single +<copy TJclVector.SetObject@Integer@TObject> +\ \ + +@@TJclSingleVector.Size +<copy TJclVector.Size> +\ \ + +@@TJclSingleVector.SubList@Integer@Integer +<copy TJclVector.SubList@Integer@Integer> +\ \ +@@TJclDoubleVector +<copy TJclVector> +\ \ + +@@!!MEMBEROVERVIEW_TJclDoubleVector +<copy !!MEMBEROVERVIEW_TJclVector> +\ \ + +@@TJclDoubleVector.Items +<copy TJclVector.Items> +\ \ + +@@TJclDoubleVector.Add@Double +<copy TJclVector.Add@TObject> +\ \ + +@@TJclDoubleVector.AddAll@IJclDoubleCollection +<copy TJclVector.AddAll@IJclCollection> +\ \ + +@@TJclDoubleVector.AssignDataTo@TJclAbstractContainerBase +<copy TJclVector.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclDoubleVector.Clear +<copy TJclVector.Clear> +\ \ + +@@TJclDoubleVector.CollectionEquals@IJclDoubleCollection +<copy TJclVector.CollectionEquals@IJclCollection> +\ \ + +@@TJclDoubleVector.Contains@Double +<copy TJclVector.Contains@TObject> +\ \ + +@@TJclDoubleVector.ContainsAll@IJclDoubleCollection +<copy TJclVector.ContainsAll@IJclCollection> +\ \ + +@@TJclDoubleVector.Create@IJclDoubleCollection +<copy TJclVector.Create@IJclCollection@Boolean> +\ \ + +@@TJclDoubleVector.Create@Integer +<copy TJclVector.Create@Integer@Boolean> +\ \ + +@@TJclDoubleVector.CreateEmptyContainer +<copy TJclVector.CreateEmptyContainer> +\ \ + +@@TJclDoubleVector.Delete@Integer +<copy TJclVector.Delete@Integer> +\ \ + +@@TJclDoubleVector.Destroy +<copy TJclVector.Destroy> +\ \ + +@@TJclDoubleVector.Extract@Double +<copy TJclVector.Extract@TObject> +\ \ + +@@TJclDoubleVector.ExtractAll@IJclDoubleCollection +<copy TJclVector.ExtractAll@IJclCollection> +\ \ + +@@TJclDoubleVector.ExtractIndex@Integer +<copy TJclVector.ExtractIndex@Integer> +\ \ + +@@TJclDoubleVector.First +<copy TJclVector.First> +\ \ + +@@TJclDoubleVector.GetEnumerator +<copy TJclVector.GetEnumerator> +\ \ + +@@TJclDoubleVector.GetValue@Integer +<copy TJclVector.GetObject@Integer> +\ \ + +@@TJclDoubleVector.IndexOf@Double +<copy TJclVector.IndexOf@TObject> +\ \ + +@@TJclDoubleVector.Insert@Integer@Double +<copy TJclVector.Insert@Integer@TObject> +\ \ + +@@TJclDoubleVector.InsertAll@Integer@IJclDoubleCollection +<copy TJclVector.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclDoubleVector.IsEmpty +<copy TJclVector.IsEmpty> +\ \ + +@@TJclDoubleVector.Last +<copy TJclVector.Last> +\ \ + +@@TJclDoubleVector.LastIndexOf@Double +<copy TJclVector.LastIndexOf@TObject> +\ \ + +@@TJclDoubleVector.RaiseOutOfBoundsError +<copy TJclVector.RaiseOutOfBoundsError> +\ \ + +@@TJclDoubleVector.Remove@Double +<copy TJclVector.Remove@TObject> +\ \ + +@@TJclDoubleVector.RemoveAll@IJclDoubleCollection +<copy TJclVector.RemoveAll@IJclCollection> +\ \ + +@@TJclDoubleVector.RetainAll@IJclDoubleCollection +<copy TJclVector.RetainAll@IJclCollection> +\ \ + +@@TJclDoubleVector.SetCapacity@Integer +<copy TJclVector.SetCapacity@Integer> +\ \ + +@@TJclDoubleVector.SetValue@Integer@Double +<copy TJclVector.SetObject@Integer@TObject> +\ \ + +@@TJclDoubleVector.Size +<copy TJclVector.Size> +\ \ + +@@TJclDoubleVector.SubList@Integer@Integer +<copy TJclVector.SubList@Integer@Integer> +\ \ +@@TJclExtendedVector +<copy TJclVector> +\ \ + +@@!!MEMBEROVERVIEW_TJclExtendedVector +<copy !!MEMBEROVERVIEW_TJclVector> +\ \ + +@@TJclExtendedVector.Items +<copy TJclVector.Items> +\ \ + +@@TJclExtendedVector.Add@Extended +<copy TJclVector.Add@TObject> +\ \ + +@@TJclExtendedVector.AddAll@IJclExtendedCollection +<copy TJclVector.AddAll@IJclCollection> +\ \ + +@@TJclExtendedVector.AssignDataTo@TJclAbstractContainerBase +<copy TJclVector.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclExtendedVector.Clear +<copy TJclVector.Clear> +\ \ + +@@TJclExtendedVector.CollectionEquals@IJclExtendedCollection +<copy TJclVector.CollectionEquals@IJclCollection> +\ \ + +@@TJclExtendedVector.Contains@Extended +<copy TJclVector.Contains@TObject> +\ \ + +@@TJclExtendedVector.ContainsAll@IJclExtendedCollection +<copy TJclVector.ContainsAll@IJclCollection> +\ \ + +@@TJclExtendedVector.Create@IJclExtendedCollection +<copy TJclVector.Create@IJclCollection@Boolean> +\ \ + +@@TJclExtendedVector.Create@Integer +<copy TJclVector.Create@Integer@Boolean> +\ \ + +@@TJclExtendedVector.CreateEmptyContainer +<copy TJclVector.CreateEmptyContainer> +\ \ + +@@TJclExtendedVector.Delete@Integer +<copy TJclVector.Delete@Integer> +\ \ + +@@TJclExtendedVector.Destroy +<copy TJclVector.Destroy> +\ \ + +@@TJclExtendedVector.Extract@Extended +<copy TJclVector.Extract@TObject> +\ \ + +@@TJclExtendedVector.ExtractAll@IJclExtendedCollection +<copy TJclVector.ExtractAll@IJclCollection> +\ \ + +@@TJclExtendedVector.ExtractIndex@Integer +<copy TJclVector.ExtractIndex@Integer> +\ \ + +@@TJclExtendedVector.First +<copy TJclVector.First> +\ \ + +@@TJclExtendedVector.GetEnumerator +<copy TJclVector.GetEnumerator> +\ \ + +@@TJclExtendedVector.GetValue@Integer +<copy TJclVector.GetObject@Integer> +\ \ + +@@TJclExtendedVector.IndexOf@Extended +<copy TJclVector.IndexOf@TObject> +\ \ + +@@TJclExtendedVector.Insert@Integer@Extended +<copy TJclVector.Insert@Integer@TObject> +\ \ + +@@TJclExtendedVector.InsertAll@Integer@IJclExtendedCollection +<copy TJclVector.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclExtendedVector.IsEmpty +<copy TJclVector.IsEmpty> +\ \ + +@@TJclExtendedVector.Last +<copy TJclVector.Last> +\ \ + +@@TJclExtendedVector.LastIndexOf@Extended +<copy TJclVector.LastIndexOf@TObject> +\ \ + +@@TJclExtendedVector.RaiseOutOfBoundsError +<copy TJclVector.RaiseOutOfBoundsError> +\ \ + +@@TJclExtendedVector.Remove@Extended +<copy TJclVector.Remove@TObject> +\ \ + +@@TJclExtendedVector.RemoveAll@IJclExtendedCollection +<copy TJclVector.RemoveAll@IJclCollection> +\ \ + +@@TJclExtendedVector.RetainAll@IJclExtendedCollection +<copy TJclVector.RetainAll@IJclCollection> +\ \ + +@@TJclExtendedVector.SetCapacity@Integer +<copy TJclVector.SetCapacity@Integer> +\ \ + +@@TJclExtendedVector.SetValue@Integer@Extended +<copy TJclVector.SetObject@Integer@TObject> +\ \ + +@@TJclExtendedVector.Size +<copy TJclVector.Size> +\ \ + +@@TJclExtendedVector.SubList@Integer@Integer +<copy TJclVector.SubList@Integer@Integer> +\ \ +@@TJclIntegerVector +<copy TJclVector> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntegerVector +<copy !!MEMBEROVERVIEW_TJclVector> +\ \ + +@@TJclIntegerVector.Items +<copy TJclVector.Items> +\ \ + +@@TJclIntegerVector.Add@Integer +<copy TJclVector.Add@TObject> +\ \ + +@@TJclIntegerVector.AddAll@IJclIntegerCollection +<copy TJclVector.AddAll@IJclCollection> +\ \ + +@@TJclIntegerVector.AssignDataTo@TJclAbstractContainerBase +<copy TJclVector.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclIntegerVector.Clear +<copy TJclVector.Clear> +\ \ + +@@TJclIntegerVector.CollectionEquals@IJclIntegerCollection +<copy TJclVector.CollectionEquals@IJclCollection> +\ \ + +@@TJclIntegerVector.Contains@Integer +<copy TJclVector.Contains@TObject> +\ \ + +@@TJclIntegerVector.ContainsAll@IJclIntegerCollection +<copy TJclVector.ContainsAll@IJclCollection> +\ \ + +@@TJclIntegerVector.Create@IJclIntegerCollection +<copy TJclVector.Create@IJclCollection@Boolean> +\ \ + +@@TJclIntegerVector.Create@Integer +<copy TJclVector.Create@Integer@Boolean> +\ \ + +@@TJclIntegerVector.CreateEmptyContainer +<copy TJclVector.CreateEmptyContainer> +\ \ + +@@TJclIntegerVector.Delete@Integer +<copy TJclVector.Delete@Integer> +\ \ + +@@TJclIntegerVector.Destroy +<copy TJclVector.Destroy> +\ \ + +@@TJclIntegerVector.Extract@Integer +<copy TJclVector.Extract@TObject> +\ \ + +@@TJclIntegerVector.ExtractAll@IJclIntegerCollection +<copy TJclVector.ExtractAll@IJclCollection> +\ \ + +@@TJclIntegerVector.ExtractIndex@Integer +<copy TJclVector.ExtractIndex@Integer> +\ \ + +@@TJclIntegerVector.First +<copy TJclVector.First> +\ \ + +@@TJclIntegerVector.GetEnumerator +<copy TJclVector.GetEnumerator> +\ \ + +@@TJclIntegerVector.GetValue@Integer +<copy TJclVector.GetObject@Integer> +\ \ + +@@TJclIntegerVector.IndexOf@Integer +<copy TJclVector.IndexOf@TObject> +\ \ + +@@TJclIntegerVector.Insert@Integer@Integer +<copy TJclVector.Insert@Integer@TObject> +\ \ + +@@TJclIntegerVector.InsertAll@Integer@IJclIntegerCollection +<copy TJclVector.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclIntegerVector.IsEmpty +<copy TJclVector.IsEmpty> +\ \ + +@@TJclIntegerVector.Last +<copy TJclVector.Last> +\ \ + +@@TJclIntegerVector.LastIndexOf@Integer +<copy TJclVector.LastIndexOf@TObject> +\ \ + +@@TJclIntegerVector.RaiseOutOfBoundsError +<copy TJclVector.RaiseOutOfBoundsError> +\ \ + +@@TJclIntegerVector.Remove@Integer +<copy TJclVector.Remove@TObject> +\ \ + +@@TJclIntegerVector.RemoveAll@IJclIntegerCollection +<copy TJclVector.RemoveAll@IJclCollection> +\ \ + +@@TJclIntegerVector.RetainAll@IJclIntegerCollection +<copy TJclVector.RetainAll@IJclCollection> +\ \ + +@@TJclIntegerVector.SetCapacity@Integer +<copy TJclVector.SetCapacity@Integer> +\ \ + +@@TJclIntegerVector.SetValue@Integer@Integer +<copy TJclVector.SetObject@Integer@TObject> +\ \ + +@@TJclIntegerVector.Size +<copy TJclVector.Size> +\ \ + +@@TJclIntegerVector.SubList@Integer@Integer +<copy TJclVector.SubList@Integer@Integer> +\ \ +@@TJclCardinalVector +<copy TJclVector> +\ \ + +@@!!MEMBEROVERVIEW_TJclCardinalVector +<copy !!MEMBEROVERVIEW_TJclVector> +\ \ + +@@TJclCardinalVector.Items +<copy TJclVector.Items> +\ \ + +@@TJclCardinalVector.Add@Cardinal +<copy TJclVector.Add@TObject> +\ \ + +@@TJclCardinalVector.AddAll@IJclCardinalCollection +<copy TJclVector.AddAll@IJclCollection> +\ \ + +@@TJclCardinalVector.AssignDataTo@TJclAbstractContainerBase +<copy TJclVector.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclCardinalVector.Clear +<copy TJclVector.Clear> +\ \ + +@@TJclCardinalVector.CollectionEquals@IJclCardinalCollection +<copy TJclVector.CollectionEquals@IJclCollection> +\ \ + +@@TJclCardinalVector.Contains@Cardinal +<copy TJclVector.Contains@TObject> +\ \ + +@@TJclCardinalVector.ContainsAll@IJclCardinalCollection +<copy TJclVector.ContainsAll@IJclCollection> +\ \ + +@@TJclCardinalVector.Create@IJclCardinalCollection +<copy TJclVector.Create@IJclCollection@Boolean> +\ \ + +@@TJclCardinalVector.Create@Integer +<copy TJclVector.Create@Integer@Boolean> +\ \ + +@@TJclCardinalVector.CreateEmptyContainer +<copy TJclVector.CreateEmptyContainer> +\ \ + +@@TJclCardinalVector.Delete@Integer +<copy TJclVector.Delete@Integer> +\ \ + +@@TJclCardinalVector.Destroy +<copy TJclVector.Destroy> +\ \ + +@@TJclCardinalVector.Extract@Cardinal +<copy TJclVector.Extract@TObject> +\ \ + +@@TJclCardinalVector.ExtractAll@IJclCardinalCollection +<copy TJclVector.ExtractAll@IJclCollection> +\ \ + +@@TJclCardinalVector.ExtractIndex@Integer +<copy TJclVector.ExtractIndex@Integer> +\ \ + +@@TJclCardinalVector.First +<copy TJclVector.First> +\ \ + +@@TJclCardinalVector.GetEnumerator +<copy TJclVector.GetEnumerator> +\ \ + +@@TJclCardinalVector.GetValue@Integer +<copy TJclVector.GetObject@Integer> +\ \ + +@@TJclCardinalVector.IndexOf@Cardinal +<copy TJclVector.IndexOf@TObject> +\ \ + +@@TJclCardinalVector.Insert@Integer@Cardinal +<copy TJclVector.Insert@Integer@TObject> +\ \ + +@@TJclCardinalVector.InsertAll@Integer@IJclCardinalCollection +<copy TJclVector.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclCardinalVector.IsEmpty +<copy TJclVector.IsEmpty> +\ \ + +@@TJclCardinalVector.Last +<copy TJclVector.Last> +\ \ + +@@TJclCardinalVector.LastIndexOf@Cardinal +<copy TJclVector.LastIndexOf@TObject> +\ \ + +@@TJclCardinalVector.RaiseOutOfBoundsError +<copy TJclVector.RaiseOutOfBoundsError> +\ \ + +@@TJclCardinalVector.Remove@Cardinal +<copy TJclVector.Remove@TObject> +\ \ + +@@TJclCardinalVector.RemoveAll@IJclCardinalCollection +<copy TJclVector.RemoveAll@IJclCollection> +\ \ + +@@TJclCardinalVector.RetainAll@IJclCardinalCollection +<copy TJclVector.RetainAll@IJclCollection> +\ \ + +@@TJclCardinalVector.SetCapacity@Integer +<copy TJclVector.SetCapacity@Integer> +\ \ + +@@TJclCardinalVector.SetValue@Integer@Cardinal +<copy TJclVector.SetObject@Integer@TObject> +\ \ + +@@TJclCardinalVector.Size +<copy TJclVector.Size> +\ \ + +@@TJclCardinalVector.SubList@Integer@Integer +<copy TJclVector.SubList@Integer@Integer> +\ \ +@@TJclInt64Vector +<copy TJclVector> +\ \ + +@@!!MEMBEROVERVIEW_TJclInt64Vector +<copy !!MEMBEROVERVIEW_TJclVector> +\ \ + +@@TJclInt64Vector.Items +<copy TJclVector.Items> +\ \ + +@@TJclInt64Vector.Add@Int64 +<copy TJclVector.Add@TObject> +\ \ + +@@TJclInt64Vector.AddAll@IJclInt64Collection +<copy TJclVector.AddAll@IJclCollection> +\ \ + +@@TJclInt64Vector.AssignDataTo@TJclAbstractContainerBase +<copy TJclVector.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclInt64Vector.Clear +<copy TJclVector.Clear> +\ \ + +@@TJclInt64Vector.CollectionEquals@IJclInt64Collection +<copy TJclVector.CollectionEquals@IJclCollection> +\ \ + +@@TJclInt64Vector.Contains@Int64 +<copy TJclVector.Contains@TObject> +\ \ + +@@TJclInt64Vector.ContainsAll@IJclInt64Collection +<copy TJclVector.ContainsAll@IJclCollection> +\ \ + +@@TJclInt64Vector.Create@IJclInt64Collection +<copy TJclVector.Create@IJclCollection@Boolean> +\ \ + +@@TJclInt64Vector.Create@Integer +<copy TJclVector.Create@Integer@Boolean> +\ \ + +@@TJclInt64Vector.CreateEmptyContainer +<copy TJclVector.CreateEmptyContainer> +\ \ + +@@TJclInt64Vector.Delete@Integer +<copy TJclVector.Delete@Integer> +\ \ + +@@TJclInt64Vector.Destroy +<copy TJclVector.Destroy> +\ \ + +@@TJclInt64Vector.Extract@Int64 +<copy TJclVector.Extract@TObject> +\ \ + +@@TJclInt64Vector.ExtractAll@IJclInt64Collection +<copy TJclVector.ExtractAll@IJclCollection> +\ \ + +@@TJclInt64Vector.ExtractIndex@Integer +<copy TJclVector.ExtractIndex@Integer> +\ \ + +@@TJclInt64Vector.First +<copy TJclVector.First> +\ \ + +@@TJclInt64Vector.GetEnumerator +<copy TJclVector.GetEnumerator> +\ \ + +@@TJclInt64Vector.GetValue@Integer +<copy TJclVector.GetObject@Integer> +\ \ + +@@TJclInt64Vector.IndexOf@Int64 +<copy TJclVector.IndexOf@TObject> +\ \ + +@@TJclInt64Vector.Insert@Integer@Int64 +<copy TJclVector.Insert@Integer@TObject> +\ \ + +@@TJclInt64Vector.InsertAll@Integer@IJclInt64Collection +<copy TJclVector.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclInt64Vector.IsEmpty +<copy TJclVector.IsEmpty> +\ \ + +@@TJclInt64Vector.Last +<copy TJclVector.Last> +\ \ + +@@TJclInt64Vector.LastIndexOf@Int64 +<copy TJclVector.LastIndexOf@TObject> +\ \ + +@@TJclInt64Vector.RaiseOutOfBoundsError +<copy TJclVector.RaiseOutOfBoundsError> +\ \ + +@@TJclInt64Vector.Remove@Int64 +<copy TJclVector.Remove@TObject> +\ \ + +@@TJclInt64Vector.RemoveAll@IJclInt64Collection +<copy TJclVector.RemoveAll@IJclCollection> +\ \ + +@@TJclInt64Vector.RetainAll@IJclInt64Collection +<copy TJclVector.RetainAll@IJclCollection> +\ \ + +@@TJclInt64Vector.SetCapacity@Integer +<copy TJclVector.SetCapacity@Integer> +\ \ + +@@TJclInt64Vector.SetValue@Integer@Int64 +<copy TJclVector.SetObject@Integer@TObject> +\ \ + +@@TJclInt64Vector.Size +<copy TJclVector.Size> +\ \ + +@@TJclInt64Vector.SubList@Integer@Integer +<copy TJclVector.SubList@Integer@Integer> +\ \ +@@TJclPtrVector +<copy TJclVector> +\ \ + +@@!!MEMBEROVERVIEW_TJclPtrVector +<copy !!MEMBEROVERVIEW_TJclVector> +\ \ + +@@TJclPtrVector.Items +<copy TJclVector.Items> +\ \ + +@@TJclPtrVector.Add@Pointer +<copy TJclVector.Add@TObject> +\ \ + +@@TJclPtrVector.AddAll@IJclPtrCollection +<copy TJclVector.AddAll@IJclCollection> +\ \ + +@@TJclPtrVector.AssignDataTo@TJclAbstractContainerBase +<copy TJclVector.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@TJclPtrVector.Clear +<copy TJclVector.Clear> +\ \ + +@@TJclPtrVector.CollectionEquals@IJclPtrCollection +<copy TJclVector.CollectionEquals@IJclCollection> +\ \ + +@@TJclPtrVector.Contains@Pointer +<copy TJclVector.Contains@TObject> +\ \ + +@@TJclPtrVector.ContainsAll@IJclPtrCollection +<copy TJclVector.ContainsAll@IJclCollection> +\ \ + +@@TJclPtrVector.Create@IJclPtrCollection +<copy TJclVector.Create@IJclCollection@Boolean> +\ \ + +@@TJclPtrVector.Create@Integer +<copy TJclVector.Create@Integer@Boolean> +\ \ + +@@TJclPtrVector.CreateEmptyContainer +<copy TJclVector.CreateEmptyContainer> +\ \ + +@@TJclPtrVector.Delete@Integer +<copy TJclVector.Delete@Integer> +\ \ + +@@TJclPtrVector.Destroy +<copy TJclVector.Destroy> +\ \ + +@@TJclPtrVector.Extract@Pointer +<copy TJclVector.Extract@TObject> +\ \ + +@@TJclPtrVector.ExtractAll@IJclPtrCollection +<copy TJclVector.ExtractAll@IJclCollection> +\ \ + +@@TJclPtrVector.ExtractIndex@Integer +<copy TJclVector.ExtractIndex@Integer> +\ \ + +@@TJclPtrVector.First +<copy TJclVector.First> +\ \ + +@@TJclPtrVector.GetEnumerator +<copy TJclVector.GetEnumerator> +\ \ + +@@TJclPtrVector.GetPointer@Integer +<copy TJclVector.GetObject@Integer> +\ \ + +@@TJclPtrVector.IndexOf@Pointer +<copy TJclVector.IndexOf@TObject> +\ \ + +@@TJclPtrVector.Insert@Integer@Pointer +<copy TJclVector.Insert@Integer@TObject> +\ \ + +@@TJclPtrVector.InsertAll@Integer@IJclPtrCollection +<copy TJclVector.InsertAll@Integer@IJclCollection> +\ \ + +@@TJclPtrVector.IsEmpty +<copy TJclVector.IsEmpty> +\ \ + +@@TJclPtrVector.Last +<copy TJclVector.Last> +\ \ + +@@TJclPtrVector.LastIndexOf@Pointer +<copy TJclVector.LastIndexOf@TObject> +\ \ + +@@TJclPtrVector.RaiseOutOfBoundsError +<copy TJclVector.RaiseOutOfBoundsError> +\ \ + +@@TJclPtrVector.Remove@Pointer +<copy TJclVector.Remove@TObject> +\ \ + +@@TJclPtrVector.RemoveAll@IJclPtrCollection +<copy TJclVector.RemoveAll@IJclCollection> +\ \ + +@@TJclPtrVector.RetainAll@IJclPtrCollection +<copy TJclVector.RetainAll@IJclCollection> +\ \ + +@@TJclPtrVector.SetCapacity@Integer +<copy TJclVector.SetCapacity@Integer> +\ \ + +@@TJclPtrVector.SetPointer@Integer@Pointer +<copy TJclVector.SetObject@Integer@TObject> +\ \ + +@@TJclPtrVector.Size +<copy TJclVector.Size> +\ \ + +@@TJclPtrVector.SubList@Integer@Integer +<copy TJclVector.SubList@Integer@Integer> +\ \ + + +@@TJclIntfVectorIterator +<copy TJclVectorIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntfVectorIterator +<copy !!MEMBEROVERVIEW_TJclVectorIterator> +\ \ + +@@TJclIntfVectorIterator.Current +<copy TJclVectorIterator.Current> +\ \ + +@@TJclIntfVectorIterator.Add@IInterface +<copy TJclVectorIterator.Add@TObject> +\ \ + +@@TJclIntfVectorIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclVectorIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclIntfVectorIterator.Create@IJclIntfList@Integer@Boolean@TItrStart +<copy TJclVectorIterator.Create@IJclList@Integer@Boolean@TItrStart> +\ \ + +@@TJclIntfVectorIterator.CreateEmptyIterator +<copy TJclVectorIterator.CreateEmptyIterator> +\ \ + +@@TJclIntfVectorIterator.Extract +<copy TJclVectorIterator.Extract> +\ \ + +@@TJclIntfVectorIterator.GetObject +<copy TJclVectorIterator.GetObject> +\ \ + +@@TJclIntfVectorIterator.HasNext +<copy TJclVectorIterator.HasNext> +\ \ + +@@TJclIntfVectorIterator.HasPrevious +<copy TJclVectorIterator.HasPrevious> +\ \ + +@@TJclIntfVectorIterator.Insert@IInterface +<copy TJclVectorIterator.Insert@TObject> +\ \ + +@@TJclIntfVectorIterator.IteratorEquals@IJclIntfIterator +<copy TJclVectorIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclIntfVectorIterator.MoveNext +<copy TJclVectorIterator.MoveNext> +\ \ + +@@TJclIntfVectorIterator.Next +<copy TJclVectorIterator.Next> +\ \ + +@@TJclIntfVectorIterator.NextIndex +<copy TJclVectorIterator.NextIndex> +\ \ + +@@TJclIntfVectorIterator.Previous +<copy TJclVectorIterator.Previous> +\ \ + +@@TJclIntfVectorIterator.PreviousIndex +<copy TJclVectorIterator.PreviousIndex> +\ \ + +@@TJclIntfVectorIterator.Remove +<copy TJclVectorIterator.Remove> +\ \ + +@@TJclIntfVectorIterator.Reset +<copy TJclVectorIterator.Reset> +\ \ + +@@TJclIntfVectorIterator.SetObject@IInterface +<copy TJclVectorIterator.SetObject@TObject> +\ \ +@@TJclAnsiStrVectorIterator +<copy TJclVectorIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclAnsiStrVectorIterator +<copy !!MEMBEROVERVIEW_TJclVectorIterator> +\ \ + +@@TJclAnsiStrVectorIterator.Current +<copy TJclVectorIterator.Current> +\ \ + +@@TJclAnsiStrVectorIterator.Add@AnsiString +<copy TJclVectorIterator.Add@TObject> +\ \ + +@@TJclAnsiStrVectorIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclVectorIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclAnsiStrVectorIterator.Create@IJclAnsiStrList@Integer@Boolean@TItrStart +<copy TJclVectorIterator.Create@IJclList@Integer@Boolean@TItrStart> +\ \ + +@@TJclAnsiStrVectorIterator.CreateEmptyIterator +<copy TJclVectorIterator.CreateEmptyIterator> +\ \ + +@@TJclAnsiStrVectorIterator.Extract +<copy TJclVectorIterator.Extract> +\ \ + +@@TJclAnsiStrVectorIterator.GetString +<copy TJclVectorIterator.GetObject> +\ \ + +@@TJclAnsiStrVectorIterator.HasNext +<copy TJclVectorIterator.HasNext> +\ \ + +@@TJclAnsiStrVectorIterator.HasPrevious +<copy TJclVectorIterator.HasPrevious> +\ \ + +@@TJclAnsiStrVectorIterator.Insert@AnsiString +<copy TJclVectorIterator.Insert@TObject> +\ \ + +@@TJclAnsiStrVectorIterator.IteratorEquals@IJclAnsiStrIterator +<copy TJclVectorIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclAnsiStrVectorIterator.MoveNext +<copy TJclVectorIterator.MoveNext> +\ \ + +@@TJclAnsiStrVectorIterator.Next +<copy TJclVectorIterator.Next> +\ \ + +@@TJclAnsiStrVectorIterator.NextIndex +<copy TJclVectorIterator.NextIndex> +\ \ + +@@TJclAnsiStrVectorIterator.Previous +<copy TJclVectorIterator.Previous> +\ \ + +@@TJclAnsiStrVectorIterator.PreviousIndex +<copy TJclVectorIterator.PreviousIndex> +\ \ + +@@TJclAnsiStrVectorIterator.Remove +<copy TJclVectorIterator.Remove> +\ \ + +@@TJclAnsiStrVectorIterator.Reset +<copy TJclVectorIterator.Reset> +\ \ + +@@TJclAnsiStrVectorIterator.SetString@AnsiString +<copy TJclVectorIterator.SetObject@TObject> +\ \ +@@TJclWideStrVectorIterator +<copy TJclVectorIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclWideStrVectorIterator +<copy !!MEMBEROVERVIEW_TJclVectorIterator> +\ \ + +@@TJclWideStrVectorIterator.Current +<copy TJclVectorIterator.Current> +\ \ + +@@TJclWideStrVectorIterator.Add@WideString +<copy TJclVectorIterator.Add@TObject> +\ \ + +@@TJclWideStrVectorIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclVectorIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclWideStrVectorIterator.Create@IJclWideStrList@Integer@Boolean@TItrStart +<copy TJclVectorIterator.Create@IJclList@Integer@Boolean@TItrStart> +\ \ + +@@TJclWideStrVectorIterator.CreateEmptyIterator +<copy TJclVectorIterator.CreateEmptyIterator> +\ \ + +@@TJclWideStrVectorIterator.Extract +<copy TJclVectorIterator.Extract> +\ \ + +@@TJclWideStrVectorIterator.GetString +<copy TJclVectorIterator.GetObject> +\ \ + +@@TJclWideStrVectorIterator.HasNext +<copy TJclVectorIterator.HasNext> +\ \ + +@@TJclWideStrVectorIterator.HasPrevious +<copy TJclVectorIterator.HasPrevious> +\ \ + +@@TJclWideStrVectorIterator.Insert@WideString +<copy TJclVectorIterator.Insert@TObject> +\ \ + +@@TJclWideStrVectorIterator.IteratorEquals@IJclWideStrIterator +<copy TJclVectorIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclWideStrVectorIterator.MoveNext +<copy TJclVectorIterator.MoveNext> +\ \ + +@@TJclWideStrVectorIterator.Next +<copy TJclVectorIterator.Next> +\ \ + +@@TJclWideStrVectorIterator.NextIndex +<copy TJclVectorIterator.NextIndex> +\ \ + +@@TJclWideStrVectorIterator.Previous +<copy TJclVectorIterator.Previous> +\ \ + +@@TJclWideStrVectorIterator.PreviousIndex +<copy TJclVectorIterator.PreviousIndex> +\ \ + +@@TJclWideStrVectorIterator.Remove +<copy TJclVectorIterator.Remove> +\ \ + +@@TJclWideStrVectorIterator.Reset +<copy TJclVectorIterator.Reset> +\ \ + +@@TJclWideStrVectorIterator.SetString@WideString +<copy TJclVectorIterator.SetObject@TObject> +\ \ +@@TJclUnicodeStrVectorIterator +<copy TJclVectorIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclUnicodeStrVectorIterator +<copy !!MEMBEROVERVIEW_TJclVectorIterator> +\ \ + +@@TJclUnicodeStrVectorIterator.Current +<copy TJclVectorIterator.Current> +\ \ + +@@TJclUnicodeStrVectorIterator.Add@UnicodeString +<copy TJclVectorIterator.Add@TObject> +\ \ + +@@TJclUnicodeStrVectorIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclVectorIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclUnicodeStrVectorIterator.Create@IJclUnicodeStrList@Integer@Boolean@TItrStart +<copy TJclVectorIterator.Create@IJclList@Integer@Boolean@TItrStart> +\ \ + +@@TJclUnicodeStrVectorIterator.CreateEmptyIterator +<copy TJclVectorIterator.CreateEmptyIterator> +\ \ + +@@TJclUnicodeStrVectorIterator.Extract +<copy TJclVectorIterator.Extract> +\ \ + +@@TJclUnicodeStrVectorIterator.GetString +<copy TJclVectorIterator.GetObject> +\ \ + +@@TJclUnicodeStrVectorIterator.HasNext +<copy TJclVectorIterator.HasNext> +\ \ + +@@TJclUnicodeStrVectorIterator.HasPrevious +<copy TJclVectorIterator.HasPrevious> +\ \ + +@@TJclUnicodeStrVectorIterator.Insert@UnicodeString +<copy TJclVectorIterator.Insert@TObject> +\ \ + +@@TJclUnicodeStrVectorIterator.IteratorEquals@IJclUnicodeStrIterator +<copy TJclVectorIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclUnicodeStrVectorIterator.MoveNext +<copy TJclVectorIterator.MoveNext> +\ \ + +@@TJclUnicodeStrVectorIterator.Next +<copy TJclVectorIterator.Next> +\ \ + +@@TJclUnicodeStrVectorIterator.NextIndex +<copy TJclVectorIterator.NextIndex> +\ \ + +@@TJclUnicodeStrVectorIterator.Previous +<copy TJclVectorIterator.Previous> +\ \ + +@@TJclUnicodeStrVectorIterator.PreviousIndex +<copy TJclVectorIterator.PreviousIndex> +\ \ + +@@TJclUnicodeStrVectorIterator.Remove +<copy TJclVectorIterator.Remove> +\ \ + +@@TJclUnicodeStrVectorIterator.Reset +<copy TJclVectorIterator.Reset> +\ \ + +@@TJclUnicodeStrVectorIterator.SetString@UnicodeString +<copy TJclVectorIterator.SetObject@TObject> +\ \ +@@TJclSingleVectorIterator +<copy TJclVectorIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclSingleVectorIterator +<copy !!MEMBEROVERVIEW_TJclVectorIterator> +\ \ + +@@TJclSingleVectorIterator.Current +<copy TJclVectorIterator.Current> +\ \ + +@@TJclSingleVectorIterator.Add@Single +<copy TJclVectorIterator.Add@TObject> +\ \ + +@@TJclSingleVectorIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclVectorIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclSingleVectorIterator.Create@IJclSingleList@Integer@Boolean@TItrStart +<copy TJclVectorIterator.Create@IJclList@Integer@Boolean@TItrStart> +\ \ + +@@TJclSingleVectorIterator.CreateEmptyIterator +<copy TJclVectorIterator.CreateEmptyIterator> +\ \ + +@@TJclSingleVectorIterator.Extract +<copy TJclVectorIterator.Extract> +\ \ + +@@TJclSingleVectorIterator.GetValue +<copy TJclVectorIterator.GetObject> +\ \ + +@@TJclSingleVectorIterator.HasNext +<copy TJclVectorIterator.HasNext> +\ \ + +@@TJclSingleVectorIterator.HasPrevious +<copy TJclVectorIterator.HasPrevious> +\ \ + +@@TJclSingleVectorIterator.Insert@Single +<copy TJclVectorIterator.Insert@TObject> +\ \ + +@@TJclSingleVectorIterator.IteratorEquals@IJclSingleIterator +<copy TJclVectorIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclSingleVectorIterator.MoveNext +<copy TJclVectorIterator.MoveNext> +\ \ + +@@TJclSingleVectorIterator.Next +<copy TJclVectorIterator.Next> +\ \ + +@@TJclSingleVectorIterator.NextIndex +<copy TJclVectorIterator.NextIndex> +\ \ + +@@TJclSingleVectorIterator.Previous +<copy TJclVectorIterator.Previous> +\ \ + +@@TJclSingleVectorIterator.PreviousIndex +<copy TJclVectorIterator.PreviousIndex> +\ \ + +@@TJclSingleVectorIterator.Remove +<copy TJclVectorIterator.Remove> +\ \ + +@@TJclSingleVectorIterator.Reset +<copy TJclVectorIterator.Reset> +\ \ + +@@TJclSingleVectorIterator.SetValue@Single +<copy TJclVectorIterator.SetObject@TObject> +\ \ +@@TJclDoubleVectorIterator +<copy TJclVectorIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclDoubleVectorIterator +<copy !!MEMBEROVERVIEW_TJclVectorIterator> +\ \ + +@@TJclDoubleVectorIterator.Current +<copy TJclVectorIterator.Current> +\ \ + +@@TJclDoubleVectorIterator.Add@Double +<copy TJclVectorIterator.Add@TObject> +\ \ + +@@TJclDoubleVectorIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclVectorIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclDoubleVectorIterator.Create@IJclDoubleList@Integer@Boolean@TItrStart +<copy TJclVectorIterator.Create@IJclList@Integer@Boolean@TItrStart> +\ \ + +@@TJclDoubleVectorIterator.CreateEmptyIterator +<copy TJclVectorIterator.CreateEmptyIterator> +\ \ + +@@TJclDoubleVectorIterator.Extract +<copy TJclVectorIterator.Extract> +\ \ + +@@TJclDoubleVectorIterator.GetValue +<copy TJclVectorIterator.GetObject> +\ \ + +@@TJclDoubleVectorIterator.HasNext +<copy TJclVectorIterator.HasNext> +\ \ + +@@TJclDoubleVectorIterator.HasPrevious +<copy TJclVectorIterator.HasPrevious> +\ \ + +@@TJclDoubleVectorIterator.Insert@Double +<copy TJclVectorIterator.Insert@TObject> +\ \ + +@@TJclDoubleVectorIterator.IteratorEquals@IJclDoubleIterator +<copy TJclVectorIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclDoubleVectorIterator.MoveNext +<copy TJclVectorIterator.MoveNext> +\ \ + +@@TJclDoubleVectorIterator.Next +<copy TJclVectorIterator.Next> +\ \ + +@@TJclDoubleVectorIterator.NextIndex +<copy TJclVectorIterator.NextIndex> +\ \ + +@@TJclDoubleVectorIterator.Previous +<copy TJclVectorIterator.Previous> +\ \ + +@@TJclDoubleVectorIterator.PreviousIndex +<copy TJclVectorIterator.PreviousIndex> +\ \ + +@@TJclDoubleVectorIterator.Remove +<copy TJclVectorIterator.Remove> +\ \ + +@@TJclDoubleVectorIterator.Reset +<copy TJclVectorIterator.Reset> +\ \ + +@@TJclDoubleVectorIterator.SetValue@Double +<copy TJclVectorIterator.SetObject@TObject> +\ \ +@@TJclExtendedVectorIterator +<copy TJclVectorIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclExtendedVectorIterator +<copy !!MEMBEROVERVIEW_TJclVectorIterator> +\ \ + +@@TJclExtendedVectorIterator.Current +<copy TJclVectorIterator.Current> +\ \ + +@@TJclExtendedVectorIterator.Add@Extended +<copy TJclVectorIterator.Add@TObject> +\ \ + +@@TJclExtendedVectorIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclVectorIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclExtendedVectorIterator.Create@IJclExtendedList@Integer@Boolean@TItrStart +<copy TJclVectorIterator.Create@IJclList@Integer@Boolean@TItrStart> +\ \ + +@@TJclExtendedVectorIterator.CreateEmptyIterator +<copy TJclVectorIterator.CreateEmptyIterator> +\ \ + +@@TJclExtendedVectorIterator.Extract +<copy TJclVectorIterator.Extract> +\ \ + +@@TJclExtendedVectorIterator.GetValue +<copy TJclVectorIterator.GetObject> +\ \ + +@@TJclExtendedVectorIterator.HasNext +<copy TJclVectorIterator.HasNext> +\ \ + +@@TJclExtendedVectorIterator.HasPrevious +<copy TJclVectorIterator.HasPrevious> +\ \ + +@@TJclExtendedVectorIterator.Insert@Extended +<copy TJclVectorIterator.Insert@TObject> +\ \ + +@@TJclExtendedVectorIterator.IteratorEquals@IJclExtendedIterator +<copy TJclVectorIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclExtendedVectorIterator.MoveNext +<copy TJclVectorIterator.MoveNext> +\ \ + +@@TJclExtendedVectorIterator.Next +<copy TJclVectorIterator.Next> +\ \ + +@@TJclExtendedVectorIterator.NextIndex +<copy TJclVectorIterator.NextIndex> +\ \ + +@@TJclExtendedVectorIterator.Previous +<copy TJclVectorIterator.Previous> +\ \ + +@@TJclExtendedVectorIterator.PreviousIndex +<copy TJclVectorIterator.PreviousIndex> +\ \ + +@@TJclExtendedVectorIterator.Remove +<copy TJclVectorIterator.Remove> +\ \ + +@@TJclExtendedVectorIterator.Reset +<copy TJclVectorIterator.Reset> +\ \ + +@@TJclExtendedVectorIterator.SetValue@Extended +<copy TJclVectorIterator.SetObject@TObject> +\ \ +@@TJclIntegerVectorIterator +<copy TJclVectorIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclIntegerVectorIterator +<copy !!MEMBEROVERVIEW_TJclVectorIterator> +\ \ + +@@TJclIntegerVectorIterator.Current +<copy TJclVectorIterator.Current> +\ \ + +@@TJclIntegerVectorIterator.Add@Integer +<copy TJclVectorIterator.Add@TObject> +\ \ + +@@TJclIntegerVectorIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclVectorIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclIntegerVectorIterator.Create@IJclIntegerList@Integer@Boolean@TItrStart +<copy TJclVectorIterator.Create@IJclList@Integer@Boolean@TItrStart> +\ \ + +@@TJclIntegerVectorIterator.CreateEmptyIterator +<copy TJclVectorIterator.CreateEmptyIterator> +\ \ + +@@TJclIntegerVectorIterator.Extract +<copy TJclVectorIterator.Extract> +\ \ + +@@TJclIntegerVectorIterator.GetValue +<copy TJclVectorIterator.GetObject> +\ \ + +@@TJclIntegerVectorIterator.HasNext +<copy TJclVectorIterator.HasNext> +\ \ + +@@TJclIntegerVectorIterator.HasPrevious +<copy TJclVectorIterator.HasPrevious> +\ \ + +@@TJclIntegerVectorIterator.Insert@Integer +<copy TJclVectorIterator.Insert@TObject> +\ \ + +@@TJclIntegerVectorIterator.IteratorEquals@IJclIntegerIterator +<copy TJclVectorIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclIntegerVectorIterator.MoveNext +<copy TJclVectorIterator.MoveNext> +\ \ + +@@TJclIntegerVectorIterator.Next +<copy TJclVectorIterator.Next> +\ \ + +@@TJclIntegerVectorIterator.NextIndex +<copy TJclVectorIterator.NextIndex> +\ \ + +@@TJclIntegerVectorIterator.Previous +<copy TJclVectorIterator.Previous> +\ \ + +@@TJclIntegerVectorIterator.PreviousIndex +<copy TJclVectorIterator.PreviousIndex> +\ \ + +@@TJclIntegerVectorIterator.Remove +<copy TJclVectorIterator.Remove> +\ \ + +@@TJclIntegerVectorIterator.Reset +<copy TJclVectorIterator.Reset> +\ \ + +@@TJclIntegerVectorIterator.SetValue@Integer +<copy TJclVectorIterator.SetObject@TObject> +\ \ +@@TJclCardinalVectorIterator +<copy TJclVectorIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclCardinalVectorIterator +<copy !!MEMBEROVERVIEW_TJclVectorIterator> +\ \ + +@@TJclCardinalVectorIterator.Current +<copy TJclVectorIterator.Current> +\ \ + +@@TJclCardinalVectorIterator.Add@Cardinal +<copy TJclVectorIterator.Add@TObject> +\ \ + +@@TJclCardinalVectorIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclVectorIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclCardinalVectorIterator.Create@IJclCardinalList@Integer@Boolean@TItrStart +<copy TJclVectorIterator.Create@IJclList@Integer@Boolean@TItrStart> +\ \ + +@@TJclCardinalVectorIterator.CreateEmptyIterator +<copy TJclVectorIterator.CreateEmptyIterator> +\ \ + +@@TJclCardinalVectorIterator.Extract +<copy TJclVectorIterator.Extract> +\ \ + +@@TJclCardinalVectorIterator.GetValue +<copy TJclVectorIterator.GetObject> +\ \ + +@@TJclCardinalVectorIterator.HasNext +<copy TJclVectorIterator.HasNext> +\ \ + +@@TJclCardinalVectorIterator.HasPrevious +<copy TJclVectorIterator.HasPrevious> +\ \ + +@@TJclCardinalVectorIterator.Insert@Cardinal +<copy TJclVectorIterator.Insert@TObject> +\ \ + +@@TJclCardinalVectorIterator.IteratorEquals@IJclCardinalIterator +<copy TJclVectorIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclCardinalVectorIterator.MoveNext +<copy TJclVectorIterator.MoveNext> +\ \ + +@@TJclCardinalVectorIterator.Next +<copy TJclVectorIterator.Next> +\ \ + +@@TJclCardinalVectorIterator.NextIndex +<copy TJclVectorIterator.NextIndex> +\ \ + +@@TJclCardinalVectorIterator.Previous +<copy TJclVectorIterator.Previous> +\ \ + +@@TJclCardinalVectorIterator.PreviousIndex +<copy TJclVectorIterator.PreviousIndex> +\ \ + +@@TJclCardinalVectorIterator.Remove +<copy TJclVectorIterator.Remove> +\ \ + +@@TJclCardinalVectorIterator.Reset +<copy TJclVectorIterator.Reset> +\ \ + +@@TJclCardinalVectorIterator.SetValue@Cardinal +<copy TJclVectorIterator.SetObject@TObject> +\ \ +@@TJclInt64VectorIterator +<copy TJclVectorIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclInt64VectorIterator +<copy !!MEMBEROVERVIEW_TJclVectorIterator> +\ \ + +@@TJclInt64VectorIterator.Current +<copy TJclVectorIterator.Current> +\ \ + +@@TJclInt64VectorIterator.Add@Int64 +<copy TJclVectorIterator.Add@TObject> +\ \ + +@@TJclInt64VectorIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclVectorIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclInt64VectorIterator.Create@IJclInt64List@Integer@Boolean@TItrStart +<copy TJclVectorIterator.Create@IJclList@Integer@Boolean@TItrStart> +\ \ + +@@TJclInt64VectorIterator.CreateEmptyIterator +<copy TJclVectorIterator.CreateEmptyIterator> +\ \ + +@@TJclInt64VectorIterator.Extract +<copy TJclVectorIterator.Extract> +\ \ + +@@TJclInt64VectorIterator.GetValue +<copy TJclVectorIterator.GetObject> +\ \ + +@@TJclInt64VectorIterator.HasNext +<copy TJclVectorIterator.HasNext> +\ \ + +@@TJclInt64VectorIterator.HasPrevious +<copy TJclVectorIterator.HasPrevious> +\ \ + +@@TJclInt64VectorIterator.Insert@Int64 +<copy TJclVectorIterator.Insert@TObject> +\ \ + +@@TJclInt64VectorIterator.IteratorEquals@IJclInt64Iterator +<copy TJclVectorIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclInt64VectorIterator.MoveNext +<copy TJclVectorIterator.MoveNext> +\ \ + +@@TJclInt64VectorIterator.Next +<copy TJclVectorIterator.Next> +\ \ + +@@TJclInt64VectorIterator.NextIndex +<copy TJclVectorIterator.NextIndex> +\ \ + +@@TJclInt64VectorIterator.Previous +<copy TJclVectorIterator.Previous> +\ \ + +@@TJclInt64VectorIterator.PreviousIndex +<copy TJclVectorIterator.PreviousIndex> +\ \ + +@@TJclInt64VectorIterator.Remove +<copy TJclVectorIterator.Remove> +\ \ + +@@TJclInt64VectorIterator.Reset +<copy TJclVectorIterator.Reset> +\ \ + +@@TJclInt64VectorIterator.SetValue@Int64 +<copy TJclVectorIterator.SetObject@TObject> +\ \ +@@TJclPtrVectorIterator +<copy TJclVectorIterator> +\ \ + +@@!!MEMBEROVERVIEW_TJclPtrVectorIterator +<copy !!MEMBEROVERVIEW_TJclVectorIterator> +\ \ + +@@TJclPtrVectorIterator.Current +<copy TJclVectorIterator.Current> +\ \ + +@@TJclPtrVectorIterator.Add@Pointer +<copy TJclVectorIterator.Add@TObject> +\ \ + +@@TJclPtrVectorIterator.AssignPropertiesTo@TJclAbstractIterator +<copy TJclVectorIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@TJclPtrVectorIterator.Create@IJclPtrList@Integer@Boolean@TItrStart +<copy TJclVectorIterator.Create@IJclList@Integer@Boolean@TItrStart> +\ \ + +@@TJclPtrVectorIterator.CreateEmptyIterator +<copy TJclVectorIterator.CreateEmptyIterator> +\ \ + +@@TJclPtrVectorIterator.Extract +<copy TJclVectorIterator.Extract> +\ \ + +@@TJclPtrVectorIterator.GetPointer +<copy TJclVectorIterator.GetObject> +\ \ + +@@TJclPtrVectorIterator.HasNext +<copy TJclVectorIterator.HasNext> +\ \ + +@@TJclPtrVectorIterator.HasPrevious +<copy TJclVectorIterator.HasPrevious> +\ \ + +@@TJclPtrVectorIterator.Insert@Pointer +<copy TJclVectorIterator.Insert@TObject> +\ \ + +@@TJclPtrVectorIterator.IteratorEquals@IJclPtrIterator +<copy TJclVectorIterator.IteratorEquals@IJclIterator> +\ \ + +@@TJclPtrVectorIterator.MoveNext +<copy TJclVectorIterator.MoveNext> +\ \ + +@@TJclPtrVectorIterator.Next +<copy TJclVectorIterator.Next> +\ \ + +@@TJclPtrVectorIterator.NextIndex +<copy TJclVectorIterator.NextIndex> +\ \ + +@@TJclPtrVectorIterator.Previous +<copy TJclVectorIterator.Previous> +\ \ + +@@TJclPtrVectorIterator.PreviousIndex +<copy TJclVectorIterator.PreviousIndex> +\ \ + +@@TJclPtrVectorIterator.Remove +<copy TJclVectorIterator.Remove> +\ \ + +@@TJclPtrVectorIterator.Reset +<copy TJclVectorIterator.Reset> +\ \ + +@@TJclPtrVectorIterator.SetPointer@Pointer +<copy TJclVectorIterator.SetObject@TObject> +\ \ diff --git a/help/Containers.dtx b/help/Containers.dtx index 8f8590285d..53089fac2f 100644 --- a/help/Containers.dtx +++ b/help/Containers.dtx @@ -13,31 +13,14 @@ Donator: Donator: Jean-Philippe Bempel -------------------------------------------------------------------------------- -@@IJclIntfIterator -<GROUP Containers.Interfaces> -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- -@@IJclStrIterator -<GROUP Containers.Interfaces> -Donator: - Jean-Philippe Bempel +@@IJclIntfCloneable.IntfClone + Makes a deep copy of the current object. -------------------------------------------------------------------------------- @@IJclIterator <GROUP Containers.Interfaces> Donator: Jean-Philippe Bempel -------------------------------------------------------------------------------- -@@IJclIntfCollection -<GROUP Containers.Interfaces> -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- -@@IJclStrCollection -<GROUP Containers.Interfaces> -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- @@IJclCollection <GROUP Containers.Interfaces> Summary: @@ -56,12 +39,6 @@ Donator: @@IJclCollection.Add@TObject Add AObject at the end of the collection. Return True if the method succeeds. -------------------------------------------------------------------------------- -@@IJclIntfCollection.Add@IInterface - Add AObject at the end of the collection. Return True if the method succeeds. --------------------------------------------------------------------------------- -@@IJclAnsiStrCollection.Add@AnsiString - Add AObject at the end of the collection. Return True if the method succeeds. --------------------------------------------------------------------------------- @@IJclCollection.AddAll@IJclCollection Summary: Add all objetcs from ACollection at the end of the collection. @@ -106,141 +83,46 @@ Donator: @@IJclCollection.Size Return the number of objects contained in the collection. -------------------------------------------------------------------------------- -@@IJclIntfList -<GROUP Containers.Interfaces> -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- -@@IJclStrList -<GROUP Containers.Interfaces> -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- @@IJclList <GROUP Containers.Interfaces> Donator: Jean-Philippe Bempel -------------------------------------------------------------------------------- -@@IJclIntfArray -<GROUP Containers.Interfaces> -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- -@@IJclStrArray -<GROUP Containers.Interfaces> -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- @@IJclArray <GROUP Containers.Interfaces> Donator: Jean-Philippe Bempel -------------------------------------------------------------------------------- -@@IJclIntfSet -<GROUP Containers.Interfaces> -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- -@@IJclStrSet -<GROUP Containers.Interfaces> -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- @@IJclSet <GROUP Containers.Interfaces> Donator: Jean-Philippe Bempel -------------------------------------------------------------------------------- -@@IJclIntfTree -<GROUP Containers.Interfaces> -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- -@@IJclStrTree -<GROUP Containers.Interfaces> -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- @@IJclTree <GROUP Containers.Interfaces> Donator: Jean-Philippe Bempel -------------------------------------------------------------------------------- -@@IJclIntfIntfMap -<GROUP Containers.Interfaces> -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- -@@IJclMultiIntfIntfMap -<GROUP Containers.Interfaces> -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- -@@IJclStrIntfMap -<GROUP Containers.Interfaces> -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- -@@IJclStrStrMap -<GROUP Containers.Interfaces> -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- -@@IJclStrMap -<GROUP Containers.Interfaces> -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- @@IJclMap <GROUP Containers.Interfaces> Donator: Jean-Philippe Bempel -------------------------------------------------------------------------------- -@@IJclIntfQueue -<GROUP Containers.Interfaces> -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- -@@IJclStrQueue -<GROUP Containers.Interfaces> -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- @@IJclQueue <GROUP Containers.Interfaces> Donator: Jean-Philippe Bempel -------------------------------------------------------------------------------- -@@IJclStrStrSortedMap -<GROUP Containers.Interfaces> -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- @@IJclSortedMap <GROUP Containers.Interfaces> Donator: Jean-Philippe Bempel -------------------------------------------------------------------------------- -@@IJclIntfSortedSet -<GROUP Containers.Interfaces> -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- @@IJclSortedSet <GROUP Containers.Interfaces> Donator: Jean-Philippe Bempel -------------------------------------------------------------------------------- -@@IJclIntfStack -<GROUP Containers.Interfaces> -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- -@@IJclStrStack -<GROUP Containers.Interfaces> -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- @@IJclStack <GROUP Containers.Interfaces> Donator: @@ -251,9 +133,6 @@ Donator: Donator: Jean-Philippe Bempel -------------------------------------------------------------------------------- -@@IJclIntfCloneable.IntfClone - Makes a deep copy of the current object. --------------------------------------------------------------------------------- @@TJclVector <GROUP Containers.Sequence.Vectors> Summary: @@ -273,44 +152,6 @@ Notes: Donator: Jean-Philippe Bempel -------------------------------------------------------------------------------- -@@TJclStrVector -<GROUP Containers.Sequence.Vectors> -Summary: - This class store strings in a dynamic array. -Notes: - The default capacity is 16 elements. When the limit is - reached, the capacity grows of 25%. - - When an element is removed or insert, all elements after it - are shifted. - - The dynamic array is in public for fast access in read. To - have directly access to the dynamic array, you have to use - the class and not the interface. - - This container is NOT threadsafe. -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- -@@TJclIntfVector -<GROUP Containers.Sequence.Vectors> -Summary: - This class store interfaces in a dynamic array. -Notes: - The default capacity is 16 elements. When the limit is - reached, the capacity grows of 25%. - - When an element is removed or insert, all elements after it - are shifted. - - The dynamic array is in public for fast access in read. To - have directly access to the dynamic array, you have to use - the class and not the interface. - - This container is NOT threadsafe. -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- @@TJclQueue <GROUP Containers.Adapters.Queues> Summary: @@ -323,30 +164,6 @@ Notes: Donator: Jean-Philippe Bempel -------------------------------------------------------------------------------- -@@TJclIntfQueue -<GROUP Containers.Adapters.Queues> -Summary: - This class store interfaces in a FIFO dynamic array. -Notes: - The default capacity is 16 elements. This limit is fixed. - - If the compilation symbol THREADSAFE is defined, - this container is threadsafe. -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- -@@TJclStrQueue -<GROUP Containers.Adapters.Queues> -Summary: - This class store strings in a FIFO dynamic array. -Notes: - The default capacity is 16 elements. This limit is fixed. - - If the compilation symbol THREADSAFE is defined, - this container is threadsafe. -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- @@TJclStack <GROUP Containers.Adapters.Stacks> Summary: @@ -360,32 +177,6 @@ Notes: Donator: Jean-Philippe Bempel -------------------------------------------------------------------------------- -@@TJclIntfStack -<GROUP Containers.Adapters.Stacks> -Summary: - This class store interfaces in a LIFO dynamic array. -Notes: - The default capacity is 16 elements. When the limit is - reached, the capacity grows of 25%. - - If the compilation symbol THREADSAFE is defined, - this container is threadsafe. -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- -@@TJclStrStack -<GROUP Containers.Adapters.Stacks> -Summary: - This class store strings in a LIFO dynamic array. -Notes: - The default capacity is 16 elements. When the limit is - reached, the capacity grows of 25%. - - If the compilation symbol THREADSAFE is defined, - this container is threadsafe. -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- @@TJclAbstractContainer <GROUP Containers> Summary: @@ -397,37 +188,6 @@ Summary: Donator: Jean-Philippe Bempel -------------------------------------------------------------------------------- -@@TJclIntfArrayList -<GROUP Containers.Specialized.Arrays> -Summary: - This class store interfaces in a dynamic array. - - The default capacity is 16 elements. When the limit is - reached, the capacity grows of 25%. - When an element is removed or insert, all elements after it - are shifted. - - If the compilation symbol THREADSAFE is defined, - this container is threadsafe. -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- -@@TJclStrArrayList -<GROUP Containers.Specialized.Arrays> -Summary: - This class store strings in a dynamic array. -Notes: - The default capacity is 16 elements. When the limit is - reached, the capacity grows of 25%. - - When an element is removed or insert, all elements after it - are shifted. - - If the compilation symbol THREADSAFE is defined, - this container is threadsafe. -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- @@TJclArrayList <GROUP Containers.Specialized.Arrays> Summary: @@ -459,36 +219,6 @@ Notes: Donator: Jean-Philippe Bempel -------------------------------------------------------------------------------- -@@TJclIntfArraySet -Summary: - This class store interfaces only one time in a dynamic array. -Notes: - The default capacity is 16 elements. When the limit is - reached, the capacity grows of 25%. - - When an element is removed or insert, all elements after it - are shifted. - - If the compilation symbol THREADSAFE is defined, - this container is threadsafe. -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- -@@TJclStrArraySet -Summary: - This class store strings only one time in a dynamic array. -Notes: - The default capacity is 16 elements. When the limit is - reached, the capacity grows of 25%. - - When an element is removed or insert, all elements after it - are shifted. - - If the compilation symbol THREADSAFE is defined, - this container is threadsafe. -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- @@TJclBinaryTree Summary: This class store objects in a red-black binary tree. @@ -508,44 +238,6 @@ Notes: Donator: Jean-Philippe Bempel -------------------------------------------------------------------------------- -@@TJclIntfBinaryTree -Summary: - This class store interfaces in a red-black binary tree. -Notes: - The binary tree is always balanced with red-black algorithms - (from CLR) for best performance in search. - - When an element is removed or insert, the tree is modified to - keep balancing. - - You can traverse the tree with iterators in different order - (PreOrder, Order and PostOrder). Iterators are - bidirectionnal. - - If the compilation symbol THREADSAFE is defined, - this container is threadsafe. -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- -@@TJclStrBinaryTree -Summary: - This class store strings in a red-black binary tree. -Notes: - The binary tree is always balanced with red-black algorithms - (from CLR) for best performance in search. - - When an element is removed or insert, the tree is modified to - keep balancing. - - You can traverse the tree with iterators in different order - (PreOrder, Order and PostOrder). Iterators are - bidirectionnal. - - If the compilation symbol THREADSAFE is defined, - this container is threadsafe. -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- @@TJclHashMap <GROUP Containers.Associative.Maps> Summary: @@ -565,95 +257,6 @@ Notes: Donator: Jean-Philippe Bempel -------------------------------------------------------------------------------- -@@TJclIntfIntfHashMap -<GROUP Containers.Associative.Maps> -Summary: - This class store a map with interface as hashed key and - interface as value. -Notes: - Hashed value give an index to a dynamic array (Buckets) that - store another (Entries) in each cells for collisions. - The default buckets capacity is 16 elements. The buckets - capacity is fixed. The default entries capcity is 1. When the - limit is reached, the capacity grows of 25% if \> 64 else it - is muliply by 4. - - You can change the hash function by the property HashFunction - - If the compilation symbol THREADSAFE is defined, - this container is threadsafe. -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- -@@TJclStrIntfHashMap -<GROUP Containers.Associative.Maps> -Summary: - This class store a map with string as hashed key and - interface as value. -Notes: - Hashed value give an index to a dynamic array (Buckets) that - store another (Entries) in each cells for collisions. - The default buckets capacity is 16 elements. The buckets - capacity is fixed. The default entries capcity is 1. When the - limit is reached, the capacity grows of 25% if \> 64 else it - is muliply by 4. - - You can change the hash function by the property HashFunction - - If the compilation symbol THREADSAFE is defined, - this container is threadsafe. -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- -@@TJclStrHashMap -<GROUP Containers.Associative.Maps> -Summary: - This class store a map with string as hashed key and object - as value. -Notes: - Hashed value give an index to a dynamic array (Buckets) that - store another (Entries) in each cells for collisions. - The default buckets capacity is 16 elements. The buckets - capacity is fixed. The default entries capcity is 1. When the - limit is reached, the capacity grows of 25% if \> 64 else it - is muliply by 4. - - You can change the hash function by the property HashFunction - - If the compilation symbol THREADSAFE is defined, - this container is threadsafe. -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- -@@TJclStrStrHashMap -<GROUP Containers.Associative.Maps> -Summary: - This class store a map with string as hashed key and string as value. -Notes: - Hashed value give an index to a dynamic array (Buckets) that - store another (Entries) in each cells for collisions. - The default buckets capacity is 16 elements. The buckets - capacity is fixed. The default entries capcity is 1. When the - limit is reached, the capacity grows of 25% if \> 64 else it - is muliply by 4. - - You can change the hash function by the property HashFunction - - If the compilation symbol THREADSAFE is defined, - this container is threadsafe. -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- -@@TJclIntfHashSet -<GROUP Containers.OrderedSets> -Summary: - This class store hashed interfaces only one time in a HashMap. -Notes: - If the compilation symbol THREADSAFE is defined, - this container is threadsafe. -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- @@TJclHashSet <GROUP Containers.OrderedSets> Summary: @@ -664,16 +267,6 @@ Notes: Donator: Jean-Philippe Bempel -------------------------------------------------------------------------------- -@@TJclStrHashSet -<GROUP Containers.OrderedSets> -Summary: - This class store hashed strings only one time in a HashMap. -Notes: - If the compilation symbol THREADSAFE is defined, - this container is threadsafe. -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- @@TJclLinkedList <GROUP Containers.Sequence.LinkedLists> Summary: @@ -691,40 +284,6 @@ Notes: Donator: Jean-Philippe Bempel -------------------------------------------------------------------------------- -@@TJclIntfLinkedList -<GROUP Containers.Sequence.LinkedLists> -Summary: - This class store interfaces in a simple linked list. -Notes: - When an element is insert, a new node is created. - - When an element is removed, the node is destroyed. - - When you access to a element by an index, you go trough all - intermediate nodes from the head. - - If the compilation symbol THREADSAFE is defined, - this container is threadsafe. -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- -@@TJclStrLinkedList -<GROUP Containers.Sequence.LinkedLists> -Summary: - This class stores strings in a simple linked list. -Notes: - When an element is insert, a new node is created. - - When an element is removed, the node is destroyed. - - When you access to a element by an index, you go trough all - intermediate nodes from the head. - - If the compilation symbol THREADSAFE is defined, - this container is threadsafe. -Donator: - Jean-Philippe Bempel --------------------------------------------------------------------------------- @@TJclAnsiStrAbstractCollection Summary: Abstract class; serves as a common ancestor to classes which @@ -740,4 +299,4 @@ Notes: This unit was part of the DCL (Delphi Container Library) merged into the JCL in 2005. Donator: - Jean-Philippe Bempel \ No newline at end of file + Jean-Philippe Bempel diff --git a/help/Debug.dtx b/help/Debug.dtx index 005260b83f..65e61ef81f 100644 --- a/help/Debug.dtx +++ b/help/Debug.dtx @@ -909,7 +909,7 @@ Description: * Text-based map file * Jcl Binary debug data resource - * Borland exports header + * Module export table If initialization failed for all supported types nil will be returned, otherwise it will return the first that initialized correctly. @@ -991,10 +991,10 @@ Donator: @@TJclDebugInfoExports <GROUP Debugging.SourceLocations> Summary: - Debug info location item for Borland export header. + Debug info location item for module export table. Description: TJclDebugInfoExports is the class to hold location information by scanning - a Borland export header for the PE-image. It uses a TJclPeBorImage object to do so. + a export table for the PE-image. It uses a TJclPeBorImage object to do so. Donator: Petr Vones -------------------------------------------------------------------------------- @@ -1831,7 +1831,7 @@ Description: Notes: This type is copied from System.pas Donator: - Borland + Borland/Codegear/Embarcadero @@TJmpInstruction.OpCode OpCode for the JMP instruction. @@TJmpInstruction.Distance @@ -1849,7 +1849,7 @@ Description: Notes: This type is copied from System.pas. Donator: - Borland + Borland/Codegear/Embarcadero @@TExcDescEntry.VTable Pointer to the Virtual Method table of an Exception class. @@TExcDescEntry.Handler @@ -1863,18 +1863,22 @@ Donator: Summary: Except frame descriptor. Description: - TExcDesc is an except frame descriptor.For Borland modules this usually means + TExcDesc is an except frame descriptor. + + For Delphi/C++Builder-generated modules this usually means a JMP instruction to either HandleFinally, HandleAnyException, HandleOnException or HandleAutoException. Incase of an HandleOnException, the JMP is followed by a table containing the Exception classes to handle and their handlers. In other cases - the JMP is followed by the code to execute.For non-Borland modules, the frame + the JMP is followed by the code to execute. + + For other modules, the frame descriptor is undefined (but it always starts with executable code). Notes: This type is copied from System.pas. Donator: - Borland + Borland/Codegear/Embarcadero @@TExcDesc.JMP - Holds the JMP-instruction incase of Borland code + Holds the JMP-instruction incase of Delphi/C++Builder code @@TExcDesc.Instructions Handler instructions for non "except on..."-blocks @@TExcDesc.Cnt @@ -1892,17 +1896,17 @@ Summary: Description: TExcFrame is an except frame. It holds a reference to the next frame (if any), the location of the frame (which should always start with executable code) and the - handlers stack frame. Incase of Borland modules, it could also contain a reference + handlers stack frame. Incase of Delphi or C++Builder modules, it could also contain a reference to the object being constructed (this is the case for the implicit except frame for constructors) or a reference to Self of the method containing the handler. Notes: This type is copied from System.pas. Donator: - Borland + Borland/Codegear/Embarcadero @@TExcFrame.Next Link to next except frame or -1(!) if there is no next frame. @@TExcFrame.Desc - Pointer to handler (non-Borland modules) or frame descriptor (Borland modules) + Pointer to handler (non-Delphi and non-C++Builder modules) or frame descriptor (Delphi and C++Builder modules) @@TExcFrame.FramePointer Value of the handlers stack frame pointer (EBP/RBP) @@TExcFrame.ConstructedObject @@ -1924,7 +1928,7 @@ Description: Donator: Marcel Bestebroer @@TExceptFrameKind.efkUnknown - Anonymous exception frame (most likely an exception frame inside a non-Borland library. + Anonymous exception frame (most likely an exception frame inside a non-Delphi and non-C++Builder library. @@TExceptFrameKind.efkFinally A try...finally frame. Note that the compiler inserts implicit try...finally blocks for any method, function or procedure with parameters and/or variables that need clean up (eg. long strings, dynamic arrays, interface references). @@TExceptFrameKind.efkAnyException @@ -2022,7 +2026,7 @@ Summary: Description: FrameKind holds the kind of except frame this object references. The type is determined when the object is created by checking the code and see if it jumps - to any of the known Borland handlers. + to any of the known RTL exception handlers. Donator: Marcel Bestebroer -------------------------------------------------------------------------------- @@ -2119,7 +2123,7 @@ Description: Parameters: ExceptObj - Exception object. ExceptAddr - Address where exception occured. - OSException - If the exception occured outside of any Borland module, this parameter is True, otherwise it is False. + OSException - If the exception occured outside of any Delphi/C++Builder module, this parameter is True, otherwise it is False. See also: TJclExceptNotifyMethod ExceptNotifyProc @@ -2136,7 +2140,7 @@ Description: Parameters: ExceptObj - Exception object. ExceptAddr - Address where exception occured. - OSException - If the exception occured outside of any Borland module, this parameter is True, otherwise it is False. + OSException - If the exception occured outside of any Delphi/C++Builder module, this parameter is True, otherwise it is False. See also: TJclExceptNotifyProc ExceptNotifyProc @@ -2285,12 +2289,12 @@ Donator: @@TrackAllModules <GROUP Debugging.Exceptionhooking> Summary: - Track all modules or Borland modules only. + Track all modules or Delphi/C++Builder modules only. Description: TrackAllModules is a flag that enables or disables tracking of all modules when exception hooking is on and stack tracking is enabled. When set to True all modules are reported in the stack list, otherwise only addresses that are within - a Borland module are reported. + a Delphi/C++Builder module are reported. Donator: Petr Vones -------------------------------------------------------------------------------- diff --git a/help/ExprEval.dtx b/help/ExprEval.dtx index 18d24a478e..a18fb0d8e5 100644 --- a/help/ExprEval.dtx +++ b/help/ExprEval.dtx @@ -56,8 +56,10 @@ Summary: Donator: Barry Kelly @@PFloat -<COMBINE TFloat> --------------------------------------------------------------------------------- +<combine Float> + +\ \ + @@TFloat32 <GROUP ExprEval> Summary: diff --git a/help/IncludedFiles.dtx b/help/IncludedFiles.dtx index 0843721584..55fcfc2c6a 100644 --- a/help/IncludedFiles.dtx +++ b/help/IncludedFiles.dtx @@ -1,97 +1,225 @@ @@jcl.inc -Summary: - The jcl.inc file is a source file that can be included by - units written in object pascal: - - {$INCLUDE jcl.inc} or {$I jcl.inc} - - In addition to the symbols defined in jedi.inc, this file - defines more compiler symbols to be used in conditional - compilation: - - MATH_EXTENDED_PRECISION - MATH_DOUBLE_PRECISION - MATH_SINGLE_PRECISION - MATH_EXT_EXTREMEVALUES - HOOK_DLL_EXCEPTIONS - THREADSAFE - DROP_OBSOLETE_CODE/KEEP_DEPRECATED - UNITVERSIONING - DEBUG_NO_BINARY - DEBUG_NO_TD32 - DEBUG_NO_MAP - DEBUG_NO_EXPORTS - DEBUG_NO_SYMBOLS - EDI_WEAK_PACKAGE_UNITS --------------------------------------------------------------------------------- -@@jcld10.net.inc -Summary: - Internal file included by jcl.inc. -Notes: - You should not directly modify the content of this file, all - your changes will be lost the next time the JCL installer is - launched. --------------------------------------------------------------------------------- +<keywords 7ZIP_LINKDLL, 7ZIP_LINKONREQUEST, 7ZIP_STATICLINK, BZIP2_LINKDLL, BZIP2_LINKONREQUEST, BZIP2_STATICLINK, CONTAINER_ANSISTR, CONTAINER_NOSTR, CONTAINER_UNICODESTR, CONTAINER_WIDESTR, DEBUG_NO_BINARY, DEBUG_NO_EXPORTS, DEBUG_NO_MAP, DEBUG_NO_SYMBOLS, DEBUG_NO_TD32, DROP_OBSOLETE_CODE, HOOK_DLL_EXCEPTIONS, MATH_DOUBLE_PRECISION, MATH_EXT_EXTREMEVALUES, MATH_EXTENDED_PRECISION, MATH_SINGLE_PRECISION, PCRE_LINKDLL, PCRE_LINKONREQUEST, PCRE_STATICLINK, THREADSAFE, UNICODE_BZIP2_DATA, UNICODE_RAW_DATA, UNICODE_SILENT_FAILURE, UNICODE_ZLIB_DATA, UNITVERSIONING, ZLIB_LINKDLL, ZLIB_LINKONREQUEST, ZLIB_STATICLINK> + +Summary +The jcl.inc file is a source file that can be included by +units written in object pascal: + +{$INCLUDE jcl.inc} or {$I jcl.inc} +Description +The JCL include files are located in the directory +"jcl/source/include". + + + +In addition to the symbols defined in jedi.inc, this file +defines more compiler symbols to be used in conditional +compilation. By including this file in your application +source file, it allows conditional compilation for your code +as well. + + + +The JCL configuration can be customized for each supported +\version of Delphi/C++Builder and FreePascal. The following +table contains the name of the configuration for each IDE +\version: + +<table> +Configuration IDE version + file +-------------- -------------------------------------------- +jcld6.inc Delphi 6 +jclc6.inc C++Builder 6 +jcld7.inc Delphi 7 +jclcs1.inc C#Builder 1 (no runtime code, just JCL + experts) +jcld8.inc Delphi8.net (no runtime code, just JCL + experts) +jcld9.inc Delphi 2005 +jcld10.inc Delphi 2006, C++Builder 2006 and BDS 2006 +jcld11.inc Delphi 2007, C++Builder 2007 and RAD Studio + 2007 +jcld12.inc Delphi 2009, C++Builder 2009 and RAD Studio + 2009 +jcld14.inc Delphi 2010, C++Builder 2010 and RAD Studio + 2010 +jcld15.inc Delphi XE, C++Builder XE and RAD Studio XE +jclfpc.inc FreePascal and Lazarus +</table> + +\Note that the configuration files are overriden each time +the JCL installer is executed. + + + + + +The following symbols configure some JCL features: + +<table> +Compiler symbol Functionality and remarks + name +------------------------ -------------------------------------- +MATH_EXTENDED_PRECISION The type Float is aliased to Extended + ( +MATH_DOUBLE_PRECISION The type Float is aliased to Double +MATH_SINGLE_PRECISION The type Float is aliased to Single +MATH_EXT_EXTREMEVALUES Math functions takes care of + infinites and NaN +HOOK_DLL_EXCEPTIONS JclHookExcept support for hooking + \exceptions from DLLs +THREADSAFE Enable threadsafe code (a little bit + slower) +DROP_OBSOLETE_CODE Exclude obsolete code from + compilation +UNITVERSIONING Support for Unit Version Info +DEBUG_NO_BINARY Disable the JDBG debug info source +DEBUG_NO_TD32 Disable the TD32 debug info source +DEBUG_NO_MAP Disable the MAP debug info source +DEBUG_NO_EXPORTS Disable the Exports debug info source +DEBUG_NO_SYMBOLS Disable the Symbols (based on + DbgHlp.dll) debug info source +PCRE_STATICLINK Static link PCRE code into JCL + binaries and into your applications +PCRE_LINKDLL PCRE code is statically bound to + PCRE.dll +PCRE_LINKONREQUEST PCRE code is dynamically bound to + PCRE.dll (default) +BZIP2_STATICLINK Static link BZIP2 code into JCL + binaries and into your applications + (default) +BZIP2_LINKDLL BZIP2 code is statically bound to + BZIP2.dll +BZIP2_LINKONREQUEST BZIP2 code is dynamically bound to + BZIP2.dll +ZLIB_STATICLINK Static link ZLIB code into JCL + binaries and into your applications + (default) +ZLIB_LINKDLL ZLIB code is statically bound to + ZLIB.dll +ZLIB_LINKONREQUEST ZLIB code is dynamically bound to + ZLIB.dll +UNICODE_SILENT_FAILURE Invalid character sequences are + replaced by UnicodeReplacementChar, + if not set an exception is raised +UNICODE_RAW_DATA Link raw (unzipped) Unicode Character + Database into JCL binaries and into + your applications (default) +UNICODE_ZLIB_DATA Link ZLIBed Unicode Character + Database into JCL binaries and into + your applications +UNICODE_BZIP2_DATA Link BZIP2ed Unicode Character + Database into JCL binaries and into + your applications +CONTAINER_ANSISTR String containers aliased to + AnsiString containers (default for + D2007 and older) +CONTAINER_WIDESTR String containers aliased to + WideString containers +CONTAINER_UNICODESTR String containers aliased to + UnicodeString containers (default for + D2009 and newer, not supported for + D2007 and older) +CONTAINER_NOSTR Do not define string containers +7ZIP_STATICLINK Static link 7ZIP code into JCL + binaries and into your applications + (not supported yet) +7ZIP_LINKDLL 7ZIP code is statically bound to + 7z.dll +7ZIP_LINKONREQUEST 7ZIP code is dynamically bound to + 7z.dll (default) +</table> + @@jcld10.inc -Summary: - Internal file included by jcl.inc. -Notes: - You should not directly modify the content of this file, all - your changes will be lost the next time the JCL installer is - launched. --------------------------------------------------------------------------------- +<combine jcl.inc> + +\ \ + @@jclcs1.inc -Summary: - Internal file included by jcl.inc. -Notes: - You should not directly modify the content of this file, all - your changes will be lost the next time the JCL installer is - launched. --------------------------------------------------------------------------------- -@@jcld5.inc -Summary: - Internal file included by jcl.inc. -Notes: - You should not directly modify the content of this file, all - your changes will be lost the next time the JCL installer is - launched. --------------------------------------------------------------------------------- +<combine jcl.inc> + +\ \ + @@jcld6.inc -Summary: - Internal file included by jcl.inc. -Notes: - You should not directly modify the content of this file, all - your changes will be lost the next time the JCL installer is - launched. --------------------------------------------------------------------------------- +<combine jcl.inc> + +\ \ + @@jcld7.inc -Summary: - Internal file included by jcl.inc. -Notes: - You should not directly modify the content of this file, all - your changes will be lost the next time the JCL installer is - launched. --------------------------------------------------------------------------------- +<combine jcl.inc> + +\ \ + @@jcld8.inc -Summary: - Internal file included by jcl.inc. -Notes: - You should not directly modify the content of this file, all - your changes will be lost the next time the JCL installer is - launched. --------------------------------------------------------------------------------- +<combine jcl.inc> + +\ \ + @@jcld9.inc -Summary: - Internal file included by jcl.inc. -Notes: - You should not directly modify the content of this file, all - your changes will be lost the next time the JCL installer is - launched. --------------------------------------------------------------------------------- -@@jcld9.net.inc -Summary: - Internal file included by jcl.inc. -Notes: - You should not directly modify the content of this file, all - your changes will be lost the next time the JCL installer is - launched. \ No newline at end of file +<combine jcl.inc> + +\ \ + +@@jclc6.inc +<combine jcl.inc> + +\ \ + +@@jcld11.inc +<combine jcl.inc> + +\ \ + +@@jcld12.inc +<combine jcl.inc> + +\ \ + +@@jcld14.inc +<combine jcl.inc> + +\ \ + +@@jcld15.inc +<combine jcl.inc> + +\ \ + +@@jclfpc.inc +<combine jcl.inc> + +\ \ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/help/JCLHelp.dox b/help/JCLHelp.dox index d0a4654714..fce92cefeb 100644 --- a/help/JCLHelp.dox +++ b/help/JCLHelp.dox @@ -401,7 +401,7 @@ CValue_9=7872391 [Configurations] Count=6 -Current=0 +Current=1 Name0=HTML Name1=CHM Name2=H2 @@ -11286,7 +11286,7 @@ BodySourceUseAutolinking=0 BodySourceUseSyntaxHighlight=0 [Configurations\CHM\Disabled Topics] -Count=393 +Count=394 ID0=_DLLVERSIONINFO.dwPlatformId ID1=_FILE_ZERO_DATA_INFORMATION ID10=_IMAGE_RESOURCE_DIRECTORY @@ -11351,269 +11351,270 @@ ID152=IJclMIDIOut.GetActiveNotes@TMIDIChannel ID153=IJclMIDIOut.GetName ID154=IJclMIDIOut.GetRunningStatusEnabled ID155=IJclMIDIOut.SetRunningStatusEnabled@Boolean -ID156=IMAGE_BASE_RELOCATION -ID157=IMAGE_BOUND_FORWARDER_REF -ID158=IMAGE_BOUND_IMPORT_DESCRIPTOR -ID159=IMAGE_COR20_HEADER +ID156=IJclMultiIntfIntfMap +ID157=IMAGE_BASE_RELOCATION +ID158=IMAGE_BOUND_FORWARDER_REF +ID159=IMAGE_BOUND_IMPORT_DESCRIPTOR ID16=_REPARSE_POINT_INFORMATION -ID160=IMAGE_DEBUG_TYPE_BORLAND -ID161=IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR -ID162=IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT -ID163=IMAGE_EXPORT_DIRECTORY -ID164=IMAGE_IMPORT_BY_NAME -ID165=IMAGE_IMPORT_DESCRIPTOR -ID166=IMAGE_LOAD_CONFIG_DIRECTORY -ID167=IMAGE_ORDINAL_FLAG -ID168=IMAGE_REL_BASED_ABSOLUTE -ID169=IMAGE_REL_BASED_DIR64 +ID160=IMAGE_COR20_HEADER +ID161=IMAGE_DEBUG_TYPE_BORLAND +ID162=IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR +ID163=IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT +ID164=IMAGE_EXPORT_DIRECTORY +ID165=IMAGE_IMPORT_BY_NAME +ID166=IMAGE_IMPORT_DESCRIPTOR +ID167=IMAGE_LOAD_CONFIG_DIRECTORY +ID168=IMAGE_ORDINAL_FLAG +ID169=IMAGE_REL_BASED_ABSOLUTE ID17=AMD_APIC_FLAG -ID170=IMAGE_REL_BASED_HIGH -ID171=IMAGE_REL_BASED_HIGH3ADJ -ID172=IMAGE_REL_BASED_HIGHADJ -ID173=IMAGE_REL_BASED_HIGHLOW -ID174=IMAGE_REL_BASED_IA64_IMM64 -ID175=IMAGE_REL_BASED_LOW -ID176=IMAGE_REL_BASED_MIPS_JMPADDR -ID177=IMAGE_REL_BASED_MIPS_JMPADDR16 -ID178=IMAGE_REL_BASED_REL32 -ID179=IMAGE_REL_BASED_SECTION +ID170=IMAGE_REL_BASED_DIR64 +ID171=IMAGE_REL_BASED_HIGH +ID172=IMAGE_REL_BASED_HIGH3ADJ +ID173=IMAGE_REL_BASED_HIGHADJ +ID174=IMAGE_REL_BASED_HIGHLOW +ID175=IMAGE_REL_BASED_IA64_IMM64 +ID176=IMAGE_REL_BASED_LOW +ID177=IMAGE_REL_BASED_MIPS_JMPADDR +ID178=IMAGE_REL_BASED_MIPS_JMPADDR16 +ID179=IMAGE_REL_BASED_REL32 ID18=AMD_BIT_10 -ID180=IMAGE_RESOURCE_DATA_ENTRY -ID181=IMAGE_RESOURCE_DATA_IS_DIRECTORY -ID182=IMAGE_RESOURCE_DIR_STRING_U -ID183=IMAGE_RESOURCE_DIRECTORY -ID184=IMAGE_RESOURCE_DIRECTORY_ENTRY -ID185=IMAGE_RESOURCE_NAME_IS_STRING -ID186=IMAGE_SIZEOF_BASE_RELOCATION -ID187=IMAGE_THUNK_DATA -ID188=IMAGE_TLS_DIRECTORY -ID189=ImgDelayDescr +ID180=IMAGE_REL_BASED_SECTION +ID181=IMAGE_RESOURCE_DATA_ENTRY +ID182=IMAGE_RESOURCE_DATA_IS_DIRECTORY +ID183=IMAGE_RESOURCE_DIR_STRING_U +ID184=IMAGE_RESOURCE_DIRECTORY +ID185=IMAGE_RESOURCE_DIRECTORY_ENTRY +ID186=IMAGE_RESOURCE_NAME_IS_STRING +ID187=IMAGE_SIZEOF_BASE_RELOCATION +ID188=IMAGE_THUNK_DATA +ID189=IMAGE_TLS_DIRECTORY ID19=AMD_BIT_11 -ID190=IO_REPARSE_TAG_HSM -ID191=IO_REPARSE_TAG_MOUNT_POINT -ID192=IO_REPARSE_TAG_RESERVED_ONE -ID193=IO_REPARSE_TAG_RESERVED_RANGE -ID194=IO_REPARSE_TAG_RESERVED_ZERO -ID195=IO_REPARSE_TAG_SIS -ID196=IO_REPARSE_TAG_VALID_VALUES -ID197=IQueryInfo -ID198=JclDebug.pas -ID199=JclGraphics.pas +ID190=ImgDelayDescr +ID191=IO_REPARSE_TAG_HSM +ID192=IO_REPARSE_TAG_MOUNT_POINT +ID193=IO_REPARSE_TAG_RESERVED_ONE +ID194=IO_REPARSE_TAG_RESERVED_RANGE +ID195=IO_REPARSE_TAG_RESERVED_ZERO +ID196=IO_REPARSE_TAG_SIS +ID197=IO_REPARSE_TAG_VALID_VALUES +ID198=IQueryInfo +ID199=JclDebug.pas ID2=_IMAGE_BASE_RELOCATION ID20=AMD_BIT_14 -ID200=JclHookIs -ID201=JclIsHooked -ID202=JclMidi.pas -ID203=JclNTFS.pas -ID204=JclRegistry.pas -ID205=JclUnhookIs -ID206=KLF_SETFORPROCESS -ID207=MAX_LANA -ID208=MAX_MODULE_NAME32 -ID209=MAXIMUM_REPARSE_DATA_BUFFER_SIZE +ID200=JclGraphics.pas +ID201=JclHookIs +ID202=JclIsHooked +ID203=JclMidi.pas +ID204=JclNTFS.pas +ID205=JclRegistry.pas +ID206=JclUnhookIs +ID207=KLF_SETFORPROCESS +ID208=MAX_LANA +ID209=MAX_MODULE_NAME32 ID21=AMD_BIT_16 -ID210=METHOD_BUFFERED -ID211=METHOD_IN_DIRECT -ID212=METHOD_NEITHER -ID213=METHOD_OUT_DIRECT -ID214=NCBASTAT -ID215=NCBENUM -ID216=NCBNAMSZ -ID217=NCBRESET -ID218=NRC_GOODRET -ID219=PAdapterStatus +ID210=MAXIMUM_REPARSE_DATA_BUFFER_SIZE +ID211=METHOD_BUFFERED +ID212=METHOD_IN_DIRECT +ID213=METHOD_NEITHER +ID214=METHOD_OUT_DIRECT +ID215=NCBASTAT +ID216=NCBENUM +ID217=NCBNAMSZ +ID218=NCBRESET +ID219=NRC_GOODRET ID22=AMD_BIT_17 -ID220=PANonObjectHeader -ID221=PFileAllocatedRangeBuffer -ID222=PFileZeroDataInformation -ID223=PImageBaseRelocation -ID224=PImageBoundForwarderRef -ID225=PImageBoundImportDescriptor -ID226=PImageCor20Header -ID227=PImageExportDirectory -ID228=PImageImportByName -ID229=PImageImportDescriptor +ID220=PAdapterStatus +ID221=PANonObjectHeader +ID222=PFileAllocatedRangeBuffer +ID223=PFileZeroDataInformation +ID224=PImageBaseRelocation +ID225=PImageBoundForwarderRef +ID226=PImageBoundImportDescriptor +ID227=PImageCor20Header +ID228=PImageExportDirectory +ID229=PImageImportByName ID23=AMD_BIT_18 -ID230=PImageLoadConfigDirectory -ID231=PImageResourceDataEntry -ID232=PImageResourceDirectory -ID233=PImageResourceDirectoryEntry -ID234=PImageResourceDirStringU -ID235=PImageThunkData -ID236=PImageTlsDirectory -ID237=PImgDelayDescr -ID238=PLanaEnum -ID239=PModuleInfo +ID230=PImageImportDescriptor +ID231=PImageLoadConfigDirectory +ID232=PImageResourceDataEntry +ID233=PImageResourceDirectory +ID234=PImageResourceDirectoryEntry +ID235=PImageResourceDirStringU +ID236=PImageThunkData +ID237=PImageTlsDirectory +ID238=PImgDelayDescr +ID239=PLanaEnum ID24=AMD_BIT_19 -ID240=PNameBuffer -ID241=PNCB -ID242=POSVersionInfoEx -ID243=PPImageSectionHeader -ID244=PPSID -ID245=PReparseDataBuffer -ID246=PReparsePointInformation -ID247=REPARSE_DATA_BUFFER_HEADER_SIZE -ID248=REPARSE_GUID_DATA_BUFFER_HEADER_SIZE -ID249=RT_HTML +ID240=PModuleInfo +ID241=PNameBuffer +ID242=PNCB +ID243=POSVersionInfoEx +ID244=PPImageSectionHeader +ID245=PPSID +ID246=PReparseDataBuffer +ID247=PReparsePointInformation +ID248=REPARSE_DATA_BUFFER_HEADER_SIZE +ID249=REPARSE_GUID_DATA_BUFFER_HEADER_SIZE ID25=AMD_BIT_20 -ID250=RT_MANIFEST -ID251=SE_ASSIGNPRIMARYTOKEN_NAME -ID252=SE_AUDIT_NAME -ID253=SE_BACKUP_NAME -ID254=SE_CHANGE_NOTIFY_NAME -ID255=SE_CREATE_PAGEFILE_NAME -ID256=SE_CREATE_PERMANENT_NAME -ID257=SE_CREATE_TOKEN_NAME -ID258=SE_DEBUG_NAME -ID259=SE_ENABLE_DELEGATION_NAME +ID250=RT_HTML +ID251=RT_MANIFEST +ID252=SE_ASSIGNPRIMARYTOKEN_NAME +ID253=SE_AUDIT_NAME +ID254=SE_BACKUP_NAME +ID255=SE_CHANGE_NOTIFY_NAME +ID256=SE_CREATE_PAGEFILE_NAME +ID257=SE_CREATE_PERMANENT_NAME +ID258=SE_CREATE_TOKEN_NAME +ID259=SE_DEBUG_NAME ID26=AMD_BIT_21 -ID260=SE_INC_BASE_PRIORITY_NAME -ID261=SE_INCREASE_QUOTA_NAME -ID262=SE_LOAD_DRIVER_NAME -ID263=SE_LOCK_MEMORY_NAME -ID264=SE_MACHINE_ACCOUNT_NAME -ID265=SE_OBJECT_TYPE -ID266=SE_PROF_SINGLE_PROCESS_NAME -ID267=SE_REMOTE_SHUTDOWN_NAME -ID268=SE_RESTORE_NAME -ID269=SE_SECURITY_NAME +ID260=SE_ENABLE_DELEGATION_NAME +ID261=SE_INC_BASE_PRIORITY_NAME +ID262=SE_INCREASE_QUOTA_NAME +ID263=SE_LOAD_DRIVER_NAME +ID264=SE_LOCK_MEMORY_NAME +ID265=SE_MACHINE_ACCOUNT_NAME +ID266=SE_OBJECT_TYPE +ID267=SE_PROF_SINGLE_PROCESS_NAME +ID268=SE_REMOTE_SHUTDOWN_NAME +ID269=SE_RESTORE_NAME ID27=AMD_BIT_22 -ID270=SE_SHUTDOWN_NAME -ID271=SE_SYNC_AGENT_NAME -ID272=SE_SYSTEM_ENVIRONMENT_NAME -ID273=SE_SYSTEM_PROFILE_NAME -ID274=SE_SYSTEMTIME_NAME -ID275=SE_TAKE_OWNERSHIP_NAME -ID276=SE_TCB_NAME -ID277=SE_UNDOCK_NAME -ID278=SE_UNSOLICITED_INPUT_NAME -ID279=SECURITY_ANONYMOUS_LOGON_RID +ID270=SE_SECURITY_NAME +ID271=SE_SHUTDOWN_NAME +ID272=SE_SYNC_AGENT_NAME +ID273=SE_SYSTEM_ENVIRONMENT_NAME +ID274=SE_SYSTEM_PROFILE_NAME +ID275=SE_SYSTEMTIME_NAME +ID276=SE_TAKE_OWNERSHIP_NAME +ID277=SE_TCB_NAME +ID278=SE_UNDOCK_NAME +ID279=SE_UNSOLICITED_INPUT_NAME ID28=AMD_BIT_24 -ID280=SECURITY_AUTHENTICATED_USER_RID -ID281=SECURITY_BATCH_RID -ID282=SECURITY_BUILTIN_DOMAIN_RID -ID283=SECURITY_CREATOR_GROUP_RID -ID284=SECURITY_CREATOR_GROUP_SERVER_RID -ID285=SECURITY_CREATOR_OWNER_RID -ID286=SECURITY_CREATOR_OWNER_SERVER_RID -ID287=SECURITY_CREATOR_SID_AUTHORITY -ID288=SECURITY_DESCRIPTOR_MIN_LENGTH -ID289=SECURITY_DESCRIPTOR_REVISION +ID280=SECURITY_ANONYMOUS_LOGON_RID +ID281=SECURITY_AUTHENTICATED_USER_RID +ID282=SECURITY_BATCH_RID +ID283=SECURITY_BUILTIN_DOMAIN_RID +ID284=SECURITY_CREATOR_GROUP_RID +ID285=SECURITY_CREATOR_GROUP_SERVER_RID +ID286=SECURITY_CREATOR_OWNER_RID +ID287=SECURITY_CREATOR_OWNER_SERVER_RID +ID288=SECURITY_CREATOR_SID_AUTHORITY +ID289=SECURITY_DESCRIPTOR_MIN_LENGTH ID29=AMD_BIT_25 -ID290=SECURITY_DESCRIPTOR_REVISION1 -ID291=SECURITY_DIALUP_RID -ID292=SECURITY_ENTERPRISE_CONTROLLERS_RID -ID293=SECURITY_INTERACTIVE_RID -ID294=SECURITY_LOCAL_RID -ID295=SECURITY_LOCAL_SID_AUTHORITY -ID296=SECURITY_LOCAL_SYSTEM_RID -ID297=SECURITY_LOGON_IDS_RID -ID298=SECURITY_LOGON_IDS_RID_COUNT -ID299=SECURITY_NETWORK_RID +ID290=SECURITY_DESCRIPTOR_REVISION +ID291=SECURITY_DESCRIPTOR_REVISION1 +ID292=SECURITY_DIALUP_RID +ID293=SECURITY_ENTERPRISE_CONTROLLERS_RID +ID294=SECURITY_INTERACTIVE_RID +ID295=SECURITY_LOCAL_RID +ID296=SECURITY_LOCAL_SID_AUTHORITY +ID297=SECURITY_LOCAL_SYSTEM_RID +ID298=SECURITY_LOGON_IDS_RID +ID299=SECURITY_LOGON_IDS_RID_COUNT ID3=_IMAGE_BOUND_FORWARDER_REF ID30=AMD_BIT_26 -ID300=SECURITY_NON_UNIQUE_AUTHORITY -ID301=SECURITY_NT_AUTHORITY -ID302=SECURITY_NT_NON_UNIQUE -ID303=SECURITY_NULL_RID -ID304=SECURITY_NULL_SID_AUTHORITY -ID305=SECURITY_PRINCIPAL_SELF_RID -ID306=SECURITY_PROXY_RID -ID307=SECURITY_RESTRICTED_CODE_RID -ID308=SECURITY_SERVER_LOGON_RID -ID309=SECURITY_SERVICE_RID +ID300=SECURITY_NETWORK_RID +ID301=SECURITY_NON_UNIQUE_AUTHORITY +ID302=SECURITY_NT_AUTHORITY +ID303=SECURITY_NT_NON_UNIQUE +ID304=SECURITY_NULL_RID +ID305=SECURITY_NULL_SID_AUTHORITY +ID306=SECURITY_PRINCIPAL_SELF_RID +ID307=SECURITY_PROXY_RID +ID308=SECURITY_RESTRICTED_CODE_RID +ID309=SECURITY_SERVER_LOGON_RID ID31=AMD_BIT_27 -ID310=SECURITY_TERMINAL_SERVER_RID -ID311=SECURITY_WORLD_RID -ID312=SECURITY_WORLD_SID_AUTHORITY -ID313=SID_IQueryInfo -ID314=TAdapterStatus -ID315=tagMODULEENTRY32 -ID316=TAMDSpecific.DataTLB -ID317=TAMDSpecific.InstructionTLB -ID318=TAMDSpecific.L1ICache -ID319=TANonObjectHeader +ID310=SECURITY_SERVICE_RID +ID311=SECURITY_TERMINAL_SERVER_RID +ID312=SECURITY_WORLD_RID +ID313=SECURITY_WORLD_SID_AUTHORITY +ID314=SID_IQueryInfo +ID315=TAdapterStatus +ID316=tagMODULEENTRY32 +ID317=TAMDSpecific.DataTLB +ID318=TAMDSpecific.InstructionTLB +ID319=TAMDSpecific.L1ICache ID32=AMD_BIT_28 -ID320=TCoCreateInstanceExProc -ID321=TExprCompileParser.CompileExpr -ID322=TExprCompileParser.CompileSignedFactor -ID323=TExprCompileParser.CompileSimpleExpr -ID324=TExprCompileParser.CompileTerm -ID325=TExprEvalParser.EvalExpr -ID326=TExprEvalParser.EvalSignedFactor -ID327=TExprEvalParser.EvalSimpleExpr -ID328=TExprEvalParser.EvalTerm -ID329=TFileAllocatedRangeBuffer +ID320=TANonObjectHeader +ID321=TCoCreateInstanceExProc +ID322=TExprCompileParser.CompileExpr +ID323=TExprCompileParser.CompileSignedFactor +ID324=TExprCompileParser.CompileSimpleExpr +ID325=TExprCompileParser.CompileTerm +ID326=TExprEvalParser.EvalExpr +ID327=TExprEvalParser.EvalSignedFactor +ID328=TExprEvalParser.EvalSimpleExpr +ID329=TExprEvalParser.EvalTerm ID33=AMD_BIT_29 -ID330=TFileZeroDataInformation -ID331=TH32CS_SNAPMODULE -ID332=TImageBaseRelocation -ID333=TImageBoundForwarderRef -ID334=TImageBoundImportDescriptor -ID335=TImageCor20Header -ID336=TImageExportDirectory -ID337=TImageImportByName -ID338=TImageImportDescriptor -ID339=TImageLoadConfigDirectory +ID330=TFileAllocatedRangeBuffer +ID331=TFileZeroDataInformation +ID332=TH32CS_SNAPMODULE +ID333=TImageBaseRelocation +ID334=TImageBoundForwarderRef +ID335=TImageBoundImportDescriptor +ID336=TImageCor20Header +ID337=TImageExportDirectory +ID338=TImageImportByName +ID339=TImageImportDescriptor ID34=AMD_BIT_30 -ID340=TImageResourceDataEntry -ID341=TImageResourceDirectory -ID342=TImageResourceDirectoryEntry -ID343=TImageResourceDirStringU -ID344=TImageThunkData -ID345=TImageTlsDirectory -ID346=TIME_ZONE_ID_DAYLIGHT -ID347=TIME_ZONE_ID_INVALID -ID348=TIME_ZONE_ID_STANDARD -ID349=TIME_ZONE_ID_UNKNOWN +ID340=TImageLoadConfigDirectory +ID341=TImageResourceDataEntry +ID342=TImageResourceDirectory +ID343=TImageResourceDirectoryEntry +ID344=TImageResourceDirStringU +ID345=TImageThunkData +ID346=TImageTlsDirectory +ID347=TIME_ZONE_ID_DAYLIGHT +ID348=TIME_ZONE_ID_INVALID +ID349=TIME_ZONE_ID_STANDARD ID35=AMD_BIT_31 -ID350=TImgDelayDescr -ID351=TJclBitmap32.FrameRect -ID352=TJclBitmap32.OnPixelCombine -ID353=TJclByteMap.Byte -ID354=TJclDesktopCanvas.Create -ID355=TJclDesktopCanvas.Destroy -ID356=TJclIsFunc -ID357=TJclRebaseImageInfo.NewImageBase -ID358=TJclRebaseImageInfo.NewImageSize -ID359=TJclRebaseImageInfo.OldImageBase +ID350=TIME_ZONE_ID_UNKNOWN +ID351=TImgDelayDescr +ID352=TJclBitmap32.FrameRect +ID353=TJclBitmap32.OnPixelCombine +ID354=TJclByteMap.Byte +ID355=TJclDesktopCanvas.Create +ID356=TJclDesktopCanvas.Destroy +ID357=TJclIsFunc +ID358=TJclRebaseImageInfo.NewImageBase +ID359=TJclRebaseImageInfo.NewImageSize ID36=AMD_BIT_6 -ID360=TJclRebaseImageInfo.OldImageSize -ID361=TLanaEnum -ID362=TLoadedImage -ID363=TModuleEntry32 -ID364=TModuleInfo -ID365=TNameBuffer -ID366=TNCB -ID367=TNCBPostProc -ID368=TObjectList.Clear -ID369=TObjectList.Create +ID360=TJclRebaseImageInfo.OldImageBase +ID361=TJclRebaseImageInfo.OldImageSize +ID362=TLanaEnum +ID363=TLoadedImage +ID364=TModuleEntry32 +ID365=TModuleInfo +ID366=TNameBuffer +ID367=TNCB +ID368=TNCBPostProc +ID369=TObjectList.Clear ID37=AMD_CMOV_FLAG -ID370=TObjectList.OwnsObjects -ID371=TOSVersionInfoEx -ID372=TReparseDataBuffer -ID373=TReparsePointInformation -ID374=TWideStrings.Destroy -ID375=VER_NT_DOMAIN_CONTROLLER -ID376=VER_NT_SERVER -ID377=VER_NT_WORKSTATION -ID378=VER_SUITE_BACKOFFICE -ID379=VER_SUITE_COMMUNICATIONS +ID370=TObjectList.Create +ID371=TObjectList.OwnsObjects +ID372=TOSVersionInfoEx +ID373=TReparseDataBuffer +ID374=TReparsePointInformation +ID375=TWideStrings.Destroy +ID376=VER_NT_DOMAIN_CONTROLLER +ID377=VER_NT_SERVER +ID378=VER_NT_WORKSTATION +ID379=VER_SUITE_BACKOFFICE ID38=AMD_CX8_FLAG -ID380=VER_SUITE_DATACENTER -ID381=VER_SUITE_EMBEDDEDNT -ID382=VER_SUITE_ENTERPRISE -ID383=VER_SUITE_PERSONAL -ID384=VER_SUITE_SERVERAPPLIANCE -ID385=VER_SUITE_SINGLEUSERTS -ID386=VER_SUITE_SMALLBUSINESS -ID387=VER_SUITE_SMALLBUSINESS_RESTRICTED -ID388=VER_SUITE_TERMINAL -ID389=Win32BackupFile +ID380=VER_SUITE_COMMUNICATIONS +ID381=VER_SUITE_DATACENTER +ID382=VER_SUITE_EMBEDDEDNT +ID383=VER_SUITE_ENTERPRISE +ID384=VER_SUITE_PERSONAL +ID385=VER_SUITE_SERVERAPPLIANCE +ID386=VER_SUITE_SINGLEUSERTS +ID387=VER_SUITE_SMALLBUSINESS +ID388=VER_SUITE_SMALLBUSINESS_RESTRICTED +ID389=VER_SUITE_TERMINAL ID39=AMD_DE_FLAG -ID390=Win32DeleteFile -ID391=Win32MoveFileReplaceExisting -ID392=Win32RestoreFile +ID390=Win32BackupFile +ID391=Win32DeleteFile +ID392=Win32MoveFileReplaceExisting +ID393=Win32RestoreFile ID4=_IMAGE_BOUND_IMPORT_DESCRIPTOR ID40=AMD_FPU_FLAG ID41=AMD_MCE_FLAG @@ -11682,24 +11683,42 @@ ID98=DOMAIN_ALIAS_RID_REPLICATOR ID99=DOMAIN_ALIAS_RID_SYSTEM_OPS [Configurations\CHM\Enabled Topics] -Count=17 -ID0=BOM_LSB_FIRST -ID1=Jcl8087.pas -ID10=StrToFloatSafe@AnsiString -ID11=StrToIntSafe@AnsiString -ID12=TJclBitmap32.SetPixel -ID13=TJclThreadPersistent.Create -ID14=TJclThreadPersistent.Destroy -ID15=TJclThreadPersistent.UpdateCount -ID16=TStreamNotifyEvent -ID2=JclAppInst.pas -ID3=JclFileUtils.pas -ID4=JclQGraphics.pas -ID5=JclStrHashMap.pas -ID6=JclStrings.pas -ID7=PolyPolyLineTS -ID8=RTTI -ID9=StrIToStrings@AnsiString@AnsiString@TStrings@Boolean +Count=35 +ID0=!!CONSTANTS +ID1=BOM_LSB_FIRST +ID10=jcld11.inc +ID11=jcld12.inc +ID12=jcld14.inc +ID13=jcld15.inc +ID14=jcld6.inc +ID15=jcld7.inc +ID16=jcld8.inc +ID17=jcld9.inc +ID18=JclFileUtils.pas +ID19=jclfpc.inc +ID2=Containers.Interfaces +ID20=JclQGraphics.pas +ID21=JclStrHashMap.pas +ID22=JclStrings.pas +ID23=jedi.inc +ID24=kylix.inc +ID25=PolyPolyLineTS +ID26=RTTI +ID27=StrIToStrings@AnsiString@AnsiString@TStrings@Boolean +ID28=StrToFloatSafe@AnsiString +ID29=StrToIntSafe@AnsiString +ID3=IJclDoubleIntfMap +ID30=TJclBitmap32.SetPixel +ID31=TJclThreadPersistent.Create +ID32=TJclThreadPersistent.Destroy +ID33=TJclThreadPersistent.UpdateCount +ID34=TStreamNotifyEvent +ID4=jcl.inc +ID5=Jcl8087.pas +ID6=JclAppInst.pas +ID7=jclc6.inc +ID8=jclcs1.inc +ID9=jcld10.inc [Configurations\CHM\Export Symbols] Classes=1 @@ -11825,7 +11844,7 @@ ControlPointSize=6 GraphBorder=0 LayoutDirection=1 LevelSpacing=30 -MaxNodeWidth=200 +MaxNodeWidth=350 MinNodeHeight=15 MinNodeWidth=30 NodesAdjustWidthToGrid=0 @@ -11847,8 +11866,8 @@ Style=0 BackgroundColor=16777215 BorderColor=0 GradientBaseColor=10070188 -HighlightColor=-2147483635 -HighlightFontColor=-2147483634 +HighlightColor=-16777203 +HighlightFontColor=-16777202 Show=1 Style=0 StyleOptions=7 @@ -11858,7 +11877,7 @@ TextAlignment=0 Charset=1 Color=0 Height=-9 -Name=Tahoma +Name=Segoe UI Orientation=0 Pitch=0 Size=7 @@ -11874,8 +11893,8 @@ Top=2 BackgroundColor=13434829 BorderColor=0 GradientBaseColor=11197867 -HighlightColor=-2147483635 -HighlightFontColor=-2147483634 +HighlightColor=-16777203 +HighlightFontColor=-16777202 Show=1 Style=0 StyleOptions=7 @@ -11885,7 +11904,7 @@ TextAlignment=0 Charset=1 Color=0 Height=-9 -Name=Tahoma +Name=Segoe UI Orientation=0 Pitch=0 Size=7 @@ -11901,8 +11920,8 @@ Top=2 BackgroundColor=13434829 BorderColor=0 GradientBaseColor=11197867 -HighlightColor=-2147483635 -HighlightFontColor=-2147483634 +HighlightColor=-16777203 +HighlightFontColor=-16777202 Show=1 Style=0 StyleOptions=7 @@ -11912,7 +11931,7 @@ TextAlignment=0 Charset=1 Color=0 Height=-9 -Name=Tahoma +Name=Segoe UI Orientation=0 Pitch=0 Size=7 @@ -11928,8 +11947,8 @@ Top=2 BackgroundColor=16764313 BorderColor=0 GradientBaseColor=14527351 -HighlightColor=-2147483635 -HighlightFontColor=-2147483634 +HighlightColor=-16777203 +HighlightFontColor=-16777202 Show=1 Style=0 StyleOptions=7 @@ -11939,7 +11958,7 @@ TextAlignment=0 Charset=1 Color=0 Height=-9 -Name=Tahoma +Name=Segoe UI Orientation=0 Pitch=0 Size=7 @@ -11955,8 +11974,8 @@ Top=2 BackgroundColor=131071 BorderColor=0 GradientBaseColor=56797 -HighlightColor=-2147483635 -HighlightFontColor=-2147483634 +HighlightColor=-16777203 +HighlightFontColor=-16777202 Show=0 Style=3 StyleOptions=7 @@ -11966,7 +11985,7 @@ TextAlignment=0 Charset=1 Color=0 Height=-9 -Name=Tahoma +Name=Segoe UI Orientation=0 Pitch=0 Size=7 @@ -11982,8 +12001,8 @@ Top=2 BackgroundColor=131071 BorderColor=0 GradientBaseColor=56797 -HighlightColor=-2147483635 -HighlightFontColor=-2147483634 +HighlightColor=-16777203 +HighlightFontColor=-16777202 Show=0 Style=3 StyleOptions=7 @@ -11993,7 +12012,7 @@ TextAlignment=0 Charset=1 Color=0 Height=-9 -Name=Tahoma +Name=Segoe UI Orientation=0 Pitch=0 Size=7 @@ -12009,8 +12028,8 @@ Top=2 BackgroundColor=16777215 BorderColor=0 GradientBaseColor=10070188 -HighlightColor=-2147483635 -HighlightFontColor=-2147483634 +HighlightColor=-16777203 +HighlightFontColor=-16777202 Show=1 Style=0 StyleOptions=7 @@ -12020,7 +12039,7 @@ TextAlignment=0 Charset=1 Color=0 Height=-9 -Name=Tahoma +Name=Segoe UI Orientation=0 Pitch=0 Size=7 @@ -12036,8 +12055,8 @@ Top=2 BackgroundColor=52479 BorderColor=0 GradientBaseColor=43741 -HighlightColor=-2147483635 -HighlightFontColor=-2147483634 +HighlightColor=-16777203 +HighlightFontColor=-16777202 Show=1 Style=2 StyleOptions=7 @@ -12047,7 +12066,7 @@ TextAlignment=0 Charset=1 Color=0 Height=-9 -Name=Tahoma +Name=Segoe UI Orientation=0 Pitch=0 Size=7 @@ -12063,8 +12082,8 @@ Top=2 BackgroundColor=3394407 BorderColor=0 GradientBaseColor=1157445 -HighlightColor=-2147483635 -HighlightFontColor=-2147483634 +HighlightColor=-16777203 +HighlightFontColor=-16777202 Show=1 Style=0 StyleOptions=7 @@ -12074,7 +12093,7 @@ TextAlignment=0 Charset=1 Color=0 Height=-9 -Name=Tahoma +Name=Segoe UI Orientation=0 Pitch=0 Size=7 @@ -12090,8 +12109,8 @@ Top=2 BackgroundColor=16777215 BorderColor=0 GradientBaseColor=10070188 -HighlightColor=-2147483635 -HighlightFontColor=-2147483634 +HighlightColor=-16777203 +HighlightFontColor=-16777202 Show=1 Style=0 StyleOptions=7 @@ -12101,7 +12120,7 @@ TextAlignment=0 Charset=1 Color=0 Height=-9 -Name=Tahoma +Name=Segoe UI Orientation=0 Pitch=0 Size=7 @@ -23652,7 +23671,7 @@ BodySourceUseAutolinking=0 BodySourceUseSyntaxHighlight=0 [Configurations\H2\Disabled Topics] -Count=393 +Count=394 ID0=_DLLVERSIONINFO.dwPlatformId ID1=_FILE_ZERO_DATA_INFORMATION ID10=_IMAGE_RESOURCE_DIRECTORY @@ -23717,269 +23736,270 @@ ID152=IJclMIDIOut.GetActiveNotes@TMIDIChannel ID153=IJclMIDIOut.GetName ID154=IJclMIDIOut.GetRunningStatusEnabled ID155=IJclMIDIOut.SetRunningStatusEnabled@Boolean -ID156=IMAGE_BASE_RELOCATION -ID157=IMAGE_BOUND_FORWARDER_REF -ID158=IMAGE_BOUND_IMPORT_DESCRIPTOR -ID159=IMAGE_COR20_HEADER +ID156=IJclMultiIntfIntfMap +ID157=IMAGE_BASE_RELOCATION +ID158=IMAGE_BOUND_FORWARDER_REF +ID159=IMAGE_BOUND_IMPORT_DESCRIPTOR ID16=_REPARSE_POINT_INFORMATION -ID160=IMAGE_DEBUG_TYPE_BORLAND -ID161=IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR -ID162=IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT -ID163=IMAGE_EXPORT_DIRECTORY -ID164=IMAGE_IMPORT_BY_NAME -ID165=IMAGE_IMPORT_DESCRIPTOR -ID166=IMAGE_LOAD_CONFIG_DIRECTORY -ID167=IMAGE_ORDINAL_FLAG -ID168=IMAGE_REL_BASED_ABSOLUTE -ID169=IMAGE_REL_BASED_DIR64 +ID160=IMAGE_COR20_HEADER +ID161=IMAGE_DEBUG_TYPE_BORLAND +ID162=IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR +ID163=IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT +ID164=IMAGE_EXPORT_DIRECTORY +ID165=IMAGE_IMPORT_BY_NAME +ID166=IMAGE_IMPORT_DESCRIPTOR +ID167=IMAGE_LOAD_CONFIG_DIRECTORY +ID168=IMAGE_ORDINAL_FLAG +ID169=IMAGE_REL_BASED_ABSOLUTE ID17=AMD_APIC_FLAG -ID170=IMAGE_REL_BASED_HIGH -ID171=IMAGE_REL_BASED_HIGH3ADJ -ID172=IMAGE_REL_BASED_HIGHADJ -ID173=IMAGE_REL_BASED_HIGHLOW -ID174=IMAGE_REL_BASED_IA64_IMM64 -ID175=IMAGE_REL_BASED_LOW -ID176=IMAGE_REL_BASED_MIPS_JMPADDR -ID177=IMAGE_REL_BASED_MIPS_JMPADDR16 -ID178=IMAGE_REL_BASED_REL32 -ID179=IMAGE_REL_BASED_SECTION +ID170=IMAGE_REL_BASED_DIR64 +ID171=IMAGE_REL_BASED_HIGH +ID172=IMAGE_REL_BASED_HIGH3ADJ +ID173=IMAGE_REL_BASED_HIGHADJ +ID174=IMAGE_REL_BASED_HIGHLOW +ID175=IMAGE_REL_BASED_IA64_IMM64 +ID176=IMAGE_REL_BASED_LOW +ID177=IMAGE_REL_BASED_MIPS_JMPADDR +ID178=IMAGE_REL_BASED_MIPS_JMPADDR16 +ID179=IMAGE_REL_BASED_REL32 ID18=AMD_BIT_10 -ID180=IMAGE_RESOURCE_DATA_ENTRY -ID181=IMAGE_RESOURCE_DATA_IS_DIRECTORY -ID182=IMAGE_RESOURCE_DIR_STRING_U -ID183=IMAGE_RESOURCE_DIRECTORY -ID184=IMAGE_RESOURCE_DIRECTORY_ENTRY -ID185=IMAGE_RESOURCE_NAME_IS_STRING -ID186=IMAGE_SIZEOF_BASE_RELOCATION -ID187=IMAGE_THUNK_DATA -ID188=IMAGE_TLS_DIRECTORY -ID189=ImgDelayDescr +ID180=IMAGE_REL_BASED_SECTION +ID181=IMAGE_RESOURCE_DATA_ENTRY +ID182=IMAGE_RESOURCE_DATA_IS_DIRECTORY +ID183=IMAGE_RESOURCE_DIR_STRING_U +ID184=IMAGE_RESOURCE_DIRECTORY +ID185=IMAGE_RESOURCE_DIRECTORY_ENTRY +ID186=IMAGE_RESOURCE_NAME_IS_STRING +ID187=IMAGE_SIZEOF_BASE_RELOCATION +ID188=IMAGE_THUNK_DATA +ID189=IMAGE_TLS_DIRECTORY ID19=AMD_BIT_11 -ID190=IO_REPARSE_TAG_HSM -ID191=IO_REPARSE_TAG_MOUNT_POINT -ID192=IO_REPARSE_TAG_RESERVED_ONE -ID193=IO_REPARSE_TAG_RESERVED_RANGE -ID194=IO_REPARSE_TAG_RESERVED_ZERO -ID195=IO_REPARSE_TAG_SIS -ID196=IO_REPARSE_TAG_VALID_VALUES -ID197=IQueryInfo -ID198=JclDebug.pas -ID199=JclGraphics.pas +ID190=ImgDelayDescr +ID191=IO_REPARSE_TAG_HSM +ID192=IO_REPARSE_TAG_MOUNT_POINT +ID193=IO_REPARSE_TAG_RESERVED_ONE +ID194=IO_REPARSE_TAG_RESERVED_RANGE +ID195=IO_REPARSE_TAG_RESERVED_ZERO +ID196=IO_REPARSE_TAG_SIS +ID197=IO_REPARSE_TAG_VALID_VALUES +ID198=IQueryInfo +ID199=JclDebug.pas ID2=_IMAGE_BASE_RELOCATION ID20=AMD_BIT_14 -ID200=JclHookIs -ID201=JclIsHooked -ID202=JclMidi.pas -ID203=JclNTFS.pas -ID204=JclRegistry.pas -ID205=JclUnhookIs -ID206=KLF_SETFORPROCESS -ID207=MAX_LANA -ID208=MAX_MODULE_NAME32 -ID209=MAXIMUM_REPARSE_DATA_BUFFER_SIZE +ID200=JclGraphics.pas +ID201=JclHookIs +ID202=JclIsHooked +ID203=JclMidi.pas +ID204=JclNTFS.pas +ID205=JclRegistry.pas +ID206=JclUnhookIs +ID207=KLF_SETFORPROCESS +ID208=MAX_LANA +ID209=MAX_MODULE_NAME32 ID21=AMD_BIT_16 -ID210=METHOD_BUFFERED -ID211=METHOD_IN_DIRECT -ID212=METHOD_NEITHER -ID213=METHOD_OUT_DIRECT -ID214=NCBASTAT -ID215=NCBENUM -ID216=NCBNAMSZ -ID217=NCBRESET -ID218=NRC_GOODRET -ID219=PAdapterStatus +ID210=MAXIMUM_REPARSE_DATA_BUFFER_SIZE +ID211=METHOD_BUFFERED +ID212=METHOD_IN_DIRECT +ID213=METHOD_NEITHER +ID214=METHOD_OUT_DIRECT +ID215=NCBASTAT +ID216=NCBENUM +ID217=NCBNAMSZ +ID218=NCBRESET +ID219=NRC_GOODRET ID22=AMD_BIT_17 -ID220=PANonObjectHeader -ID221=PFileAllocatedRangeBuffer -ID222=PFileZeroDataInformation -ID223=PImageBaseRelocation -ID224=PImageBoundForwarderRef -ID225=PImageBoundImportDescriptor -ID226=PImageCor20Header -ID227=PImageExportDirectory -ID228=PImageImportByName -ID229=PImageImportDescriptor +ID220=PAdapterStatus +ID221=PANonObjectHeader +ID222=PFileAllocatedRangeBuffer +ID223=PFileZeroDataInformation +ID224=PImageBaseRelocation +ID225=PImageBoundForwarderRef +ID226=PImageBoundImportDescriptor +ID227=PImageCor20Header +ID228=PImageExportDirectory +ID229=PImageImportByName ID23=AMD_BIT_18 -ID230=PImageLoadConfigDirectory -ID231=PImageResourceDataEntry -ID232=PImageResourceDirectory -ID233=PImageResourceDirectoryEntry -ID234=PImageResourceDirStringU -ID235=PImageThunkData -ID236=PImageTlsDirectory -ID237=PImgDelayDescr -ID238=PLanaEnum -ID239=PModuleInfo +ID230=PImageImportDescriptor +ID231=PImageLoadConfigDirectory +ID232=PImageResourceDataEntry +ID233=PImageResourceDirectory +ID234=PImageResourceDirectoryEntry +ID235=PImageResourceDirStringU +ID236=PImageThunkData +ID237=PImageTlsDirectory +ID238=PImgDelayDescr +ID239=PLanaEnum ID24=AMD_BIT_19 -ID240=PNameBuffer -ID241=PNCB -ID242=POSVersionInfoEx -ID243=PPImageSectionHeader -ID244=PPSID -ID245=PReparseDataBuffer -ID246=PReparsePointInformation -ID247=REPARSE_DATA_BUFFER_HEADER_SIZE -ID248=REPARSE_GUID_DATA_BUFFER_HEADER_SIZE -ID249=RT_HTML +ID240=PModuleInfo +ID241=PNameBuffer +ID242=PNCB +ID243=POSVersionInfoEx +ID244=PPImageSectionHeader +ID245=PPSID +ID246=PReparseDataBuffer +ID247=PReparsePointInformation +ID248=REPARSE_DATA_BUFFER_HEADER_SIZE +ID249=REPARSE_GUID_DATA_BUFFER_HEADER_SIZE ID25=AMD_BIT_20 -ID250=RT_MANIFEST -ID251=SE_ASSIGNPRIMARYTOKEN_NAME -ID252=SE_AUDIT_NAME -ID253=SE_BACKUP_NAME -ID254=SE_CHANGE_NOTIFY_NAME -ID255=SE_CREATE_PAGEFILE_NAME -ID256=SE_CREATE_PERMANENT_NAME -ID257=SE_CREATE_TOKEN_NAME -ID258=SE_DEBUG_NAME -ID259=SE_ENABLE_DELEGATION_NAME +ID250=RT_HTML +ID251=RT_MANIFEST +ID252=SE_ASSIGNPRIMARYTOKEN_NAME +ID253=SE_AUDIT_NAME +ID254=SE_BACKUP_NAME +ID255=SE_CHANGE_NOTIFY_NAME +ID256=SE_CREATE_PAGEFILE_NAME +ID257=SE_CREATE_PERMANENT_NAME +ID258=SE_CREATE_TOKEN_NAME +ID259=SE_DEBUG_NAME ID26=AMD_BIT_21 -ID260=SE_INC_BASE_PRIORITY_NAME -ID261=SE_INCREASE_QUOTA_NAME -ID262=SE_LOAD_DRIVER_NAME -ID263=SE_LOCK_MEMORY_NAME -ID264=SE_MACHINE_ACCOUNT_NAME -ID265=SE_OBJECT_TYPE -ID266=SE_PROF_SINGLE_PROCESS_NAME -ID267=SE_REMOTE_SHUTDOWN_NAME -ID268=SE_RESTORE_NAME -ID269=SE_SECURITY_NAME +ID260=SE_ENABLE_DELEGATION_NAME +ID261=SE_INC_BASE_PRIORITY_NAME +ID262=SE_INCREASE_QUOTA_NAME +ID263=SE_LOAD_DRIVER_NAME +ID264=SE_LOCK_MEMORY_NAME +ID265=SE_MACHINE_ACCOUNT_NAME +ID266=SE_OBJECT_TYPE +ID267=SE_PROF_SINGLE_PROCESS_NAME +ID268=SE_REMOTE_SHUTDOWN_NAME +ID269=SE_RESTORE_NAME ID27=AMD_BIT_22 -ID270=SE_SHUTDOWN_NAME -ID271=SE_SYNC_AGENT_NAME -ID272=SE_SYSTEM_ENVIRONMENT_NAME -ID273=SE_SYSTEM_PROFILE_NAME -ID274=SE_SYSTEMTIME_NAME -ID275=SE_TAKE_OWNERSHIP_NAME -ID276=SE_TCB_NAME -ID277=SE_UNDOCK_NAME -ID278=SE_UNSOLICITED_INPUT_NAME -ID279=SECURITY_ANONYMOUS_LOGON_RID +ID270=SE_SECURITY_NAME +ID271=SE_SHUTDOWN_NAME +ID272=SE_SYNC_AGENT_NAME +ID273=SE_SYSTEM_ENVIRONMENT_NAME +ID274=SE_SYSTEM_PROFILE_NAME +ID275=SE_SYSTEMTIME_NAME +ID276=SE_TAKE_OWNERSHIP_NAME +ID277=SE_TCB_NAME +ID278=SE_UNDOCK_NAME +ID279=SE_UNSOLICITED_INPUT_NAME ID28=AMD_BIT_24 -ID280=SECURITY_AUTHENTICATED_USER_RID -ID281=SECURITY_BATCH_RID -ID282=SECURITY_BUILTIN_DOMAIN_RID -ID283=SECURITY_CREATOR_GROUP_RID -ID284=SECURITY_CREATOR_GROUP_SERVER_RID -ID285=SECURITY_CREATOR_OWNER_RID -ID286=SECURITY_CREATOR_OWNER_SERVER_RID -ID287=SECURITY_CREATOR_SID_AUTHORITY -ID288=SECURITY_DESCRIPTOR_MIN_LENGTH -ID289=SECURITY_DESCRIPTOR_REVISION +ID280=SECURITY_ANONYMOUS_LOGON_RID +ID281=SECURITY_AUTHENTICATED_USER_RID +ID282=SECURITY_BATCH_RID +ID283=SECURITY_BUILTIN_DOMAIN_RID +ID284=SECURITY_CREATOR_GROUP_RID +ID285=SECURITY_CREATOR_GROUP_SERVER_RID +ID286=SECURITY_CREATOR_OWNER_RID +ID287=SECURITY_CREATOR_OWNER_SERVER_RID +ID288=SECURITY_CREATOR_SID_AUTHORITY +ID289=SECURITY_DESCRIPTOR_MIN_LENGTH ID29=AMD_BIT_25 -ID290=SECURITY_DESCRIPTOR_REVISION1 -ID291=SECURITY_DIALUP_RID -ID292=SECURITY_ENTERPRISE_CONTROLLERS_RID -ID293=SECURITY_INTERACTIVE_RID -ID294=SECURITY_LOCAL_RID -ID295=SECURITY_LOCAL_SID_AUTHORITY -ID296=SECURITY_LOCAL_SYSTEM_RID -ID297=SECURITY_LOGON_IDS_RID -ID298=SECURITY_LOGON_IDS_RID_COUNT -ID299=SECURITY_NETWORK_RID +ID290=SECURITY_DESCRIPTOR_REVISION +ID291=SECURITY_DESCRIPTOR_REVISION1 +ID292=SECURITY_DIALUP_RID +ID293=SECURITY_ENTERPRISE_CONTROLLERS_RID +ID294=SECURITY_INTERACTIVE_RID +ID295=SECURITY_LOCAL_RID +ID296=SECURITY_LOCAL_SID_AUTHORITY +ID297=SECURITY_LOCAL_SYSTEM_RID +ID298=SECURITY_LOGON_IDS_RID +ID299=SECURITY_LOGON_IDS_RID_COUNT ID3=_IMAGE_BOUND_FORWARDER_REF ID30=AMD_BIT_26 -ID300=SECURITY_NON_UNIQUE_AUTHORITY -ID301=SECURITY_NT_AUTHORITY -ID302=SECURITY_NT_NON_UNIQUE -ID303=SECURITY_NULL_RID -ID304=SECURITY_NULL_SID_AUTHORITY -ID305=SECURITY_PRINCIPAL_SELF_RID -ID306=SECURITY_PROXY_RID -ID307=SECURITY_RESTRICTED_CODE_RID -ID308=SECURITY_SERVER_LOGON_RID -ID309=SECURITY_SERVICE_RID +ID300=SECURITY_NETWORK_RID +ID301=SECURITY_NON_UNIQUE_AUTHORITY +ID302=SECURITY_NT_AUTHORITY +ID303=SECURITY_NT_NON_UNIQUE +ID304=SECURITY_NULL_RID +ID305=SECURITY_NULL_SID_AUTHORITY +ID306=SECURITY_PRINCIPAL_SELF_RID +ID307=SECURITY_PROXY_RID +ID308=SECURITY_RESTRICTED_CODE_RID +ID309=SECURITY_SERVER_LOGON_RID ID31=AMD_BIT_27 -ID310=SECURITY_TERMINAL_SERVER_RID -ID311=SECURITY_WORLD_RID -ID312=SECURITY_WORLD_SID_AUTHORITY -ID313=SID_IQueryInfo -ID314=TAdapterStatus -ID315=tagMODULEENTRY32 -ID316=TAMDSpecific.DataTLB -ID317=TAMDSpecific.InstructionTLB -ID318=TAMDSpecific.L1ICache -ID319=TANonObjectHeader +ID310=SECURITY_SERVICE_RID +ID311=SECURITY_TERMINAL_SERVER_RID +ID312=SECURITY_WORLD_RID +ID313=SECURITY_WORLD_SID_AUTHORITY +ID314=SID_IQueryInfo +ID315=TAdapterStatus +ID316=tagMODULEENTRY32 +ID317=TAMDSpecific.DataTLB +ID318=TAMDSpecific.InstructionTLB +ID319=TAMDSpecific.L1ICache ID32=AMD_BIT_28 -ID320=TCoCreateInstanceExProc -ID321=TExprCompileParser.CompileExpr -ID322=TExprCompileParser.CompileSignedFactor -ID323=TExprCompileParser.CompileSimpleExpr -ID324=TExprCompileParser.CompileTerm -ID325=TExprEvalParser.EvalExpr -ID326=TExprEvalParser.EvalSignedFactor -ID327=TExprEvalParser.EvalSimpleExpr -ID328=TExprEvalParser.EvalTerm -ID329=TFileAllocatedRangeBuffer +ID320=TANonObjectHeader +ID321=TCoCreateInstanceExProc +ID322=TExprCompileParser.CompileExpr +ID323=TExprCompileParser.CompileSignedFactor +ID324=TExprCompileParser.CompileSimpleExpr +ID325=TExprCompileParser.CompileTerm +ID326=TExprEvalParser.EvalExpr +ID327=TExprEvalParser.EvalSignedFactor +ID328=TExprEvalParser.EvalSimpleExpr +ID329=TExprEvalParser.EvalTerm ID33=AMD_BIT_29 -ID330=TFileZeroDataInformation -ID331=TH32CS_SNAPMODULE -ID332=TImageBaseRelocation -ID333=TImageBoundForwarderRef -ID334=TImageBoundImportDescriptor -ID335=TImageCor20Header -ID336=TImageExportDirectory -ID337=TImageImportByName -ID338=TImageImportDescriptor -ID339=TImageLoadConfigDirectory +ID330=TFileAllocatedRangeBuffer +ID331=TFileZeroDataInformation +ID332=TH32CS_SNAPMODULE +ID333=TImageBaseRelocation +ID334=TImageBoundForwarderRef +ID335=TImageBoundImportDescriptor +ID336=TImageCor20Header +ID337=TImageExportDirectory +ID338=TImageImportByName +ID339=TImageImportDescriptor ID34=AMD_BIT_30 -ID340=TImageResourceDataEntry -ID341=TImageResourceDirectory -ID342=TImageResourceDirectoryEntry -ID343=TImageResourceDirStringU -ID344=TImageThunkData -ID345=TImageTlsDirectory -ID346=TIME_ZONE_ID_DAYLIGHT -ID347=TIME_ZONE_ID_INVALID -ID348=TIME_ZONE_ID_STANDARD -ID349=TIME_ZONE_ID_UNKNOWN +ID340=TImageLoadConfigDirectory +ID341=TImageResourceDataEntry +ID342=TImageResourceDirectory +ID343=TImageResourceDirectoryEntry +ID344=TImageResourceDirStringU +ID345=TImageThunkData +ID346=TImageTlsDirectory +ID347=TIME_ZONE_ID_DAYLIGHT +ID348=TIME_ZONE_ID_INVALID +ID349=TIME_ZONE_ID_STANDARD ID35=AMD_BIT_31 -ID350=TImgDelayDescr -ID351=TJclBitmap32.FrameRect -ID352=TJclBitmap32.OnPixelCombine -ID353=TJclByteMap.Byte -ID354=TJclDesktopCanvas.Create -ID355=TJclDesktopCanvas.Destroy -ID356=TJclIsFunc -ID357=TJclRebaseImageInfo.NewImageBase -ID358=TJclRebaseImageInfo.NewImageSize -ID359=TJclRebaseImageInfo.OldImageBase +ID350=TIME_ZONE_ID_UNKNOWN +ID351=TImgDelayDescr +ID352=TJclBitmap32.FrameRect +ID353=TJclBitmap32.OnPixelCombine +ID354=TJclByteMap.Byte +ID355=TJclDesktopCanvas.Create +ID356=TJclDesktopCanvas.Destroy +ID357=TJclIsFunc +ID358=TJclRebaseImageInfo.NewImageBase +ID359=TJclRebaseImageInfo.NewImageSize ID36=AMD_BIT_6 -ID360=TJclRebaseImageInfo.OldImageSize -ID361=TLanaEnum -ID362=TLoadedImage -ID363=TModuleEntry32 -ID364=TModuleInfo -ID365=TNameBuffer -ID366=TNCB -ID367=TNCBPostProc -ID368=TObjectList.Clear -ID369=TObjectList.Create +ID360=TJclRebaseImageInfo.OldImageBase +ID361=TJclRebaseImageInfo.OldImageSize +ID362=TLanaEnum +ID363=TLoadedImage +ID364=TModuleEntry32 +ID365=TModuleInfo +ID366=TNameBuffer +ID367=TNCB +ID368=TNCBPostProc +ID369=TObjectList.Clear ID37=AMD_CMOV_FLAG -ID370=TObjectList.OwnsObjects -ID371=TOSVersionInfoEx -ID372=TReparseDataBuffer -ID373=TReparsePointInformation -ID374=TWideStrings.Destroy -ID375=VER_NT_DOMAIN_CONTROLLER -ID376=VER_NT_SERVER -ID377=VER_NT_WORKSTATION -ID378=VER_SUITE_BACKOFFICE -ID379=VER_SUITE_COMMUNICATIONS +ID370=TObjectList.Create +ID371=TObjectList.OwnsObjects +ID372=TOSVersionInfoEx +ID373=TReparseDataBuffer +ID374=TReparsePointInformation +ID375=TWideStrings.Destroy +ID376=VER_NT_DOMAIN_CONTROLLER +ID377=VER_NT_SERVER +ID378=VER_NT_WORKSTATION +ID379=VER_SUITE_BACKOFFICE ID38=AMD_CX8_FLAG -ID380=VER_SUITE_DATACENTER -ID381=VER_SUITE_EMBEDDEDNT -ID382=VER_SUITE_ENTERPRISE -ID383=VER_SUITE_PERSONAL -ID384=VER_SUITE_SERVERAPPLIANCE -ID385=VER_SUITE_SINGLEUSERTS -ID386=VER_SUITE_SMALLBUSINESS -ID387=VER_SUITE_SMALLBUSINESS_RESTRICTED -ID388=VER_SUITE_TERMINAL -ID389=Win32BackupFile +ID380=VER_SUITE_COMMUNICATIONS +ID381=VER_SUITE_DATACENTER +ID382=VER_SUITE_EMBEDDEDNT +ID383=VER_SUITE_ENTERPRISE +ID384=VER_SUITE_PERSONAL +ID385=VER_SUITE_SERVERAPPLIANCE +ID386=VER_SUITE_SINGLEUSERTS +ID387=VER_SUITE_SMALLBUSINESS +ID388=VER_SUITE_SMALLBUSINESS_RESTRICTED +ID389=VER_SUITE_TERMINAL ID39=AMD_DE_FLAG -ID390=Win32DeleteFile -ID391=Win32MoveFileReplaceExisting -ID392=Win32RestoreFile +ID390=Win32BackupFile +ID391=Win32DeleteFile +ID392=Win32MoveFileReplaceExisting +ID393=Win32RestoreFile ID4=_IMAGE_BOUND_IMPORT_DESCRIPTOR ID40=AMD_FPU_FLAG ID41=AMD_MCE_FLAG @@ -24048,24 +24068,42 @@ ID98=DOMAIN_ALIAS_RID_REPLICATOR ID99=DOMAIN_ALIAS_RID_SYSTEM_OPS [Configurations\H2\Enabled Topics] -Count=17 -ID0=BOM_LSB_FIRST -ID1=Jcl8087.pas -ID10=StrToFloatSafe@AnsiString -ID11=StrToIntSafe@AnsiString -ID12=TJclBitmap32.SetPixel -ID13=TJclThreadPersistent.Create -ID14=TJclThreadPersistent.Destroy -ID15=TJclThreadPersistent.UpdateCount -ID16=TStreamNotifyEvent -ID2=JclAppInst.pas -ID3=JclFileUtils.pas -ID4=JclQGraphics.pas -ID5=JclStrHashMap.pas -ID6=JclStrings.pas -ID7=PolyPolyLineTS -ID8=RTTI -ID9=StrIToStrings@AnsiString@AnsiString@TStrings@Boolean +Count=35 +ID0=!!CONSTANTS +ID1=BOM_LSB_FIRST +ID10=jcld11.inc +ID11=jcld12.inc +ID12=jcld14.inc +ID13=jcld15.inc +ID14=jcld6.inc +ID15=jcld7.inc +ID16=jcld8.inc +ID17=jcld9.inc +ID18=JclFileUtils.pas +ID19=jclfpc.inc +ID2=Containers.Interfaces +ID20=JclQGraphics.pas +ID21=JclStrHashMap.pas +ID22=JclStrings.pas +ID23=jedi.inc +ID24=kylix.inc +ID25=PolyPolyLineTS +ID26=RTTI +ID27=StrIToStrings@AnsiString@AnsiString@TStrings@Boolean +ID28=StrToFloatSafe@AnsiString +ID29=StrToIntSafe@AnsiString +ID3=IJclDoubleIntfMap +ID30=TJclBitmap32.SetPixel +ID31=TJclThreadPersistent.Create +ID32=TJclThreadPersistent.Destroy +ID33=TJclThreadPersistent.UpdateCount +ID34=TStreamNotifyEvent +ID4=jcl.inc +ID5=Jcl8087.pas +ID6=JclAppInst.pas +ID7=jclc6.inc +ID8=jclcs1.inc +ID9=jcld10.inc [Configurations\H2\Export Symbols] Classes=1 @@ -27822,7 +27860,7 @@ BodySourceUseAutolinking=0 BodySourceUseSyntaxHighlight=0 [Configurations\HLP\Disabled Topics] -Count=393 +Count=394 ID0=_DLLVERSIONINFO.dwPlatformId ID1=_FILE_ZERO_DATA_INFORMATION ID10=_IMAGE_RESOURCE_DIRECTORY @@ -27887,269 +27925,270 @@ ID152=IJclMIDIOut.GetActiveNotes@TMIDIChannel ID153=IJclMIDIOut.GetName ID154=IJclMIDIOut.GetRunningStatusEnabled ID155=IJclMIDIOut.SetRunningStatusEnabled@Boolean -ID156=IMAGE_BASE_RELOCATION -ID157=IMAGE_BOUND_FORWARDER_REF -ID158=IMAGE_BOUND_IMPORT_DESCRIPTOR -ID159=IMAGE_COR20_HEADER +ID156=IJclMultiIntfIntfMap +ID157=IMAGE_BASE_RELOCATION +ID158=IMAGE_BOUND_FORWARDER_REF +ID159=IMAGE_BOUND_IMPORT_DESCRIPTOR ID16=_REPARSE_POINT_INFORMATION -ID160=IMAGE_DEBUG_TYPE_BORLAND -ID161=IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR -ID162=IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT -ID163=IMAGE_EXPORT_DIRECTORY -ID164=IMAGE_IMPORT_BY_NAME -ID165=IMAGE_IMPORT_DESCRIPTOR -ID166=IMAGE_LOAD_CONFIG_DIRECTORY -ID167=IMAGE_ORDINAL_FLAG -ID168=IMAGE_REL_BASED_ABSOLUTE -ID169=IMAGE_REL_BASED_DIR64 +ID160=IMAGE_COR20_HEADER +ID161=IMAGE_DEBUG_TYPE_BORLAND +ID162=IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR +ID163=IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT +ID164=IMAGE_EXPORT_DIRECTORY +ID165=IMAGE_IMPORT_BY_NAME +ID166=IMAGE_IMPORT_DESCRIPTOR +ID167=IMAGE_LOAD_CONFIG_DIRECTORY +ID168=IMAGE_ORDINAL_FLAG +ID169=IMAGE_REL_BASED_ABSOLUTE ID17=AMD_APIC_FLAG -ID170=IMAGE_REL_BASED_HIGH -ID171=IMAGE_REL_BASED_HIGH3ADJ -ID172=IMAGE_REL_BASED_HIGHADJ -ID173=IMAGE_REL_BASED_HIGHLOW -ID174=IMAGE_REL_BASED_IA64_IMM64 -ID175=IMAGE_REL_BASED_LOW -ID176=IMAGE_REL_BASED_MIPS_JMPADDR -ID177=IMAGE_REL_BASED_MIPS_JMPADDR16 -ID178=IMAGE_REL_BASED_REL32 -ID179=IMAGE_REL_BASED_SECTION +ID170=IMAGE_REL_BASED_DIR64 +ID171=IMAGE_REL_BASED_HIGH +ID172=IMAGE_REL_BASED_HIGH3ADJ +ID173=IMAGE_REL_BASED_HIGHADJ +ID174=IMAGE_REL_BASED_HIGHLOW +ID175=IMAGE_REL_BASED_IA64_IMM64 +ID176=IMAGE_REL_BASED_LOW +ID177=IMAGE_REL_BASED_MIPS_JMPADDR +ID178=IMAGE_REL_BASED_MIPS_JMPADDR16 +ID179=IMAGE_REL_BASED_REL32 ID18=AMD_BIT_10 -ID180=IMAGE_RESOURCE_DATA_ENTRY -ID181=IMAGE_RESOURCE_DATA_IS_DIRECTORY -ID182=IMAGE_RESOURCE_DIR_STRING_U -ID183=IMAGE_RESOURCE_DIRECTORY -ID184=IMAGE_RESOURCE_DIRECTORY_ENTRY -ID185=IMAGE_RESOURCE_NAME_IS_STRING -ID186=IMAGE_SIZEOF_BASE_RELOCATION -ID187=IMAGE_THUNK_DATA -ID188=IMAGE_TLS_DIRECTORY -ID189=ImgDelayDescr +ID180=IMAGE_REL_BASED_SECTION +ID181=IMAGE_RESOURCE_DATA_ENTRY +ID182=IMAGE_RESOURCE_DATA_IS_DIRECTORY +ID183=IMAGE_RESOURCE_DIR_STRING_U +ID184=IMAGE_RESOURCE_DIRECTORY +ID185=IMAGE_RESOURCE_DIRECTORY_ENTRY +ID186=IMAGE_RESOURCE_NAME_IS_STRING +ID187=IMAGE_SIZEOF_BASE_RELOCATION +ID188=IMAGE_THUNK_DATA +ID189=IMAGE_TLS_DIRECTORY ID19=AMD_BIT_11 -ID190=IO_REPARSE_TAG_HSM -ID191=IO_REPARSE_TAG_MOUNT_POINT -ID192=IO_REPARSE_TAG_RESERVED_ONE -ID193=IO_REPARSE_TAG_RESERVED_RANGE -ID194=IO_REPARSE_TAG_RESERVED_ZERO -ID195=IO_REPARSE_TAG_SIS -ID196=IO_REPARSE_TAG_VALID_VALUES -ID197=IQueryInfo -ID198=JclDebug.pas -ID199=JclGraphics.pas +ID190=ImgDelayDescr +ID191=IO_REPARSE_TAG_HSM +ID192=IO_REPARSE_TAG_MOUNT_POINT +ID193=IO_REPARSE_TAG_RESERVED_ONE +ID194=IO_REPARSE_TAG_RESERVED_RANGE +ID195=IO_REPARSE_TAG_RESERVED_ZERO +ID196=IO_REPARSE_TAG_SIS +ID197=IO_REPARSE_TAG_VALID_VALUES +ID198=IQueryInfo +ID199=JclDebug.pas ID2=_IMAGE_BASE_RELOCATION ID20=AMD_BIT_14 -ID200=JclHookIs -ID201=JclIsHooked -ID202=JclMidi.pas -ID203=JclNTFS.pas -ID204=JclRegistry.pas -ID205=JclUnhookIs -ID206=KLF_SETFORPROCESS -ID207=MAX_LANA -ID208=MAX_MODULE_NAME32 -ID209=MAXIMUM_REPARSE_DATA_BUFFER_SIZE +ID200=JclGraphics.pas +ID201=JclHookIs +ID202=JclIsHooked +ID203=JclMidi.pas +ID204=JclNTFS.pas +ID205=JclRegistry.pas +ID206=JclUnhookIs +ID207=KLF_SETFORPROCESS +ID208=MAX_LANA +ID209=MAX_MODULE_NAME32 ID21=AMD_BIT_16 -ID210=METHOD_BUFFERED -ID211=METHOD_IN_DIRECT -ID212=METHOD_NEITHER -ID213=METHOD_OUT_DIRECT -ID214=NCBASTAT -ID215=NCBENUM -ID216=NCBNAMSZ -ID217=NCBRESET -ID218=NRC_GOODRET -ID219=PAdapterStatus +ID210=MAXIMUM_REPARSE_DATA_BUFFER_SIZE +ID211=METHOD_BUFFERED +ID212=METHOD_IN_DIRECT +ID213=METHOD_NEITHER +ID214=METHOD_OUT_DIRECT +ID215=NCBASTAT +ID216=NCBENUM +ID217=NCBNAMSZ +ID218=NCBRESET +ID219=NRC_GOODRET ID22=AMD_BIT_17 -ID220=PANonObjectHeader -ID221=PFileAllocatedRangeBuffer -ID222=PFileZeroDataInformation -ID223=PImageBaseRelocation -ID224=PImageBoundForwarderRef -ID225=PImageBoundImportDescriptor -ID226=PImageCor20Header -ID227=PImageExportDirectory -ID228=PImageImportByName -ID229=PImageImportDescriptor +ID220=PAdapterStatus +ID221=PANonObjectHeader +ID222=PFileAllocatedRangeBuffer +ID223=PFileZeroDataInformation +ID224=PImageBaseRelocation +ID225=PImageBoundForwarderRef +ID226=PImageBoundImportDescriptor +ID227=PImageCor20Header +ID228=PImageExportDirectory +ID229=PImageImportByName ID23=AMD_BIT_18 -ID230=PImageLoadConfigDirectory -ID231=PImageResourceDataEntry -ID232=PImageResourceDirectory -ID233=PImageResourceDirectoryEntry -ID234=PImageResourceDirStringU -ID235=PImageThunkData -ID236=PImageTlsDirectory -ID237=PImgDelayDescr -ID238=PLanaEnum -ID239=PModuleInfo +ID230=PImageImportDescriptor +ID231=PImageLoadConfigDirectory +ID232=PImageResourceDataEntry +ID233=PImageResourceDirectory +ID234=PImageResourceDirectoryEntry +ID235=PImageResourceDirStringU +ID236=PImageThunkData +ID237=PImageTlsDirectory +ID238=PImgDelayDescr +ID239=PLanaEnum ID24=AMD_BIT_19 -ID240=PNameBuffer -ID241=PNCB -ID242=POSVersionInfoEx -ID243=PPImageSectionHeader -ID244=PPSID -ID245=PReparseDataBuffer -ID246=PReparsePointInformation -ID247=REPARSE_DATA_BUFFER_HEADER_SIZE -ID248=REPARSE_GUID_DATA_BUFFER_HEADER_SIZE -ID249=RT_HTML +ID240=PModuleInfo +ID241=PNameBuffer +ID242=PNCB +ID243=POSVersionInfoEx +ID244=PPImageSectionHeader +ID245=PPSID +ID246=PReparseDataBuffer +ID247=PReparsePointInformation +ID248=REPARSE_DATA_BUFFER_HEADER_SIZE +ID249=REPARSE_GUID_DATA_BUFFER_HEADER_SIZE ID25=AMD_BIT_20 -ID250=RT_MANIFEST -ID251=SE_ASSIGNPRIMARYTOKEN_NAME -ID252=SE_AUDIT_NAME -ID253=SE_BACKUP_NAME -ID254=SE_CHANGE_NOTIFY_NAME -ID255=SE_CREATE_PAGEFILE_NAME -ID256=SE_CREATE_PERMANENT_NAME -ID257=SE_CREATE_TOKEN_NAME -ID258=SE_DEBUG_NAME -ID259=SE_ENABLE_DELEGATION_NAME +ID250=RT_HTML +ID251=RT_MANIFEST +ID252=SE_ASSIGNPRIMARYTOKEN_NAME +ID253=SE_AUDIT_NAME +ID254=SE_BACKUP_NAME +ID255=SE_CHANGE_NOTIFY_NAME +ID256=SE_CREATE_PAGEFILE_NAME +ID257=SE_CREATE_PERMANENT_NAME +ID258=SE_CREATE_TOKEN_NAME +ID259=SE_DEBUG_NAME ID26=AMD_BIT_21 -ID260=SE_INC_BASE_PRIORITY_NAME -ID261=SE_INCREASE_QUOTA_NAME -ID262=SE_LOAD_DRIVER_NAME -ID263=SE_LOCK_MEMORY_NAME -ID264=SE_MACHINE_ACCOUNT_NAME -ID265=SE_OBJECT_TYPE -ID266=SE_PROF_SINGLE_PROCESS_NAME -ID267=SE_REMOTE_SHUTDOWN_NAME -ID268=SE_RESTORE_NAME -ID269=SE_SECURITY_NAME +ID260=SE_ENABLE_DELEGATION_NAME +ID261=SE_INC_BASE_PRIORITY_NAME +ID262=SE_INCREASE_QUOTA_NAME +ID263=SE_LOAD_DRIVER_NAME +ID264=SE_LOCK_MEMORY_NAME +ID265=SE_MACHINE_ACCOUNT_NAME +ID266=SE_OBJECT_TYPE +ID267=SE_PROF_SINGLE_PROCESS_NAME +ID268=SE_REMOTE_SHUTDOWN_NAME +ID269=SE_RESTORE_NAME ID27=AMD_BIT_22 -ID270=SE_SHUTDOWN_NAME -ID271=SE_SYNC_AGENT_NAME -ID272=SE_SYSTEM_ENVIRONMENT_NAME -ID273=SE_SYSTEM_PROFILE_NAME -ID274=SE_SYSTEMTIME_NAME -ID275=SE_TAKE_OWNERSHIP_NAME -ID276=SE_TCB_NAME -ID277=SE_UNDOCK_NAME -ID278=SE_UNSOLICITED_INPUT_NAME -ID279=SECURITY_ANONYMOUS_LOGON_RID +ID270=SE_SECURITY_NAME +ID271=SE_SHUTDOWN_NAME +ID272=SE_SYNC_AGENT_NAME +ID273=SE_SYSTEM_ENVIRONMENT_NAME +ID274=SE_SYSTEM_PROFILE_NAME +ID275=SE_SYSTEMTIME_NAME +ID276=SE_TAKE_OWNERSHIP_NAME +ID277=SE_TCB_NAME +ID278=SE_UNDOCK_NAME +ID279=SE_UNSOLICITED_INPUT_NAME ID28=AMD_BIT_24 -ID280=SECURITY_AUTHENTICATED_USER_RID -ID281=SECURITY_BATCH_RID -ID282=SECURITY_BUILTIN_DOMAIN_RID -ID283=SECURITY_CREATOR_GROUP_RID -ID284=SECURITY_CREATOR_GROUP_SERVER_RID -ID285=SECURITY_CREATOR_OWNER_RID -ID286=SECURITY_CREATOR_OWNER_SERVER_RID -ID287=SECURITY_CREATOR_SID_AUTHORITY -ID288=SECURITY_DESCRIPTOR_MIN_LENGTH -ID289=SECURITY_DESCRIPTOR_REVISION +ID280=SECURITY_ANONYMOUS_LOGON_RID +ID281=SECURITY_AUTHENTICATED_USER_RID +ID282=SECURITY_BATCH_RID +ID283=SECURITY_BUILTIN_DOMAIN_RID +ID284=SECURITY_CREATOR_GROUP_RID +ID285=SECURITY_CREATOR_GROUP_SERVER_RID +ID286=SECURITY_CREATOR_OWNER_RID +ID287=SECURITY_CREATOR_OWNER_SERVER_RID +ID288=SECURITY_CREATOR_SID_AUTHORITY +ID289=SECURITY_DESCRIPTOR_MIN_LENGTH ID29=AMD_BIT_25 -ID290=SECURITY_DESCRIPTOR_REVISION1 -ID291=SECURITY_DIALUP_RID -ID292=SECURITY_ENTERPRISE_CONTROLLERS_RID -ID293=SECURITY_INTERACTIVE_RID -ID294=SECURITY_LOCAL_RID -ID295=SECURITY_LOCAL_SID_AUTHORITY -ID296=SECURITY_LOCAL_SYSTEM_RID -ID297=SECURITY_LOGON_IDS_RID -ID298=SECURITY_LOGON_IDS_RID_COUNT -ID299=SECURITY_NETWORK_RID +ID290=SECURITY_DESCRIPTOR_REVISION +ID291=SECURITY_DESCRIPTOR_REVISION1 +ID292=SECURITY_DIALUP_RID +ID293=SECURITY_ENTERPRISE_CONTROLLERS_RID +ID294=SECURITY_INTERACTIVE_RID +ID295=SECURITY_LOCAL_RID +ID296=SECURITY_LOCAL_SID_AUTHORITY +ID297=SECURITY_LOCAL_SYSTEM_RID +ID298=SECURITY_LOGON_IDS_RID +ID299=SECURITY_LOGON_IDS_RID_COUNT ID3=_IMAGE_BOUND_FORWARDER_REF ID30=AMD_BIT_26 -ID300=SECURITY_NON_UNIQUE_AUTHORITY -ID301=SECURITY_NT_AUTHORITY -ID302=SECURITY_NT_NON_UNIQUE -ID303=SECURITY_NULL_RID -ID304=SECURITY_NULL_SID_AUTHORITY -ID305=SECURITY_PRINCIPAL_SELF_RID -ID306=SECURITY_PROXY_RID -ID307=SECURITY_RESTRICTED_CODE_RID -ID308=SECURITY_SERVER_LOGON_RID -ID309=SECURITY_SERVICE_RID +ID300=SECURITY_NETWORK_RID +ID301=SECURITY_NON_UNIQUE_AUTHORITY +ID302=SECURITY_NT_AUTHORITY +ID303=SECURITY_NT_NON_UNIQUE +ID304=SECURITY_NULL_RID +ID305=SECURITY_NULL_SID_AUTHORITY +ID306=SECURITY_PRINCIPAL_SELF_RID +ID307=SECURITY_PROXY_RID +ID308=SECURITY_RESTRICTED_CODE_RID +ID309=SECURITY_SERVER_LOGON_RID ID31=AMD_BIT_27 -ID310=SECURITY_TERMINAL_SERVER_RID -ID311=SECURITY_WORLD_RID -ID312=SECURITY_WORLD_SID_AUTHORITY -ID313=SID_IQueryInfo -ID314=TAdapterStatus -ID315=tagMODULEENTRY32 -ID316=TAMDSpecific.DataTLB -ID317=TAMDSpecific.InstructionTLB -ID318=TAMDSpecific.L1ICache -ID319=TANonObjectHeader +ID310=SECURITY_SERVICE_RID +ID311=SECURITY_TERMINAL_SERVER_RID +ID312=SECURITY_WORLD_RID +ID313=SECURITY_WORLD_SID_AUTHORITY +ID314=SID_IQueryInfo +ID315=TAdapterStatus +ID316=tagMODULEENTRY32 +ID317=TAMDSpecific.DataTLB +ID318=TAMDSpecific.InstructionTLB +ID319=TAMDSpecific.L1ICache ID32=AMD_BIT_28 -ID320=TCoCreateInstanceExProc -ID321=TExprCompileParser.CompileExpr -ID322=TExprCompileParser.CompileSignedFactor -ID323=TExprCompileParser.CompileSimpleExpr -ID324=TExprCompileParser.CompileTerm -ID325=TExprEvalParser.EvalExpr -ID326=TExprEvalParser.EvalSignedFactor -ID327=TExprEvalParser.EvalSimpleExpr -ID328=TExprEvalParser.EvalTerm -ID329=TFileAllocatedRangeBuffer +ID320=TANonObjectHeader +ID321=TCoCreateInstanceExProc +ID322=TExprCompileParser.CompileExpr +ID323=TExprCompileParser.CompileSignedFactor +ID324=TExprCompileParser.CompileSimpleExpr +ID325=TExprCompileParser.CompileTerm +ID326=TExprEvalParser.EvalExpr +ID327=TExprEvalParser.EvalSignedFactor +ID328=TExprEvalParser.EvalSimpleExpr +ID329=TExprEvalParser.EvalTerm ID33=AMD_BIT_29 -ID330=TFileZeroDataInformation -ID331=TH32CS_SNAPMODULE -ID332=TImageBaseRelocation -ID333=TImageBoundForwarderRef -ID334=TImageBoundImportDescriptor -ID335=TImageCor20Header -ID336=TImageExportDirectory -ID337=TImageImportByName -ID338=TImageImportDescriptor -ID339=TImageLoadConfigDirectory +ID330=TFileAllocatedRangeBuffer +ID331=TFileZeroDataInformation +ID332=TH32CS_SNAPMODULE +ID333=TImageBaseRelocation +ID334=TImageBoundForwarderRef +ID335=TImageBoundImportDescriptor +ID336=TImageCor20Header +ID337=TImageExportDirectory +ID338=TImageImportByName +ID339=TImageImportDescriptor ID34=AMD_BIT_30 -ID340=TImageResourceDataEntry -ID341=TImageResourceDirectory -ID342=TImageResourceDirectoryEntry -ID343=TImageResourceDirStringU -ID344=TImageThunkData -ID345=TImageTlsDirectory -ID346=TIME_ZONE_ID_DAYLIGHT -ID347=TIME_ZONE_ID_INVALID -ID348=TIME_ZONE_ID_STANDARD -ID349=TIME_ZONE_ID_UNKNOWN +ID340=TImageLoadConfigDirectory +ID341=TImageResourceDataEntry +ID342=TImageResourceDirectory +ID343=TImageResourceDirectoryEntry +ID344=TImageResourceDirStringU +ID345=TImageThunkData +ID346=TImageTlsDirectory +ID347=TIME_ZONE_ID_DAYLIGHT +ID348=TIME_ZONE_ID_INVALID +ID349=TIME_ZONE_ID_STANDARD ID35=AMD_BIT_31 -ID350=TImgDelayDescr -ID351=TJclBitmap32.FrameRect -ID352=TJclBitmap32.OnPixelCombine -ID353=TJclByteMap.Byte -ID354=TJclDesktopCanvas.Create -ID355=TJclDesktopCanvas.Destroy -ID356=TJclIsFunc -ID357=TJclRebaseImageInfo.NewImageBase -ID358=TJclRebaseImageInfo.NewImageSize -ID359=TJclRebaseImageInfo.OldImageBase +ID350=TIME_ZONE_ID_UNKNOWN +ID351=TImgDelayDescr +ID352=TJclBitmap32.FrameRect +ID353=TJclBitmap32.OnPixelCombine +ID354=TJclByteMap.Byte +ID355=TJclDesktopCanvas.Create +ID356=TJclDesktopCanvas.Destroy +ID357=TJclIsFunc +ID358=TJclRebaseImageInfo.NewImageBase +ID359=TJclRebaseImageInfo.NewImageSize ID36=AMD_BIT_6 -ID360=TJclRebaseImageInfo.OldImageSize -ID361=TLanaEnum -ID362=TLoadedImage -ID363=TModuleEntry32 -ID364=TModuleInfo -ID365=TNameBuffer -ID366=TNCB -ID367=TNCBPostProc -ID368=TObjectList.Clear -ID369=TObjectList.Create +ID360=TJclRebaseImageInfo.OldImageBase +ID361=TJclRebaseImageInfo.OldImageSize +ID362=TLanaEnum +ID363=TLoadedImage +ID364=TModuleEntry32 +ID365=TModuleInfo +ID366=TNameBuffer +ID367=TNCB +ID368=TNCBPostProc +ID369=TObjectList.Clear ID37=AMD_CMOV_FLAG -ID370=TObjectList.OwnsObjects -ID371=TOSVersionInfoEx -ID372=TReparseDataBuffer -ID373=TReparsePointInformation -ID374=TWideStrings.Destroy -ID375=VER_NT_DOMAIN_CONTROLLER -ID376=VER_NT_SERVER -ID377=VER_NT_WORKSTATION -ID378=VER_SUITE_BACKOFFICE -ID379=VER_SUITE_COMMUNICATIONS +ID370=TObjectList.Create +ID371=TObjectList.OwnsObjects +ID372=TOSVersionInfoEx +ID373=TReparseDataBuffer +ID374=TReparsePointInformation +ID375=TWideStrings.Destroy +ID376=VER_NT_DOMAIN_CONTROLLER +ID377=VER_NT_SERVER +ID378=VER_NT_WORKSTATION +ID379=VER_SUITE_BACKOFFICE ID38=AMD_CX8_FLAG -ID380=VER_SUITE_DATACENTER -ID381=VER_SUITE_EMBEDDEDNT -ID382=VER_SUITE_ENTERPRISE -ID383=VER_SUITE_PERSONAL -ID384=VER_SUITE_SERVERAPPLIANCE -ID385=VER_SUITE_SINGLEUSERTS -ID386=VER_SUITE_SMALLBUSINESS -ID387=VER_SUITE_SMALLBUSINESS_RESTRICTED -ID388=VER_SUITE_TERMINAL -ID389=Win32BackupFile +ID380=VER_SUITE_COMMUNICATIONS +ID381=VER_SUITE_DATACENTER +ID382=VER_SUITE_EMBEDDEDNT +ID383=VER_SUITE_ENTERPRISE +ID384=VER_SUITE_PERSONAL +ID385=VER_SUITE_SERVERAPPLIANCE +ID386=VER_SUITE_SINGLEUSERTS +ID387=VER_SUITE_SMALLBUSINESS +ID388=VER_SUITE_SMALLBUSINESS_RESTRICTED +ID389=VER_SUITE_TERMINAL ID39=AMD_DE_FLAG -ID390=Win32DeleteFile -ID391=Win32MoveFileReplaceExisting -ID392=Win32RestoreFile +ID390=Win32BackupFile +ID391=Win32DeleteFile +ID392=Win32MoveFileReplaceExisting +ID393=Win32RestoreFile ID4=_IMAGE_BOUND_IMPORT_DESCRIPTOR ID40=AMD_FPU_FLAG ID41=AMD_MCE_FLAG @@ -28218,24 +28257,42 @@ ID98=DOMAIN_ALIAS_RID_REPLICATOR ID99=DOMAIN_ALIAS_RID_SYSTEM_OPS [Configurations\HLP\Enabled Topics] -Count=17 -ID0=BOM_LSB_FIRST -ID1=Jcl8087.pas -ID10=StrToFloatSafe@AnsiString -ID11=StrToIntSafe@AnsiString -ID12=TJclBitmap32.SetPixel -ID13=TJclThreadPersistent.Create -ID14=TJclThreadPersistent.Destroy -ID15=TJclThreadPersistent.UpdateCount -ID16=TStreamNotifyEvent -ID2=JclAppInst.pas -ID3=JclFileUtils.pas -ID4=JclQGraphics.pas -ID5=JclStrHashMap.pas -ID6=JclStrings.pas -ID7=PolyPolyLineTS -ID8=RTTI -ID9=StrIToStrings@AnsiString@AnsiString@TStrings@Boolean +Count=35 +ID0=!!CONSTANTS +ID1=BOM_LSB_FIRST +ID10=jcld11.inc +ID11=jcld12.inc +ID12=jcld14.inc +ID13=jcld15.inc +ID14=jcld6.inc +ID15=jcld7.inc +ID16=jcld8.inc +ID17=jcld9.inc +ID18=JclFileUtils.pas +ID19=jclfpc.inc +ID2=Containers.Interfaces +ID20=JclQGraphics.pas +ID21=JclStrHashMap.pas +ID22=JclStrings.pas +ID23=jedi.inc +ID24=kylix.inc +ID25=PolyPolyLineTS +ID26=RTTI +ID27=StrIToStrings@AnsiString@AnsiString@TStrings@Boolean +ID28=StrToFloatSafe@AnsiString +ID29=StrToIntSafe@AnsiString +ID3=IJclDoubleIntfMap +ID30=TJclBitmap32.SetPixel +ID31=TJclThreadPersistent.Create +ID32=TJclThreadPersistent.Destroy +ID33=TJclThreadPersistent.UpdateCount +ID34=TStreamNotifyEvent +ID4=jcl.inc +ID5=Jcl8087.pas +ID6=JclAppInst.pas +ID7=jclc6.inc +ID8=jclcs1.inc +ID9=jcld10.inc [Configurations\HLP\Export Symbols] Classes=1 @@ -40188,7 +40245,7 @@ BodySourceUseAutolinking=0 BodySourceUseSyntaxHighlight=0 [Configurations\HTML\Disabled Topics] -Count=393 +Count=394 ID0=_DLLVERSIONINFO.dwPlatformId ID1=_FILE_ZERO_DATA_INFORMATION ID10=_IMAGE_RESOURCE_DIRECTORY @@ -40253,269 +40310,270 @@ ID152=IJclMIDIOut.GetActiveNotes@TMIDIChannel ID153=IJclMIDIOut.GetName ID154=IJclMIDIOut.GetRunningStatusEnabled ID155=IJclMIDIOut.SetRunningStatusEnabled@Boolean -ID156=IMAGE_BASE_RELOCATION -ID157=IMAGE_BOUND_FORWARDER_REF -ID158=IMAGE_BOUND_IMPORT_DESCRIPTOR -ID159=IMAGE_COR20_HEADER +ID156=IJclMultiIntfIntfMap +ID157=IMAGE_BASE_RELOCATION +ID158=IMAGE_BOUND_FORWARDER_REF +ID159=IMAGE_BOUND_IMPORT_DESCRIPTOR ID16=_REPARSE_POINT_INFORMATION -ID160=IMAGE_DEBUG_TYPE_BORLAND -ID161=IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR -ID162=IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT -ID163=IMAGE_EXPORT_DIRECTORY -ID164=IMAGE_IMPORT_BY_NAME -ID165=IMAGE_IMPORT_DESCRIPTOR -ID166=IMAGE_LOAD_CONFIG_DIRECTORY -ID167=IMAGE_ORDINAL_FLAG -ID168=IMAGE_REL_BASED_ABSOLUTE -ID169=IMAGE_REL_BASED_DIR64 +ID160=IMAGE_COR20_HEADER +ID161=IMAGE_DEBUG_TYPE_BORLAND +ID162=IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR +ID163=IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT +ID164=IMAGE_EXPORT_DIRECTORY +ID165=IMAGE_IMPORT_BY_NAME +ID166=IMAGE_IMPORT_DESCRIPTOR +ID167=IMAGE_LOAD_CONFIG_DIRECTORY +ID168=IMAGE_ORDINAL_FLAG +ID169=IMAGE_REL_BASED_ABSOLUTE ID17=AMD_APIC_FLAG -ID170=IMAGE_REL_BASED_HIGH -ID171=IMAGE_REL_BASED_HIGH3ADJ -ID172=IMAGE_REL_BASED_HIGHADJ -ID173=IMAGE_REL_BASED_HIGHLOW -ID174=IMAGE_REL_BASED_IA64_IMM64 -ID175=IMAGE_REL_BASED_LOW -ID176=IMAGE_REL_BASED_MIPS_JMPADDR -ID177=IMAGE_REL_BASED_MIPS_JMPADDR16 -ID178=IMAGE_REL_BASED_REL32 -ID179=IMAGE_REL_BASED_SECTION +ID170=IMAGE_REL_BASED_DIR64 +ID171=IMAGE_REL_BASED_HIGH +ID172=IMAGE_REL_BASED_HIGH3ADJ +ID173=IMAGE_REL_BASED_HIGHADJ +ID174=IMAGE_REL_BASED_HIGHLOW +ID175=IMAGE_REL_BASED_IA64_IMM64 +ID176=IMAGE_REL_BASED_LOW +ID177=IMAGE_REL_BASED_MIPS_JMPADDR +ID178=IMAGE_REL_BASED_MIPS_JMPADDR16 +ID179=IMAGE_REL_BASED_REL32 ID18=AMD_BIT_10 -ID180=IMAGE_RESOURCE_DATA_ENTRY -ID181=IMAGE_RESOURCE_DATA_IS_DIRECTORY -ID182=IMAGE_RESOURCE_DIR_STRING_U -ID183=IMAGE_RESOURCE_DIRECTORY -ID184=IMAGE_RESOURCE_DIRECTORY_ENTRY -ID185=IMAGE_RESOURCE_NAME_IS_STRING -ID186=IMAGE_SIZEOF_BASE_RELOCATION -ID187=IMAGE_THUNK_DATA -ID188=IMAGE_TLS_DIRECTORY -ID189=ImgDelayDescr +ID180=IMAGE_REL_BASED_SECTION +ID181=IMAGE_RESOURCE_DATA_ENTRY +ID182=IMAGE_RESOURCE_DATA_IS_DIRECTORY +ID183=IMAGE_RESOURCE_DIR_STRING_U +ID184=IMAGE_RESOURCE_DIRECTORY +ID185=IMAGE_RESOURCE_DIRECTORY_ENTRY +ID186=IMAGE_RESOURCE_NAME_IS_STRING +ID187=IMAGE_SIZEOF_BASE_RELOCATION +ID188=IMAGE_THUNK_DATA +ID189=IMAGE_TLS_DIRECTORY ID19=AMD_BIT_11 -ID190=IO_REPARSE_TAG_HSM -ID191=IO_REPARSE_TAG_MOUNT_POINT -ID192=IO_REPARSE_TAG_RESERVED_ONE -ID193=IO_REPARSE_TAG_RESERVED_RANGE -ID194=IO_REPARSE_TAG_RESERVED_ZERO -ID195=IO_REPARSE_TAG_SIS -ID196=IO_REPARSE_TAG_VALID_VALUES -ID197=IQueryInfo -ID198=JclDebug.pas -ID199=JclGraphics.pas +ID190=ImgDelayDescr +ID191=IO_REPARSE_TAG_HSM +ID192=IO_REPARSE_TAG_MOUNT_POINT +ID193=IO_REPARSE_TAG_RESERVED_ONE +ID194=IO_REPARSE_TAG_RESERVED_RANGE +ID195=IO_REPARSE_TAG_RESERVED_ZERO +ID196=IO_REPARSE_TAG_SIS +ID197=IO_REPARSE_TAG_VALID_VALUES +ID198=IQueryInfo +ID199=JclDebug.pas ID2=_IMAGE_BASE_RELOCATION ID20=AMD_BIT_14 -ID200=JclHookIs -ID201=JclIsHooked -ID202=JclMidi.pas -ID203=JclNTFS.pas -ID204=JclRegistry.pas -ID205=JclUnhookIs -ID206=KLF_SETFORPROCESS -ID207=MAX_LANA -ID208=MAX_MODULE_NAME32 -ID209=MAXIMUM_REPARSE_DATA_BUFFER_SIZE +ID200=JclGraphics.pas +ID201=JclHookIs +ID202=JclIsHooked +ID203=JclMidi.pas +ID204=JclNTFS.pas +ID205=JclRegistry.pas +ID206=JclUnhookIs +ID207=KLF_SETFORPROCESS +ID208=MAX_LANA +ID209=MAX_MODULE_NAME32 ID21=AMD_BIT_16 -ID210=METHOD_BUFFERED -ID211=METHOD_IN_DIRECT -ID212=METHOD_NEITHER -ID213=METHOD_OUT_DIRECT -ID214=NCBASTAT -ID215=NCBENUM -ID216=NCBNAMSZ -ID217=NCBRESET -ID218=NRC_GOODRET -ID219=PAdapterStatus +ID210=MAXIMUM_REPARSE_DATA_BUFFER_SIZE +ID211=METHOD_BUFFERED +ID212=METHOD_IN_DIRECT +ID213=METHOD_NEITHER +ID214=METHOD_OUT_DIRECT +ID215=NCBASTAT +ID216=NCBENUM +ID217=NCBNAMSZ +ID218=NCBRESET +ID219=NRC_GOODRET ID22=AMD_BIT_17 -ID220=PANonObjectHeader -ID221=PFileAllocatedRangeBuffer -ID222=PFileZeroDataInformation -ID223=PImageBaseRelocation -ID224=PImageBoundForwarderRef -ID225=PImageBoundImportDescriptor -ID226=PImageCor20Header -ID227=PImageExportDirectory -ID228=PImageImportByName -ID229=PImageImportDescriptor +ID220=PAdapterStatus +ID221=PANonObjectHeader +ID222=PFileAllocatedRangeBuffer +ID223=PFileZeroDataInformation +ID224=PImageBaseRelocation +ID225=PImageBoundForwarderRef +ID226=PImageBoundImportDescriptor +ID227=PImageCor20Header +ID228=PImageExportDirectory +ID229=PImageImportByName ID23=AMD_BIT_18 -ID230=PImageLoadConfigDirectory -ID231=PImageResourceDataEntry -ID232=PImageResourceDirectory -ID233=PImageResourceDirectoryEntry -ID234=PImageResourceDirStringU -ID235=PImageThunkData -ID236=PImageTlsDirectory -ID237=PImgDelayDescr -ID238=PLanaEnum -ID239=PModuleInfo +ID230=PImageImportDescriptor +ID231=PImageLoadConfigDirectory +ID232=PImageResourceDataEntry +ID233=PImageResourceDirectory +ID234=PImageResourceDirectoryEntry +ID235=PImageResourceDirStringU +ID236=PImageThunkData +ID237=PImageTlsDirectory +ID238=PImgDelayDescr +ID239=PLanaEnum ID24=AMD_BIT_19 -ID240=PNameBuffer -ID241=PNCB -ID242=POSVersionInfoEx -ID243=PPImageSectionHeader -ID244=PPSID -ID245=PReparseDataBuffer -ID246=PReparsePointInformation -ID247=REPARSE_DATA_BUFFER_HEADER_SIZE -ID248=REPARSE_GUID_DATA_BUFFER_HEADER_SIZE -ID249=RT_HTML +ID240=PModuleInfo +ID241=PNameBuffer +ID242=PNCB +ID243=POSVersionInfoEx +ID244=PPImageSectionHeader +ID245=PPSID +ID246=PReparseDataBuffer +ID247=PReparsePointInformation +ID248=REPARSE_DATA_BUFFER_HEADER_SIZE +ID249=REPARSE_GUID_DATA_BUFFER_HEADER_SIZE ID25=AMD_BIT_20 -ID250=RT_MANIFEST -ID251=SE_ASSIGNPRIMARYTOKEN_NAME -ID252=SE_AUDIT_NAME -ID253=SE_BACKUP_NAME -ID254=SE_CHANGE_NOTIFY_NAME -ID255=SE_CREATE_PAGEFILE_NAME -ID256=SE_CREATE_PERMANENT_NAME -ID257=SE_CREATE_TOKEN_NAME -ID258=SE_DEBUG_NAME -ID259=SE_ENABLE_DELEGATION_NAME +ID250=RT_HTML +ID251=RT_MANIFEST +ID252=SE_ASSIGNPRIMARYTOKEN_NAME +ID253=SE_AUDIT_NAME +ID254=SE_BACKUP_NAME +ID255=SE_CHANGE_NOTIFY_NAME +ID256=SE_CREATE_PAGEFILE_NAME +ID257=SE_CREATE_PERMANENT_NAME +ID258=SE_CREATE_TOKEN_NAME +ID259=SE_DEBUG_NAME ID26=AMD_BIT_21 -ID260=SE_INC_BASE_PRIORITY_NAME -ID261=SE_INCREASE_QUOTA_NAME -ID262=SE_LOAD_DRIVER_NAME -ID263=SE_LOCK_MEMORY_NAME -ID264=SE_MACHINE_ACCOUNT_NAME -ID265=SE_OBJECT_TYPE -ID266=SE_PROF_SINGLE_PROCESS_NAME -ID267=SE_REMOTE_SHUTDOWN_NAME -ID268=SE_RESTORE_NAME -ID269=SE_SECURITY_NAME +ID260=SE_ENABLE_DELEGATION_NAME +ID261=SE_INC_BASE_PRIORITY_NAME +ID262=SE_INCREASE_QUOTA_NAME +ID263=SE_LOAD_DRIVER_NAME +ID264=SE_LOCK_MEMORY_NAME +ID265=SE_MACHINE_ACCOUNT_NAME +ID266=SE_OBJECT_TYPE +ID267=SE_PROF_SINGLE_PROCESS_NAME +ID268=SE_REMOTE_SHUTDOWN_NAME +ID269=SE_RESTORE_NAME ID27=AMD_BIT_22 -ID270=SE_SHUTDOWN_NAME -ID271=SE_SYNC_AGENT_NAME -ID272=SE_SYSTEM_ENVIRONMENT_NAME -ID273=SE_SYSTEM_PROFILE_NAME -ID274=SE_SYSTEMTIME_NAME -ID275=SE_TAKE_OWNERSHIP_NAME -ID276=SE_TCB_NAME -ID277=SE_UNDOCK_NAME -ID278=SE_UNSOLICITED_INPUT_NAME -ID279=SECURITY_ANONYMOUS_LOGON_RID +ID270=SE_SECURITY_NAME +ID271=SE_SHUTDOWN_NAME +ID272=SE_SYNC_AGENT_NAME +ID273=SE_SYSTEM_ENVIRONMENT_NAME +ID274=SE_SYSTEM_PROFILE_NAME +ID275=SE_SYSTEMTIME_NAME +ID276=SE_TAKE_OWNERSHIP_NAME +ID277=SE_TCB_NAME +ID278=SE_UNDOCK_NAME +ID279=SE_UNSOLICITED_INPUT_NAME ID28=AMD_BIT_24 -ID280=SECURITY_AUTHENTICATED_USER_RID -ID281=SECURITY_BATCH_RID -ID282=SECURITY_BUILTIN_DOMAIN_RID -ID283=SECURITY_CREATOR_GROUP_RID -ID284=SECURITY_CREATOR_GROUP_SERVER_RID -ID285=SECURITY_CREATOR_OWNER_RID -ID286=SECURITY_CREATOR_OWNER_SERVER_RID -ID287=SECURITY_CREATOR_SID_AUTHORITY -ID288=SECURITY_DESCRIPTOR_MIN_LENGTH -ID289=SECURITY_DESCRIPTOR_REVISION +ID280=SECURITY_ANONYMOUS_LOGON_RID +ID281=SECURITY_AUTHENTICATED_USER_RID +ID282=SECURITY_BATCH_RID +ID283=SECURITY_BUILTIN_DOMAIN_RID +ID284=SECURITY_CREATOR_GROUP_RID +ID285=SECURITY_CREATOR_GROUP_SERVER_RID +ID286=SECURITY_CREATOR_OWNER_RID +ID287=SECURITY_CREATOR_OWNER_SERVER_RID +ID288=SECURITY_CREATOR_SID_AUTHORITY +ID289=SECURITY_DESCRIPTOR_MIN_LENGTH ID29=AMD_BIT_25 -ID290=SECURITY_DESCRIPTOR_REVISION1 -ID291=SECURITY_DIALUP_RID -ID292=SECURITY_ENTERPRISE_CONTROLLERS_RID -ID293=SECURITY_INTERACTIVE_RID -ID294=SECURITY_LOCAL_RID -ID295=SECURITY_LOCAL_SID_AUTHORITY -ID296=SECURITY_LOCAL_SYSTEM_RID -ID297=SECURITY_LOGON_IDS_RID -ID298=SECURITY_LOGON_IDS_RID_COUNT -ID299=SECURITY_NETWORK_RID +ID290=SECURITY_DESCRIPTOR_REVISION +ID291=SECURITY_DESCRIPTOR_REVISION1 +ID292=SECURITY_DIALUP_RID +ID293=SECURITY_ENTERPRISE_CONTROLLERS_RID +ID294=SECURITY_INTERACTIVE_RID +ID295=SECURITY_LOCAL_RID +ID296=SECURITY_LOCAL_SID_AUTHORITY +ID297=SECURITY_LOCAL_SYSTEM_RID +ID298=SECURITY_LOGON_IDS_RID +ID299=SECURITY_LOGON_IDS_RID_COUNT ID3=_IMAGE_BOUND_FORWARDER_REF ID30=AMD_BIT_26 -ID300=SECURITY_NON_UNIQUE_AUTHORITY -ID301=SECURITY_NT_AUTHORITY -ID302=SECURITY_NT_NON_UNIQUE -ID303=SECURITY_NULL_RID -ID304=SECURITY_NULL_SID_AUTHORITY -ID305=SECURITY_PRINCIPAL_SELF_RID -ID306=SECURITY_PROXY_RID -ID307=SECURITY_RESTRICTED_CODE_RID -ID308=SECURITY_SERVER_LOGON_RID -ID309=SECURITY_SERVICE_RID +ID300=SECURITY_NETWORK_RID +ID301=SECURITY_NON_UNIQUE_AUTHORITY +ID302=SECURITY_NT_AUTHORITY +ID303=SECURITY_NT_NON_UNIQUE +ID304=SECURITY_NULL_RID +ID305=SECURITY_NULL_SID_AUTHORITY +ID306=SECURITY_PRINCIPAL_SELF_RID +ID307=SECURITY_PROXY_RID +ID308=SECURITY_RESTRICTED_CODE_RID +ID309=SECURITY_SERVER_LOGON_RID ID31=AMD_BIT_27 -ID310=SECURITY_TERMINAL_SERVER_RID -ID311=SECURITY_WORLD_RID -ID312=SECURITY_WORLD_SID_AUTHORITY -ID313=SID_IQueryInfo -ID314=TAdapterStatus -ID315=tagMODULEENTRY32 -ID316=TAMDSpecific.DataTLB -ID317=TAMDSpecific.InstructionTLB -ID318=TAMDSpecific.L1ICache -ID319=TANonObjectHeader +ID310=SECURITY_SERVICE_RID +ID311=SECURITY_TERMINAL_SERVER_RID +ID312=SECURITY_WORLD_RID +ID313=SECURITY_WORLD_SID_AUTHORITY +ID314=SID_IQueryInfo +ID315=TAdapterStatus +ID316=tagMODULEENTRY32 +ID317=TAMDSpecific.DataTLB +ID318=TAMDSpecific.InstructionTLB +ID319=TAMDSpecific.L1ICache ID32=AMD_BIT_28 -ID320=TCoCreateInstanceExProc -ID321=TExprCompileParser.CompileExpr -ID322=TExprCompileParser.CompileSignedFactor -ID323=TExprCompileParser.CompileSimpleExpr -ID324=TExprCompileParser.CompileTerm -ID325=TExprEvalParser.EvalExpr -ID326=TExprEvalParser.EvalSignedFactor -ID327=TExprEvalParser.EvalSimpleExpr -ID328=TExprEvalParser.EvalTerm -ID329=TFileAllocatedRangeBuffer +ID320=TANonObjectHeader +ID321=TCoCreateInstanceExProc +ID322=TExprCompileParser.CompileExpr +ID323=TExprCompileParser.CompileSignedFactor +ID324=TExprCompileParser.CompileSimpleExpr +ID325=TExprCompileParser.CompileTerm +ID326=TExprEvalParser.EvalExpr +ID327=TExprEvalParser.EvalSignedFactor +ID328=TExprEvalParser.EvalSimpleExpr +ID329=TExprEvalParser.EvalTerm ID33=AMD_BIT_29 -ID330=TFileZeroDataInformation -ID331=TH32CS_SNAPMODULE -ID332=TImageBaseRelocation -ID333=TImageBoundForwarderRef -ID334=TImageBoundImportDescriptor -ID335=TImageCor20Header -ID336=TImageExportDirectory -ID337=TImageImportByName -ID338=TImageImportDescriptor -ID339=TImageLoadConfigDirectory +ID330=TFileAllocatedRangeBuffer +ID331=TFileZeroDataInformation +ID332=TH32CS_SNAPMODULE +ID333=TImageBaseRelocation +ID334=TImageBoundForwarderRef +ID335=TImageBoundImportDescriptor +ID336=TImageCor20Header +ID337=TImageExportDirectory +ID338=TImageImportByName +ID339=TImageImportDescriptor ID34=AMD_BIT_30 -ID340=TImageResourceDataEntry -ID341=TImageResourceDirectory -ID342=TImageResourceDirectoryEntry -ID343=TImageResourceDirStringU -ID344=TImageThunkData -ID345=TImageTlsDirectory -ID346=TIME_ZONE_ID_DAYLIGHT -ID347=TIME_ZONE_ID_INVALID -ID348=TIME_ZONE_ID_STANDARD -ID349=TIME_ZONE_ID_UNKNOWN +ID340=TImageLoadConfigDirectory +ID341=TImageResourceDataEntry +ID342=TImageResourceDirectory +ID343=TImageResourceDirectoryEntry +ID344=TImageResourceDirStringU +ID345=TImageThunkData +ID346=TImageTlsDirectory +ID347=TIME_ZONE_ID_DAYLIGHT +ID348=TIME_ZONE_ID_INVALID +ID349=TIME_ZONE_ID_STANDARD ID35=AMD_BIT_31 -ID350=TImgDelayDescr -ID351=TJclBitmap32.FrameRect -ID352=TJclBitmap32.OnPixelCombine -ID353=TJclByteMap.Byte -ID354=TJclDesktopCanvas.Create -ID355=TJclDesktopCanvas.Destroy -ID356=TJclIsFunc -ID357=TJclRebaseImageInfo.NewImageBase -ID358=TJclRebaseImageInfo.NewImageSize -ID359=TJclRebaseImageInfo.OldImageBase +ID350=TIME_ZONE_ID_UNKNOWN +ID351=TImgDelayDescr +ID352=TJclBitmap32.FrameRect +ID353=TJclBitmap32.OnPixelCombine +ID354=TJclByteMap.Byte +ID355=TJclDesktopCanvas.Create +ID356=TJclDesktopCanvas.Destroy +ID357=TJclIsFunc +ID358=TJclRebaseImageInfo.NewImageBase +ID359=TJclRebaseImageInfo.NewImageSize ID36=AMD_BIT_6 -ID360=TJclRebaseImageInfo.OldImageSize -ID361=TLanaEnum -ID362=TLoadedImage -ID363=TModuleEntry32 -ID364=TModuleInfo -ID365=TNameBuffer -ID366=TNCB -ID367=TNCBPostProc -ID368=TObjectList.Clear -ID369=TObjectList.Create +ID360=TJclRebaseImageInfo.OldImageBase +ID361=TJclRebaseImageInfo.OldImageSize +ID362=TLanaEnum +ID363=TLoadedImage +ID364=TModuleEntry32 +ID365=TModuleInfo +ID366=TNameBuffer +ID367=TNCB +ID368=TNCBPostProc +ID369=TObjectList.Clear ID37=AMD_CMOV_FLAG -ID370=TObjectList.OwnsObjects -ID371=TOSVersionInfoEx -ID372=TReparseDataBuffer -ID373=TReparsePointInformation -ID374=TWideStrings.Destroy -ID375=VER_NT_DOMAIN_CONTROLLER -ID376=VER_NT_SERVER -ID377=VER_NT_WORKSTATION -ID378=VER_SUITE_BACKOFFICE -ID379=VER_SUITE_COMMUNICATIONS +ID370=TObjectList.Create +ID371=TObjectList.OwnsObjects +ID372=TOSVersionInfoEx +ID373=TReparseDataBuffer +ID374=TReparsePointInformation +ID375=TWideStrings.Destroy +ID376=VER_NT_DOMAIN_CONTROLLER +ID377=VER_NT_SERVER +ID378=VER_NT_WORKSTATION +ID379=VER_SUITE_BACKOFFICE ID38=AMD_CX8_FLAG -ID380=VER_SUITE_DATACENTER -ID381=VER_SUITE_EMBEDDEDNT -ID382=VER_SUITE_ENTERPRISE -ID383=VER_SUITE_PERSONAL -ID384=VER_SUITE_SERVERAPPLIANCE -ID385=VER_SUITE_SINGLEUSERTS -ID386=VER_SUITE_SMALLBUSINESS -ID387=VER_SUITE_SMALLBUSINESS_RESTRICTED -ID388=VER_SUITE_TERMINAL -ID389=Win32BackupFile +ID380=VER_SUITE_COMMUNICATIONS +ID381=VER_SUITE_DATACENTER +ID382=VER_SUITE_EMBEDDEDNT +ID383=VER_SUITE_ENTERPRISE +ID384=VER_SUITE_PERSONAL +ID385=VER_SUITE_SERVERAPPLIANCE +ID386=VER_SUITE_SINGLEUSERTS +ID387=VER_SUITE_SMALLBUSINESS +ID388=VER_SUITE_SMALLBUSINESS_RESTRICTED +ID389=VER_SUITE_TERMINAL ID39=AMD_DE_FLAG -ID390=Win32DeleteFile -ID391=Win32MoveFileReplaceExisting -ID392=Win32RestoreFile +ID390=Win32BackupFile +ID391=Win32DeleteFile +ID392=Win32MoveFileReplaceExisting +ID393=Win32RestoreFile ID4=_IMAGE_BOUND_IMPORT_DESCRIPTOR ID40=AMD_FPU_FLAG ID41=AMD_MCE_FLAG @@ -40584,24 +40642,42 @@ ID98=DOMAIN_ALIAS_RID_REPLICATOR ID99=DOMAIN_ALIAS_RID_SYSTEM_OPS [Configurations\HTML\Enabled Topics] -Count=17 -ID0=BOM_LSB_FIRST -ID1=Jcl8087.pas -ID10=StrToFloatSafe@AnsiString -ID11=StrToIntSafe@AnsiString -ID12=TJclBitmap32.SetPixel -ID13=TJclThreadPersistent.Create -ID14=TJclThreadPersistent.Destroy -ID15=TJclThreadPersistent.UpdateCount -ID16=TStreamNotifyEvent -ID2=JclAppInst.pas -ID3=JclFileUtils.pas -ID4=JclQGraphics.pas -ID5=JclStrHashMap.pas -ID6=JclStrings.pas -ID7=PolyPolyLineTS -ID8=RTTI -ID9=StrIToStrings@AnsiString@AnsiString@TStrings@Boolean +Count=35 +ID0=!!CONSTANTS +ID1=BOM_LSB_FIRST +ID10=jcld11.inc +ID11=jcld12.inc +ID12=jcld14.inc +ID13=jcld15.inc +ID14=jcld6.inc +ID15=jcld7.inc +ID16=jcld8.inc +ID17=jcld9.inc +ID18=JclFileUtils.pas +ID19=jclfpc.inc +ID2=Containers.Interfaces +ID20=JclQGraphics.pas +ID21=JclStrHashMap.pas +ID22=JclStrings.pas +ID23=jedi.inc +ID24=kylix.inc +ID25=PolyPolyLineTS +ID26=RTTI +ID27=StrIToStrings@AnsiString@AnsiString@TStrings@Boolean +ID28=StrToFloatSafe@AnsiString +ID29=StrToIntSafe@AnsiString +ID3=IJclDoubleIntfMap +ID30=TJclBitmap32.SetPixel +ID31=TJclThreadPersistent.Create +ID32=TJclThreadPersistent.Destroy +ID33=TJclThreadPersistent.UpdateCount +ID34=TStreamNotifyEvent +ID4=jcl.inc +ID5=Jcl8087.pas +ID6=JclAppInst.pas +ID7=jclc6.inc +ID8=jclcs1.inc +ID9=jcld10.inc [Configurations\HTML\Export Symbols] Classes=1 @@ -50606,23 +50682,42 @@ BodySourceUseAutolinking=0 BodySourceUseSyntaxHighlight=0 [Configurations\PDF\Disabled Topics] -Count=12 -ID0=TExprCompileParser.CompileExpr -ID1=TExprCompileParser.CompileSignedFactor -ID10=TJclRebaseImageInfo.OldImageBase -ID11=TJclRebaseImageInfo.OldImageSize -ID2=TExprCompileParser.CompileSimpleExpr -ID3=TExprCompileParser.CompileTerm -ID4=TExprEvalParser.EvalExpr -ID5=TExprEvalParser.EvalSignedFactor -ID6=TExprEvalParser.EvalSimpleExpr -ID7=TExprEvalParser.EvalTerm -ID8=TJclRebaseImageInfo.NewImageBase -ID9=TJclRebaseImageInfo.NewImageSize +Count=13 +ID0=IJclMultiIntfIntfMap +ID1=TExprCompileParser.CompileExpr +ID10=TJclRebaseImageInfo.NewImageSize +ID11=TJclRebaseImageInfo.OldImageBase +ID12=TJclRebaseImageInfo.OldImageSize +ID2=TExprCompileParser.CompileSignedFactor +ID3=TExprCompileParser.CompileSimpleExpr +ID4=TExprCompileParser.CompileTerm +ID5=TExprEvalParser.EvalExpr +ID6=TExprEvalParser.EvalSignedFactor +ID7=TExprEvalParser.EvalSimpleExpr +ID8=TExprEvalParser.EvalTerm +ID9=TJclRebaseImageInfo.NewImageBase [Configurations\PDF\Enabled Topics] -Count=1 -ID0=TStreamNotifyEvent +Count=19 +ID0=!!CONSTANTS +ID1=Containers.Interfaces +ID10=jcld15.inc +ID11=jcld6.inc +ID12=jcld7.inc +ID13=jcld8.inc +ID14=jcld9.inc +ID15=jclfpc.inc +ID16=jedi.inc +ID17=kylix.inc +ID18=TStreamNotifyEvent +ID2=IJclDoubleIntfMap +ID3=jcl.inc +ID4=jclc6.inc +ID5=jclcs1.inc +ID6=jcld10.inc +ID7=jcld11.inc +ID8=jcld12.inc +ID9=jcld14.inc [Configurations\PDF\Export Symbols] Classes=1 @@ -51816,7 +51911,7 @@ BodySourceUseAutolinking=0 BodySourceUseSyntaxHighlight=0 [Configurations\XML\Disabled Topics] -Count=393 +Count=394 ID0=_DLLVERSIONINFO.dwPlatformId ID1=_FILE_ZERO_DATA_INFORMATION ID10=_IMAGE_RESOURCE_DIRECTORY @@ -51881,269 +51976,270 @@ ID152=IJclMIDIOut.GetActiveNotes@TMIDIChannel ID153=IJclMIDIOut.GetName ID154=IJclMIDIOut.GetRunningStatusEnabled ID155=IJclMIDIOut.SetRunningStatusEnabled@Boolean -ID156=IMAGE_BASE_RELOCATION -ID157=IMAGE_BOUND_FORWARDER_REF -ID158=IMAGE_BOUND_IMPORT_DESCRIPTOR -ID159=IMAGE_COR20_HEADER +ID156=IJclMultiIntfIntfMap +ID157=IMAGE_BASE_RELOCATION +ID158=IMAGE_BOUND_FORWARDER_REF +ID159=IMAGE_BOUND_IMPORT_DESCRIPTOR ID16=_REPARSE_POINT_INFORMATION -ID160=IMAGE_DEBUG_TYPE_BORLAND -ID161=IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR -ID162=IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT -ID163=IMAGE_EXPORT_DIRECTORY -ID164=IMAGE_IMPORT_BY_NAME -ID165=IMAGE_IMPORT_DESCRIPTOR -ID166=IMAGE_LOAD_CONFIG_DIRECTORY -ID167=IMAGE_ORDINAL_FLAG -ID168=IMAGE_REL_BASED_ABSOLUTE -ID169=IMAGE_REL_BASED_DIR64 +ID160=IMAGE_COR20_HEADER +ID161=IMAGE_DEBUG_TYPE_BORLAND +ID162=IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR +ID163=IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT +ID164=IMAGE_EXPORT_DIRECTORY +ID165=IMAGE_IMPORT_BY_NAME +ID166=IMAGE_IMPORT_DESCRIPTOR +ID167=IMAGE_LOAD_CONFIG_DIRECTORY +ID168=IMAGE_ORDINAL_FLAG +ID169=IMAGE_REL_BASED_ABSOLUTE ID17=AMD_APIC_FLAG -ID170=IMAGE_REL_BASED_HIGH -ID171=IMAGE_REL_BASED_HIGH3ADJ -ID172=IMAGE_REL_BASED_HIGHADJ -ID173=IMAGE_REL_BASED_HIGHLOW -ID174=IMAGE_REL_BASED_IA64_IMM64 -ID175=IMAGE_REL_BASED_LOW -ID176=IMAGE_REL_BASED_MIPS_JMPADDR -ID177=IMAGE_REL_BASED_MIPS_JMPADDR16 -ID178=IMAGE_REL_BASED_REL32 -ID179=IMAGE_REL_BASED_SECTION +ID170=IMAGE_REL_BASED_DIR64 +ID171=IMAGE_REL_BASED_HIGH +ID172=IMAGE_REL_BASED_HIGH3ADJ +ID173=IMAGE_REL_BASED_HIGHADJ +ID174=IMAGE_REL_BASED_HIGHLOW +ID175=IMAGE_REL_BASED_IA64_IMM64 +ID176=IMAGE_REL_BASED_LOW +ID177=IMAGE_REL_BASED_MIPS_JMPADDR +ID178=IMAGE_REL_BASED_MIPS_JMPADDR16 +ID179=IMAGE_REL_BASED_REL32 ID18=AMD_BIT_10 -ID180=IMAGE_RESOURCE_DATA_ENTRY -ID181=IMAGE_RESOURCE_DATA_IS_DIRECTORY -ID182=IMAGE_RESOURCE_DIR_STRING_U -ID183=IMAGE_RESOURCE_DIRECTORY -ID184=IMAGE_RESOURCE_DIRECTORY_ENTRY -ID185=IMAGE_RESOURCE_NAME_IS_STRING -ID186=IMAGE_SIZEOF_BASE_RELOCATION -ID187=IMAGE_THUNK_DATA -ID188=IMAGE_TLS_DIRECTORY -ID189=ImgDelayDescr +ID180=IMAGE_REL_BASED_SECTION +ID181=IMAGE_RESOURCE_DATA_ENTRY +ID182=IMAGE_RESOURCE_DATA_IS_DIRECTORY +ID183=IMAGE_RESOURCE_DIR_STRING_U +ID184=IMAGE_RESOURCE_DIRECTORY +ID185=IMAGE_RESOURCE_DIRECTORY_ENTRY +ID186=IMAGE_RESOURCE_NAME_IS_STRING +ID187=IMAGE_SIZEOF_BASE_RELOCATION +ID188=IMAGE_THUNK_DATA +ID189=IMAGE_TLS_DIRECTORY ID19=AMD_BIT_11 -ID190=IO_REPARSE_TAG_HSM -ID191=IO_REPARSE_TAG_MOUNT_POINT -ID192=IO_REPARSE_TAG_RESERVED_ONE -ID193=IO_REPARSE_TAG_RESERVED_RANGE -ID194=IO_REPARSE_TAG_RESERVED_ZERO -ID195=IO_REPARSE_TAG_SIS -ID196=IO_REPARSE_TAG_VALID_VALUES -ID197=IQueryInfo -ID198=JclDebug.pas -ID199=JclGraphics.pas +ID190=ImgDelayDescr +ID191=IO_REPARSE_TAG_HSM +ID192=IO_REPARSE_TAG_MOUNT_POINT +ID193=IO_REPARSE_TAG_RESERVED_ONE +ID194=IO_REPARSE_TAG_RESERVED_RANGE +ID195=IO_REPARSE_TAG_RESERVED_ZERO +ID196=IO_REPARSE_TAG_SIS +ID197=IO_REPARSE_TAG_VALID_VALUES +ID198=IQueryInfo +ID199=JclDebug.pas ID2=_IMAGE_BASE_RELOCATION ID20=AMD_BIT_14 -ID200=JclHookIs -ID201=JclIsHooked -ID202=JclMidi.pas -ID203=JclNTFS.pas -ID204=JclRegistry.pas -ID205=JclUnhookIs -ID206=KLF_SETFORPROCESS -ID207=MAX_LANA -ID208=MAX_MODULE_NAME32 -ID209=MAXIMUM_REPARSE_DATA_BUFFER_SIZE +ID200=JclGraphics.pas +ID201=JclHookIs +ID202=JclIsHooked +ID203=JclMidi.pas +ID204=JclNTFS.pas +ID205=JclRegistry.pas +ID206=JclUnhookIs +ID207=KLF_SETFORPROCESS +ID208=MAX_LANA +ID209=MAX_MODULE_NAME32 ID21=AMD_BIT_16 -ID210=METHOD_BUFFERED -ID211=METHOD_IN_DIRECT -ID212=METHOD_NEITHER -ID213=METHOD_OUT_DIRECT -ID214=NCBASTAT -ID215=NCBENUM -ID216=NCBNAMSZ -ID217=NCBRESET -ID218=NRC_GOODRET -ID219=PAdapterStatus +ID210=MAXIMUM_REPARSE_DATA_BUFFER_SIZE +ID211=METHOD_BUFFERED +ID212=METHOD_IN_DIRECT +ID213=METHOD_NEITHER +ID214=METHOD_OUT_DIRECT +ID215=NCBASTAT +ID216=NCBENUM +ID217=NCBNAMSZ +ID218=NCBRESET +ID219=NRC_GOODRET ID22=AMD_BIT_17 -ID220=PANonObjectHeader -ID221=PFileAllocatedRangeBuffer -ID222=PFileZeroDataInformation -ID223=PImageBaseRelocation -ID224=PImageBoundForwarderRef -ID225=PImageBoundImportDescriptor -ID226=PImageCor20Header -ID227=PImageExportDirectory -ID228=PImageImportByName -ID229=PImageImportDescriptor +ID220=PAdapterStatus +ID221=PANonObjectHeader +ID222=PFileAllocatedRangeBuffer +ID223=PFileZeroDataInformation +ID224=PImageBaseRelocation +ID225=PImageBoundForwarderRef +ID226=PImageBoundImportDescriptor +ID227=PImageCor20Header +ID228=PImageExportDirectory +ID229=PImageImportByName ID23=AMD_BIT_18 -ID230=PImageLoadConfigDirectory -ID231=PImageResourceDataEntry -ID232=PImageResourceDirectory -ID233=PImageResourceDirectoryEntry -ID234=PImageResourceDirStringU -ID235=PImageThunkData -ID236=PImageTlsDirectory -ID237=PImgDelayDescr -ID238=PLanaEnum -ID239=PModuleInfo +ID230=PImageImportDescriptor +ID231=PImageLoadConfigDirectory +ID232=PImageResourceDataEntry +ID233=PImageResourceDirectory +ID234=PImageResourceDirectoryEntry +ID235=PImageResourceDirStringU +ID236=PImageThunkData +ID237=PImageTlsDirectory +ID238=PImgDelayDescr +ID239=PLanaEnum ID24=AMD_BIT_19 -ID240=PNameBuffer -ID241=PNCB -ID242=POSVersionInfoEx -ID243=PPImageSectionHeader -ID244=PPSID -ID245=PReparseDataBuffer -ID246=PReparsePointInformation -ID247=REPARSE_DATA_BUFFER_HEADER_SIZE -ID248=REPARSE_GUID_DATA_BUFFER_HEADER_SIZE -ID249=RT_HTML +ID240=PModuleInfo +ID241=PNameBuffer +ID242=PNCB +ID243=POSVersionInfoEx +ID244=PPImageSectionHeader +ID245=PPSID +ID246=PReparseDataBuffer +ID247=PReparsePointInformation +ID248=REPARSE_DATA_BUFFER_HEADER_SIZE +ID249=REPARSE_GUID_DATA_BUFFER_HEADER_SIZE ID25=AMD_BIT_20 -ID250=RT_MANIFEST -ID251=SE_ASSIGNPRIMARYTOKEN_NAME -ID252=SE_AUDIT_NAME -ID253=SE_BACKUP_NAME -ID254=SE_CHANGE_NOTIFY_NAME -ID255=SE_CREATE_PAGEFILE_NAME -ID256=SE_CREATE_PERMANENT_NAME -ID257=SE_CREATE_TOKEN_NAME -ID258=SE_DEBUG_NAME -ID259=SE_ENABLE_DELEGATION_NAME +ID250=RT_HTML +ID251=RT_MANIFEST +ID252=SE_ASSIGNPRIMARYTOKEN_NAME +ID253=SE_AUDIT_NAME +ID254=SE_BACKUP_NAME +ID255=SE_CHANGE_NOTIFY_NAME +ID256=SE_CREATE_PAGEFILE_NAME +ID257=SE_CREATE_PERMANENT_NAME +ID258=SE_CREATE_TOKEN_NAME +ID259=SE_DEBUG_NAME ID26=AMD_BIT_21 -ID260=SE_INC_BASE_PRIORITY_NAME -ID261=SE_INCREASE_QUOTA_NAME -ID262=SE_LOAD_DRIVER_NAME -ID263=SE_LOCK_MEMORY_NAME -ID264=SE_MACHINE_ACCOUNT_NAME -ID265=SE_OBJECT_TYPE -ID266=SE_PROF_SINGLE_PROCESS_NAME -ID267=SE_REMOTE_SHUTDOWN_NAME -ID268=SE_RESTORE_NAME -ID269=SE_SECURITY_NAME +ID260=SE_ENABLE_DELEGATION_NAME +ID261=SE_INC_BASE_PRIORITY_NAME +ID262=SE_INCREASE_QUOTA_NAME +ID263=SE_LOAD_DRIVER_NAME +ID264=SE_LOCK_MEMORY_NAME +ID265=SE_MACHINE_ACCOUNT_NAME +ID266=SE_OBJECT_TYPE +ID267=SE_PROF_SINGLE_PROCESS_NAME +ID268=SE_REMOTE_SHUTDOWN_NAME +ID269=SE_RESTORE_NAME ID27=AMD_BIT_22 -ID270=SE_SHUTDOWN_NAME -ID271=SE_SYNC_AGENT_NAME -ID272=SE_SYSTEM_ENVIRONMENT_NAME -ID273=SE_SYSTEM_PROFILE_NAME -ID274=SE_SYSTEMTIME_NAME -ID275=SE_TAKE_OWNERSHIP_NAME -ID276=SE_TCB_NAME -ID277=SE_UNDOCK_NAME -ID278=SE_UNSOLICITED_INPUT_NAME -ID279=SECURITY_ANONYMOUS_LOGON_RID +ID270=SE_SECURITY_NAME +ID271=SE_SHUTDOWN_NAME +ID272=SE_SYNC_AGENT_NAME +ID273=SE_SYSTEM_ENVIRONMENT_NAME +ID274=SE_SYSTEM_PROFILE_NAME +ID275=SE_SYSTEMTIME_NAME +ID276=SE_TAKE_OWNERSHIP_NAME +ID277=SE_TCB_NAME +ID278=SE_UNDOCK_NAME +ID279=SE_UNSOLICITED_INPUT_NAME ID28=AMD_BIT_24 -ID280=SECURITY_AUTHENTICATED_USER_RID -ID281=SECURITY_BATCH_RID -ID282=SECURITY_BUILTIN_DOMAIN_RID -ID283=SECURITY_CREATOR_GROUP_RID -ID284=SECURITY_CREATOR_GROUP_SERVER_RID -ID285=SECURITY_CREATOR_OWNER_RID -ID286=SECURITY_CREATOR_OWNER_SERVER_RID -ID287=SECURITY_CREATOR_SID_AUTHORITY -ID288=SECURITY_DESCRIPTOR_MIN_LENGTH -ID289=SECURITY_DESCRIPTOR_REVISION +ID280=SECURITY_ANONYMOUS_LOGON_RID +ID281=SECURITY_AUTHENTICATED_USER_RID +ID282=SECURITY_BATCH_RID +ID283=SECURITY_BUILTIN_DOMAIN_RID +ID284=SECURITY_CREATOR_GROUP_RID +ID285=SECURITY_CREATOR_GROUP_SERVER_RID +ID286=SECURITY_CREATOR_OWNER_RID +ID287=SECURITY_CREATOR_OWNER_SERVER_RID +ID288=SECURITY_CREATOR_SID_AUTHORITY +ID289=SECURITY_DESCRIPTOR_MIN_LENGTH ID29=AMD_BIT_25 -ID290=SECURITY_DESCRIPTOR_REVISION1 -ID291=SECURITY_DIALUP_RID -ID292=SECURITY_ENTERPRISE_CONTROLLERS_RID -ID293=SECURITY_INTERACTIVE_RID -ID294=SECURITY_LOCAL_RID -ID295=SECURITY_LOCAL_SID_AUTHORITY -ID296=SECURITY_LOCAL_SYSTEM_RID -ID297=SECURITY_LOGON_IDS_RID -ID298=SECURITY_LOGON_IDS_RID_COUNT -ID299=SECURITY_NETWORK_RID +ID290=SECURITY_DESCRIPTOR_REVISION +ID291=SECURITY_DESCRIPTOR_REVISION1 +ID292=SECURITY_DIALUP_RID +ID293=SECURITY_ENTERPRISE_CONTROLLERS_RID +ID294=SECURITY_INTERACTIVE_RID +ID295=SECURITY_LOCAL_RID +ID296=SECURITY_LOCAL_SID_AUTHORITY +ID297=SECURITY_LOCAL_SYSTEM_RID +ID298=SECURITY_LOGON_IDS_RID +ID299=SECURITY_LOGON_IDS_RID_COUNT ID3=_IMAGE_BOUND_FORWARDER_REF ID30=AMD_BIT_26 -ID300=SECURITY_NON_UNIQUE_AUTHORITY -ID301=SECURITY_NT_AUTHORITY -ID302=SECURITY_NT_NON_UNIQUE -ID303=SECURITY_NULL_RID -ID304=SECURITY_NULL_SID_AUTHORITY -ID305=SECURITY_PRINCIPAL_SELF_RID -ID306=SECURITY_PROXY_RID -ID307=SECURITY_RESTRICTED_CODE_RID -ID308=SECURITY_SERVER_LOGON_RID -ID309=SECURITY_SERVICE_RID +ID300=SECURITY_NETWORK_RID +ID301=SECURITY_NON_UNIQUE_AUTHORITY +ID302=SECURITY_NT_AUTHORITY +ID303=SECURITY_NT_NON_UNIQUE +ID304=SECURITY_NULL_RID +ID305=SECURITY_NULL_SID_AUTHORITY +ID306=SECURITY_PRINCIPAL_SELF_RID +ID307=SECURITY_PROXY_RID +ID308=SECURITY_RESTRICTED_CODE_RID +ID309=SECURITY_SERVER_LOGON_RID ID31=AMD_BIT_27 -ID310=SECURITY_TERMINAL_SERVER_RID -ID311=SECURITY_WORLD_RID -ID312=SECURITY_WORLD_SID_AUTHORITY -ID313=SID_IQueryInfo -ID314=TAdapterStatus -ID315=tagMODULEENTRY32 -ID316=TAMDSpecific.DataTLB -ID317=TAMDSpecific.InstructionTLB -ID318=TAMDSpecific.L1ICache -ID319=TANonObjectHeader +ID310=SECURITY_SERVICE_RID +ID311=SECURITY_TERMINAL_SERVER_RID +ID312=SECURITY_WORLD_RID +ID313=SECURITY_WORLD_SID_AUTHORITY +ID314=SID_IQueryInfo +ID315=TAdapterStatus +ID316=tagMODULEENTRY32 +ID317=TAMDSpecific.DataTLB +ID318=TAMDSpecific.InstructionTLB +ID319=TAMDSpecific.L1ICache ID32=AMD_BIT_28 -ID320=TCoCreateInstanceExProc -ID321=TExprCompileParser.CompileExpr -ID322=TExprCompileParser.CompileSignedFactor -ID323=TExprCompileParser.CompileSimpleExpr -ID324=TExprCompileParser.CompileTerm -ID325=TExprEvalParser.EvalExpr -ID326=TExprEvalParser.EvalSignedFactor -ID327=TExprEvalParser.EvalSimpleExpr -ID328=TExprEvalParser.EvalTerm -ID329=TFileAllocatedRangeBuffer +ID320=TANonObjectHeader +ID321=TCoCreateInstanceExProc +ID322=TExprCompileParser.CompileExpr +ID323=TExprCompileParser.CompileSignedFactor +ID324=TExprCompileParser.CompileSimpleExpr +ID325=TExprCompileParser.CompileTerm +ID326=TExprEvalParser.EvalExpr +ID327=TExprEvalParser.EvalSignedFactor +ID328=TExprEvalParser.EvalSimpleExpr +ID329=TExprEvalParser.EvalTerm ID33=AMD_BIT_29 -ID330=TFileZeroDataInformation -ID331=TH32CS_SNAPMODULE -ID332=TImageBaseRelocation -ID333=TImageBoundForwarderRef -ID334=TImageBoundImportDescriptor -ID335=TImageCor20Header -ID336=TImageExportDirectory -ID337=TImageImportByName -ID338=TImageImportDescriptor -ID339=TImageLoadConfigDirectory +ID330=TFileAllocatedRangeBuffer +ID331=TFileZeroDataInformation +ID332=TH32CS_SNAPMODULE +ID333=TImageBaseRelocation +ID334=TImageBoundForwarderRef +ID335=TImageBoundImportDescriptor +ID336=TImageCor20Header +ID337=TImageExportDirectory +ID338=TImageImportByName +ID339=TImageImportDescriptor ID34=AMD_BIT_30 -ID340=TImageResourceDataEntry -ID341=TImageResourceDirectory -ID342=TImageResourceDirectoryEntry -ID343=TImageResourceDirStringU -ID344=TImageThunkData -ID345=TImageTlsDirectory -ID346=TIME_ZONE_ID_DAYLIGHT -ID347=TIME_ZONE_ID_INVALID -ID348=TIME_ZONE_ID_STANDARD -ID349=TIME_ZONE_ID_UNKNOWN +ID340=TImageLoadConfigDirectory +ID341=TImageResourceDataEntry +ID342=TImageResourceDirectory +ID343=TImageResourceDirectoryEntry +ID344=TImageResourceDirStringU +ID345=TImageThunkData +ID346=TImageTlsDirectory +ID347=TIME_ZONE_ID_DAYLIGHT +ID348=TIME_ZONE_ID_INVALID +ID349=TIME_ZONE_ID_STANDARD ID35=AMD_BIT_31 -ID350=TImgDelayDescr -ID351=TJclBitmap32.FrameRect -ID352=TJclBitmap32.OnPixelCombine -ID353=TJclByteMap.Byte -ID354=TJclDesktopCanvas.Create -ID355=TJclDesktopCanvas.Destroy -ID356=TJclIsFunc -ID357=TJclRebaseImageInfo.NewImageBase -ID358=TJclRebaseImageInfo.NewImageSize -ID359=TJclRebaseImageInfo.OldImageBase +ID350=TIME_ZONE_ID_UNKNOWN +ID351=TImgDelayDescr +ID352=TJclBitmap32.FrameRect +ID353=TJclBitmap32.OnPixelCombine +ID354=TJclByteMap.Byte +ID355=TJclDesktopCanvas.Create +ID356=TJclDesktopCanvas.Destroy +ID357=TJclIsFunc +ID358=TJclRebaseImageInfo.NewImageBase +ID359=TJclRebaseImageInfo.NewImageSize ID36=AMD_BIT_6 -ID360=TJclRebaseImageInfo.OldImageSize -ID361=TLanaEnum -ID362=TLoadedImage -ID363=TModuleEntry32 -ID364=TModuleInfo -ID365=TNameBuffer -ID366=TNCB -ID367=TNCBPostProc -ID368=TObjectList.Clear -ID369=TObjectList.Create +ID360=TJclRebaseImageInfo.OldImageBase +ID361=TJclRebaseImageInfo.OldImageSize +ID362=TLanaEnum +ID363=TLoadedImage +ID364=TModuleEntry32 +ID365=TModuleInfo +ID366=TNameBuffer +ID367=TNCB +ID368=TNCBPostProc +ID369=TObjectList.Clear ID37=AMD_CMOV_FLAG -ID370=TObjectList.OwnsObjects -ID371=TOSVersionInfoEx -ID372=TReparseDataBuffer -ID373=TReparsePointInformation -ID374=TWideStrings.Destroy -ID375=VER_NT_DOMAIN_CONTROLLER -ID376=VER_NT_SERVER -ID377=VER_NT_WORKSTATION -ID378=VER_SUITE_BACKOFFICE -ID379=VER_SUITE_COMMUNICATIONS +ID370=TObjectList.Create +ID371=TObjectList.OwnsObjects +ID372=TOSVersionInfoEx +ID373=TReparseDataBuffer +ID374=TReparsePointInformation +ID375=TWideStrings.Destroy +ID376=VER_NT_DOMAIN_CONTROLLER +ID377=VER_NT_SERVER +ID378=VER_NT_WORKSTATION +ID379=VER_SUITE_BACKOFFICE ID38=AMD_CX8_FLAG -ID380=VER_SUITE_DATACENTER -ID381=VER_SUITE_EMBEDDEDNT -ID382=VER_SUITE_ENTERPRISE -ID383=VER_SUITE_PERSONAL -ID384=VER_SUITE_SERVERAPPLIANCE -ID385=VER_SUITE_SINGLEUSERTS -ID386=VER_SUITE_SMALLBUSINESS -ID387=VER_SUITE_SMALLBUSINESS_RESTRICTED -ID388=VER_SUITE_TERMINAL -ID389=Win32BackupFile +ID380=VER_SUITE_COMMUNICATIONS +ID381=VER_SUITE_DATACENTER +ID382=VER_SUITE_EMBEDDEDNT +ID383=VER_SUITE_ENTERPRISE +ID384=VER_SUITE_PERSONAL +ID385=VER_SUITE_SERVERAPPLIANCE +ID386=VER_SUITE_SINGLEUSERTS +ID387=VER_SUITE_SMALLBUSINESS +ID388=VER_SUITE_SMALLBUSINESS_RESTRICTED +ID389=VER_SUITE_TERMINAL ID39=AMD_DE_FLAG -ID390=Win32DeleteFile -ID391=Win32MoveFileReplaceExisting -ID392=Win32RestoreFile +ID390=Win32BackupFile +ID391=Win32DeleteFile +ID392=Win32MoveFileReplaceExisting +ID393=Win32RestoreFile ID4=_IMAGE_BOUND_IMPORT_DESCRIPTOR ID40=AMD_FPU_FLAG ID41=AMD_MCE_FLAG @@ -52212,24 +52308,42 @@ ID98=DOMAIN_ALIAS_RID_REPLICATOR ID99=DOMAIN_ALIAS_RID_SYSTEM_OPS [Configurations\XML\Enabled Topics] -Count=17 -ID0=BOM_LSB_FIRST -ID1=Jcl8087.pas -ID10=StrToFloatSafe@AnsiString -ID11=StrToIntSafe@AnsiString -ID12=TJclBitmap32.SetPixel -ID13=TJclThreadPersistent.Create -ID14=TJclThreadPersistent.Destroy -ID15=TJclThreadPersistent.UpdateCount -ID16=TStreamNotifyEvent -ID2=JclAppInst.pas -ID3=JclFileUtils.pas -ID4=JclQGraphics.pas -ID5=JclStrHashMap.pas -ID6=JclStrings.pas -ID7=PolyPolyLineTS -ID8=RTTI -ID9=StrIToStrings@AnsiString@AnsiString@TStrings@Boolean +Count=35 +ID0=!!CONSTANTS +ID1=BOM_LSB_FIRST +ID10=jcld11.inc +ID11=jcld12.inc +ID12=jcld14.inc +ID13=jcld15.inc +ID14=jcld6.inc +ID15=jcld7.inc +ID16=jcld8.inc +ID17=jcld9.inc +ID18=JclFileUtils.pas +ID19=jclfpc.inc +ID2=Containers.Interfaces +ID20=JclQGraphics.pas +ID21=JclStrHashMap.pas +ID22=JclStrings.pas +ID23=jedi.inc +ID24=kylix.inc +ID25=PolyPolyLineTS +ID26=RTTI +ID27=StrIToStrings@AnsiString@AnsiString@TStrings@Boolean +ID28=StrToFloatSafe@AnsiString +ID29=StrToIntSafe@AnsiString +ID3=IJclDoubleIntfMap +ID30=TJclBitmap32.SetPixel +ID31=TJclThreadPersistent.Create +ID32=TJclThreadPersistent.Destroy +ID33=TJclThreadPersistent.UpdateCount +ID34=TStreamNotifyEvent +ID4=jcl.inc +ID5=Jcl8087.pas +ID6=JclAppInst.pas +ID7=jclc6.inc +ID8=jclcs1.inc +ID9=jcld10.inc [Configurations\XML\Export Symbols] Classes=1 @@ -53358,13862 +53472,16802 @@ UseInheritedTopics=1 UseInheritedUseUsing=0 [External Topic Properties] -Count=13855 +Count=16795 ID0=!!CLASSES ID1=!!CONSTANTS ID10=!!OVERLOADED_AppendFormat_TStringBuilder ID100=!!OVERLOADED_InsertSegments_TEDITransactionSet -ID1000=clTrRed32 -ID10000=TJclClrTableMethodDefRow.GetManaged -ID10001=TJclClrTableMethodDefRow.GetMemberAccess -ID10002=TJclClrTableMethodDefRow.GetMethodFlags -ID10003=TJclClrTableMethodDefRow.GetMethodImplFlags -ID10004=TJclClrTableMethodDefRow.GetName -ID10005=TJclClrTableMethodDefRow.GetNewSlot -ID10006=TJclClrTableMethodDefRow.GetParam@Integer -ID10007=TJclClrTableMethodDefRow.GetParamCount -ID10008=TJclClrTableMethodDefRow.GetSignature -ID10009=TJclClrTableMethodDefRow.GetSignatureData -ID1001=clTrWhite32 -ID10010=TJclClrTableMethodDefRow.HasParam -ID10011=TJclClrTableMethodDefRow.ImplFlags -ID10012=TJclClrTableMethodDefRow.Managed -ID10013=TJclClrTableMethodDefRow.MemberAccess -ID10014=TJclClrTableMethodDefRow.MethodBody -ID10015=TJclClrTableMethodDefRow.MethodFlags -ID10016=TJclClrTableMethodDefRow.MethodImplFlags -ID10017=TJclClrTableMethodDefRow.Name -ID10018=TJclClrTableMethodDefRow.NameOffset -ID10019=TJclClrTableMethodDefRow.NewSlot -ID1002=CLTYPE_LEN -ID10020=TJclClrTableMethodDefRow.ParamCount -ID10021=TJclClrTableMethodDefRow.ParamListIdx -ID10022=TJclClrTableMethodDefRow.Params -ID10023=TJclClrTableMethodDefRow.ParentToken -ID10024=TJclClrTableMethodDefRow.RVA -ID10025=TJclClrTableMethodDefRow.SetParentToken@TJclClrTableTypeDefRow -ID10026=TJclClrTableMethodDefRow.Signature -ID10027=TJclClrTableMethodDefRow.SignatureData -ID10028=TJclClrTableMethodDefRow.SignatureOffset -ID10029=TJclClrTableMethodDefRow.Update -ID1003=clWhite32 -ID10030=TJclClrTableMethodDefRow.UpdateParams -ID10031=TJclClrTableMethodImpl -ID10032=TJclClrTableMethodImpl.GetRow@Integer -ID10033=TJclClrTableMethodImpl.Rows -ID10034=TJclClrTableMethodImpl.TableRowClass -ID10035=TJclClrTableMethodImplRow -ID10036=TJclClrTableMethodImplRow.ClassIdx -ID10037=TJclClrTableMethodImplRow.Create@TJclClrTable -ID10038=TJclClrTableMethodImplRow.FClassIdx -ID10039=TJclClrTableMethodImplRow.FMethodBodyIdx -ID1004=clYellow32 -ID10040=TJclClrTableMethodImplRow.FMethodDeclarationIdx -ID10041=TJclClrTableMethodImplRow.MethodBodyIdx -ID10042=TJclClrTableMethodImplRow.MethodDeclarationIdx -ID10043=TJclClrTableMethodPtr -ID10044=TJclClrTableMethodPtr.GetRow@Integer -ID10045=TJclClrTableMethodPtr.Rows -ID10046=TJclClrTableMethodPtr.TableRowClass -ID10047=TJclClrTableMethodPtrRow -ID10048=TJclClrTableMethodPtrRow.Create@TJclClrTable -ID10049=TJclClrTableMethodPtrRow.FMethodIdx -ID1005=CMOV_FLAG -ID10050=TJclClrTableMethodPtrRow.GetMethod -ID10051=TJclClrTableMethodPtrRow.Method -ID10052=TJclClrTableMethodPtrRow.MethodIdx -ID10053=TJclClrTableMethodSemantics -ID10054=TJclClrTableMethodSemantics.GetRow@Integer -ID10055=TJclClrTableMethodSemantics.Rows -ID10056=TJclClrTableMethodSemantics.TableRowClass -ID10057=TJclClrTableMethodSemanticsRow -ID10058=TJclClrTableMethodSemanticsRow.AssociationIdx -ID10059=TJclClrTableMethodSemanticsRow.Create@TJclClrTable -ID1006=CMYKToBGR@Pointer@Pointer@Byte@Cardinal -ID10060=TJclClrTableMethodSemanticsRow.FAssociationIdx -ID10061=TJclClrTableMethodSemanticsRow.FMethodIdx -ID10062=TJclClrTableMethodSemanticsRow.FSemantics -ID10063=TJclClrTableMethodSemanticsRow.MethodIdx -ID10064=TJclClrTableMethodSemanticsRow.Semantics -ID10065=TJclClrTableMethodSpec -ID10066=TJclClrTableMethodSpec.GetRow@Integer -ID10067=TJclClrTableMethodSpec.Rows -ID10068=TJclClrTableMethodSpec.TableRowClass -ID10069=TJclClrTableMethodSpecRow -ID1007=CMYKToBGR@Pointer@Pointer@Pointer@Pointer@Pointer@Byte@Cardinal -ID10070=TJclClrTableMethodSpecRow.Create@TJclClrTable -ID10071=TJclClrTableMethodSpecRow.FInstantiationOffset -ID10072=TJclClrTableMethodSpecRow.FMethodIdx -ID10073=TJclClrTableMethodSpecRow.GetInstantiation -ID10074=TJclClrTableMethodSpecRow.GetMethod -ID10075=TJclClrTableMethodSpecRow.Instantiation -ID10076=TJclClrTableMethodSpecRow.InstantiationOffset -ID10077=TJclClrTableMethodSpecRow.Method -ID10078=TJclClrTableMethodSpecRow.MethodIdx -ID10079=TJclClrTableModule -ID1008=CNLEN -ID10080=TJclClrTableModule.GetRow@Integer -ID10081=TJclClrTableModule.Rows -ID10082=TJclClrTableModule.TableRowClass -ID10083=TJclClrTableModuleRef -ID10084=TJclClrTableModuleRef.GetRow@Integer -ID10085=TJclClrTableModuleRef.Rows -ID10086=TJclClrTableModuleRef.TableRowClass -ID10087=TJclClrTableModuleRefRow -ID10088=TJclClrTableModuleRefRow.Create@TJclClrTable -ID10089=TJclClrTableModuleRefRow.DumpIL -ID1009=CodeBlockName@TUnicodeBlock -ID10090=TJclClrTableModuleRefRow.FNameOffset -ID10091=TJclClrTableModuleRefRow.GetName -ID10092=TJclClrTableModuleRefRow.Name -ID10093=TJclClrTableModuleRefRow.NameOffset -ID10094=TJclClrTableModuleRow -ID10095=TJclClrTableModuleRow.Create@TJclClrTable -ID10096=TJclClrTableModuleRow.DumpIL -ID10097=TJclClrTableModuleRow.EncBaseId -ID10098=TJclClrTableModuleRow.EncBaseIdIdx -ID10099=TJclClrTableModuleRow.EncId +ID1000=CALINFO_ENUMPROCEXA +ID10000=TExtendedCompare +ID10001=TExtendedEqualityCompare +ID10002=TExtendedHashConvert +ID10003=TExtendedIterateProcedure +ID10004=TExtendedSortProc +ID10005=TFileEnumeratorSyncMode +ID10006=TFileEnumeratorSyncMode.smPerDirectory +ID10007=TFileEnumeratorSyncMode.smPerFile +ID10008=TFileFlag +ID10009=TFileFlag.ffDebug +ID1001=CALL_PENDING +ID10010=TFileFlag.ffInfoInferred +ID10011=TFileFlag.ffPatched +ID10012=TFileFlag.ffPreRelease +ID10013=TFileFlag.ffPrivateBuild +ID10014=TFileFlag.ffSpecialBuild +ID10015=TFileHandler +ID10016=TFileHandlerEx +ID10017=TFileInfoHandlerEx +ID10018=TFileListOption +ID10019=TFileListOption.flFullNames +ID1002=CallFunctionShim@PWideChar@PChar@Pointer@Pointer@PWideChar@Pointer +ID10020=TFileListOption.flMaskedSubfolders +ID10021=TFileListOption.flRecursive +ID10022=TFileMatchFunc +ID10023=TFileSearchOption +ID10024=TFileSearchOption.fsIncludeHiddenSubDirectories +ID10025=TFileSearchOption.fsIncludeSubDirectories +ID10026=TFileSearchOption.fsLastChangeAfter +ID10027=TFileSearchOption.fsLastChangeBefore +ID10028=TFileSearchOption.fsMaxSize +ID10029=TFileSearchOption.fsMinSize +ID1003=CallPCRECallout@pcre_callout_block +ID10030=TFileSearchTaskID +ID10031=TFileSearchTerminationEvent +ID10032=TFileSystemFlag +ID10033=TFileSystemFlag.fsCasePreservedNames +ID10034=TFileSystemFlag.fsCaseSensitive +ID10035=TFileSystemFlag.fsPersistentACLs +ID10036=TFileSystemFlag.fsSupportsEncryption +ID10037=TFileSystemFlag.fsSupportsFileCompression +ID10038=TFileSystemFlag.fsSupportsNamedStreams +ID10039=TFileSystemFlag.fsSupportsObjectIds +ID1004=CallPCREFree@Pointer +ID10040=TFileSystemFlag.fsSupportsRemoteStorage +ID10041=TFileSystemFlag.fsSupportsReparsePoints +ID10042=TFileSystemFlag.fsSupportsSparseFiles +ID10043=TFileSystemFlag.fsSupportsUnicodeOnDisk +ID10044=TFileSystemFlag.fsSupportsVolumeQuotas +ID10045=TFileSystemFlag.fsVolumeIsCompressed +ID10046=TFileSystemFlag.fsVolumeIsReadOnly +ID10047=TFileSystemFlags +ID10048=TFileTime +ID10049=TFileTimeSetter +ID1005=CallPCREMalloc@Integer +ID10050=TFileVersionFormat +ID10051=TFileVersionFormat.vfFull +ID10052=TFileVersionFormat.vfMajorMinor +ID10053=TFindNameBuffer +ID10054=TFindNameHeader +ID10055=TFloat32Func +ID10056=TFloat64Func +ID10057=TFloat80Func +ID10058=TFloatApplyFunction +ID10059=TFloatCompare +ID1006=CallPCREStackFree@Pointer +ID10060=TFloatEqualityCompare +ID10061=TFloatHashConvert +ID10062=TFloatIterateProcedure +ID10063=TFloatSortProc +ID10064=TFNCreateHardLinkA +ID10065=TFNCreateHardLinkW +ID10066=TFontCharSet +ID10067=TFontType +ID10068=TFontType.ftAuto +ID10069=TFontType.ftCaption +ID1007=CallPCREStackMalloc@Integer +ID10070=TFontType.ftContent +ID10071=TFpoData +ID10072=TFreeSysResKind +ID10073=TFreeSysResKind.rtGdi +ID10074=TFreeSysResKind.rtSystem +ID10075=TFreeSysResKind.rtUser +ID10076=TFreeSystemResources +ID10077=TFreeSystemResources.GdiRes +ID10078=TFreeSystemResources.SystemRes +ID10079=TFreeSystemResources.UserRes +ID1008=CardinalMask +ID10080=TGenericReparseBuffer +ID10081=TGenericReparseBuffer.DataBuffer +ID10082=TGetFileExInfoLevels +ID10083=TGlobalTypeInfo +ID10084=TGlobalTypeInfo.Count +ID10085=TGlobalTypeInfo.Offsets +ID10086=TGroupInfo0 +ID10087=TGroupInfo1 +ID10088=THashConvert +ID10089=THLSValue +ID1009=CardinalSimpleCompare@Cardinal@Cardinal +ID10090=THLSVector +ID10091=THLSVector.Hue +ID10092=THLSVector.Luminance +ID10093=THLSVector.Saturation +ID10094=THREADSAFE +ID10095=ThreeEpsDouble +ID10096=ThreeEpsExtended +ID10097=ThreeEpsilon +ID10098=ThreeEpsSingle +ID10099=ThreePi ID101=!!OVERLOADED_InsertSubElement_TEDISEFCompositeElement -ID1010=CodeBlockRange@TUnicodeBlock -ID10100=TJclClrTableModuleRow.EncIdIdx -ID10101=TJclClrTableModuleRow.FEncBaseIdIdx -ID10102=TJclClrTableModuleRow.FEncIdIdx -ID10103=TJclClrTableModuleRow.FGeneration -ID10104=TJclClrTableModuleRow.FMvidIdx -ID10105=TJclClrTableModuleRow.FNameOffset -ID10106=TJclClrTableModuleRow.Generation -ID10107=TJclClrTableModuleRow.GetEncBaseId -ID10108=TJclClrTableModuleRow.GetEncId -ID10109=TJclClrTableModuleRow.GetMvid -ID1011=Color32@Byte@Byte@Byte@Byte -ID10110=TJclClrTableModuleRow.GetName -ID10111=TJclClrTableModuleRow.HasEncBaseId -ID10112=TJclClrTableModuleRow.HasEncId -ID10113=TJclClrTableModuleRow.Mvid -ID10114=TJclClrTableModuleRow.MvidIdx -ID10115=TJclClrTableModuleRow.Name -ID10116=TJclClrTableModuleRow.NameOffset -ID10117=TJclClrTableNestedClass -ID10118=TJclClrTableNestedClass.GetRow@Integer -ID10119=TJclClrTableNestedClass.Rows -ID1012=Color32@Byte@TPalette32 -ID10120=TJclClrTableNestedClass.TableRowClass -ID10121=TJclClrTableNestedClassRow -ID10122=TJclClrTableNestedClassRow.Create@TJclClrTable -ID10123=TJclClrTableNestedClassRow.EnclosingClassIdx -ID10124=TJclClrTableNestedClassRow.FEnclosingClassIdx -ID10125=TJclClrTableNestedClassRow.FNestedClassIdx -ID10126=TJclClrTableNestedClassRow.NestedClassIdx -ID10127=TJclClrTableParamDef -ID10128=TJclClrTableParamDef.GetRow@Integer -ID10129=TJclClrTableParamDef.Rows -ID1013=Color32@TColor -ID10130=TJclClrTableParamDef.TableRowClass -ID10131=TJclClrTableParamDefRow -ID10132=TJclClrTableParamDefRow.Create@TJclClrTable -ID10133=TJclClrTableParamDefRow.DumpIL -ID10134=TJclClrTableParamDefRow.FFlagMask -ID10135=TJclClrTableParamDefRow.FFlags -ID10136=TJclClrTableParamDefRow.FlagMask -ID10137=TJclClrTableParamDefRow.Flags -ID10138=TJclClrTableParamDefRow.FMethod -ID10139=TJclClrTableParamDefRow.FNameOffset -ID1014=ColorToHTML@TColor -ID10140=TJclClrTableParamDefRow.FSequence -ID10141=TJclClrTableParamDefRow.GetName -ID10142=TJclClrTableParamDefRow.Method -ID10143=TJclClrTableParamDefRow.Name -ID10144=TJclClrTableParamDefRow.NameOffset -ID10145=TJclClrTableParamDefRow.ParamFlags@TJclClrParamKinds -ID10146=TJclClrTableParamDefRow.ParamFlags@Word -ID10147=TJclClrTableParamDefRow.Sequence -ID10148=TJclClrTableParamDefRow.SetMethod@TJclClrTableMethodDefRow -ID10149=TJclClrTableParamPtr -ID1015=CoMallocFree@Pointer -ID10150=TJclClrTableParamPtr.GetRow@Integer -ID10151=TJclClrTableParamPtr.Rows -ID10152=TJclClrTableParamPtr.TableRowClass -ID10153=TJclClrTableParamPtrRow -ID10154=TJclClrTableParamPtrRow.Create@TJclClrTable -ID10155=TJclClrTableParamPtrRow.FParamIdx -ID10156=TJclClrTableParamPtrRow.GetParam -ID10157=TJclClrTableParamPtrRow.Param -ID10158=TJclClrTableParamPtrRow.ParamIdx -ID10159=TJclClrTablePropertyDef -ID1016=Combinations@Cardinal@Cardinal -ID10160=TJclClrTablePropertyDef.GetRow@Integer -ID10161=TJclClrTablePropertyDef.Rows -ID10162=TJclClrTablePropertyDef.TableRowClass -ID10163=TJclClrTablePropertyDefRow -ID10164=TJclClrTablePropertyDefRow.Create@TJclClrTable -ID10165=TJclClrTablePropertyDefRow.DumpIL -ID10166=TJclClrTablePropertyDefRow.FFlags -ID10167=TJclClrTablePropertyDefRow.FKindIdx -ID10168=TJclClrTablePropertyDefRow.Flags -ID10169=TJclClrTablePropertyDefRow.FNameOffset -ID1017=CombineCOMSDataOfCOMSDefinition@TEDISEFCompositeElement -ID10170=TJclClrTablePropertyDefRow.GetFlags -ID10171=TJclClrTablePropertyDefRow.GetName -ID10172=TJclClrTablePropertyDefRow.KindIdx -ID10173=TJclClrTablePropertyDefRow.Name -ID10174=TJclClrTablePropertyDefRow.NameOffset -ID10175=TJclClrTablePropertyDefRow.RawFlags -ID10176=TJclClrTablePropertyFlag -ID10177=TJclClrTablePropertyFlag.pfHasDefault -ID10178=TJclClrTablePropertyFlag.pfRTSpecialName -ID10179=TJclClrTablePropertyFlag.pfSpecialName -ID1018=CombineCOMSDataOfSEGSDefinition@TEDISEFCompositeElement -ID10180=TJclClrTablePropertyFlags -ID10181=TJclClrTablePropertyMap -ID10182=TJclClrTablePropertyMap.GetRow@Integer -ID10183=TJclClrTablePropertyMap.Rows -ID10184=TJclClrTablePropertyMap.TableRowClass -ID10185=TJclClrTablePropertyMap.Update -ID10186=TJclClrTablePropertyMapRow -ID10187=TJclClrTablePropertyMapRow.Add@TJclClrTablePropertyDefRow -ID10188=TJclClrTablePropertyMapRow.Create@TJclClrTable -ID10189=TJclClrTablePropertyMapRow.Destroy -ID1019=CombineELMSDataOfCOMSorSEGSDefinition@TEDISEFElement@TEDISEFDataObjectList -ID10190=TJclClrTablePropertyMapRow.FParentIdx -ID10191=TJclClrTablePropertyMapRow.FProperties -ID10192=TJclClrTablePropertyMapRow.FPropertyListIdx -ID10193=TJclClrTablePropertyMapRow.GetParent -ID10194=TJclClrTablePropertyMapRow.GetProperty@Integer -ID10195=TJclClrTablePropertyMapRow.GetPropertyCount -ID10196=TJclClrTablePropertyMapRow.Parent -ID10197=TJclClrTablePropertyMapRow.ParentIdx -ID10198=TJclClrTablePropertyMapRow.Properties -ID10199=TJclClrTablePropertyMapRow.PropertyCount +ID1010=CardinalSimpleEqualityCompare@Cardinal@Cardinal +ID10100=TIIDUnion +ID10101=TIIDUnion.Characteristics +ID10102=TIIDUnion.OriginalFirstThunk +ID10103=TImageArchitectureEntry +ID10104=TImageArchitectureHeader +ID10105=TImageArchiveMemberHeader +ID10106=TImageCoffSymbolsHeader +ID10107=TImageCorILMethodFat +ID10108=TImageCorILMethodHeader +ID10109=TImageCorILMethodHeader.Fat +ID1011=CardinalSimpleHashConvert@Cardinal +ID10110=TImageCorILMethodHeader.Tiny +ID10111=TImageCorILMethodSectEH +ID10112=TImageCorILMethodSectEHClauseFat +ID10113=TImageCorILMethodSectEHClauseSmall +ID10114=TImageCorILMethodSectEHFat +ID10115=TImageCorILMethodSectEHSmall +ID10116=TImageCorILMethodSectFat +ID10117=TImageCorILMethodSectHeader +ID10118=TImageCorILMethodSectHeader.Fat +ID10119=TImageCorILMethodSectHeader.Small +ID1012=CardinalSortProc +ID10120=TImageCorILMethodSectSmall +ID10121=TImageCorILMethodTiny +ID10122=TImageCorVTableFixup +ID10123=TImageCorVTableFixupArray +ID10124=TImageDataDirectory +ID10125=TImageDebugMisc +ID10126=TImageFileHeader +ID10127=TImageFunctionEntry +ID10128=TImageFunctionEntry64 +ID10129=TImageHlpLine +ID1013=Catalan +ID10130=TImageLineNumber +ID10131=TImageLoadConfigDirectory32 +ID10132=TImageLoadConfigDirectory64 +ID10133=TImageNtHeaders32 +ID10134=TImageNtHeaders64 +ID10135=TImageOptionalHeader32 +ID10136=TImageOptionalHeader64 +ID10137=TImageResourceDirectoryString +ID10138=TImageRomHeaders +ID10139=TImageRomOptionalHeader +ID1014=CATID_SafeForInitializing +ID10140=TImageSectionHeader +ID10141=TImageSeparateDebugHeader +ID10142=TImageThunkData32 +ID10143=TImageThunkData64 +ID10144=TImageTlsCallback +ID10145=TImageTlsDirectory32 +ID10146=TImageTlsDirectory64 +ID10147=TIMEQ_FOREVER +ID10148=TimeStampDOW@TTimeStamp +ID10149=TImgDelayDescrV1 +ID1015=CATID_SafeForScripting +ID10150=TImgDelayDescrV2 +ID10151=TImgLineNoType +ID10152=TImgLineNoType.SymbolTableIndex +ID10153=TImgLineNoType.VirtualAddress +ID10154=TImgSecHdrMisc +ID10155=TImgSecHdrMisc.PhysicalAddress +ID10156=TImgSecHdrMisc.VirtualSize +ID10157=TImportObjectHeader +ID10158=TImportObjectNameType +ID10159=TImportObjectType +ID1016=CBinMax +ID10160=TInt64ApplyFunction +ID10161=TInt64Compare +ID10162=TInt64EqualityCompare +ID10163=TInt64HashConvert +ID10164=TInt64IterateProcedure +ID10165=TInt64Setter +ID10166=TInt64SortProc +ID10167=TIntegerApplyFunction +ID10168=TIntegerCompare +ID10169=TIntegerEqualityCompare +ID1017=Cbrt10 +ID10170=TIntegerHashConvert +ID10171=TIntegerIterateProcedure +ID10172=TIntegerSet +ID10173=TIntegerSortProc +ID10174=TInternalFindStreamData +ID10175=TInternalFindStreamData.Context +ID10176=TInternalFindStreamData.FileHandle +ID10177=TInternalFindStreamData.StreamIds +ID10178=TIntfApplyFunction +ID10179=TIntfCompare +ID1018=Cbrt100 +ID10180=TIntfEqualityCompare +ID10181=TIntfHashConvert +ID10182=TIntfIterateProcedure +ID10183=TIntfSortProc +ID10184=TIterateProcedure +ID10185=TItrStart +ID10186=TJcl7zCompressArchive +ID10187=TJcl7zDecompressArchive +ID10188=TJcl7zUpdateArchive +ID10189=TJclAbstractContainer +ID1019=Cbrt2 +ID10190=TJclAbstractContainerBase +ID10191=TJclAbstractIterator +ID10192=TJclAbstractLockable +ID10193=TJclAddr +ID10194=TJclAddr32 +ID10195=TJclAddr64 +ID10196=TJclAllowedPowerOperation +ID10197=TJclAllowedPowerOperation.apoHibernate +ID10198=TJclAllowedPowerOperation.apoShutdown +ID10199=TJclAllowedPowerOperation.apoSuspend ID102=!!OVERLOADED_InsertTable_TEDISEFSet -ID1020=CombineELMSDataOfELMSDefinition@TEDISEFElement -ID10200=TJclClrTablePropertyMapRow.PropertyListIdx -ID10201=TJclClrTablePropertyPtr -ID10202=TJclClrTablePropertyPtr.GetRow@Integer -ID10203=TJclClrTablePropertyPtr.Rows -ID10204=TJclClrTablePropertyPtr.TableRowClass -ID10205=TJclClrTablePropertyPtrRow -ID10206=TJclClrTablePropertyPtrRow._Property -ID10207=TJclClrTablePropertyPtrRow.Create@TJclClrTable -ID10208=TJclClrTablePropertyPtrRow.FPropertyIdx -ID10209=TJclClrTablePropertyPtrRow.GetProperty -ID1021=CombineMem -ID10210=TJclClrTablePropertyPtrRow.PropertyIdx -ID10211=TJclClrTableRow -ID10212=TJclClrTableRow.Create@TJclClrTable -ID10213=TJclClrTableRow.DecodeResolutionScope@DWORD -ID10214=TJclClrTableRow.DecodeTypeDefOrRef@DWORD -ID10215=TJclClrTableRow.DumpIL -ID10216=TJclClrTableRow.FIndex -ID10217=TJclClrTableRow.FTable -ID10218=TJclClrTableRow.GetToken -ID10219=TJclClrTableRow.Index -ID1022=CombineReg -ID10220=TJclClrTableRow.Table -ID10221=TJclClrTableRow.Token -ID10222=TJclClrTableRow.Update -ID10223=TJclClrTableRowClass -ID10224=TJclClrTableStandAloneSig -ID10225=TJclClrTableStandAloneSig.GetRow@Integer -ID10226=TJclClrTableStandAloneSig.Rows -ID10227=TJclClrTableStandAloneSig.TableRowClass -ID10228=TJclClrTableStandAloneSigRow -ID10229=TJclClrTableStandAloneSigRow.Create@TJclClrTable -ID1023=CombineSEGSDataOfSEGSDefinition@TEDISEFSegment -ID10230=TJclClrTableStandAloneSigRow.FSignatureOffset -ID10231=TJclClrTableStandAloneSigRow.GetSignature -ID10232=TJclClrTableStandAloneSigRow.Signature -ID10233=TJclClrTableStandAloneSigRow.SignatureOffset -ID10234=TJclClrTableStream -ID10235=TJclClrTableStream.BigHeap -ID10236=TJclClrTableStream.Create@TJclPeMetadata@PClrStreamHeader -ID10237=TJclClrTableStream.Destroy -ID10238=TJclClrTableStream.DumpIL -ID10239=TJclClrTableStream.FHeader -ID1024=CombineSEGSDataOfSETSDefinition@TEDISEFSegment -ID10240=TJclClrTableStream.FindTable@TJclClrTableKind@TJclClrTable -ID10241=TJclClrTableStream.FTableCount -ID10242=TJclClrTableStream.FTables -ID10243=TJclClrTableStream.GetBigHeap@TJclClrHeapKind -ID10244=TJclClrTableStream.GetTable@TJclClrTableKind -ID10245=TJclClrTableStream.GetVersionString -ID10246=TJclClrTableStream.Header -ID10247=TJclClrTableStream.TableCount -ID10248=TJclClrTableStream.Tables -ID10249=TJclClrTableStream.Update -ID1025=CompareCLRVersions@string@string -ID10250=TJclClrTableStream.VersionString -ID10251=TJclClrTableTypeDef -ID10252=TJclClrTableTypeDef.GetRow@Integer -ID10253=TJclClrTableTypeDef.Rows -ID10254=TJclClrTableTypeDef.TableRowClass -ID10255=TJclClrTableTypeDefRow -ID10256=TJclClrTableTypeDefRow.Attributes -ID10257=TJclClrTableTypeDefRow.ClassLayout -ID10258=TJclClrTableTypeDefRow.ClassSemantics -ID10259=TJclClrTableTypeDefRow.Create@TJclClrTable -ID1026=CompilerExtensionBPI -ID10260=TJclClrTableTypeDefRow.Destroy -ID10261=TJclClrTableTypeDefRow.DumpIL -ID10262=TJclClrTableTypeDefRow.Extends -ID10263=TJclClrTableTypeDefRow.ExtendsIdx -ID10264=TJclClrTableTypeDefRow.FExtendsIdx -ID10265=TJclClrTableTypeDefRow.FFieldListIdx -ID10266=TJclClrTableTypeDefRow.FFields -ID10267=TJclClrTableTypeDefRow.FFlags -ID10268=TJclClrTableTypeDefRow.FieldCount -ID10269=TJclClrTableTypeDefRow.FieldListIdx -ID1027=CompilerExtensionDCP -ID10270=TJclClrTableTypeDefRow.Fields -ID10271=TJclClrTableTypeDefRow.Flags -ID10272=TJclClrTableTypeDefRow.FMethodListIdx -ID10273=TJclClrTableTypeDefRow.FMethods -ID10274=TJclClrTableTypeDefRow.FNameOffset -ID10275=TJclClrTableTypeDefRow.FNamespaceOffset -ID10276=TJclClrTableTypeDefRow.FullName -ID10277=TJclClrTableTypeDefRow.GetAttributes -ID10278=TJclClrTableTypeDefRow.GetClassLayout -ID10279=TJclClrTableTypeDefRow.GetClassSemantics -ID1028=CompilerExtensionDEF -ID10280=TJclClrTableTypeDefRow.GetExtends -ID10281=TJclClrTableTypeDefRow.GetField@Integer -ID10282=TJclClrTableTypeDefRow.GetFieldCount -ID10283=TJclClrTableTypeDefRow.GetFullName -ID10284=TJclClrTableTypeDefRow.GetMethod@Integer -ID10285=TJclClrTableTypeDefRow.GetMethodCount -ID10286=TJclClrTableTypeDefRow.GetName -ID10287=TJclClrTableTypeDefRow.GetNamespace -ID10288=TJclClrTableTypeDefRow.GetStringFormatting -ID10289=TJclClrTableTypeDefRow.GetVisibility -ID1029=CompilerExtensionDRC -ID10290=TJclClrTableTypeDefRow.HasField -ID10291=TJclClrTableTypeDefRow.HasMethod -ID10292=TJclClrTableTypeDefRow.MethodCount -ID10293=TJclClrTableTypeDefRow.MethodListIdx -ID10294=TJclClrTableTypeDefRow.Methods -ID10295=TJclClrTableTypeDefRow.Name -ID10296=TJclClrTableTypeDefRow.NameOffset -ID10297=TJclClrTableTypeDefRow.Namespace -ID10298=TJclClrTableTypeDefRow.NamespaceOffset -ID10299=TJclClrTableTypeDefRow.StringFormatting +ID1020=Cbrt3 +ID10200=TJclAllowedPowerOperations +ID10201=TJclAnsiCaptureOffset +ID10202=TJclAnsiCaptureOffset.FirstPos +ID10203=TJclAnsiCaptureOffset.LastPos +ID10204=TJclAnsiCaptureRange +ID10205=TJclAnsiCaptureRange.FirstPos +ID10206=TJclAnsiCaptureRange.LastPos +ID10207=TJclAnsiMappedTextReader +ID10208=TJclAnsiRegEx +ID10209=TJclAnsiRegEx.CalloutHandler@pcre_callout_block +ID1021=CbrtPi +ID10210=TJclAnsiRegEx.CaptureCount +ID10211=TJclAnsiRegEx.CaptureNameCount +ID10212=TJclAnsiRegEx.CaptureNames +ID10213=TJclAnsiRegEx.CaptureOffset +ID10214=TJclAnsiRegEx.CaptureRanges +ID10215=TJclAnsiRegEx.Captures +ID10216=TJclAnsiRegEx.Compile@AnsiString@Boolean@Boolean +ID10217=TJclAnsiRegEx.Create +ID10218=TJclAnsiRegEx.Destroy +ID10219=TJclAnsiRegEx.DfaMode +ID1022=CCHBinName +ID10220=TJclAnsiRegEx.ErrorCode +ID10221=TJclAnsiRegEx.ErrorMessage +ID10222=TJclAnsiRegEx.ErrorOffset +ID10223=TJclAnsiRegEx.FCaptureCount +ID10224=TJclAnsiRegEx.FChangedCaptures +ID10225=TJclAnsiRegEx.FCode +ID10226=TJclAnsiRegEx.FDfaMode +ID10227=TJclAnsiRegEx.FErrorCode +ID10228=TJclAnsiRegEx.FErrorMessage +ID10229=TJclAnsiRegEx.FErrorOffset +ID1023=CCHPaperName +ID10230=TJclAnsiRegEx.FExtra +ID10231=TJclAnsiRegEx.FOnCallout +ID10232=TJclAnsiRegEx.FOptions +ID10233=TJclAnsiRegEx.FPattern +ID10234=TJclAnsiRegEx.FResultValues +ID10235=TJclAnsiRegEx.FSubject +ID10236=TJclAnsiRegEx.FVector +ID10237=TJclAnsiRegEx.FVectorSize +ID10238=TJclAnsiRegEx.FViewChanges +ID10239=TJclAnsiRegEx.GetAPIOptions@Boolean +ID1024=CelsiusAbsoluteZero +ID10240=TJclAnsiRegEx.GetCapture@Integer +ID10241=TJclAnsiRegEx.GetCaptureName@Integer +ID10242=TJclAnsiRegEx.GetCaptureNameCount +ID10243=TJclAnsiRegEx.GetCaptureRange@Integer +ID10244=TJclAnsiRegEx.GetNamedCapture@AnsiString +ID10245=TJclAnsiRegEx.GetResult +ID10246=TJclAnsiRegEx.IndexOfName@String +ID10247=TJclAnsiRegEx.IsNameValid@String +ID10248=TJclAnsiRegEx.Match@AnsiString@Cardinal +ID10249=TJclAnsiRegEx.NamedCaptures +ID1025=CelsiusBoilingPoint +ID10250=TJclAnsiRegEx.oncallout +ID10251=TJclAnsiRegEx.Options +ID10252=TJclAnsiRegEx.Pattern +ID10253=TJclAnsiRegEx.Result +ID10254=TJclAnsiRegEx.SetCapture@Integer@AnsiString +ID10255=TJclAnsiRegEx.SetNamedCapture@Ansistring@Ansistring +ID10256=TJclAnsiRegEx.Subject +ID10257=TJclAnsiRegEx.ViewChanges +ID10258=TJclAnsiRegExCallout +ID10259=TJclAnsiRegExOption +ID1026=CelsiusFreezingPoint +ID10260=TJclAnsiRegExOption.roAnchored +ID10261=TJclAnsiRegExOption.roAutoCallout +ID10262=TJclAnsiRegExOption.roDfaFirstLine +ID10263=TJclAnsiRegExOption.roDfaRestart +ID10264=TJclAnsiRegExOption.roDfaShortest +ID10265=TJclAnsiRegExOption.roDollarEndOnly +ID10266=TJclAnsiRegExOption.roDotAll +ID10267=TJclAnsiRegExOption.roDupNames +ID10268=TJclAnsiRegExOption.roExtended +ID10269=TJclAnsiRegExOption.roExtra +ID1027=CelsiusTo@TTemperatureType@Float +ID10270=TJclAnsiRegExOption.roIgnoreCase +ID10271=TJclAnsiRegExOption.roMultiLine +ID10272=TJclAnsiRegExOption.roNewLineAny +ID10273=TJclAnsiRegExOption.roNewLineCR +ID10274=TJclAnsiRegExOption.roNewLineCRLF +ID10275=TJclAnsiRegExOption.roNewLineLF +ID10276=TJclAnsiRegExOption.roNoAutoCapture +ID10277=TJclAnsiRegExOption.roNotBOL +ID10278=TJclAnsiRegExOption.roNotEmpty +ID10279=TJclAnsiRegExOption.roNotEOL +ID1028=CelsiusToRankine@Float +ID10280=TJclAnsiRegExOption.roNoUTF8Check +ID10281=TJclAnsiRegExOption.roPartial +ID10282=TJclAnsiRegExOption.roUnGreedy +ID10283=TJclAnsiRegExOption.roUTF8 +ID10284=TJclAnsiRegExOptions +ID10285=TJclAnsiStrAbstractCollection +ID10286=TJclAnsiStrAbstractContainer +ID10287=TJclAnsiStrAnsiStrBucket +ID10288=TJclAnsiStrAnsiStrHashEntry +ID10289=TJclAnsiStrAnsiStrHashMap +ID1029=CelsiusToReaumur@Float +ID10290=TJclAnsiStrAnsiStrSortedEntry +ID10291=TJclAnsiStrAnsiStrSortedMap +ID10292=TJclAnsiStrArrayIterator +ID10293=TJclAnsiStrArrayList +ID10294=TJclAnsiStrArraySet +ID10295=TJclAnsiStrBinaryNode +ID10296=TJclAnsiStrBinaryTree +ID10297=TJclAnsiStrBinaryTreeIterator +ID10298=TJclAnsiStrBucket +ID10299=TJclAnsiStream ID103=!!OVERLOADED_IsConsole_TJclConsole -ID1030=CompilerExtensionLIB -ID10300=TJclClrTableTypeDefRow.Update -ID10301=TJclClrTableTypeDefRow.UpdateFields -ID10302=TJclClrTableTypeDefRow.UpdateMethods -ID10303=TJclClrTableTypeDefRow.Visibility -ID10304=TJclClrTableTypeRef -ID10305=TJclClrTableTypeRef.GetRow@Integer -ID10306=TJclClrTableTypeRef.Rows -ID10307=TJclClrTableTypeRef.TableRowClass -ID10308=TJclClrTableTypeRefRow -ID10309=TJclClrTableTypeRefRow.Create@TJclClrTable -ID1031=CompilerExtensionMAP -ID10310=TJclClrTableTypeRefRow.DumpIL -ID10311=TJclClrTableTypeRefRow.FNameOffset -ID10312=TJclClrTableTypeRefRow.FNamespaceOffset -ID10313=TJclClrTableTypeRefRow.FResolutionScopeIdx -ID10314=TJclClrTableTypeRefRow.FullName -ID10315=TJclClrTableTypeRefRow.GetFullName -ID10316=TJclClrTableTypeRefRow.GetName -ID10317=TJclClrTableTypeRefRow.GetNamespace -ID10318=TJclClrTableTypeRefRow.GetResolutionScope -ID10319=TJclClrTableTypeRefRow.GetResolutionScopeName -ID1032=CompilerExtensionTDS -ID10320=TJclClrTableTypeRefRow.Name -ID10321=TJclClrTableTypeRefRow.NameOffset -ID10322=TJclClrTableTypeRefRow.Namespace -ID10323=TJclClrTableTypeRefRow.NamespaceOffset -ID10324=TJclClrTableTypeRefRow.ResolutionScope -ID10325=TJclClrTableTypeRefRow.ResolutionScopeIdx -ID10326=TJclClrTableTypeRefRow.ResolutionScopeName -ID10327=TJclClrTableTypeSpec -ID10328=TJclClrTableTypeSpec.GetRow@Integer -ID10329=TJclClrTableTypeSpec.Rows -ID1033=CompleteDelphiSet -ID10330=TJclClrTableTypeSpec.TableRowClass -ID10331=TJclClrTableTypeSpecRow -ID10332=TJclClrTableTypeSpecRow.Create@TJclClrTable -ID10333=TJclClrTableTypeSpecRow.FSignatureOffset -ID10334=TJclClrTableTypeSpecRow.GetSignature -ID10335=TJclClrTableTypeSpecRow.Signature -ID10336=TJclClrTableTypeSpecRow.SignatureOffset -ID10337=TJclClrToken -ID10338=TJclClrTypeAttribute -ID10339=TJclClrTypeAttribute.taAbstract -ID1034=ComplexPrecision -ID10340=TJclClrTypeAttribute.taBeforeFieldInit -ID10341=TJclClrTypeAttribute.taHasSecurity -ID10342=TJclClrTypeAttribute.taImport -ID10343=TJclClrTypeAttribute.taRTSpecialName -ID10344=TJclClrTypeAttribute.taSealed -ID10345=TJclClrTypeAttribute.taSerializable -ID10346=TJclClrTypeAttribute.taSpecialName -ID10347=TJclClrTypeAttributes -ID10348=TJclClrTypeVisibility -ID10349=TJclClrTypeVisibility.tvNestedAssembly -ID1035=COMPRESSION_ENGINE_HIBER -ID10350=TJclClrTypeVisibility.tvNestedFamANDAssem -ID10351=TJclClrTypeVisibility.tvNestedFamily -ID10352=TJclClrTypeVisibility.tvNestedFamORAssem -ID10353=TJclClrTypeVisibility.tvNestedPrivate -ID10354=TJclClrTypeVisibility.tvNestedPublic -ID10355=TJclClrTypeVisibility.tvNotPublic -ID10356=TJclClrTypeVisibility.tvPublic -ID10357=TJclClrUserStringStream -ID10358=TJclClrUserStringStream.At@DWORD -ID10359=TJclClrUserStringStream.BlobToString@TJclClrBlobRecord -ID1036=COMPRESSION_ENGINE_MAXIMUM -ID10360=TJclClrUserStringStream.GetOffset@Integer -ID10361=TJclClrUserStringStream.GetString@Integer -ID10362=TJclClrUserStringStream.GetStringCount -ID10363=TJclClrUserStringStream.Offsets -ID10364=TJclClrUserStringStream.StringCount -ID10365=TJclClrUserStringStream.Strings -ID10366=TJclClrVTableFixupRecord -ID10367=TJclClrVTableFixupRecord.Count -ID10368=TJclClrVTableFixupRecord.Create@PImageCorVTableFixup -ID10369=TJclClrVTableFixupRecord.Data -ID1037=COMPRESSION_ENGINE_STANDARD -ID10370=TJclClrVTableFixupRecord.FData -ID10371=TJclClrVTableFixupRecord.GetCount -ID10372=TJclClrVTableFixupRecord.GetKinds -ID10373=TJclClrVTableFixupRecord.GetRVA -ID10374=TJclClrVTableFixupRecord.Kinds -ID10375=TJclClrVTableFixupRecord.RVA -ID10376=TJclClrVTableFixupRecord.VTableKinds@DWORD -ID10377=TJclClrVTableFixupRecord.VTableKinds@TJclClrVTableKinds -ID10378=TJclClrVTableKind -ID10379=TJclClrVTableKind.vtk32Bit -ID1038=Conjugate@TPolarComplex -ID10380=TJclClrVTableKind.vtk64Bit -ID10381=TJclClrVTableKind.vtkCallMostDerived -ID10382=TJclClrVTableKind.vtkFromUnmanaged -ID10383=TJclClrVTableKinds -ID10384=TJclCommandLineTool -ID10385=TJclCommandLineTool.AddPathOption@string@string -ID10386=TJclCommandLineTool.Create@string -ID10387=TJclCommandLineTool.Destroy -ID10388=TJclCommandLineTool.Execute@string -ID10389=TJclCommandLineTool.ExeName -ID1039=Conjugate@TRectComplex -ID10390=TJclCommandLineTool.FExeName -ID10391=TJclCommandLineTool.FOptions -ID10392=TJclCommandLineTool.FOutput -ID10393=TJclCommandLineTool.FOutputCallback -ID10394=TJclCommandLineTool.GetExeName -ID10395=TJclCommandLineTool.GetOptions -ID10396=TJclCommandLineTool.GetOutput -ID10397=TJclCommandLineTool.GetOutputCallback -ID10398=TJclCommandLineTool.Output -ID10399=TJclCommandLineTool.SetOutputCallback@TTextHandler +ID1030=CharEqualNoCase@Char@Char +ID10300=TJclAnsiStrEncoding +ID10301=TJclAnsiStrHashEntry +ID10302=TJclAnsiStrHashMap +ID10303=TJclAnsiStrHashSet +ID10304=TJclAnsiStringList +ID10305=TJclAnsiStringListSortCompare +ID10306=TJclAnsiStringObjectHolder +ID10307=TJclAnsiStrings +ID10308=TJclAnsiStrIntfBucket +ID10309=TJclAnsiStrIntfHashEntry +ID1031=CharFitsWithinDots@string@Integer +ID10310=TJclAnsiStrIntfHashMap +ID10311=TJclAnsiStrIntfSortedEntry +ID10312=TJclAnsiStrIntfSortedMap +ID10313=TJclAnsiStrLinkedList +ID10314=TJclAnsiStrLinkedListItem +ID10315=TJclAnsiStrLinkedListIterator +ID10316=TJclAnsiStrQueue +ID10317=TJclAnsiStrSortedEntry +ID10318=TJclAnsiStrSortedMap +ID10319=TJclAnsiStrStack +ID1032=CharHex@Char +ID10320=TJclAnsiStrTree +ID10321=TJclAnsiStrTreeIterator +ID10322=TJclAnsiStrTreeNode +ID10323=TJclAnsiStrVector +ID10324=TJclAnsiStrVectorIterator +ID10325=TJclAPMDecompressArchive +ID10326=TJclAppInstances +ID10327=TJclAppInstances.AppWnds +ID10328=TJclAppInstances.BringAppWindowToFront +ID10329=TJclAppInstances.CheckInstance +ID1033=CharIPos@string@Char@Integer +ID10330=TJclAppInstances.CheckMultipleInstances +ID10331=TJclAppInstances.CheckSingleInstance +ID10332=TJclAppInstances.Create +ID10333=TJclAppInstances.Destroy +ID10334=TJclAppInstances.FCPID +ID10335=TJclAppInstances.FMapping +ID10336=TJclAppInstances.FMappingView +ID10337=TJclAppInstances.FMessageID +ID10338=TJclAppInstances.FOptex +ID10339=TJclAppInstances.GetApplicationWnd +ID1034=CharIPos@string@Char@SizeInt +ID10340=TJclAppInstances.GetAppWnds@Integer +ID10341=TJclAppInstances.GetInstanceCount +ID10342=TJclAppInstances.GetInstanceIndex@DWORD +ID10343=TJclAppInstances.GetProcessIDs@Integer +ID10344=TJclAppInstances.InitData +ID10345=TJclAppInstances.InstanceCount +ID10346=TJclAppInstances.InstanceIndex +ID10347=TJclAppInstances.KillInstance +ID10348=TJclAppInstances.MessageID +ID10349=TJclAppInstances.NotifyInstances@Longint@Longint +ID1035=CharIsAlpha@Char +ID10350=TJclAppInstances.ProcessIDs +ID10351=TJclAppInstances.RemoveInstance +ID10352=TJclAppInstances.SendCmdLineParams@string@THandle +ID10353=TJclAppInstances.SendData +ID10354=TJclAppInstances.SendString +ID10355=TJclAppInstances.SendStrings +ID10356=TJclAppInstances.SetForegroundWindow98 +ID10357=TJclAppInstances.SwitchTo +ID10358=TJclAppInstances.UserNotify +ID10359=TJclAppInstDataKind +ID1036=CharIsAlphaNum@Char +ID10360=TJclArjDecompressArchive +ID10361=TJclArrayIterator +ID10362=TJclArraySet +ID10363=TJclArraySet.Add@TObject +ID10364=TJclArraySet.AddAll@IJclCollection +ID10365=TJclArraySet.BinarySearch@TObject +ID10366=TJclArraySet.Contains@TObject +ID10367=TJclArraySet.Insert@Integer@TObject +ID10368=TJclArraySet.Intersect@IJclCollection +ID10369=TJclArraySet.Subtract@IJclCollection +ID1037=CharIsBlank@Char +ID10370=TJclArraySet.Union@IJclCollection +ID10371=TJclASet +ID10372=TJclASet.Clear +ID10373=TJclASet.GetBit@Integer +ID10374=TJclASet.GetRange@Integer@Integer@Boolean +ID10375=TJclASet.Invert +ID10376=TJclASet.SetBit@Integer@Boolean +ID10377=TJclASet.SetRange@Integer@Integer@Boolean +ID10378=TJclAttributeMatch +ID10379=TJclAttributeMatch.amAny +ID1038=CharIsControl@Char +ID10380=TJclAttributeMatch.amCustom +ID10381=TJclAttributeMatch.amExact +ID10382=TJclAttributeMatch.amSubSetOf +ID10383=TJclAttributeMatch.amSuperSetOf +ID10384=TJclAudioSummaryInformation +ID10385=TJclAudioSummaryInformation.AverageDataRate +ID10386=TJclAudioSummaryInformation.ChannelCount +ID10387=TJclAudioSummaryInformation.Compression +ID10388=TJclAudioSummaryInformation.Format +ID10389=TJclAudioSummaryInformation.GetFMTID +ID1039=CharIsDelete@Char +ID10390=TJclAudioSummaryInformation.SampleRate +ID10391=TJclAudioSummaryInformation.SampleSize +ID10392=TJclAudioSummaryInformation.StreamName +ID10393=TJclAudioSummaryInformation.StreamNumber +ID10394=TJclAudioSummaryInformation.TimeLength +ID10395=TJclAutoGrowStrategy +ID10396=TJclAutoPackStrategy +ID10397=TJclAutoPtr +ID10398=TJclAutoStream +ID10399=TJclBaseListener ID104=!!OVERLOADED_IsEqual_TJclRational -ID1040=Containers -ID10400=TJclCompressionLevel -ID10401=TJclCompressionStream -ID10402=TJclCompressionStream.Create@TStream -ID10403=TJclCompressionStream.Destroy -ID10404=TJclCompressionStream.FBuffer -ID10405=TJclCompressionStream.FBufferSize -ID10406=TJclCompressionStream.FOnProgress -ID10407=TJclCompressionStream.FStream -ID10408=TJclCompressionStream.OnProgress -ID10409=TJclCompressionStream.Progress@TObject -ID1041=ContinueCount@TJclCounter -ID10410=TJclCompressionStream.Read@@Longint -ID10411=TJclCompressionStream.Reset -ID10412=TJclCompressionStream.Seek@Int64@TSeekOrigin -ID10413=TJclCompressionStream.SetBufferSize@Cardinal -ID10414=TJclCompressionStream.Write@@Longint -ID10415=TJclCompressStream -ID10416=TJclCompressStream.Create@TStream -ID10417=TJclCompressStream.Flush -ID10418=TJclCompressStreamProgressCallback -ID10419=TJclConsole -ID1042=ConvertMapFileToJdbgFile@TFileName@string@Integer -ID10420=TJclConsole.ActiveScreen -ID10421=TJclConsole.ActiveScreenIndex -ID10422=TJclConsole.Add@Smallint@Smallint -ID10423=TJclConsole.Alloc -ID10424=TJclConsole.Create -ID10425=TJclConsole.Default -ID10426=TJclConsole.Delete@Longword -ID10427=TJclConsole.Destroy -ID10428=TJclConsole.FActiveScreenIndex -ID10429=TJclConsole.FInput -ID1043=ConvertMapFileToJdbgFile@TFileName@string@Integer@Integer@Integer -ID10430=TJclConsole.FOnClose -ID10431=TJclConsole.FOnCtrlBreak -ID10432=TJclConsole.FOnCtrlC -ID10433=TJclConsole.FOnLogOff -ID10434=TJclConsole.FOnShutdown -ID10435=TJclConsole.Free -ID10436=TJclConsole.FScreens -ID10437=TJclConsole.GetActiveScreen -ID10438=TJclConsole.GetInputCodePage -ID10439=TJclConsole.GetOutputCodePage -ID1044=ConvertTemperature@TTemperatureType@TTemperatureType@Float -ID10440=TJclConsole.GetScreen@Longword -ID10441=TJclConsole.GetScreenCount -ID10442=TJclConsole.GetTitle -ID10443=TJclConsole.Input -ID10444=TJclConsole.InputCodePage -ID10445=TJclConsole.IsConsole@HMODULE -ID10446=TJclConsole.IsConsole@TFileName -ID10447=TJclConsole.MouseButtonCount -ID10448=TJclConsole.OnClose -ID10449=TJclConsole.OnCtrlBreak -ID1045=Copy@IJclIntfIterator@Integer@IJclIntfIterator -ID10450=TJclConsole.OnCtrlC -ID10451=TJclConsole.OnLogOff -ID10452=TJclConsole.OnShutdown -ID10453=TJclConsole.OutputCodePage -ID10454=TJclConsole.Remove@TJclScreenBuffer -ID10455=TJclConsole.ScreenCount -ID10456=TJclConsole.Screens -ID10457=TJclConsole.SetActiveScreen@TJclScreenBuffer -ID10458=TJclConsole.SetActiveScreenIndex@Longword -ID10459=TJclConsole.SetInputCodePage@DWORD -ID1046=Copy@IJclIterator@Integer@IJclIterator -ID10460=TJclConsole.SetOutputCodePage@DWORD -ID10461=TJclConsole.SetTitle@string -ID10462=TJclConsole.Shutdown -ID10463=TJclConsole.Title -ID10464=TJclConsoleInputMode -ID10465=TJclConsoleInputMode.imEcho -ID10466=TJclConsoleInputMode.imLine -ID10467=TJclConsoleInputMode.imMouse -ID10468=TJclConsoleInputMode.imProcessed -ID10469=TJclConsoleInputMode.imWindow -ID1047=Copy@IJclStrIterator@Integer@IJclStrIterator -ID10470=TJclConsoleInputModes -ID10471=TJclConsoleOutputMode -ID10472=TJclConsoleOutputMode.omProcessed -ID10473=TJclConsoleOutputMode.omWrapAtEol -ID10474=TJclConsoleOutputModes -ID10475=TJclConstantSymbolInfo -ID10476=TJclConstantSymbolInfo.Create@PSymbolInfo -ID10477=TJclConstantSymbolInfo.FNameIndex -ID10478=TJclConstantSymbolInfo.FTypeIndex -ID10479=TJclConstantSymbolInfo.FValue -ID1048=COR_DELETED_NAME_LENGTH -ID10480=TJclConstantSymbolInfo.NameIndex -ID10481=TJclConstantSymbolInfo.TypeIndex -ID10482=TJclConstantSymbolInfo.Value -ID10483=TJclControlPanelSummaryInformation -ID10484=TJclControlPanelSummaryInformation.GetFMTID -ID10485=TJclCRC16Stream -ID10486=TJclCRC16Stream.AfterBlockRead -ID10487=TJclCRC16Stream.BeforeBlockWrite -ID10488=TJclCRC16Stream.Create@TStream@Boolean -ID10489=TJclCRC32Stream -ID1049=COR_ILMETHOD_SECT_SMALL_MAX_DATASIZE -ID10490=TJclCRC32Stream.AfterBlockRead -ID10491=TJclCRC32Stream.BeforeBlockWrite -ID10492=TJclCRC32Stream.Create@TStream@Boolean -ID10493=TJclDataSymbolInfo -ID10494=TJclDataSymbolInfo.Create@PSymbolInfo -ID10495=TJclDataSymbolInfo.FNameIndex -ID10496=TJclDataSymbolInfo.FOffset -ID10497=TJclDataSymbolInfo.FTypeIndex -ID10498=TJclDataSymbolInfo.NameIndex -ID10499=TJclDataSymbolInfo.Offset +ID1040=CharIsDigit@Char +ID10400=TJclBaseNotificationMessage +ID10401=TJclBaseNotifier +ID10402=TJclBCBInstallation +ID10403=TJclBCBInstallation.ConfigFileName@string +ID10404=TJclBCBInstallation.Create@string +ID10405=TJclBCBInstallation.Destroy +ID10406=TJclBCBInstallation.GetEnvironmentVariables +ID10407=TJclBCBInstallation.GetLatestUpdatePackForVersion@Integer +ID10408=TJclBCBInstallation.PackageSourceFileExtension +ID10409=TJclBCBInstallation.ProjectSourceFileExtension +ID1041=CharIsDriveLetter@char +ID10410=TJclBCBInstallation.RadToolKind +ID10411=TJclBCBInstallation.RadToolName +ID10412=TJclBCC32 +ID10413=TJclBCC32.Create@TJclBorRADToolInstallation +ID10414=TJclBCC32.GetExeName +ID10415=TJclBCC32.SupportsLibSuffix +ID10416=TJclBDSInstallation +ID10417=TJclBDSInstallation.AddToCppBrowsingPath@string +ID10418=TJclBDSInstallation.AddToCppLibraryPath@string +ID10419=TJclBDSInstallation.AddToCppSearchPath@string +ID1042=CharIsFracDigit@AnsiChar +ID10420=TJclBDSInstallation.CleanPackageCache@string +ID10421=TJclBDSInstallation.CompileDelphiDotNetProject@string@string@TJclBorPlatform@string@string +ID10422=TJclBDSInstallation.CompileDelphiPackage@string@string@string@string +ID10423=TJclBDSInstallation.CompileDelphiProject@string@string@string +ID10424=TJclBDSInstallation.CppBrowsingPath +ID10425=TJclBDSInstallation.CppLibraryPath +ID10426=TJclBDSInstallation.CppSearchPath +ID10427=TJclBDSInstallation.Create@string +ID10428=TJclBDSInstallation.DCCIL +ID10429=TJclBDSInstallation.Destroy +ID1043=CharIsFracDigit@Char +ID10430=TJclBDSInstallation.DualPackageInstallation +ID10431=TJclBDSInstallation.FDCCIL +ID10432=TJclBDSInstallation.FDualPackageInstallation +ID10433=TJclBDSInstallation.FHelp2Manager +ID10434=TJclBDSInstallation.FPdbCreate +ID10435=TJclBDSInstallation.GetBPLOutputPath +ID10436=TJclBDSInstallation.GetCommonProjectsDir +ID10437=TJclBDSInstallation.GetCommonProjectsDirectory@string@Integer +ID10438=TJclBDSInstallation.GetCppBrowsingPath +ID10439=TJclBDSInstallation.GetCppLibraryPath +ID1044=CharIsHexDigit@AnsiChar +ID10440=TJclBDSInstallation.GetCppPathsKeyName +ID10441=TJclBDSInstallation.GetCppSearchPath +ID10442=TJclBDSInstallation.GetDCPOutputPath +ID10443=TJclBDSInstallation.GetDebugDCUPath +ID10444=TJclBDSInstallation.GetDefaultProjectsDir +ID10445=TJclBDSInstallation.GetDefaultProjectsDirectory@string@Integer +ID10446=TJclBDSInstallation.GetEnvironmentVariables +ID10447=TJclBDSInstallation.GetLatestUpdatePackForVersion@Integer +ID10448=TJclBDSInstallation.GetLibraryBrowsingPath +ID10449=TJclBDSInstallation.GetLibrarySearchPath +ID1045=CharIsHexDigit@Char +ID10450=TJclBDSInstallation.GetMaxDelphiCLRVersion +ID10451=TJclBDSInstallation.GetMsBuildEnvOption@string +ID10452=TJclBDSInstallation.GetMsBuildEnvOptionsFileName +ID10453=TJclBDSInstallation.GetName +ID10454=TJclBDSInstallation.GetValid +ID10455=TJclBDSInstallation.GetVclIncludeDir +ID10456=TJclBDSInstallation.Help2Manager +ID10457=TJclBDSInstallation.MaxDelphiCLRVersion +ID10458=TJclBDSInstallation.PackageSourceFileExtension +ID10459=TJclBDSInstallation.PdbCreate +ID1046=CharIsLower@Char +ID10460=TJclBDSInstallation.ProjectSourceFileExtension +ID10461=TJclBDSInstallation.RadToolKind +ID10462=TJclBDSInstallation.RadToolName +ID10463=TJclBDSInstallation.RegisterPackage@string@string +ID10464=TJclBDSInstallation.RemoveFromCppBrowsingPath@string +ID10465=TJclBDSInstallation.RemoveFromCppLibraryPath@string +ID10466=TJclBDSInstallation.RemoveFromCppSearchPath@string +ID10467=TJclBDSInstallation.SetCppBrowsingPath@TJclBorRADToolPath +ID10468=TJclBDSInstallation.SetCppLibraryPath@TJclBorRADToolPath +ID10469=TJclBDSInstallation.SetCppSearchPath@TJclBorRADToolPath +ID1047=CharIsNumber@AnsiChar +ID10470=TJclBDSInstallation.SetDebugDCUPath@TJclBorRADToolPath +ID10471=TJclBDSInstallation.SetDualPackageInstallation@Boolean +ID10472=TJclBDSInstallation.SetLibraryBrowsingPath@TJclBorRADToolPath +ID10473=TJclBDSInstallation.SetLibrarySearchPath@TJclBorRADToolPath +ID10474=TJclBDSInstallation.SetMsBuildEnvOption@string@string +ID10475=TJclBDSInstallation.SetOutputCallback@TTextHandler +ID10476=TJclBDSInstallation.UnregisterPackage@string +ID10477=TJclBinaryInstruction +ID10478=TJclBinaryNode +ID10479=TJclBinaryNode.Color +ID1048=CharIsNumber@Char +ID10480=TJclBinaryNode.Left +ID10481=TJclBinaryNode.Parent +ID10482=TJclBinaryNode.Right +ID10483=TJclBinaryNode.TJclBinaryNode=recordObj +ID10484=TJclBinaryTree +ID10485=TJclBinaryTree.Add@TObject +ID10486=TJclBinaryTree.AddAll@IJclCollection +ID10487=TJclBinaryTree.Clear +ID10488=TJclBinaryTree.Clone +ID10489=TJclBinaryTree.Contains@TObject +ID1049=CharIsNumberChar@Char +ID10490=TJclBinaryTree.ContainsAll@IJclCollection +ID10491=TJclBinaryTree.Create@TCompare +ID10492=TJclBinaryTree.Destroy +ID10493=TJclBinaryTree.Equals@IJclCollection +ID10494=TJclBinaryTree.FComparator +ID10495=TJclBinaryTree.FCount +ID10496=TJclBinaryTree.First +ID10497=TJclBinaryTree.FRoot +ID10498=TJclBinaryTree.FTraverseOrder +ID10499=TJclBinaryTree.GetTraverseOrder ID105=!!OVERLOADED_IsWideIndex_TJclClrTable -ID1050=COR_VERSION_MAJOR -ID10500=TJclDataSymbolInfo.TypeIndex -ID10501=TJclDbgHeader -ID10502=TJclDbgHeader.CheckSum -ID10503=TJclDbgHeader.CheckSumValid -ID10504=TJclDbgHeader.LineNumbers -ID10505=TJclDbgHeader.ModuleName -ID10506=TJclDbgHeader.Signature -ID10507=TJclDbgHeader.SourceNames -ID10508=TJclDbgHeader.Symbols -ID10509=TJclDbgHeader.Units -ID1051=COR_VERSION_MAJOR_V2 -ID10510=TJclDbgHeader.Version -ID10511=TJclDbgHeader.Words -ID10512=TJclDCC -ID10513=TJclDCC32 -ID10514=TJclDCC32.AddProjectOptions@string@string -ID10515=TJclDCC32.Compile@string -ID10516=TJclDCC32.ConfigFileName -ID10517=TJclDCC32.Create@TJclBorRADToolInstallation -ID10518=TJclDCC32.Execute@string -ID10519=TJclDCC32.FOnBeforeSaveOptionsToFile -ID1052=COR_VERSION_MINOR -ID10520=TJclDCC32.GetConfigFileName -ID10521=TJclDCC32.GetExeName -ID10522=TJclDCC32.MakePackage@string@string@string@string -ID10523=TJclDCC32.MakeProject@string@string@string@string -ID10524=TJclDCC32.OnBeforeSaveOptionsToFile -ID10525=TJclDCC32.SaveOptionsToFile@string -ID10526=TJclDCC32.SetDefaultOptions -ID10527=TJclDCC32.SupportsLibSuffix -ID10528=TJclDCCIL -ID10529=TJclDCCIL.FMaxCLRVersion -ID1053=COR_VTABLE_32BIT -ID10530=TJclDCCIL.GetConfigFileName -ID10531=TJclDCCIL.GetExeName -ID10532=TJclDCCIL.GetMaxCLRVersion -ID10533=TJclDCCIL.MakeProject@string@string@string -ID10534=TJclDCCIL.MaxCLRVersion -ID10535=TJclDCCIL.SetDefaultOptions -ID10536=TJclDebugInfoSourceClass -ID10537=TJclDebugInfoSymbols -ID10538=TJclDebugInfoSymbols.CleanupDebugSymbols -ID10539=TJclDebugInfoSymbols.GetLocationInfo@Pointer@TJclLocationInfo -ID1054=COR_VTABLE_64BIT -ID10540=TJclDebugInfoSymbols.InitializeDebugSymbols -ID10541=TJclDebugInfoSymbols.InitializeSource -ID10542=TJclDebugInfoSymbols.LoadDebugFunctions -ID10543=TJclDebugInfoSymbols.UnloadDebugFunctions -ID10544=TJclDebugInfoTD32 -ID10545=TJclDebugInfoTD32.Destroy -ID10546=TJclDebugInfoTD32.FImage -ID10547=TJclDebugInfoTD32.GetLocationInfo@Pointer@TJclLocationInfo -ID10548=TJclDebugInfoTD32.InitializeSource -ID10549=TJclDebugThread -ID1055=COR_VTABLE_CALL_MOST_DERIVED -ID10550=TJclDebugThread.Create@Boolean@string -ID10551=TJclDebugThread.Destroy -ID10552=TJclDebugThread.DoHandleException -ID10553=TJclDebugThread.DoNotify -ID10554=TJclDebugThread.DoSyncHandleException -ID10555=TJclDebugThread.FSyncException -ID10556=TJclDebugThread.FThreadName -ID10557=TJclDebugThread.GetThreadInfo -ID10558=TJclDebugThread.HandleException@TObject -ID10559=TJclDebugThread.SyncException -ID1056=COR_VTABLE_FROM_UNMANAGED -ID10560=TJclDebugThread.ThreadInfo -ID10561=TJclDebugThread.ThreadName -ID10562=TJclDebugThreadList -ID10563=TJclDebugThreadList.Create -ID10564=TJclDebugThreadList.Destroy -ID10565=TJclDebugThreadList.DoSyncException@TJclDebugThread -ID10566=TJclDebugThreadList.DoSyncThreadRegistered -ID10567=TJclDebugThreadList.DoSyncThreadUnregistered -ID10568=TJclDebugThreadList.DoThreadRegistered@TThread -ID10569=TJclDebugThreadList.DoThreadUnregistered@TThread -ID1057=COR_VTABLEGAP_NAME_LENGTH -ID10570=TJclDebugThreadList.FList -ID10571=TJclDebugThreadList.FLock -ID10572=TJclDebugThreadList.FOnSyncException -ID10573=TJclDebugThreadList.FOnThreadRegistered -ID10574=TJclDebugThreadList.FOnThreadUnregistered -ID10575=TJclDebugThreadList.FReadLock -ID10576=TJclDebugThreadList.FRegSyncThreadID -ID10577=TJclDebugThreadList.FUnregSyncThreadID -ID10578=TJclDebugThreadList.GetThreadClassNames@DWORD -ID10579=TJclDebugThreadList.GetThreadHandle@Integer -ID1058=CorBindToCurrentRuntime@PWideChar@TCLSID@TIID@ -ID10580=TJclDebugThreadList.GetThreadID@Integer -ID10581=TJclDebugThreadList.GetThreadIDCount -ID10582=TJclDebugThreadList.GetThreadInfos@DWORD -ID10583=TJclDebugThreadList.GetThreadNames@DWORD -ID10584=TJclDebugThreadList.GetThreadValues@DWORD@Integer -ID10585=TJclDebugThreadList.IndexOfThreadID@DWORD -ID10586=TJclDebugThreadList.InternalRegisterThread@TThread@string -ID10587=TJclDebugThreadList.InternalUnregisterThread@TThread -ID10588=TJclDebugThreadList.Lock -ID10589=TJclDebugThreadList.OnSyncException -ID1059=CorBindToRuntime@PWideChar@PWideChar@TCLSID@TIID@ -ID10590=TJclDebugThreadList.OnThreadRegistered -ID10591=TJclDebugThreadList.OnThreadUnregistered -ID10592=TJclDebugThreadList.RegisterThread@TThread@string -ID10593=TJclDebugThreadList.ThreadClassNames -ID10594=TJclDebugThreadList.ThreadHandles -ID10595=TJclDebugThreadList.ThreadIDCount -ID10596=TJclDebugThreadList.ThreadIDs -ID10597=TJclDebugThreadList.ThreadInfos -ID10598=TJclDebugThreadList.ThreadNames -ID10599=TJclDebugThreadList.UnregisterThread@TThread +ID1050=CharIsPrintable@Char +ID10500=TJclBinaryTree.IsEmpty +ID10501=TJclBinaryTree.Last +ID10502=TJclBinaryTree.Remove@TObject +ID10503=TJclBinaryTree.RemoveAll@IJclCollection +ID10504=TJclBinaryTree.RetainAll@IJclCollection +ID10505=TJclBinaryTree.RotateLeft@PJclBinaryNode +ID10506=TJclBinaryTree.RotateRight@PJclBinaryNode +ID10507=TJclBinaryTree.SetTraverseOrder@TJclTraverseOrder +ID10508=TJclBinaryTree.Size +ID10509=TJclBinaryTreeIterator +ID1051=CharIsPunctuation@Char +ID10510=TJclBinDbgNameCache +ID10511=TJclBinDbgNameCache.Addr +ID10512=TJclBinDbgNameCache.FirstWord +ID10513=TJclBinDbgNameCache.SecondWord +ID10514=TJclBooleanEvent +ID10515=TJclBooleanEventBroadcast +ID10516=TJclBooleanProcedureEvent +ID10517=TJclBooleanProcedureEventBroadcast +ID10518=TJclBorDesigner +ID10519=TJclBorDesigner.bdCLX +ID1052=CharIsReturn@Char +ID10520=TJclBorDesigner.bdVCL +ID10521=TJclBorDesigners +ID10522=TJclBorlandCommandLineTool +ID10523=TJclBorlandCommandLineTool.AddPathOption@string@string +ID10524=TJclBorlandCommandLineTool.CheckOutputValid +ID10525=TJclBorlandCommandLineTool.Create@TJclBorRADToolInstallation +ID10526=TJclBorlandCommandLineTool.Destroy +ID10527=TJclBorlandCommandLineTool.Execute@string +ID10528=TJclBorlandCommandLineTool.FileName +ID10529=TJclBorlandCommandLineTool.FOptions +ID1053=CharIsSpace@Char +ID10530=TJclBorlandCommandLineTool.FOutput +ID10531=TJclBorlandCommandLineTool.FOutputCallback +ID10532=TJclBorlandCommandLineTool.GetExeName +ID10533=TJclBorlandCommandLineTool.GetFileName +ID10534=TJclBorlandCommandLineTool.GetOptions +ID10535=TJclBorlandCommandLineTool.GetOutput +ID10536=TJclBorlandCommandLineTool.GetOutputCallback +ID10537=TJclBorlandCommandLineTool.Options +ID10538=TJclBorlandCommandLineTool.Output +ID10539=TJclBorlandCommandLineTool.OutputCallback +ID1054=CharIsUpper@Char +ID10540=TJclBorlandCommandLineTool.SetOutputCallback@TTextHandler +ID10541=TJclBorlandCommandLineToolEvent +ID10542=TJclBorlandMake +ID10543=TJclBorlandMake.GetExeName +ID10544=TJclBorlandOpenHelp +ID10545=TJclBorlandOpenHelp.AddHelpFile@string@string +ID10546=TJclBorlandOpenHelp.ContentFileName +ID10547=TJclBorlandOpenHelp.GetContentFileName +ID10548=TJclBorlandOpenHelp.GetGidFileName +ID10549=TJclBorlandOpenHelp.GetIndexFileName +ID1055=CharIsValidIdentifierLetter@AnsiChar +ID10550=TJclBorlandOpenHelp.GetLinkFileName +ID10551=TJclBorlandOpenHelp.GetProjectFileName +ID10552=TJclBorlandOpenHelp.GidFileName +ID10553=TJclBorlandOpenHelp.IndexFileName +ID10554=TJclBorlandOpenHelp.LinkFileName +ID10555=TJclBorlandOpenHelp.ProjectFileName +ID10556=TJclBorlandOpenHelp.ReadFileName@string +ID10557=TJclBorlandOpenHelp.RemoveHelpFile@string@string +ID10558=TJclBorPersonalities +ID10559=TJclBorPersonality +ID1056=CharIsValidIdentifierLetter@Char +ID10560=TJclBorPersonality.bpBCBuilder32 +ID10561=TJclBorPersonality.bpBCBuilder64 +ID10562=TJclBorPersonality.bpCSBuilder32 +ID10563=TJclBorPersonality.bpCSBuilder64 +ID10564=TJclBorPersonality.bpDelphi32 +ID10565=TJclBorPersonality.bpDelphi64 +ID10566=TJclBorPersonality.bpDelphiNet32 +ID10567=TJclBorPersonality.bpDelphiNet64 +ID10568=TJclBorPersonality.bpDesign +ID10569=TJclBorPersonality.bpUnknown +ID1057=CharIsWhiteSpace@Char +ID10570=TJclBorPersonality.bpVisualBasic32 +ID10571=TJclBorPersonality.bpVisualBasic64 +ID10572=TJclBorPlatform +ID10573=TJclBorPlatform.bp32bit +ID10574=TJclBorPlatform.bp64bit +ID10575=TJclBorRADToolEdition +ID10576=TJclBorRADToolEdition.deARC +ID10577=TJclBorRADToolEdition.deCSS +ID10578=TJclBorRADToolEdition.dePRO +ID10579=TJclBorRADToolEdition.deSTD +ID1058=CharIsWildcard@AnsiChar +ID10580=TJclBorRADToolIdePackages +ID10581=TJclBorRADToolIdePackages.AddExpert@string@string +ID10582=TJclBorRADToolIdePackages.AddIDEPackage@string@string +ID10583=TJclBorRADToolIdePackages.AddPackage@string@string +ID10584=TJclBorRADToolIdePackages.Count +ID10585=TJclBorRADToolIdePackages.Create@TJclBorRADToolInstallation +ID10586=TJclBorRADToolIdePackages.Destroy +ID10587=TJclBorRADToolIdePackages.ExpertCount +ID10588=TJclBorRADToolIdePackages.ExpertDescriptions +ID10589=TJclBorRADToolIdePackages.ExpertFileNames +ID1059=CharIsWildcard@Char +ID10590=TJclBorRADToolIdePackages.FDisabledPackages +ID10591=TJclBorRADToolIdePackages.FExperts +ID10592=TJclBorRADToolIdePackages.FKnownIDEPackages +ID10593=TJclBorRADToolIdePackages.FKnownPackages +ID10594=TJclBorRADToolIdePackages.GetCount +ID10595=TJclBorRADToolIdePackages.GetExpertCount +ID10596=TJclBorRADToolIdePackages.GetExpertDescriptions@Integer +ID10597=TJclBorRADToolIdePackages.GetExpertFileNames@Integer +ID10598=TJclBorRADToolIdePackages.GetIDECount +ID10599=TJclBorRADToolIdePackages.GetIDEPackageDescriptions@Integer ID106=!!OVERLOADED_LineNumberFromAddr_TJclTD32InfoScanner -ID1060=CorBindToRuntimeByCfg@IStream@DWORD@DWORD@TCLSID@TIID@ -ID10600=TJclDebugThreadNotifyEvent -ID10601=TJclDecompressStream -ID10602=TJclDecompressStream.Create@TStream -ID10603=TJclDefaultUnitVersioningProvider -ID10604=TJclDefaultUnitVersioningProvider.Create -ID10605=TJclDefaultUnitVersioningProvider.Destroy -ID10606=TJclDefaultUnitVersioningProvider.FModules -ID10607=TJclDefaultUnitVersioningProvider.IndexOfInstance@THandle -ID10608=TJclDefaultUnitVersioningProvider.LoadModuleUnitVersioningInfo@THandle -ID10609=TJclDefaultUnitVersioningProvider.ReleaseModuleUnitVersioningInfo@THandle -ID1061=CorBindToRuntimeEx@PWideChar@PWideChar@DWORD@TCLSID@TIID@ -ID10610=TJclDelegatedStream -ID10611=TJclDelegatedStream.FOnRead -ID10612=TJclDelegatedStream.FOnSeek -ID10613=TJclDelegatedStream.FOnSize -ID10614=TJclDelegatedStream.FOnWrite -ID10615=TJclDelegatedStream.OnRead -ID10616=TJclDelegatedStream.OnSeek -ID10617=TJclDelegatedStream.OnSize -ID10618=TJclDelegatedStream.OnWrite -ID10619=TJclDelegatedStream.Read@@Longint -ID1062=CorBindToRuntimeHost@PWideChar@PWideChar@PWideChar@Pointer@DWORD@TCLSID@TIID@ -ID10620=TJclDelegatedStream.Seek@Int64@TSeekOrigin -ID10621=TJclDelegatedStream.SetSize@Int64 -ID10622=TJclDelegatedStream.Write@@Longint -ID10623=TJclDelphiInstallation -ID10624=TJclDelphiInstallation.ConfigFileName@string -ID10625=TJclDelphiInstallation.Create@string -ID10626=TJclDelphiInstallation.Destroy -ID10627=TJclDelphiInstallation.GetEnvironmentVariables -ID10628=TJclDelphiInstallation.GetLatestUpdatePackForVersion@Integer -ID10629=TJclDelphiInstallation.InstallPackage@string@string@string -ID1063=CorExitProcess@Integer -ID10630=TJclDelphiInstallation.PackageSourceFileExtension -ID10631=TJclDelphiInstallation.ProjectSourceFileExtension -ID10632=TJclDelphiInstallation.RadToolKind -ID10633=TJclDelphiInstallation.RadToolName -ID10634=TJclDisplacedSummaryInformation -ID10635=TJclDisplacedSummaryInformation.GetFMTID -ID10636=TJclDocSummaryInformation -ID10637=TJclDocSummaryInformation.ByteCount -ID10638=TJclDocSummaryInformation.Category -ID10639=TJclDocSummaryInformation.Company -ID1064=CorMarkThreadInThreadPool -ID10640=TJclDocSummaryInformation.DocParts -ID10641=TJclDocSummaryInformation.GetFMTID -ID10642=TJclDocSummaryInformation.HeadingPair -ID10643=TJclDocSummaryInformation.HiddenCount -ID10644=TJclDocSummaryInformation.LineCount -ID10645=TJclDocSummaryInformation.LinksDirty -ID10646=TJclDocSummaryInformation.Manager -ID10647=TJclDocSummaryInformation.MMClipCount -ID10648=TJclDocSummaryInformation.NoteCount -ID10649=TJclDocSummaryInformation.ParCount -ID1065=Cos@TRectComplex -ID10650=TJclDocSummaryInformation.PresFormat -ID10651=TJclDocSummaryInformation.Scale -ID10652=TJclDocSummaryInformation.SlideCount -ID10653=TJclDRMSummaryInformation -ID10654=TJclDRMSummaryInformation.GetFMTID -ID10655=TJclEasyStream -ID10656=TJclEasyStream.IsEqual@TStream -ID10657=TJclEasyStream.ReadBoolean -ID10658=TJclEasyStream.ReadChar -ID10659=TJclEasyStream.ReadCString -ID1066=CosH@TRectComplex -ID10660=TJclEasyStream.ReadCurrency -ID10661=TJclEasyStream.ReadDateTime -ID10662=TJclEasyStream.ReadDouble -ID10663=TJclEasyStream.ReadExtended -ID10664=TJclEasyStream.ReadInt64 -ID10665=TJclEasyStream.ReadInteger -ID10666=TJclEasyStream.ReadShortString -ID10667=TJclEasyStream.ReadSingle -ID10668=TJclEasyStream.ReadSizedString -ID10669=TJclEasyStream.WriteBoolean@Boolean -ID1067=Cot@TRectComplex -ID10670=TJclEasyStream.WriteChar@Char -ID10671=TJclEasyStream.WriteCurrency@Currency -ID10672=TJclEasyStream.WriteDateTime@TDateTime -ID10673=TJclEasyStream.WriteDouble@Double -ID10674=TJclEasyStream.WriteExtended@Extended -ID10675=TJclEasyStream.WriteInt64@Int64 -ID10676=TJclEasyStream.WriteInteger@Integer -ID10677=TJclEasyStream.WriteShortString@ShortString -ID10678=TJclEasyStream.WriteSingle@Single -ID10679=TJclEasyStream.WriteSizedString@string -ID1068=CotH@TRectComplex -ID10680=TJclEasyStream.WriteStringDelimitedByNull@string -ID10681=TJclEmptyStream -ID10682=TJclEmptyStream.Read@@Longint -ID10683=TJclEmptyStream.Seek@Int64@TSeekOrigin -ID10684=TJclEmptyStream.SetSize@Int64 -ID10685=TJclEmptyStream.SetSize@Longint -ID10686=TJclEmptyStream.Write@@Longint -ID10687=TJclEntry -ID10688=TJclEntry.Key -ID10689=TJclEntry.Value -ID1069=CountBitsCleared@Cardinal -ID10690=TJclEntryArray -ID10691=TJclEventStream -ID10692=TJclEventStream.Create@TStream@TStreamNotifyEvent@Boolean -ID10693=TJclEventStream.DoAfterStreamChange -ID10694=TJclEventStream.DoBeforeStreamChange -ID10695=TJclEventStream.DoNotification -ID10696=TJclEventStream.FNotification -ID10697=TJclEventStream.OnNotification -ID10698=TJclEventStream.Read@@Longint -ID10699=TJclEventStream.Seek@Int64@TSeekOrigin +ID1060=CharLastPos@AnsiString@AnsiChar@Integer +ID10600=TJclBorRADToolIdePackages.GetIDEPackageFileNames@Integer +ID10601=TJclBorRADToolIdePackages.GetPackageDescriptions@Integer +ID10602=TJclBorRADToolIdePackages.GetPackageDisabled@Integer +ID10603=TJclBorRADToolIdePackages.GetPackageFileNames@Integer +ID10604=TJclBorRADToolIdePackages.IDECount +ID10605=TJclBorRADToolIdePackages.IDEPackageDescriptions +ID10606=TJclBorRADToolIdePackages.IDEPackageFileNames +ID10607=TJclBorRADToolIdePackages.PackageDescriptions +ID10608=TJclBorRADToolIdePackages.PackageDisabled +ID10609=TJclBorRADToolIdePackages.PackageEntryToFileName@string +ID1061=CharLastPos@AnsiString@AnsiChar@SizeInt +ID10610=TJclBorRADToolIdePackages.PackageFileNames +ID10611=TJclBorRADToolIdePackages.ReadPackages +ID10612=TJclBorRADToolIdePackages.RemoveDisabled@string +ID10613=TJclBorRADToolIdePackages.RemoveExpert@string +ID10614=TJclBorRADToolIdePackages.RemoveIDEPackage@string +ID10615=TJclBorRADToolIdePackages.RemovePackage@string +ID10616=TJclBorRADToolIdeTool +ID10617=TJclBorRADToolIdeTool.CheckIndex@Integer +ID10618=TJclBorRADToolIdeTool.Count +ID10619=TJclBorRADToolIdeTool.Create@TJclBorRADToolInstallation +ID1062=CharLastPos@string@Char@Integer +ID10620=TJclBorRADToolIdeTool.FKey +ID10621=TJclBorRADToolIdeTool.GetCount +ID10622=TJclBorRADToolIdeTool.GetParameters@Integer +ID10623=TJclBorRADToolIdeTool.GetPath@Integer +ID10624=TJclBorRADToolIdeTool.GetTitle@Integer +ID10625=TJclBorRADToolIdeTool.GetWorkingDir@Integer +ID10626=TJclBorRADToolIdeTool.IndexOfPath@string +ID10627=TJclBorRADToolIdeTool.IndexOfTitle@string +ID10628=TJclBorRADToolIdeTool.Key +ID10629=TJclBorRADToolIdeTool.Parameters +ID1063=CharLastPos@string@Char@SizeInt +ID10630=TJclBorRADToolIdeTool.Path +ID10631=TJclBorRADToolIdeTool.RemoveIndex@Integer +ID10632=TJclBorRADToolIdeTool.SetCount@Integer +ID10633=TJclBorRADToolIdeTool.SetParameters@Integer@string +ID10634=TJclBorRADToolIdeTool.SetPath@Integer@string +ID10635=TJclBorRADToolIdeTool.SetTitle@Integer@string +ID10636=TJclBorRADToolIdeTool.SetWorkingDir@Integer@string +ID10637=TJclBorRADToolIdeTool.Title +ID10638=TJclBorRADToolIdeTool.WorkingDir +ID10639=TJclBorRADToolInstallation +ID1064=CharLower@Char +ID10640=TJclBorRADToolInstallation.AddToDebugDCUPath@string +ID10641=TJclBorRADToolInstallation.AddToLibraryBrowsingPath@string +ID10642=TJclBorRADToolInstallation.AddToLibrarySearchPath@string +ID10643=TJclBorRADToolInstallation.AnyInstanceRunning +ID10644=TJclBorRADToolInstallation.BCC32 +ID10645=TJclBorRADToolInstallation.BinFolderName +ID10646=TJclBorRADToolInstallation.BPLOutputPath +ID10647=TJclBorRADToolInstallation.Bpr2Mak +ID10648=TJclBorRADToolInstallation.CommandLineTools +ID10649=TJclBorRADToolInstallation.CommonProjectsDir +ID1065=CharPos@string@Char@Integer +ID10650=TJclBorRADToolInstallation.CompileBCBPackage@string@string@string +ID10651=TJclBorRADToolInstallation.CompileBCBProject@string@string@string +ID10652=TJclBorRADToolInstallation.CompileDelphiPackage@string@string@string +ID10653=TJclBorRADToolInstallation.CompileDelphiPackage@string@string@string@string +ID10654=TJclBorRADToolInstallation.CompileDelphiProject@string@string@string +ID10655=TJclBorRADToolInstallation.CompilePackage@string@string@string +ID10656=TJclBorRADToolInstallation.CompileProject@string@string@string +ID10657=TJclBorRADToolInstallation.ConfigData +ID10658=TJclBorRADToolInstallation.ConfigDataLocation +ID10659=TJclBorRADToolInstallation.ConfigFileName@string +ID1066=CharPos@string@Char@SizeInt +ID10660=TJclBorRADToolInstallation.Create@string +ID10661=TJclBorRADToolInstallation.DCC +ID10662=TJclBorRADToolInstallation.DCC32 +ID10663=TJclBorRADToolInstallation.DCPOutputPath +ID10664=TJclBorRADToolInstallation.DebugDCUPath +ID10665=TJclBorRADToolInstallation.DefaultProjectsDir +ID10666=TJclBorRADToolInstallation.Description +ID10667=TJclBorRADToolInstallation.Destroy +ID10668=TJclBorRADToolInstallation.Edition +ID10669=TJclBorRADToolInstallation.EditionAsText +ID1067=CharReplace@string@Char@Char +ID10670=TJclBorRADToolInstallation.EnvironmentVariables +ID10671=TJclBorRADToolInstallation.ExtractPaths@TJclBorRADToolPath@TStrings +ID10672=TJclBorRADToolInstallation.FBCC32 +ID10673=TJclBorRADToolInstallation.FBinFolderName +ID10674=TJclBorRADToolInstallation.FBpr2Mak +ID10675=TJclBorRADToolInstallation.FCommandLineTools +ID10676=TJclBorRADToolInstallation.FConfigData +ID10677=TJclBorRADToolInstallation.FConfigDataLocation +ID10678=TJclBorRADToolInstallation.FDCC32 +ID10679=TJclBorRADToolInstallation.FEdition +ID1068=CharsetInfoFromCharsetName@string +ID10680=TJclBorRADToolInstallation.FEditionStr +ID10681=TJclBorRADToolInstallation.FEnvironmentVariables +ID10682=TJclBorRADToolInstallation.FGlobals +ID10683=TJclBorRADToolInstallation.FIdePackages +ID10684=TJclBorRADToolInstallation.FIdeTools +ID10685=TJclBorRADToolInstallation.FIDEVersionNumber +ID10686=TJclBorRADToolInstallation.FIDEVersionNumberStr +ID10687=TJclBorRADToolInstallation.FindFolderInPath@string@TStrings +ID10688=TJclBorRADToolInstallation.FInstalledUpdatePack +ID10689=TJclBorRADToolInstallation.FJdbgCreate +ID1069=CharsetNameFromCodePage@Word +ID10690=TJclBorRADToolInstallation.FJdbgInsert +ID10691=TJclBorRADToolInstallation.FMake +ID10692=TJclBorRADToolInstallation.FMapCreate +ID10693=TJclBorRADToolInstallation.FMapDelete +ID10694=TJclBorRADToolInstallation.FOpenHelp +ID10695=TJclBorRADToolInstallation.FOutputCallback +ID10696=TJclBorRADToolInstallation.FPalette +ID10697=TJclBorRADToolInstallation.FPersonalities +ID10698=TJclBorRADToolInstallation.FRepository +ID10699=TJclBorRADToolInstallation.FRootDir ID107=!!OVERLOADED_Load_TJclClrAppDomain -ID1070=CountBitsCleared@Int64 -ID10700=TJclEventStream.Seek@Longint@Word -ID10701=TJclEventStream.SetSize@Int64 -ID10702=TJclEventStream.SetSize@Longint -ID10703=TJclEventStream.Write@@Longint -ID10704=TJclExceptNotifyPriority -ID10705=TJclExceptNotifyPriority.npFirstChain -ID10706=TJclExceptNotifyPriority.npNormal -ID10707=TJclExceptNotifyProcEx -ID10708=TJclFileMappingRoundOffset -ID10709=TJclFileMappingRoundOffset.rvDown -ID1071=CountBitsCleared@Integer -ID10710=TJclFileMappingRoundOffset.rvUp -ID10711=TJclFileMappingStream -ID10712=TJclFileMappingStream.Close -ID10713=TJclFileMappingStream.Create@string@Word -ID10714=TJclFileMappingStream.Destroy -ID10715=TJclFileMappingStream.FFileHandle -ID10716=TJclFileMappingStream.FMapping -ID10717=TJclFileMappingStream.Write@@Longint -ID10718=TJclFileMaskComparator -ID10719=TJclFileMaskComparator.Compare@string -ID1072=CountBitsCleared@Pointer@Cardinal -ID10720=TJclFileMaskComparator.Count -ID10721=TJclFileMaskComparator.Create -ID10722=TJclFileMaskComparator.CreateMultiMasks -ID10723=TJclFileMaskComparator.Exts -ID10724=TJclFileMaskComparator.FExts -ID10725=TJclFileMaskComparator.FFileMask -ID10726=TJclFileMaskComparator.FileMask -ID10727=TJclFileMaskComparator.FNames -ID10728=TJclFileMaskComparator.FSeparator -ID10729=TJclFileMaskComparator.FWildChars -ID1073=CountBitsCleared@Shortint -ID10730=TJclFileMaskComparator.GetCount -ID10731=TJclFileMaskComparator.GetExts@Integer -ID10732=TJclFileMaskComparator.GetMasks@Integer -ID10733=TJclFileMaskComparator.GetNames@Integer -ID10734=TJclFileMaskComparator.Masks -ID10735=TJclFileMaskComparator.Names -ID10736=TJclFileMaskComparator.Separator -ID10737=TJclFileMaskComparator.SetFileMask@string -ID10738=TJclFileMaskComparator.SetSeparator@Char -ID10739=TJclFilePropertySet -ID1074=CountBitsCleared@Smallint -ID10740=TJclFilePropertySet.Create@IPropertyStorage -ID10741=TJclFilePropertySet.DeleteProperty@TPropID -ID10742=TJclFilePropertySet.DeleteProperty@WideString -ID10743=TJclFilePropertySet.DeletePropertyName@TPropID -ID10744=TJclFilePropertySet.Destroy -ID10745=TJclFilePropertySet.EnumProperties@TJclFileSummaryPropCallback -ID10746=TJclFilePropertySet.FPropertyStorage -ID10747=TJclFilePropertySet.GetAnsiStringProperty@Integer -ID10748=TJclFilePropertySet.GetBooleanProperty@Integer -ID10749=TJclFilePropertySet.GetBSTRProperty@Integer -ID1075=CountBitsCleared@Word -ID10750=TJclFilePropertySet.GetCardinalProperty@Integer -ID10751=TJclFilePropertySet.GetClipDataProperty@Integer -ID10752=TJclFilePropertySet.GetFileTimeProperty@Integer -ID10753=TJclFilePropertySet.GetFMTID -ID10754=TJclFilePropertySet.GetIntegerProperty@Integer -ID10755=TJclFilePropertySet.GetProperty@TPropID -ID10756=TJclFilePropertySet.GetProperty@WideString -ID10757=TJclFilePropertySet.GetPropertyName@TPropID -ID10758=TJclFilePropertySet.GetTCALPSTRProperty@Integer -ID10759=TJclFilePropertySet.GetTCAPROPVARIANTProperty@Integer -ID1076=CountBitsSet@Cardinal -ID10760=TJclFilePropertySet.GetWideStringProperty@Integer -ID10761=TJclFilePropertySet.GetWordProperty@Integer -ID10762=TJclFilePropertySet.SetAnsiStringProperty@Integer@AnsiString -ID10763=TJclFilePropertySet.SetBooleanProperty@Integer@Boolean -ID10764=TJclFilePropertySet.SetBSTRProperty@Integer@WideString -ID10765=TJclFilePropertySet.SetCardinalProperty@Integer@Cardinal -ID10766=TJclFilePropertySet.SetClipDataProperty@Integer@PClipData -ID10767=TJclFilePropertySet.SetFileTimeProperty@Integer@TFileTime -ID10768=TJclFilePropertySet.SetIntegerProperty@Integer@Integer -ID10769=TJclFilePropertySet.SetProperty@TPropID@TPropVariant -ID1077=CountBitsSet@Int64 -ID10770=TJclFilePropertySet.SetProperty@WideString@TPropVariant@TPropID -ID10771=TJclFilePropertySet.SetPropertyName@TPropID@WideString -ID10772=TJclFilePropertySet.SetTCALPSTRProperty@Integer@TCALPSTR -ID10773=TJclFilePropertySet.SetTCAPROPVARIANTProperty@Integer@TCAPROPVARIANT -ID10774=TJclFilePropertySet.SetWideStringProperty@Integer@WideString -ID10775=TJclFilePropertySet.SetWordProperty@Integer@Word -ID10776=TJclFilePropertySetClass -ID10777=TJclFileStream -ID10778=TJclFileStream.Create@string@Word@Cardinal -ID10779=TJclFileStream.Destroy -ID1078=CountBitsSet@Integer -ID10780=TJclFileSummary -ID10781=TJclFileSummary.AccessMode -ID10782=TJclFileSummary.Create@WideString@TJclFileSummaryAccess@TJclFileSummaryShare@Boolean@Boolean -ID10783=TJclFileSummary.CreatePropertySet@TJclFilePropertySetClass@Boolean -ID10784=TJclFileSummary.DeletePropertySet@TGUID -ID10785=TJclFileSummary.DeletePropertySet@TJclFilePropertySetClass -ID10786=TJclFileSummary.Destroy -ID10787=TJclFileSummary.EnumPropertySet@TJclFileSummaryPropSetCallback -ID10788=TJclFileSummary.FAccessMode -ID10789=TJclFileSummary.FFileName -ID1079=CountBitsSet@Pointer@Cardinal -ID10790=TJclFileSummary.FileName -ID10791=TJclFileSummary.FShareMode -ID10792=TJclFileSummary.FStorage -ID10793=TJclFileSummary.GetPropertySet@TGUID -ID10794=TJclFileSummary.GetPropertySet@TGUID@ -ID10795=TJclFileSummary.GetPropertySet@TJclFilePropertySetClass@ -ID10796=TJclFileSummary.ShareMode -ID10797=TJclFileSummaryAccess -ID10798=TJclFileSummaryAccess.fsaRead -ID10799=TJclFileSummaryAccess.fsaReadWrite +ID1070=CharToggleCase@Char +ID10700=TJclBorRADToolInstallation.FVersionNumber +ID10701=TJclBorRADToolInstallation.FVersionNumberStr +ID10702=TJclBorRADToolInstallation.GetBCC32 +ID10703=TJclBorRADToolInstallation.GetBPLOutputPath +ID10704=TJclBorRADToolInstallation.GetBpr2Mak +ID10705=TJclBorRADToolInstallation.GetCommonProjectsDir +ID10706=TJclBorRADToolInstallation.GetDCC32 +ID10707=TJclBorRADToolInstallation.GetDCPOutputPath +ID10708=TJclBorRADToolInstallation.GetDebugDCUPath +ID10709=TJclBorRADToolInstallation.GetDefaultProjectsDir +ID1071=CharToUCS4@Char +ID10710=TJclBorRADToolInstallation.GetDescription +ID10711=TJclBorRADToolInstallation.GetEditionAsText +ID10712=TJclBorRADToolInstallation.GetEnvironmentVariables +ID10713=TJclBorRADToolInstallation.GetGlobals +ID10714=TJclBorRADToolInstallation.GetIdeExeBuildNumber +ID10715=TJclBorRADToolInstallation.GetIdeExeFileName +ID10716=TJclBorRADToolInstallation.GetIdePackages +ID10717=TJclBorRADToolInstallation.GetIsTurboExplorer +ID10718=TJclBorRADToolInstallation.GetLatestUpdatePack +ID10719=TJclBorRADToolInstallation.GetLatestUpdatePackForVersion@Integer +ID1072=CharToWideChar@AnsiChar +ID10720=TJclBorRADToolInstallation.GetLibraryBrowsingPath +ID10721=TJclBorRADToolInstallation.GetLibrarySearchPath +ID10722=TJclBorRADToolInstallation.GetMake +ID10723=TJclBorRADToolInstallation.GetName +ID10724=TJclBorRADToolInstallation.GetPalette +ID10725=TJclBorRADToolInstallation.GetRepository +ID10726=TJclBorRADToolInstallation.GetSupportsLibSuffix +ID10727=TJclBorRADToolInstallation.GetUpdateNeeded +ID10728=TJclBorRADToolInstallation.GetValid +ID10729=TJclBorRADToolInstallation.GetVclIncludeDir +ID1073=CharType@Char +ID10730=TJclBorRADToolInstallation.Globals +ID10731=TJclBorRADToolInstallation.IdeExeBuildNumber +ID10732=TJclBorRADToolInstallation.IdeExeFileName +ID10733=TJclBorRADToolInstallation.IdePackages +ID10734=TJclBorRADToolInstallation.IdeTools +ID10735=TJclBorRADToolInstallation.IDEVersionNumber +ID10736=TJclBorRADToolInstallation.IDEVersionNumberStr +ID10737=TJclBorRADToolInstallation.InstallBCBExpert@string@string@string +ID10738=TJclBorRADToolInstallation.InstallBCBIdePackage@string@string@string +ID10739=TJclBorRADToolInstallation.InstallBCBPackage@string@string@string +ID1074=CharUpper@Char +ID10740=TJclBorRADToolInstallation.InstallDelphiExpert@string@string@string +ID10741=TJclBorRADToolInstallation.InstallDelphiIdePackage@string@string@string +ID10742=TJclBorRADToolInstallation.InstallDelphiPackage@string@string@string +ID10743=TJclBorRADToolInstallation.InstalledUpdatePack +ID10744=TJclBorRADToolInstallation.InstallExpert@string@string@string +ID10745=TJclBorRADToolInstallation.InstallIDEPackage@string@string@string +ID10746=TJclBorRADToolInstallation.InstallPackage@string@string@string +ID10747=TJclBorRADToolInstallation.IsBDSPersonality +ID10748=TJclBorRADToolInstallation.IsTurboExplorer +ID10749=TJclBorRADToolInstallation.JdbgCreate +ID1075=CheckCrc16@array of Byte@Integer@Word +ID10750=TJclBorRADToolInstallation.JdbgInsert +ID10751=TJclBorRADToolInstallation.LatestUpdatePack +ID10752=TJclBorRADToolInstallation.LibFolderName +ID10753=TJclBorRADToolInstallation.LibraryBrowsingPath +ID10754=TJclBorRADToolInstallation.LibrarySearchPath +ID10755=TJclBorRADToolInstallation.Make +ID10756=TJclBorRADToolInstallation.MapCreate +ID10757=TJclBorRADToolInstallation.MapDelete +ID10758=TJclBorRADToolInstallation.Name +ID10759=TJclBorRADToolInstallation.OpenHelp +ID1076=CheckCrc16_A +ID10760=TJclBorRADToolInstallation.OutputCallback +ID10761=TJclBorRADToolInstallation.OutputFileDelete@string +ID10762=TJclBorRADToolInstallation.OutputString@string +ID10763=TJclBorRADToolInstallation.PackageSourceFileExtension +ID10764=TJclBorRADToolInstallation.Palette +ID10765=TJclBorRADToolInstallation.Personalities +ID10766=TJclBorRADToolInstallation.ProcessMapFile@string +ID10767=TJclBorRADToolInstallation.ProjectSourceFileExtension +ID10768=TJclBorRADToolInstallation.RadToolKind +ID10769=TJclBorRADToolInstallation.RadToolName +ID1077=CheckCrc16_A@array of Byte@Word +ID10770=TJclBorRADToolInstallation.ReadInformation +ID10771=TJclBorRADToolInstallation.RegisterExpert@string@string +ID10772=TJclBorRADToolInstallation.RegisterIDEPackage@string@string +ID10773=TJclBorRADToolInstallation.RegisterPackage@string@string +ID10774=TJclBorRADToolInstallation.RemoveFromDebugDCUPath@string +ID10775=TJclBorRADToolInstallation.RemoveFromLibraryBrowsingPath@string +ID10776=TJclBorRADToolInstallation.RemoveFromLibrarySearchPath@string +ID10777=TJclBorRADToolInstallation.RemoveFromPath@string@string +ID10778=TJclBorRADToolInstallation.Repository +ID10779=TJclBorRADToolInstallation.RootDir +ID1078=CheckCrc16_A@TCrc16Table@array of Byte@Word +ID10780=TJclBorRADToolInstallation.SetDebugDCUPath@TJclBorRADToolPath +ID10781=TJclBorRADToolInstallation.SetLibraryBrowsingPath@TJclBorRADToolPath +ID10782=TJclBorRADToolInstallation.SetLibrarySearchPath@TJclBorRADToolPath +ID10783=TJclBorRADToolInstallation.SetOutputCallback@TTextHandler +ID10784=TJclBorRADToolInstallation.SubstitutePath@string +ID10785=TJclBorRADToolInstallation.SupportsBCB +ID10786=TJclBorRADToolInstallation.SupportsLibSuffix +ID10787=TJclBorRADToolInstallation.SupportsVCL +ID10788=TJclBorRADToolInstallation.SupportsVisualCLX +ID10789=TJclBorRADToolInstallation.UninstallBCBExpert@string@string +ID1079=CheckCrc16_P +ID10790=TJclBorRADToolInstallation.UninstallBCBIdePackage@string@string@string +ID10791=TJclBorRADToolInstallation.UninstallBCBPackage@string@string@string +ID10792=TJclBorRADToolInstallation.UninstallDelphiExpert@string@string +ID10793=TJclBorRADToolInstallation.UninstallDelphiIdePackage@string@string@string +ID10794=TJclBorRADToolInstallation.UninstallDelphiPackage@string@string@string +ID10795=TJclBorRADToolInstallation.UninstallExpert@string@string +ID10796=TJclBorRADToolInstallation.UninstallIDEPackage@string@string@string +ID10797=TJclBorRADToolInstallation.UninstallPackage@string@string@string +ID10798=TJclBorRADToolInstallation.UnregisterExpert@string +ID10799=TJclBorRADToolInstallation.UnregisterIDEPackage@string ID108=!!OVERLOADED_LoadFromFile_TEDISEFFile -ID1080=CountBitsSet@ShortInt -ID10800=TJclFileSummaryAccess.fsaWrite -ID10801=TJclFileSummaryInformation -ID10802=TJclFileSummaryInformation.AppName -ID10803=TJclFileSummaryInformation.Author -ID10804=TJclFileSummaryInformation.CharCount -ID10805=TJclFileSummaryInformation.Comments -ID10806=TJclFileSummaryInformation.CreationTime -ID10807=TJclFileSummaryInformation.EditTime -ID10808=TJclFileSummaryInformation.GetFMTID -ID10809=TJclFileSummaryInformation.KeyWords -ID1081=CountBitsSet@Smallint -ID10810=TJclFileSummaryInformation.LastAuthor -ID10811=TJclFileSummaryInformation.LastPrintedTime -ID10812=TJclFileSummaryInformation.LastSaveTime -ID10813=TJclFileSummaryInformation.PageCount -ID10814=TJclFileSummaryInformation.RevNumber -ID10815=TJclFileSummaryInformation.Security -ID10816=TJclFileSummaryInformation.Subject -ID10817=TJclFileSummaryInformation.Template -ID10818=TJclFileSummaryInformation.Thumnail -ID10819=TJclFileSummaryInformation.Title -ID1082=CountBitsSet@Word -ID10820=TJclFileSummaryInformation.WordCount -ID10821=TJclFileSummaryPropCallback -ID10822=TJclFileSummaryPropSetCallback -ID10823=TJclFileSummaryShare -ID10824=TJclFileSummaryShare.fssDenyAll -ID10825=TJclFileSummaryShare.fssDenyNone -ID10826=TJclFileSummaryShare.fssDenyRead -ID10827=TJclFileSummaryShare.fssDenyWrite -ID10828=TJclFlatSet -ID10829=TJclFlatSet.Clear -ID1083=CountObject@IJclIntfIterator@Integer@IInterface@TIntfCompare -ID10830=TJclFlatSet.Create -ID10831=TJclFlatSet.Destroy -ID10832=TJclFlatSet.FBits -ID10833=TJclFlatSet.GetBit@Integer -ID10834=TJclFlatSet.GetRange@Integer@Integer@Boolean -ID10835=TJclFlatSet.Invert -ID10836=TJclFlatSet.SetBit@Integer@Boolean -ID10837=TJclFlatSet.SetRange@Integer@Integer@Boolean -ID10838=TJclGDataSymbolInfo -ID10839=TJclGlobalProcSymbolInfo -ID1084=CountObject@IJclIterator@Integer@TObject@TCompare -ID10840=TJclGZIPCompressionStream -ID10841=TJclGZIPCompressionStream.AutoSetTime -ID10842=TJclGZIPCompressionStream.Comment -ID10843=TJclGZIPCompressionStream.Create@TStream@TJclCompressionLevel -ID10844=TJclGZIPCompressionStream.Destroy -ID10845=TJclGZIPCompressionStream.DosTime -ID10846=TJclGZIPCompressionStream.ExtraField -ID10847=TJclGZIPCompressionStream.FatSystem -ID10848=TJclGZIPCompressionStream.FAutoSetTime -ID10849=TJclGZIPCompressionStream.FComment -ID1085=CountObject@IJclStrIterator@Integer@string@TStrCompare -ID10850=TJclGZIPCompressionStream.FCompressionLevel -ID10851=TJclGZIPCompressionStream.FDataCRC32 -ID10852=TJclGZIPCompressionStream.FExtraField -ID10853=TJclGZIPCompressionStream.FFatSystem -ID10854=TJclGZIPCompressionStream.FFlags -ID10855=TJclGZIPCompressionStream.FFooterWritten -ID10856=TJclGZIPCompressionStream.FHeaderWritten -ID10857=TJclGZIPCompressionStream.Flags -ID10858=TJclGZIPCompressionStream.Flush -ID10859=TJclGZIPCompressionStream.FOriginalFileName -ID1086=CP_ACP -ID10860=TJclGZIPCompressionStream.FOriginalSize -ID10861=TJclGZIPCompressionStream.FUnixTime -ID10862=TJclGZIPCompressionStream.FZLibStream -ID10863=TJclGZIPCompressionStream.GetDosTime -ID10864=TJclGZIPCompressionStream.GetUnixTime -ID10865=TJclGZIPCompressionStream.OriginalFileName -ID10866=TJclGZIPCompressionStream.Reset -ID10867=TJclGZIPCompressionStream.SetDosTime@TDateTime -ID10868=TJclGZIPCompressionStream.SetUnixTime@Cardinal -ID10869=TJclGZIPCompressionStream.UnixTime -ID1087=CP_MACCP -ID10870=TJclGZIPCompressionStream.Write@@Longint -ID10871=TJclGZIPCompressionStream.WriteHeader -ID10872=TJclGZIPCompressionStream.ZLibStreamProgress@TObject -ID10873=TJclGZIPDecompressionStream -ID10874=TJclGZIPDecompressionStream.AutoCheckDataCRC32 -ID10875=TJclGZIPDecompressionStream.Comment -ID10876=TJclGZIPDecompressionStream.CompressedDataSize -ID10877=TJclGZIPDecompressionStream.CompressionLevel -ID10878=TJclGZIPDecompressionStream.ComputedDataCRC32 -ID10879=TJclGZIPDecompressionStream.ComputedHeaderCRC16 -ID1088=CP_OEMCP -ID10880=TJclGZIPDecompressionStream.Create@TStream@Boolean -ID10881=TJclGZIPDecompressionStream.Destroy -ID10882=TJclGZIPDecompressionStream.DosTime -ID10883=TJclGZIPDecompressionStream.ExtraField -ID10884=TJclGZIPDecompressionStream.FatSystem -ID10885=TJclGZIPDecompressionStream.FAutoCheckDataCRC32 -ID10886=TJclGZIPDecompressionStream.FComment -ID10887=TJclGZIPDecompressionStream.FCompressedDataSize -ID10888=TJclGZIPDecompressionStream.FCompressedDataStream -ID10889=TJclGZIPDecompressionStream.FComputedDataCRC32 -ID1089=CP_SYMBOL -ID10890=TJclGZIPDecompressionStream.FComputedHeaderCRC16 -ID10891=TJclGZIPDecompressionStream.FDataEnded -ID10892=TJclGZIPDecompressionStream.FDataSize -ID10893=TJclGZIPDecompressionStream.FDataStarted -ID10894=TJclGZIPDecompressionStream.FExtraField -ID10895=TJclGZIPDecompressionStream.FFooter -ID10896=TJclGZIPDecompressionStream.FHeader -ID10897=TJclGZIPDecompressionStream.Flags -ID10898=TJclGZIPDecompressionStream.FOriginalFileName -ID10899=TJclGZIPDecompressionStream.FStoredHeaderCRC16 +ID1080=CheckCrc16_P@PJclByteArray@Integer@Word +ID10800=TJclBorRADToolInstallation.UnregisterPackage@string +ID10801=TJclBorRADToolInstallation.UpdateNeeded +ID10802=TJclBorRADToolInstallation.Valid +ID10803=TJclBorRADToolInstallation.VclIncludeDir +ID10804=TJclBorRADToolInstallation.VersionNumber +ID10805=TJclBorRADToolInstallation.VersionNumberStr +ID10806=TJclBorRADToolInstallationClass +ID10807=TJclBorRADToolInstallationObject +ID10808=TJclBorRADToolInstallationObject.Create@TJclBorRADToolInstallation +ID10809=TJclBorRADToolInstallationObject.FInstallation +ID1081=CheckCrc16_P@TCrc16Table@PJclByteArray@Integer@Word +ID10810=TJclBorRADToolInstallationObject.Installation +ID10811=TJclBorRADToolInstallations +ID10812=TJclBorRADToolInstallations.AnyInstanceRunning +ID10813=TJclBorRADToolInstallations.AnyUpdatePackNeeded@string +ID10814=TJclBorRADToolInstallations.BCBInstallationFromVersion +ID10815=TJclBorRADToolInstallations.BCBVersionInstalled +ID10816=TJclBorRADToolInstallations.BDSInstallationFromVersion +ID10817=TJclBorRADToolInstallations.BDSVersionInstalled +ID10818=TJclBorRADToolInstallations.Count +ID10819=TJclBorRADToolInstallations.Create +ID1082=CheckCrc32@array of Byte@Integer@Cardinal +ID10820=TJclBorRADToolInstallations.DelphiInstallationFromVersion +ID10821=TJclBorRADToolInstallations.DelphiVersionInstalled +ID10822=TJclBorRADToolInstallations.Destroy +ID10823=TJclBorRADToolInstallations.FList +ID10824=TJclBorRADToolInstallations.GetBCBInstallationFromVersion@Integer +ID10825=TJclBorRADToolInstallations.GetBCBVersionInstalled@Integer +ID10826=TJclBorRADToolInstallations.GetBDSInstallationFromVersion@Integer +ID10827=TJclBorRADToolInstallations.GetBDSVersionInstalled@Integer +ID10828=TJclBorRADToolInstallations.GetCount +ID10829=TJclBorRADToolInstallations.GetDelphiInstallationFromVersion@Integer +ID1083=CheckCrc32_A +ID10830=TJclBorRADToolInstallations.GetDelphiVersionInstalled@Integer +ID10831=TJclBorRADToolInstallations.GetInstallations@Integer +ID10832=TJclBorRADToolInstallations.Installations +ID10833=TJclBorRADToolInstallations.Iterate@TTraverseMethod +ID10834=TJclBorRADToolInstallations.ReadInstallations +ID10835=TJclBorRADToolKind +ID10836=TJclBorRADToolKind.brBorlandDevStudio +ID10837=TJclBorRADToolKind.brCppBuilder +ID10838=TJclBorRADToolKind.brDelphi +ID10839=TJclBorRADToolPalette +ID1084=CheckCrc32_A@array of Byte@Cardinal +ID10840=TJclBorRADToolPalette.ComponentsOnTab +ID10841=TJclBorRADToolPalette.ComponentsOnTabToStrings@Integer@TStrings@Boolean@Boolean +ID10842=TJclBorRADToolPalette.Create@TJclBorRADToolInstallation +ID10843=TJclBorRADToolPalette.DeleteTabName@string +ID10844=TJclBorRADToolPalette.Destroy +ID10845=TJclBorRADToolPalette.FKey +ID10846=TJclBorRADToolPalette.FTabNames +ID10847=TJclBorRADToolPalette.GetComponentsOnTab@Integer +ID10848=TJclBorRADToolPalette.GetHiddenComponentsOnTab@Integer +ID10849=TJclBorRADToolPalette.GetTabNameCount +ID1085=CheckCrc32_A@TCrc32Table@array of Byte@Cardinal +ID10850=TJclBorRADToolPalette.GetTabNames@Integer +ID10851=TJclBorRADToolPalette.HiddenComponentsOnTab +ID10852=TJclBorRADToolPalette.Key +ID10853=TJclBorRADToolPalette.ReadTabNames +ID10854=TJclBorRADToolPalette.TabNameCount +ID10855=TJclBorRADToolPalette.TabNameExists@string +ID10856=TJclBorRADToolPalette.TabNames +ID10857=TJclBorRADToolPath +ID10858=TJclBorRADToolRepository +ID10859=TJclBorRADToolRepository.AddObject@string@string@string@string@string@string@string@string@string +ID1086=CheckCrc32_P +ID10860=TJclBorRADToolRepository.CloseIniFile +ID10861=TJclBorRADToolRepository.Create@TJclBorRADToolInstallation +ID10862=TJclBorRADToolRepository.Destroy +ID10863=TJclBorRADToolRepository.FFileName +ID10864=TJclBorRADToolRepository.FileName +ID10865=TJclBorRADToolRepository.FindPage@string@Integer +ID10866=TJclBorRADToolRepository.FIniFile +ID10867=TJclBorRADToolRepository.FPages +ID10868=TJclBorRADToolRepository.GetIniFile +ID10869=TJclBorRADToolRepository.GetPages +ID1087=CheckCrc32_P@PJclByteArray@Integer@Cardinal +ID10870=TJclBorRADToolRepository.IniFile +ID10871=TJclBorRADToolRepository.Pages +ID10872=TJclBorRADToolRepository.RemoveObjects@string@string@string +ID10873=TJclBorUmSymbolModifiers +ID10874=TJclBpr2Mak +ID10875=TJclBpr2Mak.GetExeName +ID10876=TJclBriefCaseSummaryInformation +ID10877=TJclBriefCaseSummaryInformation.GetFMTID +ID10878=TJclBucket +ID10879=TJclBucket.Entries +ID1088=CheckCrc32_P@TCrc32Table@PJclByteArray@Integer@Cardinal +ID10880=TJclBucket.TJclBucket=recordCount +ID10881=TJclBucketArray +ID10882=TJclBufferedStream +ID10883=TJclBufferedStream.BufferHit +ID10884=TJclBufferedStream.BufferSize +ID10885=TJclBufferedStream.Create@TStream@Boolean +ID10886=TJclBufferedStream.Destroy +ID10887=TJclBufferedStream.DoAfterStreamChange +ID10888=TJclBufferedStream.DoBeforeStreamChange +ID10889=TJclBufferedStream.FBuffer +ID1089=CheckSumMappedFile@Pointer@DWORD@DWORD@DWORD +ID10890=TJclBufferedStream.FBufferCurrentSize +ID10891=TJclBufferedStream.FBufferMaxModifiedPos +ID10892=TJclBufferedStream.FBufferSize +ID10893=TJclBufferedStream.FBufferStart +ID10894=TJclBufferedStream.Flush +ID10895=TJclBufferedStream.FPosition +ID10896=TJclBufferedStream.GetCalcedSize +ID10897=TJclBufferedStream.LoadBuffer +ID10898=TJclBufferedStream.Read@@Longint +ID10899=TJclBufferedStream.ReadFromBuffer@@Longint@Longint ID109=!!OVERLOADED_MoveBy_TJclScreenCursor -ID1090=CP_THREAD_ACP -ID10900=TJclGZIPDecompressionStream.FZLibStream -ID10901=TJclGZIPDecompressionStream.GetCompressedDataSize -ID10902=TJclGZIPDecompressionStream.GetComputedDataCRC32 -ID10903=TJclGZIPDecompressionStream.GetDosTime -ID10904=TJclGZIPDecompressionStream.GetFatSystem -ID10905=TJclGZIPDecompressionStream.GetFlags -ID10906=TJclGZIPDecompressionStream.GetOriginalDataSize -ID10907=TJclGZIPDecompressionStream.GetStoredDataCRC32 -ID10908=TJclGZIPDecompressionStream.OriginalDataSize -ID10909=TJclGZIPDecompressionStream.OriginalFileName -ID1091=CP_UTF7 -ID10910=TJclGZIPDecompressionStream.Read@@Longint -ID10911=TJclGZIPDecompressionStream.ReadCompressedData@TObject@@Longint -ID10912=TJclGZIPDecompressionStream.StoredDataCRC32 -ID10913=TJclGZIPDecompressionStream.StoredHeaderCRC16 -ID10914=TJclGZIPDecompressionStream.UnixTime -ID10915=TJclGZIPDecompressionStream.ZLibStreamProgress@TObject -ID10916=TJclGZIPFatSystem -ID10917=TJclGZIPFatSystem.gfsAcorn -ID10918=TJclGZIPFatSystem.gfsAmiga -ID10919=TJclGZIPFatSystem.gfsAtari -ID1092=CP_UTF8 -ID10920=TJclGZIPFatSystem.gfsCPM -ID10921=TJclGZIPFatSystem.gfsFat -ID10922=TJclGZIPFatSystem.gfsHPFS -ID10923=TJclGZIPFatSystem.gfsMac -ID10924=TJclGZIPFatSystem.gfsNTFS -ID10925=TJclGZIPFatSystem.gfsOther -ID10926=TJclGZIPFatSystem.gfsQDOS -ID10927=TJclGZIPFatSystem.gfsTOPS -ID10928=TJclGZIPFatSystem.gfsUnix -ID10929=TJclGZIPFatSystem.gfsUnknown -ID1093=CPaperNames -ID10930=TJclGZIPFatSystem.gfsVM -ID10931=TJclGZIPFatSystem.gfsVMS -ID10932=TJclGZIPFatSystem.gfsZ -ID10933=TJclGZIPFlag -ID10934=TJclGZIPFlag.gfComment -ID10935=TJclGZIPFlag.gfDataIsText -ID10936=TJclGZIPFlag.gfExtraField -ID10937=TJclGZIPFlag.gfHeaderCRC16 -ID10938=TJclGZIPFlag.gfOriginalFileName -ID10939=TJclGZIPFlags -ID1094=CPU_TYPE_AMD -ID10940=TJclGZIPFooter -ID10941=TJclGZIPFooter.DataCRC32 -ID10942=TJclGZIPFooter.DataSize -ID10943=TJclGZIPHeader -ID10944=TJclGZIPHeader.CompressionMethod -ID10945=TJclGZIPHeader.ExtraFlags -ID10946=TJclGZIPHeader.Flags -ID10947=TJclGZIPHeader.ID1 -ID10948=TJclGZIPHeader.ID2 -ID10949=TJclGZIPHeader.ModifiedTime -ID1095=CPU_TYPE_CYRIX -ID10950=TJclGZIPHeader.OS -ID10951=TJclGZIPSubFieldHeader -ID10952=TJclGZIPSubFieldHeader.Len -ID10953=TJclGZIPSubFieldHeader.SI1 -ID10954=TJclGZIPSubFieldHeader.SI2 -ID10955=TJclHandleStream -ID10956=TJclHandleStream.Create@THandle -ID10957=TJclHandleStream.FHandle -ID10958=TJclHandleStream.Handle -ID10959=TJclHandleStream.Read@@Longint -ID1096=CPU_TYPE_INTEL -ID10960=TJclHandleStream.Seek@Int64@TSeekOrigin -ID10961=TJclHandleStream.SetSize@Int64 -ID10962=TJclHandleStream.SetSize@Longint -ID10963=TJclHandleStream.Write@@Longint -ID10964=TJclHashFunction -ID10965=TJclHelp2Manager -ID10966=TJclHelp2Manager.CommitTransaction -ID10967=TJclHelp2Manager.Create -ID10968=TJclHelp2Manager.Create@TJclBorRADToolInstallation -ID10969=TJclHelp2Manager.CreateTransaction -ID1097=CPU_TYPE_TRANSMETA -ID10970=TJclHelp2Manager.Destroy -ID10971=TJclHelp2Manager.FHxPlugin -ID10972=TJclHelp2Manager.FHxRegister -ID10973=TJclHelp2Manager.FHxRegisterSession -ID10974=TJclHelp2Manager.FIdeNameSpace -ID10975=TJclHelp2Manager.GetHxPlugin -ID10976=TJclHelp2Manager.GetHxRegister -ID10977=TJclHelp2Manager.GetHxRegisterSession -ID10978=TJclHelp2Manager.HxPlugin -ID10979=TJclHelp2Manager.HxRegister -ID1098=CPU_TYPE_VIA -ID10980=TJclHelp2Manager.HxRegisterSession -ID10981=TJclHelp2Manager.IdeNamespace -ID10982=TJclHelp2Manager.PlugNameSpaceIn@WideString@WideString -ID10983=TJclHelp2Manager.PlugNameSpaceInBorlandHelp@WideString -ID10984=TJclHelp2Manager.RegisterHelpFile@WideString@WideString@Integer@WideString@WideString -ID10985=TJclHelp2Manager.RegisterNameSpace@WideString@WideString@WideString -ID10986=TJclHelp2Manager.RequireObject@TJclHelp2Objects -ID10987=TJclHelp2Manager.UnPlugNameSpace@WideString@WideString -ID10988=TJclHelp2Manager.UnPlugNameSpaceFromBorlandHelp@WideString -ID10989=TJclHelp2Manager.UnregisterHelpFile@WideString@WideString@Integer -ID1099=Crc16_A -ID10990=TJclHelp2Manager.UnregisterNameSpace@WideString -ID10991=TJclHelp2Object -ID10992=TJclHelp2Object.hoPlugin -ID10993=TJclHelp2Object.hoRegister -ID10994=TJclHelp2Object.hoRegisterSession -ID10995=TJclHelp2Objects -ID10996=TJclImageInformation -ID10997=TJclImageInformation.GetFMTID -ID10998=TJclImageSummaryInformation -ID10999=TJclImageSummaryInformation.GetFMTID +ID1090=CIELABToBGR@PByte@PByte@PByte@Pointer@Cardinal +ID10900=TJclBufferedStream.Seek@Int64@TSeekOrigin +ID10901=TJclBufferedStream.Write@@Longint +ID10902=TJclBufferedStream.WriteToBuffer@@Longint@Longint +ID10903=TJclByteArray +ID10904=TJclByteMap +ID10905=TJclByteMap.Assign +ID10906=TJclByteMap.AssignTo@TPersistent +ID10907=TJclByteMap.Bytes +ID10908=TJclByteMap.Clear +ID10909=TJclByteMap.Destroy +ID1091=CIELABToBGR@Pointer@Pointer@Cardinal +ID10910=TJclByteMap.Empty +ID10911=TJclByteMap.FBytes +ID10912=TJclByteMap.FHeight +ID10913=TJclByteMap.FWidth +ID10914=TJclByteMap.GetValPtr@Integer@Integer +ID10915=TJclByteMap.GetValue@Integer@Integer +ID10916=TJclByteMap.ReadFrom +ID10917=TJclByteMap.SetSize +ID10918=TJclByteMap.SetValue@Integer@Integer@Byte +ID10919=TJclByteMap.ValPtr +ID1092=clAqua32 +ID10920=TJclByteMap.Value +ID10921=TJclByteMap.WriteTo@TJclBitmap32@TConversionKind +ID10922=TJclByteMap.WriteTo@TJclBitmap32@TPalette32 +ID10923=TJclBytes +ID10924=TJclBZ2CompressArchive +ID10925=TJclBZ2DecompressArchive +ID10926=TJclBZ2UpdateArchive +ID10927=TJclBZIP2CompressionStream +ID10928=TJclBZIP2CompressionStream.BZLibRecord +ID10929=TJclBZIP2CompressionStream.CompressionLevel +ID1093=clBlack32 +ID10930=TJclBZIP2CompressionStream.Create@TStream@TJclCompressionLevel +ID10931=TJclBZIP2CompressionStream.Destroy +ID10932=TJclBZIP2CompressionStream.FCompressionLevel +ID10933=TJclBZIP2CompressionStream.FDeflateInitialized +ID10934=TJclBZIP2CompressionStream.Flush +ID10935=TJclBZIP2CompressionStream.Seek@Int64@TSeekOrigin +ID10936=TJclBZIP2CompressionStream.SetCompressionLevel@Integer +ID10937=TJclBZIP2CompressionStream.Write@@Longint +ID10938=TJclBZIP2DecompressionStream +ID10939=TJclBZIP2DecompressionStream.BZLibRecord +ID1094=clBlue32 +ID10940=TJclBZIP2DecompressionStream.Create@TStream +ID10941=TJclBZIP2DecompressionStream.Destroy +ID10942=TJclBZIP2DecompressionStream.FInflateInitialized +ID10943=TJclBZIP2DecompressionStream.Read@@Longint +ID10944=TJclBZIP2DecompressionStream.Seek@Int64@TSeekOrigin +ID10945=TJclCabDecompressArchive +ID10946=TJclCaptureRange +ID10947=TJclCardinalAbstractContainer +ID10948=TJclCardinalArrayIterator +ID10949=TJclCardinalArrayList +ID1095=clDimGray32 +ID10950=TJclCardinalArraySet +ID10951=TJclCardinalBinaryNode +ID10952=TJclCardinalBinaryTree +ID10953=TJclCardinalBinaryTreeIterator +ID10954=TJclCardinalBucket +ID10955=TJclCardinalCardinalBucket +ID10956=TJclCardinalCardinalHashEntry +ID10957=TJclCardinalCardinalHashMap +ID10958=TJclCardinalCardinalSortedEntry +ID10959=TJclCardinalCardinalSortedMap +ID1096=ClearBit@Cardinal@TBitRange +ID10960=TJclCardinalHashEntry +ID10961=TJclCardinalHashMap +ID10962=TJclCardinalHashSet +ID10963=TJclCardinalIntfBucket +ID10964=TJclCardinalIntfHashEntry +ID10965=TJclCardinalIntfHashMap +ID10966=TJclCardinalIntfSortedEntry +ID10967=TJclCardinalIntfSortedMap +ID10968=TJclCardinalLinkedList +ID10969=TJclCardinalLinkedListItem +ID1097=ClearBit@Int64@TBitRange +ID10970=TJclCardinalLinkedListIterator +ID10971=TJclCardinalQueue +ID10972=TJclCardinalSortedEntry +ID10973=TJclCardinalSortedMap +ID10974=TJclCardinalStack +ID10975=TJclCardinalTree +ID10976=TJclCardinalTreeIterator +ID10977=TJclCardinalTreeNode +ID10978=TJclCardinalVector +ID10979=TJclCardinalVectorIterator +ID1098=ClearBit@Integer@TBitRange +ID10980=TJclCdMediaInfo +ID10981=TJclCdMediaInfo.miIdentity +ID10982=TJclCdMediaInfo.miProduct +ID10983=TJclCdMediaInfo.miUPC +ID10984=TJclCdTrackInfo +ID10985=TJclCdTrackInfo.Minute +ID10986=TJclCdTrackInfo.Second +ID10987=TJclCdTrackInfo.TrackType +ID10988=TJclCdTrackInfoArray +ID10989=TJclCdTrackType +ID1099=ClearBit@Shortint@TBitRange +ID10990=TJclCdTrackType.ttAudio +ID10991=TJclCdTrackType.ttOther +ID10992=TJclCharsetInfo +ID10993=TJclChmDecompressArchive +ID10994=TJclClassTypeInfo +ID10995=TJclClrAppDomain +ID10996=TJclClrAppDomain.Create@TJclClrHost@IJclClrAppDomain +ID10997=TJclClrAppDomain.DefaultInterface +ID10998=TJclClrAppDomain.Execute@TFileName@IJclClrEvidence +ID10999=TJclClrAppDomain.Execute@TFileName@TJclClrAssemblyArguments@IJclClrEvidence ID11=!!OVERLOADED_AssemblyFlags_TJclClrTableAssemblyRow ID110=!!OVERLOADED_MoveTo_TJclScreenCursor -ID1100=Crc16_P -ID11000=TJclInfoStringsWriter -ID11001=TJclInfoStringsWriter.Create@TStrings@Integer -ID11002=TJclInfoStringsWriter.FStrings -ID11003=TJclInfoStringsWriter.PrimWrite@string -ID11004=TJclInfoStringsWriter.Strings -ID11005=TJclInfoWriter -ID11006=TJclInfoWriter.Create@Integer -ID11007=TJclInfoWriter.CurLine -ID11008=TJclInfoWriter.Destroy -ID11009=TJclInfoWriter.DoWrap -ID1101=Crc32_A -ID11010=TJclInfoWriter.DoWriteCompleteLines -ID11011=TJclInfoWriter.FCurLine -ID11012=TJclInfoWriter.FIndentLevel -ID11013=TJclInfoWriter.FWrap -ID11014=TJclInfoWriter.GetWrap -ID11015=TJclInfoWriter.Indent -ID11016=TJclInfoWriter.IndentLevel -ID11017=TJclInfoWriter.Outdent -ID11018=TJclInfoWriter.PrimWrite@string -ID11019=TJclInfoWriter.SetWrap@Integer -ID1102=Crc32_P -ID11020=TJclInfoWriter.Wrap -ID11021=TJclInfoWriter.Write@string -ID11022=TJclInfoWriter.Writeln@string -ID11023=TJclInputBuffer -ID11024=TJclInputBuffer.Clear -ID11025=TJclInputBuffer.Console -ID11026=TJclInputBuffer.Create@TJclConsole -ID11027=TJclInputBuffer.Destroy -ID11028=TJclInputBuffer.EventCount -ID11029=TJclInputBuffer.FConsole -ID1103=CreateAutoPtr@TObject -ID11030=TJclInputBuffer.FHandle -ID11031=TJclInputBuffer.GetEvent -ID11032=TJclInputBuffer.GetEventCount -ID11033=TJclInputBuffer.GetEvents@Integer -ID11034=TJclInputBuffer.GetEvents@TJclInputRecordArray -ID11035=TJclInputBuffer.GetMode -ID11036=TJclInputBuffer.Handle -ID11037=TJclInputBuffer.Mode -ID11038=TJclInputBuffer.PeekEvent -ID11039=TJclInputBuffer.PeekEvents@Integer -ID1104=CreateComponentCategory@TGUID@string -ID11040=TJclInputBuffer.PeekEvents@TJclInputRecordArray -ID11041=TJclInputBuffer.PutEvent@TInputRecord -ID11042=TJclInputBuffer.PutEvents@TJclInputRecordArray -ID11043=TJclInputBuffer.RaiseCtrlEvent@TJclInputCtrlEvent@DWORD -ID11044=TJclInputBuffer.SetMode@TJclConsoleInputModes -ID11045=TJclInputBuffer.WaitEvent@DWORD -ID11046=TJclInputCtrlEvent -ID11047=TJclInputCtrlEvent.ceCtrlBreak -ID11048=TJclInputCtrlEvent.ceCtrlC -ID11049=TJclInputCtrlEvent.ceCtrlClose -ID1105=CreateDOSProcessRedirected@string@string@string -ID11050=TJclInputCtrlEvent.ceCtrlLogOff -ID11051=TJclInputCtrlEvent.ceCtrlShutdown -ID11052=TJclInputRecordArray -ID11053=TJclInstruction -ID11054=TJclInstruction.Create@TJclClrILGenerator@TJclOpCode -ID11055=TJclInstruction.Description -ID11056=TJclInstruction.DumpIL@TJclInstructionDumpILOptions -ID11057=TJclInstruction.DumpILOption@TJclInstructionDumpILOption -ID11058=TJclInstruction.FOffset -ID11059=TJclInstruction.FOpCode -ID1106=CreateHardLinkA -ID11060=TJclInstruction.FormatLabel@Integer -ID11061=TJclInstruction.FOwner -ID11062=TJclInstruction.FParam -ID11063=TJclInstruction.FullName -ID11064=TJclInstruction.GetDescription -ID11065=TJclInstruction.GetFullName -ID11066=TJclInstruction.GetName -ID11067=TJclInstruction.GetParamType -ID11068=TJclInstruction.GetRealOpCode -ID11069=TJclInstruction.GetSize -ID1107=CreateHardLinkW -ID11070=TJclInstruction.GetWideOpCode -ID11071=TJclInstruction.Load@TStream -ID11072=TJclInstruction.Name -ID11073=TJclInstruction.Offset -ID11074=TJclInstruction.OpCode -ID11075=TJclInstruction.Owner -ID11076=TJclInstruction.Param -ID11077=TJclInstruction.ParamType -ID11078=TJclInstruction.RealOpCode -ID11079=TJclInstruction.Save@TStream -ID1108=CreateMutex@PSecurityAttributes@DWORD@PChar -ID11080=TJclInstruction.Size -ID11081=TJclInstruction.WideOpCode -ID11082=TJclInstructionDumpILOption -ID11083=TJclInstructionDumpILOption.doComment -ID11084=TJclInstructionDumpILOption.doIL -ID11085=TJclInstructionDumpILOption.doLineNo -ID11086=TJclInstructionDumpILOption.doRawBytes -ID11087=TJclInstructionDumpILOption.doTokenValue -ID11088=TJclInstructionDumpILOptions -ID11089=TJclInstructionParamType -ID1109=CREATEPROCESS_MANIFEST_RESOURCE_ID -ID11090=TJclInstructionParamType.ptArray -ID11091=TJclInstructionParamType.ptI1 -ID11092=TJclInstructionParamType.ptI2 -ID11093=TJclInstructionParamType.ptI4 -ID11094=TJclInstructionParamType.ptI8 -ID11095=TJclInstructionParamType.ptLOff -ID11096=TJclInstructionParamType.ptR4 -ID11097=TJclInstructionParamType.ptR8 -ID11098=TJclInstructionParamType.ptSOff -ID11099=TJclInstructionParamType.ptToken +ID1100=ClearBit@Smallint@TBitRange +ID11000=TJclClrAppDomain.Execute@TFileName@TStrings@IJclClrEvidence +ID11001=TJclClrAppDomain.FDefaultInterface +ID11002=TJclClrAppDomain.FHost +ID11003=TJclClrAppDomain.Host +ID11004=TJclClrAppDomain.Load@TStream@TStream@IJclClrEvidence +ID11005=TJclClrAppDomain.Load@WideString@IJclClrEvidence +ID11006=TJclClrAppDomain.Unload +ID11007=TJclClrAppDomainSetup +ID11008=TJclClrAppDomainSetup.ApplicationBase +ID11009=TJclClrAppDomainSetup.ApplicationName +ID1101=ClearBit@Word@TBitRange +ID11010=TJclClrAppDomainSetup.CachePath +ID11011=TJclClrAppDomainSetup.ConfigurationFile +ID11012=TJclClrAppDomainSetup.Create@IAppDomainSetup +ID11013=TJclClrAppDomainSetup.DefaultInterface +ID11014=TJclClrAppDomainSetup.DynamicBase +ID11015=TJclClrAppDomainSetup.FDefaultInterface +ID11016=TJclClrAppDomainSetup.GetApplicationBase +ID11017=TJclClrAppDomainSetup.GetApplicationName +ID11018=TJclClrAppDomainSetup.GetCachePath +ID11019=TJclClrAppDomainSetup.GetConfigurationFile +ID1102=ClearBitBuffer@@Cardinal +ID11020=TJclClrAppDomainSetup.GetDynamicBase +ID11021=TJclClrAppDomainSetup.GetLicenseFile +ID11022=TJclClrAppDomainSetup.GetPrivateBinPath +ID11023=TJclClrAppDomainSetup.GetPrivateBinPathProbe +ID11024=TJclClrAppDomainSetup.GetShadowCopyDirectories +ID11025=TJclClrAppDomainSetup.GetShadowCopyFiles +ID11026=TJclClrAppDomainSetup.LicenseFile +ID11027=TJclClrAppDomainSetup.PrivateBinPath +ID11028=TJclClrAppDomainSetup.PrivateBinPathProbe +ID11029=TJclClrAppDomainSetup.SetApplicationBase@WideString +ID1103=ClearBitBuffer@@Int64 +ID11030=TJclClrAppDomainSetup.SetApplicationName@WideString +ID11031=TJclClrAppDomainSetup.SetCachePath@WideString +ID11032=TJclClrAppDomainSetup.SetConfigurationFile@WideString +ID11033=TJclClrAppDomainSetup.SetDynamicBase@WideString +ID11034=TJclClrAppDomainSetup.SetLicenseFile@WideString +ID11035=TJclClrAppDomainSetup.SetPrivateBinPath@WideString +ID11036=TJclClrAppDomainSetup.SetPrivateBinPathProbe@WideString +ID11037=TJclClrAppDomainSetup.SetShadowCopyDirectories@WideString +ID11038=TJclClrAppDomainSetup.SetShadowCopyFiles@WideString +ID11039=TJclClrAppDomainSetup.ShadowCopyDirectories +ID1104=CLFLSH_FLAG +ID11040=TJclClrAppDomainSetup.ShadowCopyFiles +ID11041=TJclClrArrayData +ID11042=TJclClrArrayData.adLowBound +ID11043=TJclClrArrayData.adSize +ID11044=TJclClrArraySign +ID11045=TJclClrArraySign.Create@TJclClrBlobRecord +ID11046=TJclClrArraySign.FBounds +ID11047=TJclClrArraySignBound +ID11048=TJclClrArraySignBounds +ID11049=TJclClrAssembly +ID1105=clFuchsia32 +ID11050=TJclClrAssembly.Create@IJclClrAssembly +ID11051=TJclClrAssembly.DefaultInterface +ID11052=TJclClrAssembly.FDefaultInterface +ID11053=TJclClrAssemblyArguments +ID11054=TJclClrAssemblyFlag +ID11055=TJclClrAssemblyFlag.cafCompatibilityMask +ID11056=TJclClrAssemblyFlag.cafDisableJITcompileOptimizer +ID11057=TJclClrAssemblyFlag.cafEnableJITcompileTracking +ID11058=TJclClrAssemblyFlag.cafNonSideBySideAppDomain +ID11059=TJclClrAssemblyFlag.cafNonSideBySideMachine +ID1106=clGray32 +ID11060=TJclClrAssemblyFlag.cafNonSideBySideProcess +ID11061=TJclClrAssemblyFlag.cafPublicKey +ID11062=TJclClrAssemblyFlag.cafSideBySideCompatible +ID11063=TJclClrAssemblyFlags +ID11064=TJclClrBase +ID11065=TJclClrBlobRecord +ID11066=TJclClrBlobRecord.Create@TJclClrStream@PJclByteArray +ID11067=TJclClrBlobRecord.Data +ID11068=TJclClrBlobRecord.Dump@string +ID11069=TJclClrBlobRecord.FOffset +ID1107=clGreen32 +ID11070=TJclClrBlobRecord.FPtr +ID11071=TJclClrBlobRecord.GetData +ID11072=TJclClrBlobRecord.Offset +ID11073=TJclClrBlobRecord.Ptr +ID11074=TJclClrBlobStream +ID11075=TJclClrBlobStream.At@DWORD +ID11076=TJclClrBlobStream.BlobCount +ID11077=TJclClrBlobStream.Blobs +ID11078=TJclClrBlobStream.Create@TJclPeMetadata@PClrStreamHeader +ID11079=TJclClrBlobStream.Destroy +ID1108=ClipCodes@Float@Float@Float@Float@Float@Float +ID11080=TJclClrBlobStream.FBlobs +ID11081=TJclClrBlobStream.GetBlob@Integer +ID11082=TJclClrBlobStream.GetBlobCount +ID11083=TJclClrClassLayout +ID11084=TJclClrClassLayout.clAuto +ID11085=TJclClrClassLayout.clExplicit +ID11086=TJclClrClassLayout.clSequential +ID11087=TJclClrClassSemantics +ID11088=TJclClrClassSemantics.csClass +ID11089=TJclClrClassSemantics.csInterface +ID1109=ClipCodes@Float@Float@TRect +ID11090=TJclClrCodeBlock +ID11091=TJclClrCodeBlock.Length +ID11092=TJclClrCodeBlock.Offset +ID11093=TJclClrComboIndex +ID11094=TJclClrComboIndex.ciResolutionScope +ID11095=TJclClrCustomModifierSign +ID11096=TJclClrCustomModifierSign.Create@TJclClrBlobRecord +ID11097=TJclClrCustomModifierSign.FRequired +ID11098=TJclClrCustomModifierSign.FToken +ID11099=TJclClrCustomModifierSign.Required ID111=!!OVERLOADED_Multiply_TJclRational -ID1110=CreateRegionFromBitmap -ID11100=TJclInstructionParamType.ptU1 -ID11101=TJclInstructionParamType.ptU2 -ID11102=TJclInstructionParamType.ptU4 -ID11103=TJclInstructionParamType.ptU8 -ID11104=TJclInstructionParamType.ptVoid -ID11105=TJclIntfArraySet -ID11106=TJclIntfArraySet.Add@IInterface -ID11107=TJclIntfArraySet.AddAll@IJclIntfCollection -ID11108=TJclIntfArraySet.BinarySearch@IInterface -ID11109=TJclIntfArraySet.Contains@IInterface -ID1111=crossplatform.inc -ID11110=TJclIntfArraySet.Insert@Integer@IInterface -ID11111=TJclIntfArraySet.Intersect@IJclIntfCollection -ID11112=TJclIntfArraySet.Subtract@IJclIntfCollection -ID11113=TJclIntfArraySet.Union@IJclIntfCollection -ID11114=TJclIntfBinaryNode -ID11115=TJclIntfBinaryNode.Color -ID11116=TJclIntfBinaryNode.Left -ID11117=TJclIntfBinaryNode.Parent -ID11118=TJclIntfBinaryNode.Right -ID11119=TJclIntfBinaryNode.TJclIntfBinaryNode=recordObj -ID1112=CRYPT_KEY_LEN -ID11120=TJclIntfBinaryTree -ID11121=TJclIntfBinaryTree.Add@IInterface -ID11122=TJclIntfBinaryTree.AddAll@IJclIntfCollection -ID11123=TJclIntfBinaryTree.Clear -ID11124=TJclIntfBinaryTree.Clone -ID11125=TJclIntfBinaryTree.Contains@IInterface -ID11126=TJclIntfBinaryTree.ContainsAll@IJclIntfCollection -ID11127=TJclIntfBinaryTree.Create@TIntfCompare -ID11128=TJclIntfBinaryTree.Destroy -ID11129=TJclIntfBinaryTree.Equals@IJclIntfCollection -ID1113=CRYPT_TXT_LEN -ID11130=TJclIntfBinaryTree.FComparator -ID11131=TJclIntfBinaryTree.FCount -ID11132=TJclIntfBinaryTree.First -ID11133=TJclIntfBinaryTree.FRoot -ID11134=TJclIntfBinaryTree.FTraverseOrder -ID11135=TJclIntfBinaryTree.GetTraverseOrder -ID11136=TJclIntfBinaryTree.IsEmpty -ID11137=TJclIntfBinaryTree.Last -ID11138=TJclIntfBinaryTree.Remove@IInterface -ID11139=TJclIntfBinaryTree.RemoveAll@IJclIntfCollection -ID1114=Csc@TRectComplex -ID11140=TJclIntfBinaryTree.RetainAll@IJclIntfCollection -ID11141=TJclIntfBinaryTree.RotateLeft@PJclIntfBinaryNode -ID11142=TJclIntfBinaryTree.RotateRight@PJclIntfBinaryNode -ID11143=TJclIntfBinaryTree.SetTraverseOrder@TJclTraverseOrder -ID11144=TJclIntfBinaryTree.Size -ID11145=TJclIntfCriticalSection -ID11146=TJclIntfCriticalSection._AddRef -ID11147=TJclIntfCriticalSection._Release -ID11148=TJclIntfCriticalSection.Create -ID11149=TJclIntfCriticalSection.Destroy -ID1115=CscH@TRectComplex -ID11150=TJclIntfCriticalSection.FCriticalSection -ID11151=TJclIntfCriticalSection.QueryInterface@TGUID@ -ID11152=TJclIntfIntfBucket -ID11153=TJclIntfIntfBucket.Entries -ID11154=TJclIntfIntfBucket.TJclIntfIntfBucket=recordCount -ID11155=TJclIntfIntfBucketArray -ID11156=TJclIntfIntfEntry -ID11157=TJclIntfIntfEntry.Key -ID11158=TJclIntfIntfEntry.Value -ID11159=TJclIntfIntfEntryArray -ID1116=CSIDL_ADMINTOOLS -ID11160=TJclIntfLinkedListItem -ID11161=TJclIntfLinkedListItem.Next -ID11162=TJclIntfLinkedListItem.TJclIntfLinkedListItem=recordObj -ID11163=TJclJpegSummaryInformation -ID11164=TJclJpegSummaryInformation.GetFMTID -ID11165=TJclKillLevel -ID11166=TJclKillLevel.klNormal -ID11167=TJclKillLevel.klNoSignal -ID11168=TJclKillLevel.klTimeOut -ID11169=TJclLabelSymbolInfo -ID1117=CSIDL_CDBURN_AREA -ID11170=TJclLabelSymbolInfo.Create@PSymbolInfo -ID11171=TJclLabelSymbolInfo.FNameIndex -ID11172=TJclLabelSymbolInfo.FOffset -ID11173=TJclLabelSymbolInfo.NameIndex -ID11174=TJclLabelSymbolInfo.Offset -ID11175=TJclLDataSymbolInfo -ID11176=TJclLineInfo -ID11177=TJclLineInfo.Create@DWORD@DWORD -ID11178=TJclLineInfo.FLineNo -ID11179=TJclLineInfo.FOffset -ID1118=CSIDL_COMMON_ADMINTOOLS -ID11180=TJclLineInfo.LineNo -ID11181=TJclLineInfo.Offset -ID11182=TJclLinkedListItem -ID11183=TJclLinkedListItem.Next -ID11184=TJclLinkedListItem.TJclLinkedListItem=recordObj -ID11185=TJclLinkSummaryInformation -ID11186=TJclLinkSummaryInformation.GetFMTID -ID11187=TJclLocaleDateFormats -ID11188=TJclLocaleDateFormats.ldLong -ID11189=TJclLocaleDateFormats.ldShort -ID1119=CSIDL_COMMON_APPDATA -ID11190=TJclLocaleDateFormats.ldYearMonth -ID11191=TJclLocalesDays -ID11192=TJclLocalesMonths -ID11193=TJclLocalProcSymbolInfo -ID11194=TJclMapClassTableEvent -ID11195=TJclMapLineNumber -ID11196=TJclMapLineNumber.LineNumber -ID11197=TJclMapLineNumber.Segment -ID11198=TJclMapLineNumber.VA -ID11199=TJclMapLineNumbersEvent +ID1110=ClipLine@Integer@Integer@Integer@Integer@TRect +ID11100=TJclClrCustomModifierSign.Token +ID11101=TJclClrElementType +ID11102=TJclClrElementType.etArray +ID11103=TJclClrElementType.etBoolean +ID11104=TJclClrElementType.etByRef +ID11105=TJclClrElementType.etChar +ID11106=TJclClrElementType.etClass +ID11107=TJclClrElementType.etCModOpt +ID11108=TJclClrElementType.etCModReqd +ID11109=TJclClrElementType.etEnd +ID1111=clLightGray32 +ID11110=TJclClrElementType.etFnPtr +ID11111=TJclClrElementType.etI +ID11112=TJclClrElementType.etI1 +ID11113=TJclClrElementType.etI2 +ID11114=TJclClrElementType.etI4 +ID11115=TJclClrElementType.etI8 +ID11116=TJclClrElementType.etInternal +ID11117=TJclClrElementType.etMax +ID11118=TJclClrElementType.etModifier +ID11119=TJclClrElementType.etObject +ID1112=clLime32 +ID11120=TJclClrElementType.etPinned +ID11121=TJclClrElementType.etPtr +ID11122=TJclClrElementType.etR4 +ID11123=TJclClrElementType.etR8 +ID11124=TJclClrElementType.etSentinel +ID11125=TJclClrElementType.etString +ID11126=TJclClrElementType.etSzArray +ID11127=TJclClrElementType.etTypedByRef +ID11128=TJclClrElementType.etU +ID11129=TJclClrElementType.etU1 +ID1113=clMaroon32 +ID11130=TJclClrElementType.etU2 +ID11131=TJclClrElementType.etU4 +ID11132=TJclClrElementType.etU8 +ID11133=TJclClrElementType.etValueType +ID11134=TJclClrElementType.etVoid +ID11135=TJclClrExceptionClauseFlag +ID11136=TJclClrExceptionClauseFlag.cfException +ID11137=TJclClrExceptionClauseFlag.cfFault +ID11138=TJclClrExceptionClauseFlag.cfFilter +ID11139=TJclClrExceptionClauseFlag.cfFinally +ID1114=clNavy32 +ID11140=TJclClrExceptionClauseFlags +ID11141=TJclClrExceptionHandler +ID11142=TJclClrExceptionHandler.ClassToken +ID11143=TJclClrExceptionHandler.Create@TImageCorILMethodSectEHClauseFat +ID11144=TJclClrExceptionHandler.Create@TImageCorILMethodSectEHClauseSmall +ID11145=TJclClrExceptionHandler.EHFlags +ID11146=TJclClrExceptionHandler.FClassToken +ID11147=TJclClrExceptionHandler.FFilterOffset +ID11148=TJclClrExceptionHandler.FFlags +ID11149=TJclClrExceptionHandler.FHandlerBlock +ID1115=clOlive32 +ID11150=TJclClrExceptionHandler.FilterOffset +ID11151=TJclClrExceptionHandler.Flags +ID11152=TJclClrExceptionHandler.FTryBlock +ID11153=TJclClrExceptionHandler.GetFlags +ID11154=TJclClrExceptionHandler.HandlerBlock +ID11155=TJclClrExceptionHandler.TryBlock +ID11156=TJclClrField +ID11157=TJclClrGuidStream +ID11158=TJclClrGuidStream.Create@TJclPeMetadata@PClrStreamHeader +ID11159=TJclClrGuidStream.FGuids +ID1116=CloseCdMciDevice@TMCI_Open_Parms +ID11160=TJclClrGuidStream.GetGuid@Integer +ID11161=TJclClrGuidStream.GetGuidCount +ID11162=TJclClrGuidStream.GuidCount +ID11163=TJclClrGuidStream.Guids +ID11164=TJclClrHeaderEx +ID11165=TJclClrHeaderEx.ClrImageFlag@DWORD +ID11166=TJclClrHeaderEx.ClrImageFlag@TJclClrImageFlags +ID11167=TJclClrHeaderEx.Create@TJclPeImage +ID11168=TJclClrHeaderEx.Destroy +ID11169=TJclClrHeaderEx.DumpIL +ID1117=clPurple32 +ID11170=TJclClrHeaderEx.EntryPointToken +ID11171=TJclClrHeaderEx.FFlags +ID11172=TJclClrHeaderEx.Flags +ID11173=TJclClrHeaderEx.FMetadata +ID11174=TJclClrHeaderEx.FResources +ID11175=TJclClrHeaderEx.FStrongNameSignature +ID11176=TJclClrHeaderEx.FVTableFixups +ID11177=TJclClrHeaderEx.GetEntryPointToken +ID11178=TJclClrHeaderEx.GetMetadata +ID11179=TJclClrHeaderEx.GetResource@Integer +ID1118=ClrCreateManagedInstance@PWideChar@TIID@ +ID11180=TJclClrHeaderEx.GetResourceCount +ID11181=TJclClrHeaderEx.GetStrongNameSignature +ID11182=TJclClrHeaderEx.GetVTableFixup@Integer +ID11183=TJclClrHeaderEx.GetVTableFixupCount +ID11184=TJclClrHeaderEx.HasResources +ID11185=TJclClrHeaderEx.HasStrongNameSignature +ID11186=TJclClrHeaderEx.HasVTableFixup +ID11187=TJclClrHeaderEx.Metadata +ID11188=TJclClrHeaderEx.ResourceAt@DWORD +ID11189=TJclClrHeaderEx.ResourceCount +ID1119=clRed32 +ID11190=TJclClrHeaderEx.Resources +ID11191=TJclClrHeaderEx.StrongNameSignature +ID11192=TJclClrHeaderEx.UpdateResources +ID11193=TJclClrHeaderEx.VTableFixupCount +ID11194=TJclClrHeaderEx.VTableFixups +ID11195=TJclClrHeapKind +ID11196=TJclClrHeapKind.hkBlob +ID11197=TJclClrHeapKind.hkGuid +ID11198=TJclClrHeapKind.hkString +ID11199=TJclClrHost ID112=!!OVERLOADED_ParamFlags_TJclClrTableParamDefRow -ID1120=CSIDL_COMMON_DOCUMENTS -ID11200=TJclMapLineNumberUnitEvent -ID11201=TJclMappedTextReader -ID11202=TJclMappedTextReader.AssignTo@TPersistent -ID11203=TJclMappedTextReader.AsString -ID11204=TJclMappedTextReader.Chars -ID11205=TJclMappedTextReader.Content -ID11206=TJclMappedTextReader.Create@string@TJclMappedTextReaderIndex -ID11207=TJclMappedTextReader.Create@TCustomMemoryStream@Boolean@TJclMappedTextReaderIndex -ID11208=TJclMappedTextReader.CreateIndex -ID11209=TJclMappedTextReader.Destroy -ID1121=CSIDL_COMMON_MUSIC -ID11210=TJclMappedTextReader.Eof -ID11211=TJclMappedTextReader.FContent -ID11212=TJclMappedTextReader.FEnd -ID11213=TJclMappedTextReader.FFreeStream -ID11214=TJclMappedTextReader.FIndex -ID11215=TJclMappedTextReader.FIndexOption -ID11216=TJclMappedTextReader.FLastLineNumber -ID11217=TJclMappedTextReader.FLastPosition -ID11218=TJclMappedTextReader.FLineCount -ID11219=TJclMappedTextReader.FMemoryStream -ID1122=CSIDL_COMMON_OEM_LINKS -ID11220=TJclMappedTextReader.FPosition -ID11221=TJclMappedTextReader.FSize -ID11222=TJclMappedTextReader.GetAsString -ID11223=TJclMappedTextReader.GetChars@Integer -ID11224=TJclMappedTextReader.GetEof -ID11225=TJclMappedTextReader.GetLineCount -ID11226=TJclMappedTextReader.GetLines@Integer -ID11227=TJclMappedTextReader.GetPosition -ID11228=TJclMappedTextReader.GetPositionFromLine@Integer -ID11229=TJclMappedTextReader.GoBegin -ID1123=CSIDL_COMMON_PICTURES -ID11230=TJclMappedTextReader.IndexOption -ID11231=TJclMappedTextReader.Init -ID11232=TJclMappedTextReader.LineCount -ID11233=TJclMappedTextReader.Lines -ID11234=TJclMappedTextReader.Position -ID11235=TJclMappedTextReader.PositionFromLine -ID11236=TJclMappedTextReader.PtrFromLine@Integer -ID11237=TJclMappedTextReader.Read -ID11238=TJclMappedTextReader.ReadLn -ID11239=TJclMappedTextReader.SetPosition@Integer -ID1124=CSIDL_COMMON_TEMPLATES -ID11240=TJclMappedTextReader.Size -ID11241=TJclMappedTextReader.StringFromPosition@PChar -ID11242=TJclMappedTextReaderIndex -ID11243=TJclMappedTextReaderIndex.tiFull -ID11244=TJclMappedTextReaderIndex.tiNoIndex -ID11245=TJclMapProcName -ID11246=TJclMapProcName.ProcName -ID11247=TJclMapProcName.Segment -ID11248=TJclMapProcName.VA -ID11249=TJclMapPublicsEvent -ID1125=CSIDL_COMMON_VIDEO -ID11250=TJclMapSegment -ID11251=TJclMapSegment.EndVA -ID11252=TJclMapSegment.Segment -ID11253=TJclMapSegment.StartVA -ID11254=TJclMapSegment.UnitName -ID11255=TJclMapSegmentClass -ID11256=TJclMapSegmentClass.Addr -ID11257=TJclMapSegmentClass.GroupName -ID11258=TJclMapSegmentClass.Len -ID11259=TJclMapSegmentClass.SectionName -ID1126=CSIDL_COMPUTERSNEARME -ID11260=TJclMapSegmentClass.Segment -ID11261=TJclMapSegmentClass.VA -ID11262=TJclMapSegmentEvent -ID11263=TJclMediaFileSummaryInformation -ID11264=TJclMediaFileSummaryInformation.Copyright -ID11265=TJclMediaFileSummaryInformation.Editor -ID11266=TJclMediaFileSummaryInformation.GetFMTID -ID11267=TJclMediaFileSummaryInformation.Owner -ID11268=TJclMediaFileSummaryInformation.Production -ID11269=TJclMediaFileSummaryInformation.Project -ID1127=CSIDL_CONNECTIONS -ID11270=TJclMediaFileSummaryInformation.Rating -ID11271=TJclMediaFileSummaryInformation.SequenceNo -ID11272=TJclMediaFileSummaryInformation.Source -ID11273=TJclMediaFileSummaryInformation.Status -ID11274=TJclMediaFileSummaryInformation.Supplier -ID11275=TJclMIDIOut -ID11276=TJclMIDIOut.ActiveNotes -ID11277=TJclMIDIOut.Destroy -ID11278=TJclMIDIOut.DoSendMessage@array of Byte -ID11279=TJclMIDIOut.FActiveNotes -ID1128=CSIDL_MYPICTURES -ID11280=TJclMIDIOut.FMIDIStatus -ID11281=TJclMIDIOut.FRunningStatusEnabled -ID11282=TJclMIDIOut.GetActiveNotes@TMIDIChannel -ID11283=TJclMIDIOut.GetMIDIStatus -ID11284=TJclMIDIOut.GetName -ID11285=TJclMIDIOut.GetRunningStatusEnabled -ID11286=TJclMIDIOut.IsRunningStatus@TMIDIStatusByte -ID11287=TJclMIDIOut.Name -ID11288=TJclMIDIOut.NoteIsOn@TMIDIChannel@TMIDINote -ID11289=TJclMIDIOut.ResetAllControllers@TMIDIChannel -ID1129=CSIDL_PROFILE -ID11290=TJclMIDIOut.RunningStatusEnabled -ID11291=TJclMIDIOut.SelectProgram@TMIDIChannel@TMIDIDataWord@TMIDIDataByte -ID11292=TJclMIDIOut.SendBalanceChange@TMIDIChannel@TMidiDataByte -ID11293=TJclMIDIOut.SendBalanceChangeHR@TMIDIChannel@TMidiDataWord -ID11294=TJclMIDIOut.SendBreathControlChange@TMIDIChannel@TMidiDataByte -ID11295=TJclMIDIOut.SendBreathControlChangeHR@TMIDIChannel@TMidiDataWord -ID11296=TJclMIDIOut.SendChannelMessage@TMIDIStatusByte@TMIDIChannel@TMIDIDataByte@TMIDIDataByte -ID11297=TJclMIDIOut.SendChannelPressure@TMIDIChannel@TMIDIDataByte -ID11298=TJclMIDIOut.SendChannelVolumeChange@TMIDIChannel@TMidiDataByte -ID11299=TJclMIDIOut.SendChannelVolumeChangeHR@TMIDIChannel@TMidiDataWord +ID1120=CLSID_RESOLUTION_DEFAULT +ID11200=TJclClrHost.AddAppDomain@TJclClrAppDomain +ID11201=TJclClrHost.AppDomainCount +ID11202=TJclClrHost.AppDomains +ID11203=TJclClrHost.CorRequiredVersion +ID11204=TJclClrHost.CorSystemDirectory +ID11205=TJclClrHost.CorVersion +ID11206=TJclClrHost.Create@WideString@TJclClrHostFlavor@Boolean@TJclClrHostLoaderFlags +ID11207=TJclClrHost.CreateAppDomain@WideString@TJclClrAppDomainSetup@IJclClrEvidence +ID11208=TJclClrHost.CreateDomainSetup +ID11209=TJclClrHost.CurrentAppDomain +ID1121=CLSID_RESOLUTION_FLAGS +ID11210=TJclClrHost.DefaultAppDomain +ID11211=TJclClrHost.DefaultInterface +ID11212=TJclClrHost.Destroy +ID11213=TJclClrHost.EnumAppDomains +ID11214=TJclClrHost.FAppDomains +ID11215=TJclClrHost.FDefaultInterface +ID11216=TJclClrHost.FindAppDomain@IJclClrAppDomain@TJclClrAppDomain +ID11217=TJclClrHost.FindAppDomain@WideString@TJclClrAppDomain +ID11218=TJclClrHost.GetAppDomain@Integer +ID11219=TJclClrHost.GetAppDomainCount +ID1122=CLSID_RESOLUTION_REGISTERED +ID11220=TJclClrHost.GetClrVersions@TStrings +ID11221=TJclClrHost.GetClrVersions@TWideStrings +ID11222=TJclClrHost.GetCurrentAppDomain +ID11223=TJclClrHost.GetDefaultAppDomain +ID11224=TJclClrHost.Refresh +ID11225=TJclClrHost.RemoveAppDomain@TJclClrAppDomain +ID11226=TJclClrHost.Start +ID11227=TJclClrHost.Stop +ID11228=TJclClrHostFlavor +ID11229=TJclClrHostFlavor.hfServer +ID1123=CLSID_StdComponentCategoriesMgr +ID11230=TJclClrHostFlavor.hfWorkStation +ID11231=TJclClrHostLoaderFlag +ID11232=TJclClrHostLoaderFlag.hlOptMultiDomain +ID11233=TJclClrHostLoaderFlag.hlOptMultiDomainHost +ID11234=TJclClrHostLoaderFlag.hlOptSingleDomain +ID11235=TJclClrHostLoaderFlag.hlSafeMode +ID11236=TJclClrHostLoaderFlag.hlSetPreference +ID11237=TJclClrHostLoaderFlags +ID11238=TJclClrILGenerator +ID11239=TJclClrILGenerator.Create@TJclClrMethodBody +ID1124=clTeal32 +ID11240=TJclClrILGenerator.Destroy +ID11241=TJclClrILGenerator.DumpIL@TJclInstructionDumpILOptions +ID11242=TJclClrILGenerator.FInstructions +ID11243=TJclClrILGenerator.FMethod +ID11244=TJclClrILGenerator.GetInstruction@Integer +ID11245=TJclClrILGenerator.GetInstructionCount +ID11246=TJclClrILGenerator.InstructionCount +ID11247=TJclClrILGenerator.Instructions +ID11248=TJclClrILGenerator.Method +ID11249=TJclClrImageFlag +ID1125=clTrBlack32 +ID11250=TJclClrImageFlag.cif32BitRequired +ID11251=TJclClrImageFlag.cifILOnly +ID11252=TJclClrImageFlag.cifStrongNameSinged +ID11253=TJclClrImageFlag.cifTrackDebugData +ID11254=TJclClrImageFlags +ID11255=TJclClrLocalVar +ID11256=TJclClrLocalVar.ElementType +ID11257=TJclClrLocalVar.FElementType +ID11258=TJclClrLocalVar.FFlags +ID11259=TJclClrLocalVar.Flags +ID1126=clTrBlue32 +ID11260=TJclClrLocalVar.FToken +ID11261=TJclClrLocalVar.GetName +ID11262=TJclClrLocalVar.Name +ID11263=TJclClrLocalVar.Token +ID11264=TJclClrLocalVarFlag +ID11265=TJclClrLocalVarFlag.lvfByRef +ID11266=TJclClrLocalVarFlag.lvfPinned +ID11267=TJclClrLocalVarFlags +ID11268=TJclClrLocalVarSign +ID11269=TJclClrLocalVarSign.Create@TJclClrBlobRecord +ID1127=clTrGreen32 +ID11270=TJclClrLocalVarSign.Destroy +ID11271=TJclClrLocalVarSign.FLocalVars +ID11272=TJclClrLocalVarSign.GetLocalVar@Integer +ID11273=TJclClrLocalVarSign.GetLocalVarCount +ID11274=TJclClrLocalVarSign.LocalVarCount +ID11275=TJclClrLocalVarSign.LocalVars +ID11276=TJclClrMemberAccess +ID11277=TJclClrMemberAccess.maAssembly +ID11278=TJclClrMemberAccess.maCompilercontrolled +ID11279=TJclClrMemberAccess.maFamily +ID1128=clTrRed32 +ID11280=TJclClrMemberAccess.maFamilyAndAssembly +ID11281=TJclClrMemberAccess.maFamilyOrAssembly +ID11282=TJclClrMemberAccess.maPrivate +ID11283=TJclClrMemberAccess.maPublic +ID11284=TJclClrMethod +ID11285=TJclClrMethod.DefaultInterface +ID11286=TJclClrMethod.FDefaultInterface +ID11287=TJclClrMethodBody +ID11288=TJclClrMethodBody.AddEHTable@PImageCorILMethodSectEH +ID11289=TJclClrMethodBody.AddOptILTable@Pointer@Integer +ID1129=clTrWhite32 +ID11290=TJclClrMethodBody.Code +ID11291=TJclClrMethodBody.Create@TJclClrTableMethodDefRow +ID11292=TJclClrMethodBody.Destroy +ID11293=TJclClrMethodBody.ExceptionHandlerCount +ID11294=TJclClrMethodBody.ExceptionHandlers +ID11295=TJclClrMethodBody.FCode +ID11296=TJclClrMethodBody.FEHTable +ID11297=TJclClrMethodBody.FLocalVarSign +ID11298=TJclClrMethodBody.FLocalVarSignToken +ID11299=TJclClrMethodBody.FMaxStack ID113=!!OVERLOADED_Peek_TEDILoopStack -ID1130=CSIDL_PROGRAM_FILES -ID11300=TJclMIDIOut.SendControlChange@TMIDIChannel@TMIDIDataByte@TMIDIDataByte -ID11301=TJclMIDIOut.SendControlChangeHR@TMIDIChannel@TMIDIDataByte@TMIDIDataWord -ID11302=TJclMIDIOut.SendDataEntry@TMIDIChannel@TMidiDataByte -ID11303=TJclMIDIOut.SendDataEntryHR@TMIDIChannel@TMidiDataWord -ID11304=TJclMIDIOut.SendExpressionChange@TMIDIChannel@TMidiDataByte -ID11305=TJclMIDIOut.SendExpressionChangeHR@TMIDIChannel@TMidiDataWord -ID11306=TJclMIDIOut.SendFootControllerChange@TMIDIChannel@TMidiDataByte -ID11307=TJclMIDIOut.SendFootControllerChangeHR@TMIDIChannel@TMidiDataWord -ID11308=TJclMIDIOut.SendMessage@array of Byte -ID11309=TJclMIDIOut.SendModulationWheelChange@TMIDIChannel@TMidiDataByte -ID1131=CSIDL_PROGRAM_FILES_COMMON -ID11310=TJclMIDIOut.SendModulationWheelChangeHR@TMIDIChannel@TMidiDataWord -ID11311=TJclMIDIOut.SendNoteOff@TMIDIChannel@TMIDINote@TMIDIDataByte -ID11312=TJclMIDIOut.SendNoteOn@TMIDIChannel@TMIDINote@TMIDIDataByte -ID11313=TJclMIDIOut.SendPanChange@TMIDIChannel@TMidiDataByte -ID11314=TJclMIDIOut.SendPanChangeHR@TMIDIChannel@TMidiDataWord -ID11315=TJclMIDIOut.SendPitchWheelChange@TMIDIChannel@TMIDIDataWord -ID11316=TJclMIDIOut.SendPitchWheelPos@TMIDIChannel@Single -ID11317=TJclMIDIOut.SendPolyphonicKeyPressure@TMIDIChannel@TMIDINote@TMIDIDataByte -ID11318=TJclMIDIOut.SendPortamentoTimeChange@TMIDIChannel@TMidiDataByte -ID11319=TJclMIDIOut.SendPortamentoTimeChangeHR@TMIDIChannel@TMidiDataWord -ID1132=CSIDL_RESOURCES -ID11320=TJclMIDIOut.SendProgramChange@TMIDIChannel@TMIDIDataByte -ID11321=TJclMIDIOut.SendSingleNoteTuningChange@TMidiDataByte@TMidiDataByte@array of TSingleNoteTuningData -ID11322=TJclMIDIOut.SendSwitchChange@TMIDIChannel@TMIDIDataByte@Boolean -ID11323=TJclMIDIOut.SetRunningStatusEnabled@Boolean -ID11324=TJclMIDIOut.SwitchActiveNotesOff -ID11325=TJclMIDIOut.SwitchActiveNotesOff@TMIDIChannel -ID11326=TJclMIDIOut.SwitchAllNotesOff@TMIDIChannel -ID11327=TJclMIDIOut.SwitchAllSoundOff@TMIDIChannel -ID11328=TJclMIDIOut.SwitchHold2@TMIDIChannel@Boolean -ID11329=TJclMIDIOut.SwitchLegato@TMIDIChannel@Boolean -ID1133=CSIDL_RESOURCES_LOCALIZED -ID11330=TJclMIDIOut.SwitchLocalControl@TMIDIChannel@Boolean -ID11331=TJclMIDIOut.SwitchMonoModeOn@TMIDIChannel@Integer -ID11332=TJclMIDIOut.SwitchOmniModeOff@TMIDIChannel -ID11333=TJclMIDIOut.SwitchOmniModeOn@TMIDIChannel -ID11334=TJclMIDIOut.SwitchPolyModeOn@TMIDIChannel -ID11335=TJclMIDIOut.SwitchPortamento@TMIDIChannel@Boolean -ID11336=TJclMIDIOut.SwitchSoftPedal@TMIDIChannel@Boolean -ID11337=TJclMIDIOut.SwitchSostenuto@TMIDIChannel@Boolean -ID11338=TJclMIDIOut.SwitchSustain@TMIDIChannel@Boolean -ID11339=TJclMiscSummaryInformation -ID1134=CSIDL_SYSTEM -ID11340=TJclMiscSummaryInformation.GetFMTID -ID11341=TJclMixer -ID11342=TJclMixer.BuildDevices -ID11343=TJclMixer.CallbackWnd -ID11344=TJclMixer.Create@THandle -ID11345=TJclMixer.Destroy -ID11346=TJclMixer.DeviceCount -ID11347=TJclMixer.Devices -ID11348=TJclMixer.FCallbackWnd -ID11349=TJclMixer.FDeviceList -ID1135=CSIDL_WINDOWS -ID11350=TJclMixer.FirstDevice -ID11351=TJclMixer.GetDeviceCount -ID11352=TJclMixer.GetDevices@Integer -ID11353=TJclMixer.GetFirstDevice -ID11354=TJclMixer.GetLineByID@HMIXER@DWORD -ID11355=TJclMixer.GetLineControlByID@HMIXER@DWORD -ID11356=TJclMixer.GetLineMute@Integer -ID11357=TJclMixer.GetLineVolume@Integer -ID11358=TJclMixer.LineByID -ID11359=TJclMixer.LineControlByID -ID1136=CX8_FLAG -ID11360=TJclMixer.LineMute -ID11361=TJclMixer.LineVolume -ID11362=TJclMixer.SetLineMute@Integer@Boolean -ID11363=TJclMixer.SetLineVolume@Integer@Cardinal -ID11364=TJclMixer.SpeakersMute -ID11365=TJclMixer.SpeakersVolume -ID11366=TJclMixerDestination -ID11367=TJclMixerDestination.BuildSources -ID11368=TJclMixerDestination.Create@TJclMixerDevice@Cardinal -ID11369=TJclMixerDestination.Destroy -ID1137=CyclePerDeg -ID11370=TJclMixerDestination.FSources -ID11371=TJclMixerDestination.GetSourceCount -ID11372=TJclMixerDestination.GetSources@Integer -ID11373=TJclMixerDestination.SourceCount -ID11374=TJclMixerDestination.Sources -ID11375=TJclMixerDevice -ID11376=TJclMixerDevice.BuildDestinations -ID11377=TJclMixerDevice.BuildLines -ID11378=TJclMixerDevice.Capabilities -ID11379=TJclMixerDevice.Close -ID1138=CyclePerGrad -ID11380=TJclMixerDevice.Create@Cardinal@THandle -ID11381=TJclMixerDevice.DestinationCount -ID11382=TJclMixerDevice.Destinations -ID11383=TJclMixerDevice.Destroy -ID11384=TJclMixerDevice.DeviceIndex -ID11385=TJclMixerDevice.FCapabilities -ID11386=TJclMixerDevice.FDestinations -ID11387=TJclMixerDevice.FDeviceIndex -ID11388=TJclMixerDevice.FHandle -ID11389=TJclMixerDevice.FindLineControl@DWORD@DWORD -ID1139=CyclePerRad -ID11390=TJclMixerDevice.FLines -ID11391=TJclMixerDevice.GetDestinationCount -ID11392=TJclMixerDevice.GetDestinations@Integer -ID11393=TJclMixerDevice.GetLineByComponentType@DWORD -ID11394=TJclMixerDevice.GetLineByID@DWORD -ID11395=TJclMixerDevice.GetLineControlByID@DWORD -ID11396=TJclMixerDevice.GetLineCount -ID11397=TJclMixerDevice.GetLines@Integer -ID11398=TJclMixerDevice.GetLineUniformValue@DWORD@DWORD -ID11399=TJclMixerDevice.GetProductName +ID1130=CLTYPE_LEN +ID11300=TJclClrMethodBody.FMethod +ID11301=TJclClrMethodBody.FSize +ID11302=TJclClrMethodBody.GetExceptionHandler@Integer +ID11303=TJclClrMethodBody.GetExceptionHandlerCount +ID11304=TJclClrMethodBody.GetLocalVarSign +ID11305=TJclClrMethodBody.GetLocalVarSignData +ID11306=TJclClrMethodBody.LocalVarSign +ID11307=TJclClrMethodBody.LocalVarSignData +ID11308=TJclClrMethodBody.LocalVarSignToken +ID11309=TJclClrMethodBody.MaxStack +ID1131=clWhite32 +ID11310=TJclClrMethodBody.Method +ID11311=TJclClrMethodBody.ParseMoreSections@PImageCorILMethodSectHeader +ID11312=TJclClrMethodBody.Size +ID11313=TJclClrMethodCodeType +ID11314=TJclClrMethodCodeType.ctIL +ID11315=TJclClrMethodCodeType.ctNative +ID11316=TJclClrMethodCodeType.ctOptIL +ID11317=TJclClrMethodCodeType.ctRuntime +ID11318=TJclClrMethodFlag +ID11319=TJclClrMethodFlag.mfAbstract +ID1132=clYellow32 +ID11320=TJclClrMethodFlag.mfCheckAccessOnOverride +ID11321=TJclClrMethodFlag.mfFinal +ID11322=TJclClrMethodFlag.mfHasSecurity +ID11323=TJclClrMethodFlag.mfHideBySig +ID11324=TJclClrMethodFlag.mfPInvokeImpl +ID11325=TJclClrMethodFlag.mfRequireSecObject +ID11326=TJclClrMethodFlag.mfRTSpcialName +ID11327=TJclClrMethodFlag.mfSpecialName +ID11328=TJclClrMethodFlag.mfStatic +ID11329=TJclClrMethodFlag.mfUnmanagedExport +ID1133=CMOV_FLAG +ID11330=TJclClrMethodFlag.mfVirtual +ID11331=TJclClrMethodFlags +ID11332=TJclClrMethodImplFlag +ID11333=TJclClrMethodImplFlag.mifForwardRef +ID11334=TJclClrMethodImplFlag.mifInternalCall +ID11335=TJclClrMethodImplFlag.mifNoInlining +ID11336=TJclClrMethodImplFlag.mifPreserveSig +ID11337=TJclClrMethodImplFlag.mifSynchronized +ID11338=TJclClrMethodImplFlags +ID11339=TJclClrMethodParam +ID1134=CMYKToBGR@Pointer@Pointer@Byte@Cardinal +ID11340=TJclClrMethodParam.ArraySign +ID11341=TJclClrMethodParam.ByRef +ID11342=TJclClrMethodParam.Create@TJclClrBlobRecord +ID11343=TJclClrMethodParam.CustomModifierCount +ID11344=TJclClrMethodParam.CustomModifiers +ID11345=TJclClrMethodParam.Destroy +ID11346=TJclClrMethodParam.ElementType +ID11347=TJclClrMethodParam.FArraySign +ID11348=TJclClrMethodParam.FByRef +ID11349=TJclClrMethodParam.FCustomMods +ID1135=CMYKToBGR@Pointer@Pointer@Pointer@Pointer@Pointer@Byte@Cardinal +ID11350=TJclClrMethodParam.FElementType +ID11351=TJclClrMethodParam.FMethodSign +ID11352=TJclClrMethodParam.FToken +ID11353=TJclClrMethodParam.GetCustomModifier@Integer +ID11354=TJclClrMethodParam.GetCustomModifierCount +ID11355=TJclClrMethodParam.MethodSign +ID11356=TJclClrMethodParam.Token +ID11357=TJclClrMethodRetType +ID11358=TJclClrMethodSign +ID11359=TJclClrMethodSign.Create@TJclClrBlobRecord +ID1136=CNLEN +ID11360=TJclClrMethodSign.Destroy +ID11361=TJclClrMethodSign.FFlags +ID11362=TJclClrMethodSign.Flags +ID11363=TJclClrMethodSign.FParams +ID11364=TJclClrMethodSign.FRetType +ID11365=TJclClrMethodSign.GetParam@Integer +ID11366=TJclClrMethodSign.GetParamCount +ID11367=TJclClrMethodSign.ParamCount +ID11368=TJclClrMethodSign.Params +ID11369=TJclClrMethodSign.RetType +ID1137=CodeBlockName@TUnicodeBlock +ID11370=TJclClrMethodSignFlag +ID11371=TJclClrMethodSignFlag.mfDefault +ID11372=TJclClrMethodSignFlag.mfExplicitThis +ID11373=TJclClrMethodSignFlag.mfHasThis +ID11374=TJclClrMethodSignFlag.mfVarArg +ID11375=TJclClrMethodSignFlags +ID11376=TJclClrObject +ID11377=TJclClrObject.Create@WideString@WideString@WideString@array of const +ID11378=TJclClrObject.Create@WideString@WideString@WideString@Boolean +ID11379=TJclClrObject.Fields +ID1138=CodeBlockRange@TUnicodeBlock +ID11380=TJclClrObject.GetField@WideString +ID11381=TJclClrObject.GetMethod@WideString +ID11382=TJclClrObject.GetProperty@WideString +ID11383=TJclClrObject.Methods +ID11384=TJclClrObject.Properties +ID11385=TJclClrParamKind +ID11386=TJclClrParamKind.pkHasDefault +ID11387=TJclClrParamKind.pkHasFieldMarshal +ID11388=TJclClrParamKind.pkIn +ID11389=TJclClrParamKind.pkOptional +ID1139=CodePageFromCharsetName@string +ID11390=TJclClrParamKind.pkOut +ID11391=TJclClrParamKinds +ID11392=TJclClrProperty +ID11393=TJclClrResourceRecord +ID11394=TJclClrResourceRecord.Create@PChar@DWORD@DWORD +ID11395=TJclClrResourceRecord.Data +ID11396=TJclClrResourceRecord.FData +ID11397=TJclClrResourceRecord.FOffset +ID11398=TJclClrResourceRecord.FRVA +ID11399=TJclClrResourceRecord.Offset ID114=!!OVERLOADED_PeekEvents_TJclInputBuffer -ID1140=CYRIX_APIC -ID11400=TJclMixerDevice.Handle -ID11401=TJclMixerDevice.LineByComponentType -ID11402=TJclMixerDevice.LineByID -ID11403=TJclMixerDevice.LineControlByID -ID11404=TJclMixerDevice.LineCount -ID11405=TJclMixerDevice.Lines -ID11406=TJclMixerDevice.LineUniformValue -ID11407=TJclMixerDevice.Open@THandle -ID11408=TJclMixerDevice.ProductName -ID11409=TJclMixerDevice.SetLineUniformValue@DWORD@DWORD@Cardinal -ID1141=CYRIX_BIT_10 -ID11410=TJclMixerLine -ID11411=TJclMixerLine.BuildLineControls -ID11412=TJclMixerLine.ComponentString -ID11413=TJclMixerLine.ComponentTypeToString@DWORD -ID11414=TJclMixerLine.Create@TJclMixerDevice -ID11415=TJclMixerLine.Destroy -ID11416=TJclMixerLine.FLineControls -ID11417=TJclMixerLine.FLineInfo -ID11418=TJclMixerLine.FMixerDevice -ID11419=TJclMixerLine.GetComponentString -ID1142=CYRIX_BIT_11 -ID11420=TJclMixerLine.GetHasControlType@DWORD -ID11421=TJclMixerLine.GetID -ID11422=TJclMixerLine.GetLineControlByType@DWORD -ID11423=TJclMixerLine.GetLineControlCount -ID11424=TJclMixerLine.GetLineControls@Integer -ID11425=TJclMixerLine.GetName -ID11426=TJclMixerLine.HasControlType -ID11427=TJclMixerLine.ID -ID11428=TJclMixerLine.LineControlByType -ID11429=TJclMixerLine.LineControlCount -ID1143=CYRIX_BIT_16 -ID11430=TJclMixerLine.LineControls -ID11431=TJclMixerLine.LineInfo -ID11432=TJclMixerLine.MixerDevice -ID11433=TJclMixerLine.Name -ID11434=TJclMixerLineControl -ID11435=TJclMixerLineControl.ControlInfo -ID11436=TJclMixerLineControl.Create@TJclMixerLine@TMixerControl -ID11437=TJclMixerLineControl.Destroy -ID11438=TJclMixerLineControl.FControlInfo -ID11439=TJclMixerLineControl.FIsList -ID1144=CYRIX_BIT_17 -ID11440=TJclMixerLineControl.FIsMultiple -ID11441=TJclMixerLineControl.FIsUniform -ID11442=TJclMixerLineControl.FListText -ID11443=TJclMixerLineControl.FMixerLine -ID11444=TJclMixerLineControl.FormatValue@Cardinal -ID11445=TJclMixerLineControl.GetID -ID11446=TJclMixerLineControl.GetIsDisabled -ID11447=TJclMixerLineControl.GetListText -ID11448=TJclMixerLineControl.GetName -ID11449=TJclMixerLineControl.GetUniformValue -ID1145=CYRIX_BIT_18 -ID11450=TJclMixerLineControl.GetValue -ID11451=TJclMixerLineControl.GetValueString -ID11452=TJclMixerLineControl.ID -ID11453=TJclMixerLineControl.IsDisabled -ID11454=TJclMixerLineControl.IsList -ID11455=TJclMixerLineControl.IsMultiple -ID11456=TJclMixerLineControl.IsUniform -ID11457=TJclMixerLineControl.ListText -ID11458=TJclMixerLineControl.MixerLine -ID11459=TJclMixerLineControl.Name -ID1146=CYRIX_BIT_19 -ID11460=TJclMixerLineControl.PrepareControlDetailsStruc@TMixerControlDetails@Boolean@Boolean -ID11461=TJclMixerLineControl.SetUniformValue@Cardinal -ID11462=TJclMixerLineControl.SetValue@TDynCardinalArray -ID11463=TJclMixerLineControl.UniformValue -ID11464=TJclMixerLineControl.Value -ID11465=TJclMixerLineControl.ValueString -ID11466=TJclMixerSource -ID11467=TJclMixerSource.Create@TJclMixerDestination@Cardinal -ID11468=TJclMixerSource.FMixerDestination -ID11469=TJclMixerSource.MixerDestination -ID1147=CYRIX_BIT_20 -ID11470=TJclModuleArray -ID11471=TJclModuleInfo -ID11472=TJclModuleInfo.Create@PModuleInfo -ID11473=TJclModuleInfo.FNameIndex -ID11474=TJclModuleInfo.FSegmentCount -ID11475=TJclModuleInfo.FSegments -ID11476=TJclModuleInfo.GetSegment@Integer -ID11477=TJclModuleInfo.NameIndex -ID11478=TJclModuleInfo.Segment -ID11479=TJclModuleInfo.SegmentCount -ID1148=CYRIX_BIT_21 -ID11480=TJclModuleInfoList -ID11481=TJclModuleInfoList.AddModule@HMODULE@Boolean -ID11482=TJclModuleInfoList.BuildModulesList -ID11483=TJclModuleInfoList.Create@Boolean@Boolean -ID11484=TJclModuleInfoList.CreateItemForAddress@Pointer@Boolean -ID11485=TJclModuleInfoList.DynamicBuild -ID11486=TJclModuleInfoList.FDynamicBuild -ID11487=TJclModuleInfoList.FSystemModulesOnly -ID11488=TJclModuleInfoList.GetItems@Integer -ID11489=TJclModuleInfoList.GetModuleFromAddress@Pointer -ID1149=CYRIX_BIT_22 -ID11490=TJclModuleInfoList.IsSystemModuleAddress@Pointer -ID11491=TJclModuleInfoList.IsValidModuleAddress@Pointer -ID11492=TJclModuleInfoList.Items -ID11493=TJclModuleInfoList.ModuleFromAddress -ID11494=TJclMSISummaryInformation -ID11495=TJclMSISummaryInformation.GetFMTID -ID11496=TJclMSISummaryInformation.Restrict -ID11497=TJclMSISummaryInformation.Source -ID11498=TJclMSISummaryInformation.Version -ID11499=TJclMultiplexStream +ID1140=Color32@Byte@Byte@Byte@Byte +ID11400=TJclClrResourceRecord.RVA +ID11401=TJclClrSignature +ID11402=TJclClrSignature.Blob +ID11403=TJclClrSignature.Create@TJclClrBlobRecord +ID11404=TJclClrSignature.FBlob +ID11405=TJclClrSignature.Inc@PJclByteArray@Integer +ID11406=TJclClrSignature.IsModifierType@TJclClrElementType +ID11407=TJclClrSignature.IsPrimitiveType@TJclClrElementType +ID11408=TJclClrSignature.ReadByte +ID11409=TJclClrSignature.ReadElementType +ID1141=Color32@Byte@TPalette32 +ID11410=TJclClrSignature.ReadInteger +ID11411=TJclClrSignature.ReadToken +ID11412=TJclClrSignature.ReadValue +ID11413=TJclClrSignature.UncompressCallingConv@PJclByteArray +ID11414=TJclClrSignature.UncompressData@PJclByteArray@DWord +ID11415=TJclClrSignature.UncompressedDataSize@PJclByteArray +ID11416=TJclClrSignature.UncompressElementType@PJclByteArray +ID11417=TJclClrSignature.UncompressFieldSignature +ID11418=TJclClrSignature.UncompressSignedInt@PJclByteArray@Integer +ID11419=TJclClrSignature.UncompressToken@PJclByteArray@TJclClrToken +ID1142=Color32@TColor +ID11420=TJclClrSignature.UncompressTypeSignature@PJclByteArray +ID11421=TJclClrStream +ID11422=TJclClrStream.Create@TJclPeMetadata@PClrStreamHeader +ID11423=TJclClrStream.Data +ID11424=TJclClrStream.FHeader +ID11425=TJclClrStream.FMetadata +ID11426=TJclClrStream.GetData +ID11427=TJclClrStream.GetName +ID11428=TJclClrStream.GetOffset +ID11429=TJclClrStream.GetSize +ID1143=ColorToHTML@TColor +ID11430=TJclClrStream.Header +ID11431=TJclClrStream.Metadata +ID11432=TJclClrStream.Name +ID11433=TJclClrStream.Offset +ID11434=TJclClrStream.Size +ID11435=TJclClrStreamClass +ID11436=TJclClrStringFormatting +ID11437=TJclClrStringFormatting.sfAnsi +ID11438=TJclClrStringFormatting.sfAutoChar +ID11439=TJclClrStringFormatting.sfUnicode +ID1144=CoMallocFree@Pointer +ID11440=TJclClrStringsStream +ID11441=TJclClrStringsStream.At@DWORD +ID11442=TJclClrStringsStream.Create@TJclPeMetadata@PClrStreamHeader +ID11443=TJclClrStringsStream.Destroy +ID11444=TJclClrStringsStream.FStrings +ID11445=TJclClrStringsStream.GetOffset@Integer +ID11446=TJclClrStringsStream.GetString@Integer +ID11447=TJclClrStringsStream.GetStringCount +ID11448=TJclClrStringsStream.Offsets +ID11449=TJclClrStringsStream.StringCount +ID1145=Combinations@Cardinal@Cardinal +ID11450=TJclClrStringsStream.Strings +ID11451=TJclClrTable +ID11452=TJclClrTable.AddRow@TJclClrTableRow +ID11453=TJclClrTable.Create@TJclClrTableStream@Pointer@Integer +ID11454=TJclClrTable.Data +ID11455=TJclClrTable.Destroy +ID11456=TJclClrTable.DumpIL +ID11457=TJclClrTable.FData +ID11458=TJclClrTable.FPtr +ID11459=TJclClrTable.FRowCount +ID1146=CombineCOMSDataOfCOMSDefinition@TEDISEFCompositeElement +ID11460=TJclClrTable.FRows +ID11461=TJclClrTable.FSize +ID11462=TJclClrTable.FStream +ID11463=TJclClrTable.GetCodedIndexTag@DWORD@DWORD@Boolean +ID11464=TJclClrTable.GetCodedIndexValue@DWORD@DWORD@Boolean +ID11465=TJclClrTable.GetOffset +ID11466=TJclClrTable.GetRow@Integer +ID11467=TJclClrTable.GetRowCount +ID11468=TJclClrTable.IsWideIndex@array of TJclClrTableKind +ID11469=TJclClrTable.IsWideIndex@TJclClrHeapKind +ID1147=CombineCOMSDataOfSEGSDefinition@TEDISEFCompositeElement +ID11470=TJclClrTable.Load +ID11471=TJclClrTable.Offset +ID11472=TJclClrTable.ReadByte +ID11473=TJclClrTable.ReadCompressedValue +ID11474=TJclClrTable.ReadDWord +ID11475=TJclClrTable.ReadIndex@array of TJclClrTableKind +ID11476=TJclClrTable.ReadIndex@TJclClrHeapKind +ID11477=TJclClrTable.ReadWord +ID11478=TJclClrTable.RealRowCount +ID11479=TJclClrTable.Reset +ID1148=CombineELMSDataOfCOMSorSEGSDefinition@TEDISEFElement@TEDISEFDataObjectList +ID11480=TJclClrTable.RowCount +ID11481=TJclClrTable.Rows +ID11482=TJclClrTable.SetSize@Integer +ID11483=TJclClrTable.Size +ID11484=TJclClrTable.Stream +ID11485=TJclClrTable.TableRowClass +ID11486=TJclClrTable.Update +ID11487=TJclClrTableAssembly +ID11488=TJclClrTableAssembly.GetRow@Integer +ID11489=TJclClrTableAssembly.Rows +ID1149=CombineELMSDataOfELMSDefinition@TEDISEFElement +ID11490=TJclClrTableAssembly.TableRowClass +ID11491=TJclClrTableAssemblyOS +ID11492=TJclClrTableAssemblyOS.GetRow@Integer +ID11493=TJclClrTableAssemblyOS.Rows +ID11494=TJclClrTableAssemblyOS.TableRowClass +ID11495=TJclClrTableAssemblyOSRow +ID11496=TJclClrTableAssemblyOSRow.Create@TJclClrTable +ID11497=TJclClrTableAssemblyOSRow.FMajorVersion +ID11498=TJclClrTableAssemblyOSRow.FMinorVersion +ID11499=TJclClrTableAssemblyOSRow.FPlatformID ID115=!!OVERLOADED_Power_TJclRational -ID1150=CYRIX_BIT_24 -ID11500=TJclMultiplexStream.Add@TStream -ID11501=TJclMultiplexStream.Clear -ID11502=TJclMultiplexStream.Count -ID11503=TJclMultiplexStream.Create -ID11504=TJclMultiplexStream.Delete@Integer -ID11505=TJclMultiplexStream.Destroy -ID11506=TJclMultiplexStream.FReadStreamIndex -ID11507=TJclMultiplexStream.FStreams -ID11508=TJclMultiplexStream.GetCount -ID11509=TJclMultiplexStream.GetReadStream -ID1151=CYRIX_BIT_25 -ID11510=TJclMultiplexStream.GetStream@Integer -ID11511=TJclMultiplexStream.Read@@Longint -ID11512=TJclMultiplexStream.ReadStream -ID11513=TJclMultiplexStream.ReadStreamIndex -ID11514=TJclMultiplexStream.Remove@TStream -ID11515=TJclMultiplexStream.Seek@Int64@TSeekOrigin -ID11516=TJclMultiplexStream.SetReadStream@TStream -ID11517=TJclMultiplexStream.SetReadStreamIndex@Integer -ID11518=TJclMultiplexStream.SetSize@Int64 -ID11519=TJclMultiplexStream.SetStream@Integer@TStream -ID1152=CYRIX_BIT_26 -ID11520=TJclMultiplexStream.Streams -ID11521=TJclMultiplexStream.Write@@Longint -ID11522=TJclMusicSummaryInformation -ID11523=TJclMusicSummaryInformation.GetFMTID -ID11524=TJclNullStream -ID11525=TJclNullStream.FPosition -ID11526=TJclNullStream.FSize -ID11527=TJclNullStream.Read@@Longint -ID11528=TJclNullStream.Seek@Int64@TSeekOrigin -ID11529=TJclNullStream.SetSize@Int64 -ID1153=CYRIX_BIT_27 -ID11530=TJclNullStream.Write@@Longint -ID11531=TJclObjNameSymbolInfo -ID11532=TJclObjNameSymbolInfo.Create@PSymbolInfo -ID11533=TJclObjNameSymbolInfo.FNameIndex -ID11534=TJclObjNameSymbolInfo.FSignature -ID11535=TJclObjNameSymbolInfo.NameIndex -ID11536=TJclObjNameSymbolInfo.Signature -ID11537=TJclOpCode -ID11538=TJclOpCode.opAdd -ID11539=TJclOpCode.opAdd_ovf -ID1154=CYRIX_BIT_28 -ID11540=TJclOpCode.opAdd_ovf_un -ID11541=TJclOpCode.opAnd -ID11542=TJclOpCode.opArgLlist -ID11543=TJclOpCode.opBeq -ID11544=TJclOpCode.opBeq_s -ID11545=TJclOpCode.opBge -ID11546=TJclOpCode.opBge_s -ID11547=TJclOpCode.opBge_un -ID11548=TJclOpCode.opBge_un_s -ID11549=TJclOpCode.opBgt -ID1155=CYRIX_BIT_29 -ID11550=TJclOpCode.opBgt_s -ID11551=TJclOpCode.opBgt_un -ID11552=TJclOpCode.opBgt_un_s -ID11553=TJclOpCode.opBle -ID11554=TJclOpCode.opBle_s -ID11555=TJclOpCode.opBle_un -ID11556=TJclOpCode.opBle_un_s -ID11557=TJclOpCode.opBlt -ID11558=TJclOpCode.opBlt_s -ID11559=TJclOpCode.opBlt_un -ID1156=CYRIX_BIT_30 -ID11560=TJclOpCode.opBlt_un_s -ID11561=TJclOpCode.opBne_un -ID11562=TJclOpCode.opBne_un_s -ID11563=TJclOpCode.opBox -ID11564=TJclOpCode.opBr -ID11565=TJclOpCode.opBr_s -ID11566=TJclOpCode.opBreak -ID11567=TJclOpCode.opBrFalse -ID11568=TJclOpCode.opBrFalse_s -ID11569=TJclOpCode.opBrTrue -ID1157=CYRIX_BIT_31 -ID11570=TJclOpCode.opBrTrue_s -ID11571=TJclOpCode.opCall -ID11572=TJclOpCode.opCalli -ID11573=TJclOpCode.opCallVirt -ID11574=TJclOpCode.opCastClass -ID11575=TJclOpCode.opCeq -ID11576=TJclOpCode.opCgt -ID11577=TJclOpCode.opCgt_un -ID11578=TJclOpCode.opCkFinite -ID11579=TJclOpCode.opClt -ID1158=CYRIX_CMOV -ID11580=TJclOpCode.opClt_un -ID11581=TJclOpCode.opConv_i -ID11582=TJclOpCode.opConv_i1 -ID11583=TJclOpCode.opConv_i2 -ID11584=TJclOpCode.opConv_i4 -ID11585=TJclOpCode.opConv_i8 -ID11586=TJclOpCode.opConv_ovf_i -ID11587=TJclOpCode.opConv_ovf_i_un -ID11588=TJclOpCode.opConv_ovf_i1 -ID11589=TJclOpCode.opConv_ovf_i1_un -ID1159=CYRIX_CX8 -ID11590=TJclOpCode.opConv_ovf_i2 -ID11591=TJclOpCode.opConv_ovf_i2_un -ID11592=TJclOpCode.opConv_ovf_i4 -ID11593=TJclOpCode.opConv_ovf_i4_un -ID11594=TJclOpCode.opConv_ovf_i8 -ID11595=TJclOpCode.opConv_ovf_i8_un -ID11596=TJclOpCode.opConv_ovf_u -ID11597=TJclOpCode.opConv_ovf_u_un -ID11598=TJclOpCode.opConv_ovf_u1 -ID11599=TJclOpCode.opConv_ovf_u1_un +ID1150=CombineMem +ID11500=TJclClrTableAssemblyOSRow.GetVersion +ID11501=TJclClrTableAssemblyOSRow.MajorVersion +ID11502=TJclClrTableAssemblyOSRow.MinorVersion +ID11503=TJclClrTableAssemblyOSRow.PlatformID +ID11504=TJclClrTableAssemblyOSRow.Version +ID11505=TJclClrTableAssemblyProcessor +ID11506=TJclClrTableAssemblyProcessor.GetRow@Integer +ID11507=TJclClrTableAssemblyProcessor.Rows +ID11508=TJclClrTableAssemblyProcessor.TableRowClass +ID11509=TJclClrTableAssemblyProcessorRow +ID1151=CombineReg +ID11510=TJclClrTableAssemblyProcessorRow.Create@TJclClrTable +ID11511=TJclClrTableAssemblyProcessorRow.FProcessor +ID11512=TJclClrTableAssemblyProcessorRow.Processor +ID11513=TJclClrTableAssemblyRef +ID11514=TJclClrTableAssemblyRef.GetRow@Integer +ID11515=TJclClrTableAssemblyRef.Rows +ID11516=TJclClrTableAssemblyRef.TableRowClass +ID11517=TJclClrTableAssemblyRefOS +ID11518=TJclClrTableAssemblyRefOS.GetRow@Integer +ID11519=TJclClrTableAssemblyRefOS.Rows +ID1152=CombineSEGSDataOfSEGSDefinition@TEDISEFSegment +ID11520=TJclClrTableAssemblyRefOS.TableRowClass +ID11521=TJclClrTableAssemblyRefOSRow +ID11522=TJclClrTableAssemblyRefOSRow.AssemblyRef +ID11523=TJclClrTableAssemblyRefOSRow.AssemblyRefIdx +ID11524=TJclClrTableAssemblyRefOSRow.Create@TJclClrTable +ID11525=TJclClrTableAssemblyRefOSRow.FAssemblyRefIdx +ID11526=TJclClrTableAssemblyRefOSRow.GetAssemblyRef +ID11527=TJclClrTableAssemblyRefProcessor +ID11528=TJclClrTableAssemblyRefProcessor.GetRow@Integer +ID11529=TJclClrTableAssemblyRefProcessor.Rows +ID1153=CombineSEGSDataOfSETSDefinition@TEDISEFSegment +ID11530=TJclClrTableAssemblyRefProcessor.TableRowClass +ID11531=TJclClrTableAssemblyRefProcessorRow +ID11532=TJclClrTableAssemblyRefProcessorRow.AssemblyRef +ID11533=TJclClrTableAssemblyRefProcessorRow.AssemblyRefIdx +ID11534=TJclClrTableAssemblyRefProcessorRow.Create@TJclClrTable +ID11535=TJclClrTableAssemblyRefProcessorRow.FAssemblyRefIdx +ID11536=TJclClrTableAssemblyRefProcessorRow.GetAssemblyRef +ID11537=TJclClrTableAssemblyRefRow +ID11538=TJclClrTableAssemblyRefRow.BuildNumber +ID11539=TJclClrTableAssemblyRefRow.Create@TJclClrTable +ID1154=CompareCLRVersions@string@string +ID11540=TJclClrTableAssemblyRefRow.Culture +ID11541=TJclClrTableAssemblyRefRow.CultureOffset +ID11542=TJclClrTableAssemblyRefRow.DumpIL +ID11543=TJclClrTableAssemblyRefRow.FBuildNumber +ID11544=TJclClrTableAssemblyRefRow.FCultureOffset +ID11545=TJclClrTableAssemblyRefRow.FFlagMask +ID11546=TJclClrTableAssemblyRefRow.FHashValueOffset +ID11547=TJclClrTableAssemblyRefRow.FlagMask +ID11548=TJclClrTableAssemblyRefRow.Flags +ID11549=TJclClrTableAssemblyRefRow.FMajorVersion +ID1155=CompareFiles@TFileName@TFileName@Longint +ID11550=TJclClrTableAssemblyRefRow.FMinorVersion +ID11551=TJclClrTableAssemblyRefRow.FNameOffset +ID11552=TJclClrTableAssemblyRefRow.FPublicKeyOrTokenOffset +ID11553=TJclClrTableAssemblyRefRow.FRevisionNumber +ID11554=TJclClrTableAssemblyRefRow.GetCulture +ID11555=TJclClrTableAssemblyRefRow.GetFlags +ID11556=TJclClrTableAssemblyRefRow.GetHashValue +ID11557=TJclClrTableAssemblyRefRow.GetName +ID11558=TJclClrTableAssemblyRefRow.GetPublicKeyOrToken +ID11559=TJclClrTableAssemblyRefRow.GetVersion +ID1156=CompareNaturalStr@string@string +ID11560=TJclClrTableAssemblyRefRow.HashValue +ID11561=TJclClrTableAssemblyRefRow.HashValueOffset +ID11562=TJclClrTableAssemblyRefRow.MajorVersion +ID11563=TJclClrTableAssemblyRefRow.MinorVersion +ID11564=TJclClrTableAssemblyRefRow.Name +ID11565=TJclClrTableAssemblyRefRow.NameOffset +ID11566=TJclClrTableAssemblyRefRow.PublicKeyOrToken +ID11567=TJclClrTableAssemblyRefRow.PublicKeyOrTokenOffset +ID11568=TJclClrTableAssemblyRefRow.RevisionNumber +ID11569=TJclClrTableAssemblyRefRow.Version +ID1157=CompareNaturalText@string@string +ID11570=TJclClrTableAssemblyRow +ID11571=TJclClrTableAssemblyRow.AssemblyFlags@DWORD +ID11572=TJclClrTableAssemblyRow.AssemblyFlags@TJclClrAssemblyFlags +ID11573=TJclClrTableAssemblyRow.BuildNumber +ID11574=TJclClrTableAssemblyRow.Create@TJclClrTable +ID11575=TJclClrTableAssemblyRow.Culture +ID11576=TJclClrTableAssemblyRow.CultureOffset +ID11577=TJclClrTableAssemblyRow.DumpIL +ID11578=TJclClrTableAssemblyRow.FBuildNumber +ID11579=TJclClrTableAssemblyRow.FCultureOffset +ID1158=CompareStreams@TStream@TStream@Longint +ID11580=TJclClrTableAssemblyRow.FFlagMask +ID11581=TJclClrTableAssemblyRow.FHashAlgId +ID11582=TJclClrTableAssemblyRow.FlagMask +ID11583=TJclClrTableAssemblyRow.Flags +ID11584=TJclClrTableAssemblyRow.FMajorVersion +ID11585=TJclClrTableAssemblyRow.FMinorVersion +ID11586=TJclClrTableAssemblyRow.FNameOffset +ID11587=TJclClrTableAssemblyRow.FPublicKeyOffset +ID11588=TJclClrTableAssemblyRow.FRevisionNumber +ID11589=TJclClrTableAssemblyRow.GetCulture +ID1159=CompilerCapabilities +ID11590=TJclClrTableAssemblyRow.GetFlags +ID11591=TJclClrTableAssemblyRow.GetName +ID11592=TJclClrTableAssemblyRow.GetPublicKey +ID11593=TJclClrTableAssemblyRow.GetVersion +ID11594=TJclClrTableAssemblyRow.HashAlgId +ID11595=TJclClrTableAssemblyRow.MajorVersion +ID11596=TJclClrTableAssemblyRow.MinorVersion +ID11597=TJclClrTableAssemblyRow.Name +ID11598=TJclClrTableAssemblyRow.NameOffset +ID11599=TJclClrTableAssemblyRow.PublicKey ID116=!!OVERLOADED_ProcNameFromAddr_TJclTD32InfoScanner -ID1160=CYRIX_DE -ID11600=TJclOpCode.opConv_ovf_u2 -ID11601=TJclOpCode.opConv_ovf_u2_un -ID11602=TJclOpCode.opConv_ovf_u4 -ID11603=TJclOpCode.opConv_ovf_u4_un -ID11604=TJclOpCode.opConv_ovf_u8 -ID11605=TJclOpCode.opConv_ovf_u8_un -ID11606=TJclOpCode.opConv_r_un -ID11607=TJclOpCode.opConv_r4 -ID11608=TJclOpCode.opConv_r8 -ID11609=TJclOpCode.opConv_u -ID1161=CYRIX_FPU -ID11610=TJclOpCode.opConv_u1 -ID11611=TJclOpCode.opConv_u2 -ID11612=TJclOpCode.opConv_u4 -ID11613=TJclOpCode.opConv_u8 -ID11614=TJclOpCode.opCpBlk -ID11615=TJclOpCode.opCpObj -ID11616=TJclOpCode.opDiv -ID11617=TJclOpCode.opDiv_un -ID11618=TJclOpCode.opDup -ID11619=TJclOpCode.opEndFilter -ID1162=CYRIX_MCA -ID11620=TJclOpCode.opEndFinally -ID11621=TJclOpCode.opInitBlk -ID11622=TJclOpCode.opInitObj -ID11623=TJclOpCode.opIsInst -ID11624=TJclOpCode.opJmp -ID11625=TJclOpCode.opLdArg -ID11626=TJclOpCode.opLdArg_0 -ID11627=TJclOpCode.opLdArg_1 -ID11628=TJclOpCode.opLdArg_2 -ID11629=TJclOpCode.opLdArg_3 -ID1163=CYRIX_MCE -ID11630=TJclOpCode.opldArg_s -ID11631=TJclOpCode.opLdArga -ID11632=TJclOpCode.opLdArga_s -ID11633=TJclOpCode.opLdc_i4 -ID11634=TJclOpCode.opLdc_I4_0 -ID11635=TJclOpCode.opLdc_I4_1 -ID11636=TJclOpCode.opLdc_I4_2 -ID11637=TJclOpCode.opLdc_I4_3 -ID11638=TJclOpCode.opLdc_I4_4 -ID11639=TJclOpCode.opLdc_I4_5 -ID1164=CYRIX_MMX -ID11640=TJclOpCode.opLdc_I4_6 -ID11641=TJclOpCode.opLdc_I4_7 -ID11642=TJclOpCode.opLdc_I4_8 -ID11643=TJclOpCode.opLdc_I4_M1 -ID11644=TJclOpCode.opLdc_I4_s -ID11645=TJclOpCode.opLdc_i8 -ID11646=TJclOpCode.opLdc_r4 -ID11647=TJclOpCode.opLdc_r8 -ID11648=TJclOpCode.opLdElem_i -ID11649=TJclOpCode.opLdElem_i1 -ID1165=CYRIX_MSR -ID11650=TJclOpCode.opLdElem_i2 -ID11651=TJclOpCode.opLdElem_i4 -ID11652=TJclOpCode.opLdElem_i8 -ID11653=TJclOpCode.opLdElem_r4 -ID11654=TJclOpCode.opLdElem_r8 -ID11655=TJclOpCode.opLdElem_ref -ID11656=TJclOpCode.opLdElem_u1 -ID11657=TJclOpCode.opLdElem_u2 -ID11658=TJclOpCode.opLdElem_u4 -ID11659=TJclOpCode.opLdElema -ID1166=CYRIX_MTRR -ID11660=TJclOpCode.opLdFld -ID11661=TJclOpCode.opLdFlda -ID11662=TJclOpCode.opLdFtn -ID11663=TJclOpCode.opLdInd_i -ID11664=TJclOpCode.opLdInd_i1 -ID11665=TJclOpCode.opLdInd_i2 -ID11666=TJclOpCode.opLdInd_i4 -ID11667=TJclOpCode.opLdInd_i8 -ID11668=TJclOpCode.opLdInd_r4 -ID11669=TJclOpCode.opLdInd_r8 -ID1167=CYRIX_PAE -ID11670=TJclOpCode.opLdInd_ref -ID11671=TJclOpCode.opLdInd_u1 -ID11672=TJclOpCode.opLdInd_u2 -ID11673=TJclOpCode.opLdInd_u4 -ID11674=TJclOpCode.opLdLen -ID11675=TJclOpCode.opLdLoc -ID11676=TJclOpCode.opLdLoc_0 -ID11677=TJclOpCode.opLdLoc_1 -ID11678=TJclOpCode.opLdLoc_2 -ID11679=TJclOpCode.opLdLoc_3 -ID1168=CYRIX_PGE -ID11680=TJclOpCode.opLdLoc_s -ID11681=TJclOpCode.opLdLoca -ID11682=TJclOpCode.opLdLoca_s -ID11683=TJclOpCode.opLdNull -ID11684=TJclOpCode.opLdObj -ID11685=TJclOpCode.opLdsFld -ID11686=TJclOpCode.opLdsFlda -ID11687=TJclOpCode.opLdStr -ID11688=TJclOpCode.opLdToken -ID11689=TJclOpCode.opLdVirtFtn -ID1169=CYRIX_PSE -ID11690=TJclOpCode.opLeave -ID11691=TJclOpCode.opLeave_s -ID11692=TJclOpCode.opLocalLoc -ID11693=TJclOpCode.opMkRefAny -ID11694=TJclOpCode.opMul -ID11695=TJclOpCode.opMul_ovf -ID11696=TJclOpCode.opMul_ovf_un -ID11697=TJclOpCode.opNeg -ID11698=TJclOpCode.opNewArr -ID11699=TJclOpCode.opNewObj +ID1160=CompilerExtensionBPI +ID11600=TJclClrTableAssemblyRow.PublicKeyOffset +ID11601=TJclClrTableAssemblyRow.RevisionNumber +ID11602=TJclClrTableAssemblyRow.Version +ID11603=TJclClrTableClass +ID11604=TJclClrTableClassLayout +ID11605=TJclClrTableClassLayout.GetRow@Integer +ID11606=TJclClrTableClassLayout.Rows +ID11607=TJclClrTableClassLayout.TableRowClass +ID11608=TJclClrTableClassLayoutRow +ID11609=TJclClrTableClassLayoutRow.ClassSize +ID1161=CompilerExtensionDCP +ID11610=TJclClrTableClassLayoutRow.Create@TJclClrTable +ID11611=TJclClrTableClassLayoutRow.FClassSize +ID11612=TJclClrTableClassLayoutRow.FPackingSize +ID11613=TJclClrTableClassLayoutRow.FParentIdx +ID11614=TJclClrTableClassLayoutRow.PackingSize +ID11615=TJclClrTableClassLayoutRow.ParentIdx +ID11616=TJclClrTableConstant +ID11617=TJclClrTableConstant.GetRow@Integer +ID11618=TJclClrTableConstant.Rows +ID11619=TJclClrTableConstant.TableRowClass +ID1162=CompilerExtensionDEF +ID11620=TJclClrTableConstantRow +ID11621=TJclClrTableConstantRow.Create@TJclClrTable +ID11622=TJclClrTableConstantRow.DumpIL +ID11623=TJclClrTableConstantRow.ElementType +ID11624=TJclClrTableConstantRow.FKind +ID11625=TJclClrTableConstantRow.FParentIdx +ID11626=TJclClrTableConstantRow.FValueOffset +ID11627=TJclClrTableConstantRow.GetElementType +ID11628=TJclClrTableConstantRow.GetParent +ID11629=TJclClrTableConstantRow.GetValue +ID1163=CompilerExtensionDRC +ID11630=TJclClrTableConstantRow.Kind +ID11631=TJclClrTableConstantRow.Parent +ID11632=TJclClrTableConstantRow.ParentIdx +ID11633=TJclClrTableConstantRow.Value +ID11634=TJclClrTableConstantRow.ValueOffset +ID11635=TJclClrTableCustomAttribute +ID11636=TJclClrTableCustomAttribute.GetRow@Integer +ID11637=TJclClrTableCustomAttribute.Rows +ID11638=TJclClrTableCustomAttribute.TableRowClass +ID11639=TJclClrTableCustomAttributeRow +ID1164=CompilerExtensionLIB +ID11640=TJclClrTableCustomAttributeRow.Create@TJclClrTable +ID11641=TJclClrTableCustomAttributeRow.DumpIL +ID11642=TJclClrTableCustomAttributeRow.FParentIdx +ID11643=TJclClrTableCustomAttributeRow.FTypeIdx +ID11644=TJclClrTableCustomAttributeRow.FValueOffset +ID11645=TJclClrTableCustomAttributeRow.GetMethod +ID11646=TJclClrTableCustomAttributeRow.GetParent +ID11647=TJclClrTableCustomAttributeRow.GetValue +ID11648=TJclClrTableCustomAttributeRow.Method +ID11649=TJclClrTableCustomAttributeRow.Parent +ID1165=CompilerExtensionMAP +ID11650=TJclClrTableCustomAttributeRow.ParentIdx +ID11651=TJclClrTableCustomAttributeRow.TypeIdx +ID11652=TJclClrTableCustomAttributeRow.Value +ID11653=TJclClrTableCustomAttributeRow.ValueOffset +ID11654=TJclClrTableDeclSecurity +ID11655=TJclClrTableDeclSecurity.GetRow@Integer +ID11656=TJclClrTableDeclSecurity.Rows +ID11657=TJclClrTableDeclSecurity.TableRowClass +ID11658=TJclClrTableDeclSecurityRow +ID11659=TJclClrTableDeclSecurityRow.Action +ID1166=CompilerExtensionTDS +ID11660=TJclClrTableDeclSecurityRow.Create@TJclClrTable +ID11661=TJclClrTableDeclSecurityRow.FAction +ID11662=TJclClrTableDeclSecurityRow.FParentIdx +ID11663=TJclClrTableDeclSecurityRow.FPermissionSetOffset +ID11664=TJclClrTableDeclSecurityRow.ParentIdx +ID11665=TJclClrTableDeclSecurityRow.PermissionSetOffset +ID11666=TJclClrTableENCLog +ID11667=TJclClrTableENCLog.GetRow@Integer +ID11668=TJclClrTableENCLog.Rows +ID11669=TJclClrTableENCLog.TableRowClass +ID1167=CompilerSettings +ID11670=TJclClrTableENCLogRow +ID11671=TJclClrTableENCLogRow.Create@TJclClrTable +ID11672=TJclClrTableENCLogRow.FFuncCode +ID11673=TJclClrTableENCLogRow.FuncCode +ID11674=TJclClrTableENCMap +ID11675=TJclClrTableENCMap.GetRow@Integer +ID11676=TJclClrTableENCMap.Rows +ID11677=TJclClrTableENCMap.TableRowClass +ID11678=TJclClrTableENCMapRow +ID11679=TJclClrTableENCMapRow.Create@TJclClrTable +ID1168=CompilerVersions +ID11680=TJclClrTableENCMapRow.FFuncCode +ID11681=TJclClrTableENCMapRow.FToken +ID11682=TJclClrTableENCMapRow.FuncCode +ID11683=TJclClrTableEventDef +ID11684=TJclClrTableEventDef.GetRow@Integer +ID11685=TJclClrTableEventDef.Rows +ID11686=TJclClrTableEventDef.TableRowClass +ID11687=TJclClrTableEventDefRow +ID11688=TJclClrTableEventDefRow.Create@TJclClrTable +ID11689=TJclClrTableEventDefRow.EventFlags +ID1169=CompleteDelphiSet +ID11690=TJclClrTableEventDefRow.EventTypeIdx +ID11691=TJclClrTableEventDefRow.FEventFlags +ID11692=TJclClrTableEventDefRow.FEventTypeIdx +ID11693=TJclClrTableEventDefRow.FNameOffset +ID11694=TJclClrTableEventDefRow.GetName +ID11695=TJclClrTableEventDefRow.Name +ID11696=TJclClrTableEventDefRow.NameOffset +ID11697=TJclClrTableEventFlag +ID11698=TJclClrTableEventFlag.efRTSpecialName +ID11699=TJclClrTableEventFlag.efSpecialName ID117=!!OVERLOADED_Read_TJclScreenBuffer -ID1170=CYRIX_TSC -ID11700=TJclOpCode.opNop -ID11701=TJclOpCode.opNot -ID11702=TJclOpCode.opOr -ID11703=TJclOpCode.opPop -ID11704=TJclOpCode.opPrefix1 -ID11705=TJclOpCode.opPrefix2 -ID11706=TJclOpCode.opPrefix3 -ID11707=TJclOpCode.opPrefix4 -ID11708=TJclOpCode.opPrefix5 -ID11709=TJclOpCode.opPrefix6 -ID1171=CYRIX_VME -ID11710=TJclOpCode.opPrefix7 -ID11711=TJclOpCode.opPrefixRef -ID11712=TJclOpCode.opRefAnyType -ID11713=TJclOpCode.opRefAnyVal -ID11714=TJclOpCode.opRem -ID11715=TJclOpCode.opRem_un -ID11716=TJclOpCode.opRet -ID11717=TJclOpCode.opRethrow -ID11718=TJclOpCode.opShl -ID11719=TJclOpCode.opShr -ID1172=DATE_LTRREADING -ID11720=TJclOpCode.opShr_un -ID11721=TJclOpCode.opSizeOf -ID11722=TJclOpCode.opStArg -ID11723=TJclOpCode.opStArg_s -ID11724=TJclOpCode.opStElem_i -ID11725=TJclOpCode.opStElem_i1 -ID11726=TJclOpCode.opStElem_i2 -ID11727=TJclOpCode.opStElem_i4 -ID11728=TJclOpCode.opStElem_i8 -ID11729=TJclOpCode.opStElem_r4 -ID1173=DATE_RTLREADING -ID11730=TJclOpCode.opStElem_r8 -ID11731=TJclOpCode.opStElem_ref -ID11732=TJclOpCode.opStFld -ID11733=TJclOpCode.opStInd_i -ID11734=TJclOpCode.opStInd_i1 -ID11735=TJclOpCode.opStInd_i2 -ID11736=TJclOpCode.opStInd_i4 -ID11737=TJclOpCode.opStInd_i8 -ID11738=TJclOpCode.opStInd_r4 -ID11739=TJclOpCode.opStInd_r8 -ID1174=DateandTime -ID11740=TJclOpCode.opStInd_ref -ID11741=TJclOpCode.opStLoc -ID11742=TJclOpCode.opStLoc_0 -ID11743=TJclOpCode.opStLoc_1 -ID11744=TJclOpCode.opStLoc_2 -ID11745=TJclOpCode.opStLoc_3 -ID11746=TJclOpCode.opStLoc_s -ID11747=TJclOpCode.opStObj -ID11748=TJclOpCode.opStsFld -ID11749=TJclOpCode.opSub -ID1175=DateTimeToSystemTime@TDateTime@TSystemTime -ID11750=TJclOpCode.opSub_ovf -ID11751=TJclOpCode.opSub_ovf_un -ID11752=TJclOpCode.opSwitch -ID11753=TJclOpCode.opTail -ID11754=TJclOpCode.opThrow -ID11755=TJclOpCode.optUnused56 -ID11756=TJclOpCode.opUnaligned -ID11757=TJclOpCode.opUnbox -ID11758=TJclOpCode.opUnused1 -ID11759=TJclOpCode.opUnused10 -ID1176=DayOfTheYear@TDateTime@Integer -ID11760=TJclOpCode.opUnused11 -ID11761=TJclOpCode.opUnused12 -ID11762=TJclOpCode.opUnused13 -ID11763=TJclOpCode.opUnused14 -ID11764=TJclOpCode.opUnused15 -ID11765=TJclOpCode.opUnused16 -ID11766=TJclOpCode.opUnused17 -ID11767=TJclOpCode.opUnused18 -ID11768=TJclOpCode.opUnused19 -ID11769=TJclOpCode.opUnused2 -ID1177=DE_FLAG -ID11770=TJclOpCode.opUnused20 -ID11771=TJclOpCode.opUnused21 -ID11772=TJclOpCode.opUnused22 -ID11773=TJclOpCode.opUnused23 -ID11774=TJclOpCode.opUnused24 -ID11775=TJclOpCode.opUnused25 -ID11776=TJclOpCode.opUnused26 -ID11777=TJclOpCode.opUnused27 -ID11778=TJclOpCode.opUnused28 -ID11779=TJclOpCode.opUnused29 -ID1178=Debug_EDIDataObjectListCreated -ID11780=TJclOpCode.opUnused3 -ID11781=TJclOpCode.opUnused30 -ID11782=TJclOpCode.opUnused31 -ID11783=TJclOpCode.opUnused32 -ID11784=TJclOpCode.opUnused33 -ID11785=TJclOpCode.opUnused34 -ID11786=TJclOpCode.opUnused35 -ID11787=TJclOpCode.opUnused36 -ID11788=TJclOpCode.opUnused37 -ID11789=TJclOpCode.opUnused38 -ID1179=Debug_EDIDataObjectListDestroyed -ID11790=TJclOpCode.opUnused39 -ID11791=TJclOpCode.opUnused4 -ID11792=TJclOpCode.opUnused40 -ID11793=TJclOpCode.opUnused41 -ID11794=TJclOpCode.opUnused42 -ID11795=TJclOpCode.opUnused43 -ID11796=TJclOpCode.opUnused44 -ID11797=TJclOpCode.opUnused45 -ID11798=TJclOpCode.opUnused46 -ID11799=TJclOpCode.opUnused47 +ID1170=ComplexPrecision +ID11700=TJclClrTableEventFlags +ID11701=TJclClrTableEventMap +ID11702=TJclClrTableEventMap.GetRow@Integer +ID11703=TJclClrTableEventMap.Rows +ID11704=TJclClrTableEventMap.TableRowClass +ID11705=TJclClrTableEventMapRow +ID11706=TJclClrTableEventMapRow.Create@TJclClrTable +ID11707=TJclClrTableEventMapRow.EventListIdx +ID11708=TJclClrTableEventMapRow.FEventListIdx +ID11709=TJclClrTableEventMapRow.FParentIdx +ID1171=ComplexToStr@TPolarComplex +ID11710=TJclClrTableEventMapRow.ParentIdx +ID11711=TJclClrTableEventPtr +ID11712=TJclClrTableEventPtr.GetRow@Integer +ID11713=TJclClrTableEventPtr.Rows +ID11714=TJclClrTableEventPtr.TableRowClass +ID11715=TJclClrTableEventPtrRow +ID11716=TJclClrTableEventPtrRow.Create@TJclClrTable +ID11717=TJclClrTableEventPtrRow.Event +ID11718=TJclClrTableEventPtrRow.EventIdx +ID11719=TJclClrTableEventPtrRow.FEventIdx +ID1172=ComplexToStr@TRectComplex +ID11720=TJclClrTableEventPtrRow.GetEvent +ID11721=TJclClrTableExportedType +ID11722=TJclClrTableExportedType.GetRow@Integer +ID11723=TJclClrTableExportedType.Rows +ID11724=TJclClrTableExportedType.TableRowClass +ID11725=TJclClrTableExportedTypeRow +ID11726=TJclClrTableExportedTypeRow.Create@TJclClrTable +ID11727=TJclClrTableExportedTypeRow.FFlags +ID11728=TJclClrTableExportedTypeRow.FImplementationIdx +ID11729=TJclClrTableExportedTypeRow.Flags +ID1173=ComplexTypeConversions +ID11730=TJclClrTableExportedTypeRow.FTypeDefIdx +ID11731=TJclClrTableExportedTypeRow.FTypeNameOffset +ID11732=TJclClrTableExportedTypeRow.FTypeNamespaceOffset +ID11733=TJclClrTableExportedTypeRow.GetTypeName +ID11734=TJclClrTableExportedTypeRow.GetTypeNamespace +ID11735=TJclClrTableExportedTypeRow.ImplementationIdx +ID11736=TJclClrTableExportedTypeRow.TypeDefIdx +ID11737=TJclClrTableExportedTypeRow.TypeName +ID11738=TJclClrTableExportedTypeRow.TypeNameOffset +ID11739=TJclClrTableExportedTypeRow.TypeNamespace +ID1174=COMPRESSION_ENGINE_HIBER +ID11740=TJclClrTableExportedTypeRow.TypeNamespaceOffset +ID11741=TJclClrTableFieldDef +ID11742=TJclClrTableFieldDef.GetRow@Integer +ID11743=TJclClrTableFieldDef.Rows +ID11744=TJclClrTableFieldDef.TableRowClass +ID11745=TJclClrTableFieldDefFlag +ID11746=TJclClrTableFieldDefFlag.ffHasDefault +ID11747=TJclClrTableFieldDefFlag.ffHasFieldMarshal +ID11748=TJclClrTableFieldDefFlag.ffHasFieldRVA +ID11749=TJclClrTableFieldDefFlag.ffInitOnly +ID1175=COMPRESSION_ENGINE_MAXIMUM +ID11750=TJclClrTableFieldDefFlag.ffLiteral +ID11751=TJclClrTableFieldDefFlag.ffNotSerialized +ID11752=TJclClrTableFieldDefFlag.ffPinvokeImpl +ID11753=TJclClrTableFieldDefFlag.ffRTSpecialName +ID11754=TJclClrTableFieldDefFlag.ffSpecialName +ID11755=TJclClrTableFieldDefFlag.ffStatic +ID11756=TJclClrTableFieldDefFlags +ID11757=TJclClrTableFieldDefRow +ID11758=TJclClrTableFieldDefRow.Create@TJclClrTable +ID11759=TJclClrTableFieldDefRow.DumpIL +ID1176=COMPRESSION_ENGINE_STANDARD +ID11760=TJclClrTableFieldDefRow.FFlags +ID11761=TJclClrTableFieldDefRow.Flags +ID11762=TJclClrTableFieldDefRow.FNameOffset +ID11763=TJclClrTableFieldDefRow.FParentToken +ID11764=TJclClrTableFieldDefRow.FSignatureOffset +ID11765=TJclClrTableFieldDefRow.GetFlag +ID11766=TJclClrTableFieldDefRow.GetName +ID11767=TJclClrTableFieldDefRow.GetSignature +ID11768=TJclClrTableFieldDefRow.GetVisibility +ID11769=TJclClrTableFieldDefRow.Name +ID1177=Conjugate@TPolarComplex +ID11770=TJclClrTableFieldDefRow.NameOffset +ID11771=TJclClrTableFieldDefRow.ParentToken +ID11772=TJclClrTableFieldDefRow.RawFlags +ID11773=TJclClrTableFieldDefRow.SetParentToken@TJclClrTableTypeDefRow +ID11774=TJclClrTableFieldDefRow.Signature +ID11775=TJclClrTableFieldDefRow.SignatureOffset +ID11776=TJclClrTableFieldDefRow.Visibility +ID11777=TJclClrTableFieldDefVisibility +ID11778=TJclClrTableFieldDefVisibility.fvAssembly +ID11779=TJclClrTableFieldDefVisibility.fvFamANDAssem +ID1178=Conjugate@TRectComplex +ID11780=TJclClrTableFieldDefVisibility.fvFamily +ID11781=TJclClrTableFieldDefVisibility.fvFamORAssem +ID11782=TJclClrTableFieldDefVisibility.fvPrivate +ID11783=TJclClrTableFieldDefVisibility.fvPrivateScope +ID11784=TJclClrTableFieldDefVisibility.fvPublic +ID11785=TJclClrTableFieldLayout +ID11786=TJclClrTableFieldLayout.GetRow@Integer +ID11787=TJclClrTableFieldLayout.Rows +ID11788=TJclClrTableFieldLayout.TableRowClass +ID11789=TJclClrTableFieldLayoutRow +ID1179=CONTAINER_ANSISTR +ID11790=TJclClrTableFieldLayoutRow.Create@TJclClrTable +ID11791=TJclClrTableFieldLayoutRow.FFieldIdx +ID11792=TJclClrTableFieldLayoutRow.FieldIdx +ID11793=TJclClrTableFieldLayoutRow.FOffset +ID11794=TJclClrTableFieldLayoutRow.Offset +ID11795=TJclClrTableFieldMarshal +ID11796=TJclClrTableFieldMarshal.GetRow@Integer +ID11797=TJclClrTableFieldMarshal.Rows +ID11798=TJclClrTableFieldMarshal.TableRowClass +ID11799=TJclClrTableFieldMarshalRow ID118=!!OVERLOADED_ReadIndex_TJclClrTable -ID1180=Debug_EDIDataObjectListItemsCreated -ID11800=TJclOpCode.opUnused48 -ID11801=TJclOpCode.opUnused49 -ID11802=TJclOpCode.opUnused5 -ID11803=TJclOpCode.opUnused50 -ID11804=TJclOpCode.opUnused51 -ID11805=TJclOpCode.opUnused52 -ID11806=TJclOpCode.opUnused53 -ID11807=TJclOpCode.opUnused54 -ID11808=TJclOpCode.opUnused55 -ID11809=TJclOpCode.opUnused57 -ID1181=Debug_EDIDataObjectListItemsDestroyed -ID11810=TJclOpCode.opUnused58 -ID11811=TJclOpCode.opUnused59 -ID11812=TJclOpCode.opUnused6 -ID11813=TJclOpCode.opUnused60 -ID11814=TJclOpCode.opUnused61 -ID11815=TJclOpCode.opUnused62 -ID11816=TJclOpCode.opUnused63 -ID11817=TJclOpCode.opUnused64 -ID11818=TJclOpCode.opUnused65 -ID11819=TJclOpCode.opUnused66 -ID1182=Debug_EDIDataObjectsCreated -ID11820=TJclOpCode.opUnused67 -ID11821=TJclOpCode.opUnused68 -ID11822=TJclOpCode.opUnused69 -ID11823=TJclOpCode.opUnused7 -ID11824=TJclOpCode.opUnused70 -ID11825=TJclOpCode.opUnused8 -ID11826=TJclOpCode.opUnused9 -ID11827=TJclOpCode.opVolatile -ID11828=TJclOpCode.opXor -ID11829=TJclPeBorForm -ID1183=Debug_EDIDataObjectsDestroyed -ID11830=TJclPeBorForm.ConvertFormToText@TStream -ID11831=TJclPeBorForm.ConvertFormToText@TStrings -ID11832=TJclPeBorForm.Create@TJclPeResourceItem@TFilerFlags@Integer@string@string -ID11833=TJclPeBorForm.DisplayName -ID11834=TJclPeBorForm.FFormClassName -ID11835=TJclPeBorForm.FFormFlags -ID11836=TJclPeBorForm.FFormObjectName -ID11837=TJclPeBorForm.FFormPosition -ID11838=TJclPeBorForm.FormClassName -ID11839=TJclPeBorForm.FormFlags -ID1184=Debugging -ID11840=TJclPeBorForm.FormObjectName -ID11841=TJclPeBorForm.FormPosition -ID11842=TJclPeBorForm.FResItem -ID11843=TJclPeBorForm.GetDisplayName -ID11844=TJclPeBorForm.ResItem -ID11845=TJclPeBorImagesCache -ID11846=TJclPeBorImagesCache.GetImages@TFileName -ID11847=TJclPeBorImagesCache.GetPeImageClass -ID11848=TJclPeBorImagesCache.Images -ID11849=TJclPeBorTD32Image -ID1185=DecLimit@Cardinal@Cardinal@Cardinal -ID11850=TJclPeBorTD32Image.AfterOpen -ID11851=TJclPeBorTD32Image.CheckDebugData -ID11852=TJclPeBorTD32Image.Clear -ID11853=TJclPeBorTD32Image.ClearDebugData -ID11854=TJclPeBorTD32Image.FIsTD32DebugPresent -ID11855=TJclPeBorTD32Image.FTD32DebugData -ID11856=TJclPeBorTD32Image.FTD32Scanner -ID11857=TJclPeBorTD32Image.IsDebugInfoInImage@TCustomMemoryStream -ID11858=TJclPeBorTD32Image.IsDebugInfoInTds@TCustomMemoryStream -ID11859=TJclPeBorTD32Image.IsTD32DebugPresent -ID1186=DecLimit@Int64@Int64@Int64 -ID11860=TJclPeBorTD32Image.TD32DebugData -ID11861=TJclPeBorTD32Image.TD32Scanner -ID11862=TJclPeCertificate -ID11863=TJclPeCertificate.Create@TWinCertificate@Pointer -ID11864=TJclPeCertificate.Data -ID11865=TJclPeCertificate.FData -ID11866=TJclPeCertificate.FHeader -ID11867=TJclPeCertificate.Header -ID11868=TJclPeCertificateList -ID11869=TJclPeCertificateList.Create@TJclPeImage -ID1187=DecLimit@Integer@Integer@Integer -ID11870=TJclPeCertificateList.CreateList -ID11871=TJclPeCertificateList.GetItems@Integer -ID11872=TJclPeCertificateList.Items -ID11873=TJclPeCLRHeader -ID11874=TJclPeCLRHeader.Create@TJclPeImage -ID11875=TJclPeCLRHeader.FHeader -ID11876=TJclPeCLRHeader.FImage -ID11877=TJclPeCLRHeader.GetHasMetadata -ID11878=TJclPeCLRHeader.GetVersionString -ID11879=TJclPeCLRHeader.HasMetadata -ID1188=DecLimit@Shortint@Shortint@Shortint -ID11880=TJclPeCLRHeader.Header -ID11881=TJclPeCLRHeader.Image -ID11882=TJclPeCLRHeader.ReadHeader -ID11883=TJclPeCLRHeader.VersionString -ID11884=TJclPeImageClass -ID11885=TJclPeMetadata -ID11886=TJclPeMetadata.BlobAt@DWORD -ID11887=TJclPeMetadata.BlobCount -ID11888=TJclPeMetadata.Blobs -ID11889=TJclPeMetadata.Create@TJclPeImage -ID1189=DecLimit@Smallint@Smallint@Smallint -ID11890=TJclPeMetadata.Destroy -ID11891=TJclPeMetadata.DumpIL -ID11892=TJclPeMetadata.FBlobStream -ID11893=TJclPeMetadata.FGuidStream -ID11894=TJclPeMetadata.FHeader -ID11895=TJclPeMetadata.FImage -ID11896=TJclPeMetadata.FindStream@string@TJclClrStream -ID11897=TJclPeMetadata.FindStream@TJclClrStreamClass@TJclClrStream -ID11898=TJclPeMetadata.Flags -ID11899=TJclPeMetadata.FStreams +ID1180=CONTAINER_NOSTR +ID11800=TJclClrTableFieldMarshalRow.Create@TJclClrTable +ID11801=TJclClrTableFieldMarshalRow.FNativeTypeOffset +ID11802=TJclClrTableFieldMarshalRow.FParentIdx +ID11803=TJclClrTableFieldMarshalRow.NativeTypeOffset +ID11804=TJclClrTableFieldMarshalRow.ParentIdx +ID11805=TJclClrTableFieldPtr +ID11806=TJclClrTableFieldPtr.GetRow@Integer +ID11807=TJclClrTableFieldPtr.Rows +ID11808=TJclClrTableFieldPtr.TableRowClass +ID11809=TJclClrTableFieldPtrRow +ID1181=CONTAINER_UNICODESTR +ID11810=TJclClrTableFieldPtrRow.Create@TJclClrTable +ID11811=TJclClrTableFieldPtrRow.FFieldIdx +ID11812=TJclClrTableFieldPtrRow.Field +ID11813=TJclClrTableFieldPtrRow.FieldIdx +ID11814=TJclClrTableFieldPtrRow.GetField +ID11815=TJclClrTableFieldRVA +ID11816=TJclClrTableFieldRVA.GetRow@Integer +ID11817=TJclClrTableFieldRVA.Rows +ID11818=TJclClrTableFieldRVA.TableRowClass +ID11819=TJclClrTableFieldRVARow +ID1182=CONTAINER_WIDESTR +ID11820=TJclClrTableFieldRVARow.Create@TJclClrTable +ID11821=TJclClrTableFieldRVARow.FFieldIdx +ID11822=TJclClrTableFieldRVARow.FieldIdx +ID11823=TJclClrTableFieldRVARow.FRVA +ID11824=TJclClrTableFieldRVARow.RVA +ID11825=TJclClrTableFile +ID11826=TJclClrTableFile.GetRow@Integer +ID11827=TJclClrTableFile.Rows +ID11828=TJclClrTableFile.TableRowClass +ID11829=TJclClrTableFileRow +ID1183=Containers +ID11830=TJclClrTableFileRow.ContainsMetadata +ID11831=TJclClrTableFileRow.Create@TJclClrTable +ID11832=TJclClrTableFileRow.DumpIL +ID11833=TJclClrTableFileRow.FFlags +ID11834=TJclClrTableFileRow.FHashValueOffset +ID11835=TJclClrTableFileRow.Flags +ID11836=TJclClrTableFileRow.FNameOffset +ID11837=TJclClrTableFileRow.GetContainsMetadata +ID11838=TJclClrTableFileRow.GetHashValue +ID11839=TJclClrTableFileRow.GetName +ID1184=Containers.Adapters +ID11840=TJclClrTableFileRow.HashValue +ID11841=TJclClrTableFileRow.HashValueOffset +ID11842=TJclClrTableFileRow.Name +ID11843=TJclClrTableFileRow.NameOffset +ID11844=TJclClrTableImplMap +ID11845=TJclClrTableImplMap.GetRow@Integer +ID11846=TJclClrTableImplMap.Rows +ID11847=TJclClrTableImplMap.TableRowClass +ID11848=TJclClrTableImplMapRow +ID11849=TJclClrTableImplMapRow.Create@TJclClrTable +ID1185=Containers.Associative +ID11850=TJclClrTableImplMapRow.FImportNameOffset +ID11851=TJclClrTableImplMapRow.FImportScopeIdx +ID11852=TJclClrTableImplMapRow.FMappingFlags +ID11853=TJclClrTableImplMapRow.FMemberForwardedIdx +ID11854=TJclClrTableImplMapRow.GetImportName +ID11855=TJclClrTableImplMapRow.ImportName +ID11856=TJclClrTableImplMapRow.ImportNameOffset +ID11857=TJclClrTableImplMapRow.ImportScopeIdx +ID11858=TJclClrTableImplMapRow.MappingFlags +ID11859=TJclClrTableImplMapRow.MemberForwardedIdx +ID1186=Containers.exceptions +ID11860=TJclClrTableInterfaceImpl +ID11861=TJclClrTableInterfaceImpl.GetRow@Integer +ID11862=TJclClrTableInterfaceImpl.Rows +ID11863=TJclClrTableInterfaceImpl.TableRowClass +ID11864=TJclClrTableInterfaceImplRow +ID11865=TJclClrTableInterfaceImplRow.ClassIdx +ID11866=TJclClrTableInterfaceImplRow.Create@TJclClrTable +ID11867=TJclClrTableInterfaceImplRow.DumpIL +ID11868=TJclClrTableInterfaceImplRow.FClassIdx +ID11869=TJclClrTableInterfaceImplRow.FInterfaceIdx +ID1187=Containers.files +ID11870=TJclClrTableInterfaceImplRow.GetImplClass +ID11871=TJclClrTableInterfaceImplRow.GetImplInterface +ID11872=TJclClrTableInterfaceImplRow.ImplClass +ID11873=TJclClrTableInterfaceImplRow.ImplInterface +ID11874=TJclClrTableInterfaceImplRow.InterfaceIdx +ID11875=TJclClrTableKind +ID11876=TJclClrTableKind.ttAssembly +ID11877=TJclClrTableKind.ttAssemblyOS +ID11878=TJclClrTableKind.ttAssemblyProcessor +ID11879=TJclClrTableKind.ttAssemblyRef +ID1188=Containers.functions +ID11880=TJclClrTableKind.ttAssemblyRefOS +ID11881=TJclClrTableKind.ttAssemblyRefProcessor +ID11882=TJclClrTableKind.ttClassLayout +ID11883=TJclClrTableKind.ttConstant +ID11884=TJclClrTableKind.ttCustomAttribute +ID11885=TJclClrTableKind.ttDeclSecurity +ID11886=TJclClrTableKind.ttENCLog +ID11887=TJclClrTableKind.ttENCMap +ID11888=TJclClrTableKind.ttEventDef +ID11889=TJclClrTableKind.ttEventMap +ID1189=Containers.Interfaces +ID11890=TJclClrTableKind.ttEventPtr +ID11891=TJclClrTableKind.ttExportedType +ID11892=TJclClrTableKind.ttFieldDef +ID11893=TJclClrTableKind.ttFieldLayout +ID11894=TJclClrTableKind.ttFieldMarshal +ID11895=TJclClrTableKind.ttFieldPtr +ID11896=TJclClrTableKind.ttFieldRVA +ID11897=TJclClrTableKind.ttFile +ID11898=TJclClrTableKind.ttImplMap +ID11899=TJclClrTableKind.ttInterfaceImpl ID119=!!OVERLOADED_Readln_TJclScreenBuffer -ID1190=DecLimit@Word@Word@Word -ID11900=TJclPeMetadata.FStringStream -ID11901=TJclPeMetadata.FTableStream -ID11902=TJclPeMetadata.FUserStringStream -ID11903=TJclPeMetadata.GetBlob@Integer -ID11904=TJclPeMetadata.GetBlobCount -ID11905=TJclPeMetadata.GetFlags -ID11906=TJclPeMetadata.GetGuid@Integer -ID11907=TJclPeMetadata.GetGuidCount -ID11908=TJclPeMetadata.GetStream@Integer -ID11909=TJclPeMetadata.GetStreamCount -ID1191=DecLimitClamp@Cardinal@Cardinal@Cardinal -ID11910=TJclPeMetadata.GetString@Integer -ID11911=TJclPeMetadata.GetStringCount -ID11912=TJclPeMetadata.GetTable@TJclClrTableKind -ID11913=TJclPeMetadata.GetTableCount -ID11914=TJclPeMetadata.GetToken@TJclClrToken -ID11915=TJclPeMetadata.GetVersion -ID11916=TJclPeMetadata.GetVersionString -ID11917=TJclPeMetadata.GuidCount -ID11918=TJclPeMetadata.Guids -ID11919=TJclPeMetadata.Header -ID1192=DecLimitClamp@Int64@Int64@Int64 -ID11920=TJclPeMetadata.Image -ID11921=TJclPeMetadata.MakeToken@TJclClrTableKind@Integer -ID11922=TJclPeMetadata.StreamCount -ID11923=TJclPeMetadata.Streams -ID11924=TJclPeMetadata.StringAt@DWORD -ID11925=TJclPeMetadata.StringCount -ID11926=TJclPeMetadata.Strings -ID11927=TJclPeMetadata.TableCount -ID11928=TJclPeMetadata.Tables -ID11929=TJclPeMetadata.TokenCode@TJclClrToken -ID1193=DecLimitClamp@Integer@Integer@Integer -ID11930=TJclPeMetadata.TokenExists@TJclClrToken -ID11931=TJclPeMetadata.TokenIndex@TJclClrToken -ID11932=TJclPeMetadata.Tokens -ID11933=TJclPeMetadata.TokenTable@TJclClrToken -ID11934=TJclPeMetadata.UserGetString@Integer -ID11935=TJclPeMetadata.UserGetStringCount -ID11936=TJclPeMetadata.UserStringAt@DWORD -ID11937=TJclPeMetadata.UserStringCount -ID11938=TJclPeMetadata.UserStrings -ID11939=TJclPeMetadata.Version -ID1194=DecLimitClamp@Shortint@Shortint@Shortint -ID11940=TJclPeMetadata.VersionString -ID11941=TJclPeTarget -ID11942=TJclPeTarget.taUnknown -ID11943=TJclPeTarget.taWin32 -ID11944=TJclPeTarget.taWin64 -ID11945=TJclPrintSet -ID11946=TJclPrintSet.BinIndex -ID11947=TJclPrintSet.CheckPrinter -ID11948=TJclPrintSet.Color -ID11949=TJclPrintSet.Copies -ID1195=DecLimitClamp@Smallint@Smallint@Smallint -ID11950=TJclPrintSet.CpiToDot@Double@Double -ID11951=TJclPrintSet.Create -ID11952=TJclPrintSet.CustomPageSetup@Double@Double -ID11953=TJclPrintSet.DefaultPaperName@Word -ID11954=TJclPrintSet.DefaultSource -ID11955=TJclPrintSet.Destroy -ID11956=TJclPrintSet.DpiX -ID11957=TJclPrintSet.DpiY -ID11958=TJclPrintSet.Duplex -ID11959=TJclPrintSet.FBinArray -ID1196=DecLimitClamp@Word@Word@Word -ID11960=TJclPrintSet.FDevice -ID11961=TJclPrintSet.FDeviceMode -ID11962=TJclPrintSet.FDpiX -ID11963=TJclPrintSet.FDriver -ID11964=TJclPrintSet.FHandle -ID11965=TJclPrintSet.FiDpiY -ID11966=TJclPrintSet.FNumBins -ID11967=TJclPrintSet.FNumPapers -ID11968=TJclPrintSet.FPaperArray -ID11969=TJclPrintSet.FPort -ID1197=DecodeDate@TDateTime@Integer@Word@Word -ID11970=TJclPrintSet.FPrinter -ID11971=TJclPrintSet.GetBin -ID11972=TJclPrintSet.GetBinIndex -ID11973=TJclPrintSet.GetBinSourceList -ID11974=TJclPrintSet.GetBinSourceList@TStrings -ID11975=TJclPrintSet.GetColor -ID11976=TJclPrintSet.GetCopies -ID11977=TJclPrintSet.GetDuplex -ID11978=TJclPrintSet.GetOrientation -ID11979=TJclPrintSet.GetPaperIndex -ID1198=DecodeDate@TDateTime@Word@Word@Word -ID11980=TJclPrintSet.GetPaperLength -ID11981=TJclPrintSet.GetPaperList -ID11982=TJclPrintSet.GetPaperList@TStrings -ID11983=TJclPrintSet.GetPaperSize -ID11984=TJclPrintSet.GetPaperWidth -ID11985=TJclPrintSet.GetPrinterDriver -ID11986=TJclPrintSet.GetPrinterName -ID11987=TJclPrintSet.GetPrinterPort -ID11988=TJclPrintSet.GetPrintQuality -ID11989=TJclPrintSet.GetScale -ID1199=DecodeHttpBasicAuthentication@string@string@string -ID11990=TJclPrintSet.GetTrueTypeOption -ID11991=TJclPrintSet.GetYResolution -ID11992=TJclPrintSet.LpiToDot@Double@Double -ID11993=TJclPrintSet.Orientation -ID11994=TJclPrintSet.PaperIndex -ID11995=TJclPrintSet.PaperLength -ID11996=TJclPrintSet.PaperSize -ID11997=TJclPrintSet.PaperWidth -ID11998=TJclPrintSet.PrinterDriver -ID11999=TJclPrintSet.PrinterName +ID1190=Containers.OrderedSets +ID11900=TJclClrTableKind.ttManifestResource +ID11901=TJclClrTableKind.ttMemberRef +ID11902=TJclClrTableKind.ttMethodDef +ID11903=TJclClrTableKind.ttMethodImpl +ID11904=TJclClrTableKind.ttMethodPtr +ID11905=TJclClrTableKind.ttMethodSemantics +ID11906=TJclClrTableKind.ttMethodTyPar +ID11907=TJclClrTableKind.ttModule +ID11908=TJclClrTableKind.ttModuleRef +ID11909=TJclClrTableKind.ttNestedClass +ID1191=Containers.Sequence +ID11910=TJclClrTableKind.ttParamDef +ID11911=TJclClrTableKind.ttParamPtr +ID11912=TJclClrTableKind.ttPropertyDef +ID11913=TJclClrTableKind.ttPropertyMap +ID11914=TJclClrTableKind.ttPropertyPtr +ID11915=TJclClrTableKind.ttSignature +ID11916=TJclClrTableKind.ttTypeDef +ID11917=TJclClrTableKind.ttTypeRef +ID11918=TJclClrTableKind.ttTypeSpec +ID11919=TJclClrTableKind.ttTypeTyPar +ID1192=Containers.Specialized +ID11920=TJclClrTableManifestResource +ID11921=TJclClrTableManifestResource.GetRow@Integer +ID11922=TJclClrTableManifestResource.Rows +ID11923=TJclClrTableManifestResource.TableRowClass +ID11924=TJclClrTableManifestResourceRow +ID11925=TJclClrTableManifestResourceRow.Create@TJclClrTable +ID11926=TJclClrTableManifestResourceRow.DumpIL +ID11927=TJclClrTableManifestResourceRow.FFlags +ID11928=TJclClrTableManifestResourceRow.FImplementationIdx +ID11929=TJclClrTableManifestResourceRow.Flags +ID1193=Containres.Interfaces.Maps +ID11930=TJclClrTableManifestResourceRow.FNameOffset +ID11931=TJclClrTableManifestResourceRow.FOffset +ID11932=TJclClrTableManifestResourceRow.GetImplementationRow +ID11933=TJclClrTableManifestResourceRow.GetName +ID11934=TJclClrTableManifestResourceRow.GetVisibility +ID11935=TJclClrTableManifestResourceRow.ImplementationIdx +ID11936=TJclClrTableManifestResourceRow.ImplementationRow +ID11937=TJclClrTableManifestResourceRow.Name +ID11938=TJclClrTableManifestResourceRow.NameOffset +ID11939=TJclClrTableManifestResourceRow.Offset +ID1194=ContinueCount@TJclCounter +ID11940=TJclClrTableManifestResourceRow.Visibility +ID11941=TJclClrTableManifestResourceVisibility +ID11942=TJclClrTableManifestResourceVisibility.rvPrivate +ID11943=TJclClrTableManifestResourceVisibility.rvPublic +ID11944=TJclClrTableMemberRef +ID11945=TJclClrTableMemberRef.GetRow@Integer +ID11946=TJclClrTableMemberRef.Rows +ID11947=TJclClrTableMemberRef.TableRowClass +ID11948=TJclClrTableMemberRefRow +ID11949=TJclClrTableMemberRefRow.ClassIdx +ID1195=ConvertMapFileToJdbgFile@TFileName@string@Integer +ID11950=TJclClrTableMemberRefRow.Create@TJclClrTable +ID11951=TJclClrTableMemberRefRow.FClassIdx +ID11952=TJclClrTableMemberRefRow.FNameOffset +ID11953=TJclClrTableMemberRefRow.FSignatureOffset +ID11954=TJclClrTableMemberRefRow.FullName +ID11955=TJclClrTableMemberRefRow.GetFullName +ID11956=TJclClrTableMemberRefRow.GetName +ID11957=TJclClrTableMemberRefRow.GetParentClass +ID11958=TJclClrTableMemberRefRow.GetSignature +ID11959=TJclClrTableMemberRefRow.Name +ID1196=ConvertMapFileToJdbgFile@TFileName@string@Integer@Integer@Integer +ID11960=TJclClrTableMemberRefRow.NameOffset +ID11961=TJclClrTableMemberRefRow.ParentClass +ID11962=TJclClrTableMemberRefRow.Signature +ID11963=TJclClrTableMemberRefRow.SignatureOffset +ID11964=TJclClrTableMethodDef +ID11965=TJclClrTableMethodDef.GetRow@Integer +ID11966=TJclClrTableMethodDef.Rows +ID11967=TJclClrTableMethodDef.TableRowClass +ID11968=TJclClrTableMethodDefRow +ID11969=TJclClrTableMethodDefRow.CodeType +ID1197=ConvertTemperature@TTemperatureType@TTemperatureType@Float +ID11970=TJclClrTableMethodDefRow.Create@TJclClrTable +ID11971=TJclClrTableMethodDefRow.Destroy +ID11972=TJclClrTableMethodDefRow.DumpIL +ID11973=TJclClrTableMethodDefRow.FFlags +ID11974=TJclClrTableMethodDefRow.FImplFlags +ID11975=TJclClrTableMethodDefRow.Flags +ID11976=TJclClrTableMethodDefRow.FMethodBody +ID11977=TJclClrTableMethodDefRow.FNameOffset +ID11978=TJclClrTableMethodDefRow.FParamListIdx +ID11979=TJclClrTableMethodDefRow.FParams +ID1198=Copy@IJclAnsiStrIterator@Integer@IJclAnsiStrIterator +ID11980=TJclClrTableMethodDefRow.FParentToken +ID11981=TJclClrTableMethodDefRow.FRVA +ID11982=TJclClrTableMethodDefRow.FSignature +ID11983=TJclClrTableMethodDefRow.FSignatureOffset +ID11984=TJclClrTableMethodDefRow.FullName +ID11985=TJclClrTableMethodDefRow.GetCodeType +ID11986=TJclClrTableMethodDefRow.GetFullName +ID11987=TJclClrTableMethodDefRow.GetHasParam +ID11988=TJclClrTableMethodDefRow.GetManaged +ID11989=TJclClrTableMethodDefRow.GetMemberAccess +ID1199=Copy@IJclCardinalIterator@Integer@IJclCardinalIterator +ID11990=TJclClrTableMethodDefRow.GetMethodFlags +ID11991=TJclClrTableMethodDefRow.GetMethodImplFlags +ID11992=TJclClrTableMethodDefRow.GetName +ID11993=TJclClrTableMethodDefRow.GetNewSlot +ID11994=TJclClrTableMethodDefRow.GetParam@Integer +ID11995=TJclClrTableMethodDefRow.GetParamCount +ID11996=TJclClrTableMethodDefRow.GetSignature +ID11997=TJclClrTableMethodDefRow.GetSignatureData +ID11998=TJclClrTableMethodDefRow.HasParam +ID11999=TJclClrTableMethodDefRow.ImplFlags ID12=!!OVERLOADED_Assign_TJclRational ID120=!!OVERLOADED_Remove_TEDIObjectList -ID1200=DefaultContainerCapacity -ID12000=TJclPrintSet.PrinterPort -ID12001=TJclPrintSet.PrintQuality -ID12002=TJclPrintSet.ReadFromIniFile@string@string -ID12003=TJclPrintSet.ResetPrinterDialogs -ID12004=TJclPrintSet.SavePrinterAsDefault -ID12005=TJclPrintSet.SaveToDefaults -ID12006=TJclPrintSet.SaveToIniFile@string@string -ID12007=TJclPrintSet.Scale -ID12008=TJclPrintSet.SetBin@Integer -ID12009=TJclPrintSet.SetBinArray -ID1201=DefaultSCMDesiredAccess -ID12010=TJclPrintSet.SetBinFromList@Byte -ID12011=TJclPrintSet.SetColor@Integer -ID12012=TJclPrintSet.SetCopies@Integer -ID12013=TJclPrintSet.SetDeviceMode@Boolean -ID12014=TJclPrintSet.SetDuplex@Integer -ID12015=TJclPrintSet.SetOrientation@Integer -ID12016=TJclPrintSet.SetPaperArray -ID12017=TJclPrintSet.SetPaperFromList@Byte -ID12018=TJclPrintSet.SetPaperLength@Integer -ID12019=TJclPrintSet.SetPaperSize@Integer -ID1202=DefaultSvcDesiredAccess -ID12020=TJclPrintSet.SetPaperWidth@Integer -ID12021=TJclPrintSet.SetPort@string -ID12022=TJclPrintSet.SetPrintQuality@Integer -ID12023=TJclPrintSet.SetScale@Integer -ID12024=TJclPrintSet.SetTrueTypeOption@Integer -ID12025=TJclPrintSet.SetYResolution@Integer -ID12026=TJclPrintSet.TextOutCm@Double@Double@string -ID12027=TJclPrintSet.TextOutCpiLpi@Double@Double@Double@Double@string -ID12028=TJclPrintSet.TextOutInch@Double@Double@string -ID12029=TJclPrintSet.TrueTypeOption -ID1203=DegPerArcMinute -ID12030=TJclPrintSet.UpdateDeviceMode -ID12031=TJclPrintSet.XCmToDot@Double -ID12032=TJclPrintSet.XInchToDot@Double -ID12033=TJclPrintSet.YCmToDot@Double -ID12034=TJclPrintSet.YInchToDot@Double -ID12035=TJclPrintSet.YResolution -ID12036=TJclProcSymbolInfo -ID12037=TJclProcSymbolInfo.Create@PSymbolInfo -ID12038=TJclProcSymbolInfo.FNameIndex -ID12039=TJclProcSymbolInfo.FOffset -ID1204=DegPerArcSecond -ID12040=TJclProcSymbolInfo.FSize -ID12041=TJclProcSymbolInfo.NameIndex -ID12042=TJclProcSymbolInfo.Offset -ID12043=TJclProcSymbolInfo.Size -ID12044=TJclPublicSymbolInfo -ID12045=TJclQuerySummaryInformation -ID12046=TJclQuerySummaryInformation.GetFMTID -ID12047=TJclRandomStream -ID12048=TJclRandomStream.GetRandSeed -ID12049=TJclRandomStream.RandomData -ID1205=DegPerCycle -ID12050=TJclRandomStream.Randomize -ID12051=TJclRandomStream.RandSeed -ID12052=TJclRandomStream.Read@@Longint -ID12053=TJclRandomStream.SetRandSeed@Longint -ID12054=TJclRARCompressionStream -ID12055=TJclRARDecompressionStream -ID12056=TJclRational -ID12057=TJclRational.Abs -ID12058=TJclRational.Add@Float -ID12059=TJclRational.Add@Integer -ID1206=DegPerGrad -ID12060=TJclRational.Add@TJclRational -ID12061=TJclRational.AsFloat -ID12062=TJclRational.Assign@Float -ID12063=TJclRational.Assign@Integer@Integer -ID12064=TJclRational.Assign@TJclRational -ID12065=TJclRational.AssignOne -ID12066=TJclRational.AssignZero -ID12067=TJclRational.AsString -ID12068=TJclRational.Create -ID12069=TJclRational.Create@Float -ID1207=DegPerRad -ID12070=TJclRational.Create@Integer@Integer -ID12071=TJclRational.Denominator -ID12072=TJclRational.Divide@Float -ID12073=TJclRational.Divide@Integer -ID12074=TJclRational.Divide@TJclRational -ID12075=TJclRational.Duplicate -ID12076=TJclRational.FN -ID12077=TJclRational.FT -ID12078=TJclRational.GetAsFloat -ID12079=TJclRational.GetAsString -ID1208=DegToGrad@Extended -ID12080=TJclRational.IsEqual@Float -ID12081=TJclRational.IsEqual@Integer@Integer -ID12082=TJclRational.IsEqual@TJclRational -ID12083=TJclRational.IsOne -ID12084=TJclRational.IsZero -ID12085=TJclRational.Multiply@Float -ID12086=TJclRational.Multiply@Integer -ID12087=TJclRational.Multiply@TJclRational -ID12088=TJclRational.Negate -ID12089=TJclRational.Numerator -ID1209=DegToGrad@Float -ID12090=TJclRational.Power@Float -ID12091=TJclRational.Power@Integer -ID12092=TJclRational.Power@TJclRational -ID12093=TJclRational.Reciprocal -ID12094=TJclRational.SetAsFloat@Float -ID12095=TJclRational.SetAsString@string -ID12096=TJclRational.Sgn -ID12097=TJclRational.Simplify -ID12098=TJclRational.Sqr -ID12099=TJclRational.Sqrt +ID1200=Copy@IJclDoubleIterator@Integer@IJclDoubleIterator +ID12000=TJclClrTableMethodDefRow.Managed +ID12001=TJclClrTableMethodDefRow.MemberAccess +ID12002=TJclClrTableMethodDefRow.MethodBody +ID12003=TJclClrTableMethodDefRow.MethodFlags +ID12004=TJclClrTableMethodDefRow.MethodImplFlags +ID12005=TJclClrTableMethodDefRow.Name +ID12006=TJclClrTableMethodDefRow.NameOffset +ID12007=TJclClrTableMethodDefRow.NewSlot +ID12008=TJclClrTableMethodDefRow.ParamCount +ID12009=TJclClrTableMethodDefRow.ParamListIdx +ID1201=Copy@IJclExtendedIterator@Integer@IJclExtendedIterator +ID12010=TJclClrTableMethodDefRow.Params +ID12011=TJclClrTableMethodDefRow.ParentToken +ID12012=TJclClrTableMethodDefRow.RVA +ID12013=TJclClrTableMethodDefRow.SetParentToken@TJclClrTableTypeDefRow +ID12014=TJclClrTableMethodDefRow.Signature +ID12015=TJclClrTableMethodDefRow.SignatureData +ID12016=TJclClrTableMethodDefRow.SignatureOffset +ID12017=TJclClrTableMethodDefRow.Update +ID12018=TJclClrTableMethodDefRow.UpdateParams +ID12019=TJclClrTableMethodImpl +ID1202=Copy@IJclInt64Iterator@Integer@IJclInt64Iterator +ID12020=TJclClrTableMethodImpl.GetRow@Integer +ID12021=TJclClrTableMethodImpl.Rows +ID12022=TJclClrTableMethodImpl.TableRowClass +ID12023=TJclClrTableMethodImplRow +ID12024=TJclClrTableMethodImplRow.ClassIdx +ID12025=TJclClrTableMethodImplRow.Create@TJclClrTable +ID12026=TJclClrTableMethodImplRow.FClassIdx +ID12027=TJclClrTableMethodImplRow.FMethodBodyIdx +ID12028=TJclClrTableMethodImplRow.FMethodDeclarationIdx +ID12029=TJclClrTableMethodImplRow.MethodBodyIdx +ID1203=Copy@IJclIntegerIterator@Integer@IJclIntegerIterator +ID12030=TJclClrTableMethodImplRow.MethodDeclarationIdx +ID12031=TJclClrTableMethodPtr +ID12032=TJclClrTableMethodPtr.GetRow@Integer +ID12033=TJclClrTableMethodPtr.Rows +ID12034=TJclClrTableMethodPtr.TableRowClass +ID12035=TJclClrTableMethodPtrRow +ID12036=TJclClrTableMethodPtrRow.Create@TJclClrTable +ID12037=TJclClrTableMethodPtrRow.FMethodIdx +ID12038=TJclClrTableMethodPtrRow.GetMethod +ID12039=TJclClrTableMethodPtrRow.Method +ID1204=Copy@IJclIntfIterator@Integer@IJclIntfIterator +ID12040=TJclClrTableMethodPtrRow.MethodIdx +ID12041=TJclClrTableMethodSemantics +ID12042=TJclClrTableMethodSemantics.GetRow@Integer +ID12043=TJclClrTableMethodSemantics.Rows +ID12044=TJclClrTableMethodSemantics.TableRowClass +ID12045=TJclClrTableMethodSemanticsRow +ID12046=TJclClrTableMethodSemanticsRow.AssociationIdx +ID12047=TJclClrTableMethodSemanticsRow.Create@TJclClrTable +ID12048=TJclClrTableMethodSemanticsRow.FAssociationIdx +ID12049=TJclClrTableMethodSemanticsRow.FMethodIdx +ID1205=Copy@IJclIterator@Integer@IJclIterator +ID12050=TJclClrTableMethodSemanticsRow.FSemantics +ID12051=TJclClrTableMethodSemanticsRow.MethodIdx +ID12052=TJclClrTableMethodSemanticsRow.Semantics +ID12053=TJclClrTableMethodSpec +ID12054=TJclClrTableMethodSpec.GetRow@Integer +ID12055=TJclClrTableMethodSpec.Rows +ID12056=TJclClrTableMethodSpec.TableRowClass +ID12057=TJclClrTableMethodSpecRow +ID12058=TJclClrTableMethodSpecRow.Create@TJclClrTable +ID12059=TJclClrTableMethodSpecRow.FInstantiationOffset +ID1206=Copy@IJclPtrIterator@Integer@IJclPtrIterator +ID12060=TJclClrTableMethodSpecRow.FMethodIdx +ID12061=TJclClrTableMethodSpecRow.GetInstantiation +ID12062=TJclClrTableMethodSpecRow.GetMethod +ID12063=TJclClrTableMethodSpecRow.Instantiation +ID12064=TJclClrTableMethodSpecRow.InstantiationOffset +ID12065=TJclClrTableMethodSpecRow.Method +ID12066=TJclClrTableMethodSpecRow.MethodIdx +ID12067=TJclClrTableModule +ID12068=TJclClrTableModule.GetRow@Integer +ID12069=TJclClrTableModule.Rows +ID1207=Copy@IJclSingleIterator@Integer@IJclSingleIterator +ID12070=TJclClrTableModule.TableRowClass +ID12071=TJclClrTableModuleRef +ID12072=TJclClrTableModuleRef.GetRow@Integer +ID12073=TJclClrTableModuleRef.Rows +ID12074=TJclClrTableModuleRef.TableRowClass +ID12075=TJclClrTableModuleRefRow +ID12076=TJclClrTableModuleRefRow.Create@TJclClrTable +ID12077=TJclClrTableModuleRefRow.DumpIL +ID12078=TJclClrTableModuleRefRow.FNameOffset +ID12079=TJclClrTableModuleRefRow.GetName +ID1208=Copy@IJclStrIterator@Integer@IJclStrIterator +ID12080=TJclClrTableModuleRefRow.Name +ID12081=TJclClrTableModuleRefRow.NameOffset +ID12082=TJclClrTableModuleRow +ID12083=TJclClrTableModuleRow.Create@TJclClrTable +ID12084=TJclClrTableModuleRow.DumpIL +ID12085=TJclClrTableModuleRow.EncBaseId +ID12086=TJclClrTableModuleRow.EncBaseIdIdx +ID12087=TJclClrTableModuleRow.EncId +ID12088=TJclClrTableModuleRow.EncIdIdx +ID12089=TJclClrTableModuleRow.FEncBaseIdIdx +ID1209=Copy@IJclUnicodeStrIterator@Integer@IJclUnicodeStrIterator +ID12090=TJclClrTableModuleRow.FEncIdIdx +ID12091=TJclClrTableModuleRow.FGeneration +ID12092=TJclClrTableModuleRow.FMvidIdx +ID12093=TJclClrTableModuleRow.FNameOffset +ID12094=TJclClrTableModuleRow.Generation +ID12095=TJclClrTableModuleRow.GetEncBaseId +ID12096=TJclClrTableModuleRow.GetEncId +ID12097=TJclClrTableModuleRow.GetMvid +ID12098=TJclClrTableModuleRow.GetName +ID12099=TJclClrTableModuleRow.HasEncBaseId ID121=!!OVERLOADED_Remove_TJclTaskSchedule -ID1210=DegToGrad@Single -ID12100=TJclRational.Subtract@Float -ID12101=TJclRational.Subtract@Integer -ID12102=TJclRational.Subtract@TJclRational -ID12103=TJclRebaseImageInfo32 -ID12104=TJclRebaseImageInfo32.NewImageBase -ID12105=TJclRebaseImageInfo32.NewImageSize -ID12106=TJclRebaseImageInfo32.OldImageBase -ID12107=TJclRebaseImageInfo32.OldImageSize -ID12108=TJclRebaseImageInfo64 -ID12109=TJclRebaseImageInfo64.NewImageBase -ID1211=DegToRad@Extended -ID12110=TJclRebaseImageInfo64.NewImageSize -ID12111=TJclRebaseImageInfo64.OldImageBase -ID12112=TJclRebaseImageInfo64.OldImageSize -ID12113=TJclReferenceMemoryStream -ID12114=TJclReferenceMemoryStream.Create@Pointer@Longint -ID12115=TJclReferenceMemoryStream.Write@@Longint -ID12116=TJclRegionBitmapMode -ID12117=TJclRegionBitmapMode.rmExclude -ID12118=TJclRegionBitmapMode.rmInclude -ID12119=TJclRegionCombineOperator -ID1212=DegToRad@Float -ID12120=TJclRegionCombineOperator.coAnd -ID12121=TJclRegionCombineOperator.coDiff -ID12122=TJclRegionCombineOperator.coOr -ID12123=TJclRegionCombineOperator.coXor -ID12124=TJclRegionKind -ID12125=TJclRegionKind.rkComplex -ID12126=TJclRegionKind.rkError -ID12127=TJclRegionKind.rkNull -ID12128=TJclRegionKind.rkSimple -ID12129=TJclScheduledTask -ID1213=DegToRad@Single -ID12130=TJclScheduledTask.ApplicationName -ID12131=TJclScheduledTask.GetApplicationName -ID12132=TJclScheduledTask.GetMaxRunTime -ID12133=TJclScheduledTask.GetParameters -ID12134=TJclScheduledTask.GetPriority -ID12135=TJclScheduledTask.GetTask -ID12136=TJclScheduledTask.GetTaskFlags -ID12137=TJclScheduledTask.GetWorkingDirectory -ID12138=TJclScheduledTask.MaxRunTime -ID12139=TJclScheduledTask.Parameters -ID1214=DeleteCompositeElementFrom@TEDISEFDataObjectGroup@TEDISEFCompositeElement -ID12140=TJclScheduledTask.Priority -ID12141=TJclScheduledTask.SetApplicationName@WideString -ID12142=TJclScheduledTask.SetMaxRunTime@DWORD -ID12143=TJclScheduledTask.SetParameters@WideString -ID12144=TJclScheduledTask.SetPriority@DWORD -ID12145=TJclScheduledTask.SetTaskFlags@DWORD -ID12146=TJclScheduledTask.SetWorkingDirectory@WideString -ID12147=TJclScheduledTask.ShowPage@TJclScheduleTaskPropertyPages -ID12148=TJclScheduledTask.Task -ID12149=TJclScheduledTask.TaskFlags -ID1215=DeleteElementFrom@TEDISEFDataObjectGroup@TEDISEFElement -ID12150=TJclScheduledTask.WorkingDirectory -ID12151=TJclScheduledTaskFlag -ID12152=TJclScheduledTaskFlag.tfDeleteWhenDone -ID12153=TJclScheduledTaskFlag.tfDisabled -ID12154=TJclScheduledTaskFlag.tfDontStartIfOnBatteries -ID12155=TJclScheduledTaskFlag.tfHidden -ID12156=TJclScheduledTaskFlag.tfInteractive -ID12157=TJclScheduledTaskFlag.tfKillIfGoingOnBatteries -ID12158=TJclScheduledTaskFlag.tfKillOnIdleEndl -ID12159=TJclScheduledTaskFlag.tfRestartOnIdleResume -ID1216=DeleteLoopFrom@TEDISEFDataObjectGroup@TEDISEFLoop -ID12160=TJclScheduledTaskFlag.tfRunIfConnectedToInternet -ID12161=TJclScheduledTaskFlag.tfRunOnlyIfDocked -ID12162=TJclScheduledTaskFlag.tfRunOnlyIfLoggedOn -ID12163=TJclScheduledTaskFlag.tfStartOnlyIfIdle -ID12164=TJclScheduledTaskFlag.tfSystemRequired -ID12165=TJclScheduledTaskFlags -ID12166=TJclScheduledTaskStatus -ID12167=TJclScheduledTaskStatus.tsHasNotRun -ID12168=TJclScheduledTaskStatus.tsNotScheduled -ID12169=TJclScheduledTaskStatus.tsReady -ID1217=DeleteRepeatingPatternFrom@TEDISEFDataObjectGroup@TEDISEFRepeatingPattern -ID12170=TJclScheduledTaskStatus.tsRunning -ID12171=TJclScheduledTaskStatus.tsUnknown -ID12172=TJclScheduledWorkItem -ID12173=TJclScheduledWorkItem.AccountName -ID12174=TJclScheduledWorkItem.Comment -ID12175=TJclScheduledWorkItem.Create@WideString@IScheduledWorkItem -ID12176=TJclScheduledWorkItem.Creator -ID12177=TJclScheduledWorkItem.DeadlineMinutes -ID12178=TJclScheduledWorkItem.Destroy -ID12179=TJclScheduledWorkItem.ErrorRetryCount -ID1218=DeleteSegmentFrom@TEDISEFDataObjectGroup@TEDISEFSegment -ID12180=TJclScheduledWorkItem.ErrorRetryInterval -ID12181=TJclScheduledWorkItem.ExitCode -ID12182=TJclScheduledWorkItem.FData -ID12183=TJclScheduledWorkItem.Flags -ID12184=TJclScheduledWorkItem.FScheduledWorkItem -ID12185=TJclScheduledWorkItem.FTaskName -ID12186=TJclScheduledWorkItem.FTriggers -ID12187=TJclScheduledWorkItem.GetAccountName -ID12188=TJclScheduledWorkItem.GetComment -ID12189=TJclScheduledWorkItem.GetCreator -ID1219=DeleteSubElementFrom@TEDISEFDataObjectGroup@TEDISEFSubElement -ID12190=TJclScheduledWorkItem.GetData -ID12191=TJclScheduledWorkItem.GetDeadlineMinutes -ID12192=TJclScheduledWorkItem.GetErrorRetryCount -ID12193=TJclScheduledWorkItem.GetErrorRetryInterval -ID12194=TJclScheduledWorkItem.GetExitCode -ID12195=TJclScheduledWorkItem.GetFlags -ID12196=TJclScheduledWorkItem.GetIdleMinutes -ID12197=TJclScheduledWorkItem.GetMostRecentRunTime -ID12198=TJclScheduledWorkItem.GetNextRunTime -ID12199=TJclScheduledWorkItem.GetRunTimes@TDateTime@TDateTime +ID1210=Copy@IJclWideStrIterator@Integer@IJclWideStrIterator +ID12100=TJclClrTableModuleRow.HasEncId +ID12101=TJclClrTableModuleRow.Mvid +ID12102=TJclClrTableModuleRow.MvidIdx +ID12103=TJclClrTableModuleRow.Name +ID12104=TJclClrTableModuleRow.NameOffset +ID12105=TJclClrTableNestedClass +ID12106=TJclClrTableNestedClass.GetRow@Integer +ID12107=TJclClrTableNestedClass.Rows +ID12108=TJclClrTableNestedClass.TableRowClass +ID12109=TJclClrTableNestedClassRow +ID1211=COR_DELETED_NAME_LENGTH +ID12110=TJclClrTableNestedClassRow.Create@TJclClrTable +ID12111=TJclClrTableNestedClassRow.EnclosingClassIdx +ID12112=TJclClrTableNestedClassRow.FEnclosingClassIdx +ID12113=TJclClrTableNestedClassRow.FNestedClassIdx +ID12114=TJclClrTableNestedClassRow.NestedClassIdx +ID12115=TJclClrTableParamDef +ID12116=TJclClrTableParamDef.GetRow@Integer +ID12117=TJclClrTableParamDef.Rows +ID12118=TJclClrTableParamDef.TableRowClass +ID12119=TJclClrTableParamDefRow +ID1212=COR_ILMETHOD_SECT_SMALL_MAX_DATASIZE +ID12120=TJclClrTableParamDefRow.Create@TJclClrTable +ID12121=TJclClrTableParamDefRow.DumpIL +ID12122=TJclClrTableParamDefRow.FFlagMask +ID12123=TJclClrTableParamDefRow.FFlags +ID12124=TJclClrTableParamDefRow.FlagMask +ID12125=TJclClrTableParamDefRow.Flags +ID12126=TJclClrTableParamDefRow.FMethod +ID12127=TJclClrTableParamDefRow.FNameOffset +ID12128=TJclClrTableParamDefRow.FSequence +ID12129=TJclClrTableParamDefRow.GetName +ID1213=COR_VERSION_MAJOR +ID12130=TJclClrTableParamDefRow.Method +ID12131=TJclClrTableParamDefRow.Name +ID12132=TJclClrTableParamDefRow.NameOffset +ID12133=TJclClrTableParamDefRow.ParamFlags@TJclClrParamKinds +ID12134=TJclClrTableParamDefRow.ParamFlags@Word +ID12135=TJclClrTableParamDefRow.Sequence +ID12136=TJclClrTableParamDefRow.SetMethod@TJclClrTableMethodDefRow +ID12137=TJclClrTableParamPtr +ID12138=TJclClrTableParamPtr.GetRow@Integer +ID12139=TJclClrTableParamPtr.Rows +ID1214=COR_VERSION_MAJOR_V2 +ID12140=TJclClrTableParamPtr.TableRowClass +ID12141=TJclClrTableParamPtrRow +ID12142=TJclClrTableParamPtrRow.Create@TJclClrTable +ID12143=TJclClrTableParamPtrRow.FParamIdx +ID12144=TJclClrTableParamPtrRow.GetParam +ID12145=TJclClrTableParamPtrRow.Param +ID12146=TJclClrTableParamPtrRow.ParamIdx +ID12147=TJclClrTablePropertyDef +ID12148=TJclClrTablePropertyDef.GetRow@Integer +ID12149=TJclClrTablePropertyDef.Rows +ID1215=COR_VERSION_MINOR +ID12150=TJclClrTablePropertyDef.TableRowClass +ID12151=TJclClrTablePropertyDefRow +ID12152=TJclClrTablePropertyDefRow.Create@TJclClrTable +ID12153=TJclClrTablePropertyDefRow.DumpIL +ID12154=TJclClrTablePropertyDefRow.FFlags +ID12155=TJclClrTablePropertyDefRow.FKindIdx +ID12156=TJclClrTablePropertyDefRow.Flags +ID12157=TJclClrTablePropertyDefRow.FNameOffset +ID12158=TJclClrTablePropertyDefRow.GetFlags +ID12159=TJclClrTablePropertyDefRow.GetName +ID1216=COR_VTABLE_32BIT +ID12160=TJclClrTablePropertyDefRow.KindIdx +ID12161=TJclClrTablePropertyDefRow.Name +ID12162=TJclClrTablePropertyDefRow.NameOffset +ID12163=TJclClrTablePropertyDefRow.RawFlags +ID12164=TJclClrTablePropertyFlag +ID12165=TJclClrTablePropertyFlag.pfHasDefault +ID12166=TJclClrTablePropertyFlag.pfRTSpecialName +ID12167=TJclClrTablePropertyFlag.pfSpecialName +ID12168=TJclClrTablePropertyFlags +ID12169=TJclClrTablePropertyMap +ID1217=COR_VTABLE_64BIT +ID12170=TJclClrTablePropertyMap.GetRow@Integer +ID12171=TJclClrTablePropertyMap.Rows +ID12172=TJclClrTablePropertyMap.TableRowClass +ID12173=TJclClrTablePropertyMap.Update +ID12174=TJclClrTablePropertyMapRow +ID12175=TJclClrTablePropertyMapRow.Add@TJclClrTablePropertyDefRow +ID12176=TJclClrTablePropertyMapRow.Create@TJclClrTable +ID12177=TJclClrTablePropertyMapRow.Destroy +ID12178=TJclClrTablePropertyMapRow.FParentIdx +ID12179=TJclClrTablePropertyMapRow.FProperties +ID1218=COR_VTABLE_CALL_MOST_DERIVED +ID12180=TJclClrTablePropertyMapRow.FPropertyListIdx +ID12181=TJclClrTablePropertyMapRow.GetParent +ID12182=TJclClrTablePropertyMapRow.GetProperty@Integer +ID12183=TJclClrTablePropertyMapRow.GetPropertyCount +ID12184=TJclClrTablePropertyMapRow.Parent +ID12185=TJclClrTablePropertyMapRow.ParentIdx +ID12186=TJclClrTablePropertyMapRow.Properties +ID12187=TJclClrTablePropertyMapRow.PropertyCount +ID12188=TJclClrTablePropertyMapRow.PropertyListIdx +ID12189=TJclClrTablePropertyPtr +ID1219=COR_VTABLE_FROM_UNMANAGED +ID12190=TJclClrTablePropertyPtr.GetRow@Integer +ID12191=TJclClrTablePropertyPtr.Rows +ID12192=TJclClrTablePropertyPtr.TableRowClass +ID12193=TJclClrTablePropertyPtrRow +ID12194=TJclClrTablePropertyPtrRow._Property +ID12195=TJclClrTablePropertyPtrRow.Create@TJclClrTable +ID12196=TJclClrTablePropertyPtrRow.FPropertyIdx +ID12197=TJclClrTablePropertyPtrRow.GetProperty +ID12198=TJclClrTablePropertyPtrRow.PropertyIdx +ID12199=TJclClrTableRow ID122=!!OVERLOADED_Replace_TStringBuilder -ID1220=DeleteTableFrom@TEDISEFDataObjectGroup@TEDISEFTable -ID12200=TJclScheduledWorkItem.GetStatus -ID12201=TJclScheduledWorkItem.GetTrigger@Integer -ID12202=TJclScheduledWorkItem.GetTriggerCount -ID12203=TJclScheduledWorkItem.IdleMinutes -ID12204=TJclScheduledWorkItem.MostRecentRunTime -ID12205=TJclScheduledWorkItem.NextRunTime -ID12206=TJclScheduledWorkItem.OwnerData -ID12207=TJclScheduledWorkItem.Password -ID12208=TJclScheduledWorkItem.Refresh -ID12209=TJclScheduledWorkItem.Run -ID1221=DeleteVolumeMountPoint@LPCSTR -ID12210=TJclScheduledWorkItem.Save -ID12211=TJclScheduledWorkItem.ScheduledWorkItem -ID12212=TJclScheduledWorkItem.SetAccountInformation@WideString@WideString -ID12213=TJclScheduledWorkItem.SetAccountName@WideString -ID12214=TJclScheduledWorkItem.SetComment@WideString -ID12215=TJclScheduledWorkItem.SetCreator@WideString -ID12216=TJclScheduledWorkItem.SetData@TStream -ID12217=TJclScheduledWorkItem.SetErrorRetryCount@Word -ID12218=TJclScheduledWorkItem.SetErrorRetryInterval@Word -ID12219=TJclScheduledWorkItem.SetFlags@TJclScheduledTaskFlags -ID1222=DelphiHKEY -ID12220=TJclScheduledWorkItem.SetPassword@WideString -ID12221=TJclScheduledWorkItem.Status -ID12222=TJclScheduledWorkItem.TaskName -ID12223=TJclScheduledWorkItem.Terminate -ID12224=TJclScheduledWorkItem.TriggerCount -ID12225=TJclScheduledWorkItem.Triggers -ID12226=TJclScheduleTaskPropertyPage -ID12227=TJclScheduleTaskPropertyPage.ppSchedule -ID12228=TJclScheduleTaskPropertyPage.ppSettings -ID12229=TJclScheduleTaskPropertyPage.ppTask -ID1223=DEREGISTERED -ID12230=TJclScheduleTaskPropertyPages -ID12231=TJclScopedStream -ID12232=TJclScopedStream.Create@TStream@Int64 -ID12233=TJclScopedStream.FCurrentPos -ID12234=TJclScopedStream.FMaxSize -ID12235=TJclScopedStream.FParentStream -ID12236=TJclScopedStream.FStartPos -ID12237=TJclScopedStream.MaxSize -ID12238=TJclScopedStream.ParentStream -ID12239=TJclScopedStream.Read@@Longint -ID1224=DesignerCLX -ID12240=TJclScopedStream.Seek@Int64@TSeekOrigin -ID12241=TJclScopedStream.StartPos -ID12242=TJclScopedStream.Write@@Longint -ID12243=TJclScreenBackColor -ID12244=TJclScreenBackColor.bclBlack -ID12245=TJclScreenBackColor.bclBlue -ID12246=TJclScreenBackColor.bclCyan -ID12247=TJclScreenBackColor.bclGreen -ID12248=TJclScreenBackColor.bclMagenta -ID12249=TJclScreenBackColor.bclRed -ID1225=DesignerVCL -ID12250=TJclScreenBackColor.bclWhite -ID12251=TJclScreenBackColor.bclYellow -ID12252=TJclScreenBuffer -ID12253=TJclScreenBuffer.Clear -ID12254=TJclScreenBuffer.Create -ID12255=TJclScreenBuffer.Create@Smallint@Smallint -ID12256=TJclScreenBuffer.Create@THandle -ID12257=TJclScreenBuffer.Cursor -ID12258=TJclScreenBuffer.Destroy -ID12259=TJclScreenBuffer.DoResize@Smallint@Smallint -ID1226=DestroyEnvironmentBlock@PChar -ID12260=TJclScreenBuffer.DoResize@TCoord -ID12261=TJclScreenBuffer.FCharList -ID12262=TJclScreenBuffer.FCursor -ID12263=TJclScreenBuffer.FFont -ID12264=TJclScreenBuffer.FHandle -ID12265=TJclScreenBuffer.Fill@Char@IJclScreenTextAttribute -ID12266=TJclScreenBuffer.FOnAfterResize -ID12267=TJclScreenBuffer.FOnBeforeResize -ID12268=TJclScreenBuffer.Font -ID12269=TJclScreenBuffer.FWindow -ID1227=DEVICE_TYPE -ID12270=TJclScreenBuffer.GetHeight -ID12271=TJclScreenBuffer.GetInfo -ID12272=TJclScreenBuffer.GetMode -ID12273=TJclScreenBuffer.GetSize -ID12274=TJclScreenBuffer.GetWidth -ID12275=TJclScreenBuffer.Handle -ID12276=TJclScreenBuffer.Height -ID12277=TJclScreenBuffer.Info -ID12278=TJclScreenBuffer.Init -ID12279=TJclScreenBuffer.Mode -ID1228=DEVLEN -ID12280=TJclScreenBuffer.OnAfterResize -ID12281=TJclScreenBuffer.OnBeforeResize -ID12282=TJclScreenBuffer.Read@Integer -ID12283=TJclScreenBuffer.Read@Smallint@Smallint@Integer -ID12284=TJclScreenBuffer.Readln -ID12285=TJclScreenBuffer.Readln@Smallint@Smallint -ID12286=TJclScreenBuffer.SetHeight@Smallint -ID12287=TJclScreenBuffer.SetMode@TJclConsoleOutputModes -ID12288=TJclScreenBuffer.SetSize@TCoord -ID12289=TJclScreenBuffer.SetWidth@Smallint -ID1229=DialogUnitsToPixelsX@Word -ID12290=TJclScreenBuffer.Size -ID12291=TJclScreenBuffer.Width -ID12292=TJclScreenBuffer.Window -ID12293=TJclScreenBuffer.Write@string@IJclScreenTextAttribute -ID12294=TJclScreenBuffer.Write@string@Smallint@Smallint@array of Word -ID12295=TJclScreenBuffer.Write@string@Smallint@Smallint@IJclScreenTextAttribute -ID12296=TJclScreenBuffer.Write@string@Smallint@Smallint@PWORD -ID12297=TJclScreenBuffer.Write@string@TJclScreenBufferTextHorizontalAlign@TJclScreenBufferTextVerticalAlign@IJclScreenTextAttribute -ID12298=TJclScreenBuffer.Writeln@string@IJclScreenTextAttribute -ID12299=TJclScreenBufferAfterResizeEvent +ID1220=COR_VTABLEGAP_NAME_LENGTH +ID12200=TJclClrTableRow.Create@TJclClrTable +ID12201=TJclClrTableRow.DecodeResolutionScope@DWORD +ID12202=TJclClrTableRow.DecodeTypeDefOrRef@DWORD +ID12203=TJclClrTableRow.DumpIL +ID12204=TJclClrTableRow.FIndex +ID12205=TJclClrTableRow.FTable +ID12206=TJclClrTableRow.GetToken +ID12207=TJclClrTableRow.Index +ID12208=TJclClrTableRow.Table +ID12209=TJclClrTableRow.Token +ID1221=CorBindToCurrentRuntime@PWideChar@TCLSID@TIID@ +ID12210=TJclClrTableRow.Update +ID12211=TJclClrTableRowClass +ID12212=TJclClrTableStandAloneSig +ID12213=TJclClrTableStandAloneSig.GetRow@Integer +ID12214=TJclClrTableStandAloneSig.Rows +ID12215=TJclClrTableStandAloneSig.TableRowClass +ID12216=TJclClrTableStandAloneSigRow +ID12217=TJclClrTableStandAloneSigRow.Create@TJclClrTable +ID12218=TJclClrTableStandAloneSigRow.FSignatureOffset +ID12219=TJclClrTableStandAloneSigRow.GetSignature +ID1222=CorBindToRuntime@PWideChar@PWideChar@TCLSID@TIID@ +ID12220=TJclClrTableStandAloneSigRow.Signature +ID12221=TJclClrTableStandAloneSigRow.SignatureOffset +ID12222=TJclClrTableStream +ID12223=TJclClrTableStream.BigHeap +ID12224=TJclClrTableStream.Create@TJclPeMetadata@PClrStreamHeader +ID12225=TJclClrTableStream.Destroy +ID12226=TJclClrTableStream.DumpIL +ID12227=TJclClrTableStream.FHeader +ID12228=TJclClrTableStream.FindTable@TJclClrTableKind@TJclClrTable +ID12229=TJclClrTableStream.FTableCount +ID1223=CorBindToRuntimeByCfg@IStream@DWORD@DWORD@TCLSID@TIID@ +ID12230=TJclClrTableStream.FTables +ID12231=TJclClrTableStream.GetBigHeap@TJclClrHeapKind +ID12232=TJclClrTableStream.GetTable@TJclClrTableKind +ID12233=TJclClrTableStream.GetVersionString +ID12234=TJclClrTableStream.Header +ID12235=TJclClrTableStream.TableCount +ID12236=TJclClrTableStream.Tables +ID12237=TJclClrTableStream.Update +ID12238=TJclClrTableStream.VersionString +ID12239=TJclClrTableTypeDef +ID1224=CorBindToRuntimeEx@PWideChar@PWideChar@DWORD@TCLSID@TIID@ +ID12240=TJclClrTableTypeDef.GetRow@Integer +ID12241=TJclClrTableTypeDef.Rows +ID12242=TJclClrTableTypeDef.TableRowClass +ID12243=TJclClrTableTypeDefRow +ID12244=TJclClrTableTypeDefRow.Attributes +ID12245=TJclClrTableTypeDefRow.ClassLayout +ID12246=TJclClrTableTypeDefRow.ClassSemantics +ID12247=TJclClrTableTypeDefRow.Create@TJclClrTable +ID12248=TJclClrTableTypeDefRow.Destroy +ID12249=TJclClrTableTypeDefRow.DumpIL +ID1225=CorBindToRuntimeHost@PWideChar@PWideChar@PWideChar@Pointer@DWORD@TCLSID@TIID@ +ID12250=TJclClrTableTypeDefRow.Extends +ID12251=TJclClrTableTypeDefRow.ExtendsIdx +ID12252=TJclClrTableTypeDefRow.FExtendsIdx +ID12253=TJclClrTableTypeDefRow.FFieldListIdx +ID12254=TJclClrTableTypeDefRow.FFields +ID12255=TJclClrTableTypeDefRow.FFlags +ID12256=TJclClrTableTypeDefRow.FieldCount +ID12257=TJclClrTableTypeDefRow.FieldListIdx +ID12258=TJclClrTableTypeDefRow.Fields +ID12259=TJclClrTableTypeDefRow.Flags +ID1226=CorExitProcess@Integer +ID12260=TJclClrTableTypeDefRow.FMethodListIdx +ID12261=TJclClrTableTypeDefRow.FMethods +ID12262=TJclClrTableTypeDefRow.FNameOffset +ID12263=TJclClrTableTypeDefRow.FNamespaceOffset +ID12264=TJclClrTableTypeDefRow.FullName +ID12265=TJclClrTableTypeDefRow.GetAttributes +ID12266=TJclClrTableTypeDefRow.GetClassLayout +ID12267=TJclClrTableTypeDefRow.GetClassSemantics +ID12268=TJclClrTableTypeDefRow.GetExtends +ID12269=TJclClrTableTypeDefRow.GetField@Integer +ID1227=CorMarkThreadInThreadPool +ID12270=TJclClrTableTypeDefRow.GetFieldCount +ID12271=TJclClrTableTypeDefRow.GetFullName +ID12272=TJclClrTableTypeDefRow.GetMethod@Integer +ID12273=TJclClrTableTypeDefRow.GetMethodCount +ID12274=TJclClrTableTypeDefRow.GetName +ID12275=TJclClrTableTypeDefRow.GetNamespace +ID12276=TJclClrTableTypeDefRow.GetStringFormatting +ID12277=TJclClrTableTypeDefRow.GetVisibility +ID12278=TJclClrTableTypeDefRow.HasField +ID12279=TJclClrTableTypeDefRow.HasMethod +ID1228=Cos@TRectComplex +ID12280=TJclClrTableTypeDefRow.MethodCount +ID12281=TJclClrTableTypeDefRow.MethodListIdx +ID12282=TJclClrTableTypeDefRow.Methods +ID12283=TJclClrTableTypeDefRow.Name +ID12284=TJclClrTableTypeDefRow.NameOffset +ID12285=TJclClrTableTypeDefRow.Namespace +ID12286=TJclClrTableTypeDefRow.NamespaceOffset +ID12287=TJclClrTableTypeDefRow.StringFormatting +ID12288=TJclClrTableTypeDefRow.Update +ID12289=TJclClrTableTypeDefRow.UpdateFields +ID1229=CosH@TRectComplex +ID12290=TJclClrTableTypeDefRow.UpdateMethods +ID12291=TJclClrTableTypeDefRow.Visibility +ID12292=TJclClrTableTypeRef +ID12293=TJclClrTableTypeRef.GetRow@Integer +ID12294=TJclClrTableTypeRef.Rows +ID12295=TJclClrTableTypeRef.TableRowClass +ID12296=TJclClrTableTypeRefRow +ID12297=TJclClrTableTypeRefRow.Create@TJclClrTable +ID12298=TJclClrTableTypeRefRow.DumpIL +ID12299=TJclClrTableTypeRefRow.FNameOffset ID123=!!OVERLOADED_SaveToFile_TEDISEFFile -ID1230=DialogUnitsToPixelsY@Word -ID12300=TJclScreenBufferBeforeResizeEvent -ID12301=TJclScreenBufferTextHorizontalAlign -ID12302=TJclScreenBufferTextHorizontalAlign.thaCenter -ID12303=TJclScreenBufferTextHorizontalAlign.thaCurrent -ID12304=TJclScreenBufferTextHorizontalAlign.thaLeft -ID12305=TJclScreenBufferTextHorizontalAlign.thaRight -ID12306=TJclScreenBufferTextVerticalAlign -ID12307=TJclScreenBufferTextVerticalAlign.tvaBottom -ID12308=TJclScreenBufferTextVerticalAlign.tvaCenter -ID12309=TJclScreenBufferTextVerticalAlign.tvaCurrent -ID1231=Diff@TRectComplex@TRectComplex -ID12310=TJclScreenBufferTextVerticalAlign.tvaTop -ID12311=TJclScreenCharacter -ID12312=TJclScreenCharacter.Character -ID12313=TJclScreenCharacter.Create@TCharInfo -ID12314=TJclScreenCharacter.FCharInfo -ID12315=TJclScreenCharacter.GetCharacter -ID12316=TJclScreenCharacter.GetTextAttribute -ID12317=TJclScreenCharacter.Info -ID12318=TJclScreenCharacter.SetCharacter@Char -ID12319=TJclScreenCharacter.SetTextAttribute@Word -ID1232=DIFFERENCE -ID12320=TJclScreenCursor -ID12321=TJclScreenCursor.Create@TJclScreenBuffer -ID12322=TJclScreenCursor.FScreenBuffer -ID12323=TJclScreenCursor.GetInfo -ID12324=TJclScreenCursor.GetPosition -ID12325=TJclScreenCursor.GetSize -ID12326=TJclScreenCursor.GetVisible -ID12327=TJclScreenCursor.Info -ID12328=TJclScreenCursor.MoveBy@Smallint@Smallint -ID12329=TJclScreenCursor.MoveBy@TCoord -ID1233=DirDelimiter -ID12330=TJclScreenCursor.MoveTo@Smallint@Smallint -ID12331=TJclScreenCursor.MoveTo@TCoord -ID12332=TJclScreenCursor.Position -ID12333=TJclScreenCursor.ScreenBuffer -ID12334=TJclScreenCursor.SetInfo@TConsoleCursorInfo -ID12335=TJclScreenCursor.SetPosition@TCoord -ID12336=TJclScreenCursor.SetSize@TJclScreenCursorSize -ID12337=TJclScreenCursor.SetVisible@Boolean -ID12338=TJclScreenCursor.Size -ID12339=TJclScreenCursor.Visible -ID1234=DirectPrint@string@string -ID12340=TJclScreenCursorSize -ID12341=TJclScreenCustomTextAttribute -ID12342=TJclScreenCustomTextAttribute.BgColor -ID12343=TJclScreenCustomTextAttribute.BgHighlight -ID12344=TJclScreenCustomTextAttribute.Clear -ID12345=TJclScreenCustomTextAttribute.Color -ID12346=TJclScreenCustomTextAttribute.Create@TJclScreenCustomTextAttribute -ID12347=TJclScreenCustomTextAttribute.GetBgColor -ID12348=TJclScreenCustomTextAttribute.GetBgHighlight -ID12349=TJclScreenCustomTextAttribute.GetColor -ID1235=DirSeparator -ID12350=TJclScreenCustomTextAttribute.GetHighlight -ID12351=TJclScreenCustomTextAttribute.GetStyle -ID12352=TJclScreenCustomTextAttribute.GetTextAttribute -ID12353=TJclScreenCustomTextAttribute.Highlight -ID12354=TJclScreenCustomTextAttribute.SetBgColor@TJclScreenBackColor -ID12355=TJclScreenCustomTextAttribute.SetBgHighlight@Boolean -ID12356=TJclScreenCustomTextAttribute.SetColor@TJclScreenFontColor -ID12357=TJclScreenCustomTextAttribute.SetHighlight@Boolean -ID12358=TJclScreenCustomTextAttribute.SetStyle@TJclScreenFontStyles -ID12359=TJclScreenCustomTextAttribute.SetTextAttribute@Word -ID1236=DisplayPropDialog@THandle@string -ID12360=TJclScreenCustomTextAttribute.Style -ID12361=TJclScreenCustomTextAttribute.TextAttribute -ID12362=TJclScreenFont -ID12363=TJclScreenFont.Create@TJclScreenBuffer -ID12364=TJclScreenFont.FScreenBuffer -ID12365=TJclScreenFont.GetTextAttribute -ID12366=TJclScreenFont.ScreenBuffer -ID12367=TJclScreenFont.SetTextAttribute@Word -ID12368=TJclScreenFontColor -ID12369=TJclScreenFontColor.fclBlack -ID1237=DLLVER_PLATFORM_NT -ID12370=TJclScreenFontColor.fclBlue -ID12371=TJclScreenFontColor.fclCyan -ID12372=TJclScreenFontColor.fclGreen -ID12373=TJclScreenFontColor.fclMagenta -ID12374=TJclScreenFontColor.fclRed -ID12375=TJclScreenFontColor.fclWhite -ID12376=TJclScreenFontColor.fclYellow -ID12377=TJclScreenFontStyle -ID12378=TJclScreenFontStyle.fsGridHorizontal -ID12379=TJclScreenFontStyle.fsGridLeftVertical -ID1238=DLLVER_PLATFORM_WINDOWS -ID12380=TJclScreenFontStyle.fsGridRightVertical -ID12381=TJclScreenFontStyle.fsLeadingByte -ID12382=TJclScreenFontStyle.fsReverseVideo -ID12383=TJclScreenFontStyle.fsSbcsDbcs -ID12384=TJclScreenFontStyle.fsTrailingByte -ID12385=TJclScreenFontStyle.fsUnderscore -ID12386=TJclScreenFontStyles -ID12387=TJclScreenTextAttribute -ID12388=TJclScreenTextAttribute.Create@TJclScreenFontColor@TJclScreenBackColor@Boolean@Boolean@TJclScreenFontStyles -ID12389=TJclScreenTextAttribute.Create@Word -ID1239=DLLVERSIONINFO -ID12390=TJclScreenTextAttribute.FAttribute -ID12391=TJclScreenTextAttribute.GetTextAttribute -ID12392=TJclScreenTextAttribute.SetTextAttribute@Word -ID12393=TJclScreenWindow -ID12394=TJclScreenWindow.Bottom -ID12395=TJclScreenWindow.Create@TJclScreenBuffer -ID12396=TJclScreenWindow.DoResize@TSmallRect@Boolean -ID12397=TJclScreenWindow.FScreenBuffer -ID12398=TJclScreenWindow.GetBottom -ID12399=TJclScreenWindow.GetHeight +ID1230=Cot@TRectComplex +ID12300=TJclClrTableTypeRefRow.FNamespaceOffset +ID12301=TJclClrTableTypeRefRow.FResolutionScopeIdx +ID12302=TJclClrTableTypeRefRow.FullName +ID12303=TJclClrTableTypeRefRow.GetFullName +ID12304=TJclClrTableTypeRefRow.GetName +ID12305=TJclClrTableTypeRefRow.GetNamespace +ID12306=TJclClrTableTypeRefRow.GetResolutionScope +ID12307=TJclClrTableTypeRefRow.GetResolutionScopeName +ID12308=TJclClrTableTypeRefRow.Name +ID12309=TJclClrTableTypeRefRow.NameOffset +ID1231=CotH@TRectComplex +ID12310=TJclClrTableTypeRefRow.Namespace +ID12311=TJclClrTableTypeRefRow.NamespaceOffset +ID12312=TJclClrTableTypeRefRow.ResolutionScope +ID12313=TJclClrTableTypeRefRow.ResolutionScopeIdx +ID12314=TJclClrTableTypeRefRow.ResolutionScopeName +ID12315=TJclClrTableTypeSpec +ID12316=TJclClrTableTypeSpec.GetRow@Integer +ID12317=TJclClrTableTypeSpec.Rows +ID12318=TJclClrTableTypeSpec.TableRowClass +ID12319=TJclClrTableTypeSpecRow +ID1232=CountBitsCleared@Cardinal +ID12320=TJclClrTableTypeSpecRow.Create@TJclClrTable +ID12321=TJclClrTableTypeSpecRow.FSignatureOffset +ID12322=TJclClrTableTypeSpecRow.GetSignature +ID12323=TJclClrTableTypeSpecRow.Signature +ID12324=TJclClrTableTypeSpecRow.SignatureOffset +ID12325=TJclClrToken +ID12326=TJclClrTypeAttribute +ID12327=TJclClrTypeAttribute.taAbstract +ID12328=TJclClrTypeAttribute.taBeforeFieldInit +ID12329=TJclClrTypeAttribute.taHasSecurity +ID1233=CountBitsCleared@Int64 +ID12330=TJclClrTypeAttribute.taImport +ID12331=TJclClrTypeAttribute.taRTSpecialName +ID12332=TJclClrTypeAttribute.taSealed +ID12333=TJclClrTypeAttribute.taSerializable +ID12334=TJclClrTypeAttribute.taSpecialName +ID12335=TJclClrTypeAttributes +ID12336=TJclClrTypeVisibility +ID12337=TJclClrTypeVisibility.tvNestedAssembly +ID12338=TJclClrTypeVisibility.tvNestedFamANDAssem +ID12339=TJclClrTypeVisibility.tvNestedFamily +ID1234=CountBitsCleared@Integer +ID12340=TJclClrTypeVisibility.tvNestedFamORAssem +ID12341=TJclClrTypeVisibility.tvNestedPrivate +ID12342=TJclClrTypeVisibility.tvNestedPublic +ID12343=TJclClrTypeVisibility.tvNotPublic +ID12344=TJclClrTypeVisibility.tvPublic +ID12345=TJclClrUserStringStream +ID12346=TJclClrUserStringStream.At@DWORD +ID12347=TJclClrUserStringStream.BlobToString@TJclClrBlobRecord +ID12348=TJclClrUserStringStream.GetOffset@Integer +ID12349=TJclClrUserStringStream.GetString@Integer +ID1235=CountBitsCleared@Pointer@Cardinal +ID12350=TJclClrUserStringStream.GetStringCount +ID12351=TJclClrUserStringStream.Offsets +ID12352=TJclClrUserStringStream.StringCount +ID12353=TJclClrUserStringStream.Strings +ID12354=TJclClrVTableFixupRecord +ID12355=TJclClrVTableFixupRecord.Count +ID12356=TJclClrVTableFixupRecord.Create@PImageCorVTableFixup +ID12357=TJclClrVTableFixupRecord.Data +ID12358=TJclClrVTableFixupRecord.FData +ID12359=TJclClrVTableFixupRecord.GetCount +ID1236=CountBitsCleared@Shortint +ID12360=TJclClrVTableFixupRecord.GetKinds +ID12361=TJclClrVTableFixupRecord.GetRVA +ID12362=TJclClrVTableFixupRecord.Kinds +ID12363=TJclClrVTableFixupRecord.RVA +ID12364=TJclClrVTableFixupRecord.VTableKinds@DWORD +ID12365=TJclClrVTableFixupRecord.VTableKinds@TJclClrVTableKinds +ID12366=TJclClrVTableKind +ID12367=TJclClrVTableKind.vtk32Bit +ID12368=TJclClrVTableKind.vtk64Bit +ID12369=TJclClrVTableKind.vtkCallMostDerived +ID1237=CountBitsCleared@Smallint +ID12370=TJclClrVTableKind.vtkFromUnmanaged +ID12371=TJclClrVTableKinds +ID12372=TJclCommandLineTool +ID12373=TJclCommandLineTool.AddPathOption@string@string +ID12374=TJclCommandLineTool.Create@string +ID12375=TJclCommandLineTool.Destroy +ID12376=TJclCommandLineTool.Execute@string +ID12377=TJclCommandLineTool.ExeName +ID12378=TJclCommandLineTool.FExeName +ID12379=TJclCommandLineTool.FOptions +ID1238=CountBitsCleared@Word +ID12380=TJclCommandLineTool.FOutput +ID12381=TJclCommandLineTool.FOutputCallback +ID12382=TJclCommandLineTool.GetExeName +ID12383=TJclCommandLineTool.GetOptions +ID12384=TJclCommandLineTool.GetOutput +ID12385=TJclCommandLineTool.GetOutputCallback +ID12386=TJclCommandLineTool.Output +ID12387=TJclCommandLineTool.SetOutputCallback@TTextHandler +ID12388=TJclCompilerSettingsFormat +ID12389=TJclCompoundDecompressArchive +ID1239=CountBitsSet@Cardinal +ID12390=TJclCompressArchive +ID12391=TJclCompressArchiveClass +ID12392=TJclCompressionArchive +ID12393=TJclCompressionArchiveClass +ID12394=TJclCompressionArchiveFormats +ID12395=TJclCompressionDuplicateAction +ID12396=TJclCompressionDuplicateCheck +ID12397=TJclCompressionExtractEvent +ID12398=TJclCompressionItem +ID12399=TJclCompressionItemClass ID124=!!OVERLOADED_Seek_TJclEventStream -ID1240=DNLEN -ID12400=TJclScreenWindow.GetLeft -ID12401=TJclScreenWindow.GetMaxConsoleWindowSize -ID12402=TJclScreenWindow.GetMaxWindow -ID12403=TJclScreenWindow.GetPosition -ID12404=TJclScreenWindow.GetRight -ID12405=TJclScreenWindow.GetSize -ID12406=TJclScreenWindow.GetTop -ID12407=TJclScreenWindow.GetWidth -ID12408=TJclScreenWindow.Height -ID12409=TJclScreenWindow.InternalSetPosition@SmallInt@SmallInt -ID1241=DOFCompilerSection -ID12410=TJclScreenWindow.InternalSetSize@SmallInt@SmallInt -ID12411=TJclScreenWindow.Left -ID12412=TJclScreenWindow.MaxConsoleWindowSize -ID12413=TJclScreenWindow.MaxWindow -ID12414=TJclScreenWindow.Position -ID12415=TJclScreenWindow.Right -ID12416=TJclScreenWindow.ScreenBuffer -ID12417=TJclScreenWindow.Scroll@Smallint@Smallint -ID12418=TJclScreenWindow.SetBottom@Smallint -ID12419=TJclScreenWindow.SetHeight@Smallint -ID1242=DOFConditionals -ID12420=TJclScreenWindow.SetLeft@Smallint -ID12421=TJclScreenWindow.SetPosition@TCoord -ID12422=TJclScreenWindow.SetRight@Smallint -ID12423=TJclScreenWindow.SetSize@TCoord -ID12424=TJclScreenWindow.SetTop@Smallint -ID12425=TJclScreenWindow.SetWidth@Smallint -ID12426=TJclScreenWindow.Size -ID12427=TJclScreenWindow.Top -ID12428=TJclScreenWindow.Width -ID12429=TJclSectoredStream -ID1243=DOFDirectoriesSection -ID12430=TJclSectoredStream.AfterBlockRead -ID12431=TJclSectoredStream.BeforeBlockWrite -ID12432=TJclSectoredStream.Create@TStream@Boolean@Integer -ID12433=TJclSectoredStream.DoAfterStreamChange -ID12434=TJclSectoredStream.FlatToSectored@Int64 -ID12435=TJclSectoredStream.Flush -ID12436=TJclSectoredStream.FSectorOverHead -ID12437=TJclSectoredStream.GetCalcedSize -ID12438=TJclSectoredStream.LoadBuffer -ID12439=TJclSectoredStream.SectoredToFlat@Int64 -ID1244=DOFLinkerSection -ID12440=TJclServiceStates -ID12441=TJclServiceTypes -ID12442=TJclShareSummaryInformation -ID12443=TJclShareSummaryInformation.GetFMTID -ID12444=TJclShellSummaryInformation -ID12445=TJclShellSummaryInformation.GetFMTID -ID12446=TJclSimpleLog -ID12447=TJclSimpleLog.ClearLog -ID12448=TJclSimpleLog.CloseLog -ID12449=TJclSimpleLog.Create@string -ID1245=DOFPackageNoLinkKey -ID12450=TJclSimpleLog.CreateDefaultFileName -ID12451=TJclSimpleLog.Destroy -ID12452=TJclSimpleLog.FLogFileHandle -ID12453=TJclSimpleLog.FLogFileName -ID12454=TJclSimpleLog.FLogWasEmpty -ID12455=TJclSimpleLog.GetLogOpen -ID12456=TJclSimpleLog.LogFileName -ID12457=TJclSimpleLog.LogOpen -ID12458=TJclSimpleLog.OpenLog -ID12459=TJclSimpleLog.Write@string@Integer -ID1246=DOFPackagesKey -ID12460=TJclSimpleLog.Write@TStrings@Integer -ID12461=TJclSimpleLog.WriteStamp@Integer -ID12462=TJclSmartCompOptions -ID12463=TJclSourceModuleInfo -ID12464=TJclSourceModuleInfo.Create@PSourceFileEntry@DWORD -ID12465=TJclSourceModuleInfo.Destroy -ID12466=TJclSourceModuleInfo.FindLine@DWORD@TJclLineInfo -ID12467=TJclSourceModuleInfo.FLines -ID12468=TJclSourceModuleInfo.FNameIndex -ID12469=TJclSourceModuleInfo.FSegmentCount -ID1247=DOFSearchPathName -ID12470=TJclSourceModuleInfo.FSegments -ID12471=TJclSourceModuleInfo.GetLine@Integer -ID12472=TJclSourceModuleInfo.GetLineCount -ID12473=TJclSourceModuleInfo.GetSegment@Integer -ID12474=TJclSourceModuleInfo.Line -ID12475=TJclSourceModuleInfo.LineCount -ID12476=TJclSourceModuleInfo.NameIndex -ID12477=TJclSourceModuleInfo.Segment -ID12478=TJclSourceModuleInfo.SegmentCount -ID12479=TJclSparseFlatSet -ID1248=DOFUnitOutputDirKey -ID12480=TJclSparseFlatSet.Clear -ID12481=TJclSparseFlatSet.Destroy -ID12482=TJclSparseFlatSet.FSetList -ID12483=TJclSparseFlatSet.FSetListEntries -ID12484=TJclSparseFlatSet.GetBit@Integer -ID12485=TJclSparseFlatSet.GetRange@Integer@Integer@Boolean -ID12486=TJclSparseFlatSet.Invert -ID12487=TJclSparseFlatSet.SetBit@Integer@Boolean -ID12488=TJclSparseFlatSet.SetRange@Integer@Integer@Boolean -ID12489=TJclStackTrackingOption -ID1249=DOMAIN_ALIAS_RID_AUTHORIZATIONACCESS -ID12490=TJclStackTrackingOption.stAllModules -ID12491=TJclStackTrackingOption.stDelayedTrace -ID12492=TJclStackTrackingOption.stExceptFrame -ID12493=TJclStackTrackingOption.stMainThreadOnly -ID12494=TJclStackTrackingOption.stRawMode -ID12495=TJclStackTrackingOption.stStack -ID12496=TJclStackTrackingOption.stStaticModuleList -ID12497=TJclStackTrackingOption.stTraceAllExceptions -ID12498=TJclStackTrackingOptions -ID12499=TJclStorageSummaryInformation +ID1240=CountBitsSet@Int64 +ID12400=TJclCompressionItemKind +ID12401=TJclCompressionItemProperties +ID12402=TJclCompressionItemProperty +ID12403=TJclCompressionLevel +ID12404=TJclCompressionMethod +ID12405=TJclCompressionMethods +ID12406=TJclCompressionOperationSuccess +ID12407=TJclCompressionProgressEvent +ID12408=TJclCompressionReplaceEvent +ID12409=TJclCompressionStream +ID1241=CountBitsSet@Integer +ID12410=TJclCompressionStream.Create@TStream +ID12411=TJclCompressionStream.Destroy +ID12412=TJclCompressionStream.FBuffer +ID12413=TJclCompressionStream.FBufferSize +ID12414=TJclCompressionStream.FOnProgress +ID12415=TJclCompressionStream.FStream +ID12416=TJclCompressionStream.OnProgress +ID12417=TJclCompressionStream.Progress@TObject +ID12418=TJclCompressionStream.Read@@Longint +ID12419=TJclCompressionStream.Reset +ID1242=CountBitsSet@Pointer@Cardinal +ID12420=TJclCompressionStream.Seek@Int64@TSeekOrigin +ID12421=TJclCompressionStream.SetBufferSize@Cardinal +ID12422=TJclCompressionStream.Write@@Longint +ID12423=TJclCompressionStreamClass +ID12424=TJclCompressionStreamFormats +ID12425=TJclCompressionVolume +ID12426=TJclCompressionVolumeEvent +ID12427=TJclCompressionVolumeMaxSizeEvent +ID12428=TJclCompressItem +ID12429=TJclCompressStream +ID1243=CountBitsSet@ShortInt +ID12430=TJclCompressStream.Create@TStream +ID12431=TJclCompressStream.Flush +ID12432=TJclCompressStreamClass +ID12433=TJclCompressStreamProgressCallback +ID12434=TJclConsole +ID12435=TJclConsole.ActiveScreen +ID12436=TJclConsole.ActiveScreenIndex +ID12437=TJclConsole.Add@Smallint@Smallint +ID12438=TJclConsole.Alloc +ID12439=TJclConsole.Create +ID1244=CountBitsSet@Smallint +ID12440=TJclConsole.Default +ID12441=TJclConsole.Delete@Longword +ID12442=TJclConsole.Destroy +ID12443=TJclConsole.FActiveScreenIndex +ID12444=TJclConsole.FInput +ID12445=TJclConsole.FOnClose +ID12446=TJclConsole.FOnCtrlBreak +ID12447=TJclConsole.FOnCtrlC +ID12448=TJclConsole.FOnLogOff +ID12449=TJclConsole.FOnShutdown +ID1245=CountBitsSet@Word +ID12450=TJclConsole.Free +ID12451=TJclConsole.FScreens +ID12452=TJclConsole.GetActiveScreen +ID12453=TJclConsole.GetInputCodePage +ID12454=TJclConsole.GetOutputCodePage +ID12455=TJclConsole.GetScreen@Longword +ID12456=TJclConsole.GetScreenCount +ID12457=TJclConsole.GetTitle +ID12458=TJclConsole.Input +ID12459=TJclConsole.InputCodePage +ID1246=CountObject@IJclAnsiStrIterator@Integer@AnsiString@TAnsiStrCompare +ID12460=TJclConsole.IsConsole@HMODULE +ID12461=TJclConsole.IsConsole@TFileName +ID12462=TJclConsole.MouseButtonCount +ID12463=TJclConsole.OnClose +ID12464=TJclConsole.OnCtrlBreak +ID12465=TJclConsole.OnCtrlC +ID12466=TJclConsole.OnLogOff +ID12467=TJclConsole.OnShutdown +ID12468=TJclConsole.OutputCodePage +ID12469=TJclConsole.Remove@TJclScreenBuffer +ID1247=CountObject@IJclAnsiStrIterator@Integer@AnsiString@TAnsiStrEqualityCompare +ID12470=TJclConsole.ScreenCount +ID12471=TJclConsole.Screens +ID12472=TJclConsole.SetActiveScreen@TJclScreenBuffer +ID12473=TJclConsole.SetActiveScreenIndex@Longword +ID12474=TJclConsole.SetInputCodePage@DWORD +ID12475=TJclConsole.SetOutputCodePage@DWORD +ID12476=TJclConsole.SetTitle@string +ID12477=TJclConsole.Shutdown +ID12478=TJclConsole.Title +ID12479=TJclConsoleInputMode +ID1248=CountObject@IJclCardinalIterator@Integer@Cardinal@TCardinalCompare +ID12480=TJclConsoleInputMode.imEcho +ID12481=TJclConsoleInputMode.imLine +ID12482=TJclConsoleInputMode.imMouse +ID12483=TJclConsoleInputMode.imProcessed +ID12484=TJclConsoleInputMode.imWindow +ID12485=TJclConsoleInputModes +ID12486=TJclConsoleOutputMode +ID12487=TJclConsoleOutputMode.omProcessed +ID12488=TJclConsoleOutputMode.omWrapAtEol +ID12489=TJclConsoleOutputModes +ID1249=CountObject@IJclCardinalIterator@Integer@Cardinal@TCardinalEqualityCompare +ID12490=TJclConstantSymbolInfo +ID12491=TJclConstantSymbolInfo.Create@PSymbolInfo +ID12492=TJclConstantSymbolInfo.FNameIndex +ID12493=TJclConstantSymbolInfo.FTypeIndex +ID12494=TJclConstantSymbolInfo.FValue +ID12495=TJclConstantSymbolInfo.NameIndex +ID12496=TJclConstantSymbolInfo.TypeIndex +ID12497=TJclConstantSymbolInfo.Value +ID12498=TJclControlPanelSummaryInformation +ID12499=TJclControlPanelSummaryInformation.GetFMTID ID125=!!OVERLOADED_Seek_TJclStream -ID1250=DOMAIN_ALIAS_RID_INCOMING_FOREST_TRUST_BUILDERS -ID12500=TJclStorageSummaryInformation.GetFMTID -ID12501=TJclStrArraySet -ID12502=TJclStrArraySet.Add@string -ID12503=TJclStrArraySet.AddAll@IJclStrCollection -ID12504=TJclStrArraySet.BinarySearch@string -ID12505=TJclStrArraySet.Contains@string -ID12506=TJclStrArraySet.Insert@Integer@string -ID12507=TJclStrArraySet.Intersect@IJclStrCollection -ID12508=TJclStrArraySet.Subtract@IJclStrCollection -ID12509=TJclStrArraySet.Union@IJclStrCollection -ID1251=DOMAIN_ALIAS_RID_LOGGING_USERS -ID12510=TJclStrBinaryNode -ID12511=TJclStrBinaryNode.Color -ID12512=TJclStrBinaryNode.Left -ID12513=TJclStrBinaryNode.Parent -ID12514=TJclStrBinaryNode.Right -ID12515=TJclStrBinaryNode.TJclStrBinaryNode=recordStr -ID12516=TJclStrBinaryTree -ID12517=TJclStrBinaryTree.Add@string -ID12518=TJclStrBinaryTree.AddAll@IJclStrCollection -ID12519=TJclStrBinaryTree.Clear -ID1252=DOMAIN_ALIAS_RID_MONITORING_USERS -ID12520=TJclStrBinaryTree.Clone -ID12521=TJclStrBinaryTree.Contains@string -ID12522=TJclStrBinaryTree.ContainsAll@IJclStrCollection -ID12523=TJclStrBinaryTree.Create@TStrCompare -ID12524=TJclStrBinaryTree.Destroy -ID12525=TJclStrBinaryTree.Equals@IJclStrCollection -ID12526=TJclStrBinaryTree.FComparator -ID12527=TJclStrBinaryTree.FCount -ID12528=TJclStrBinaryTree.First -ID12529=TJclStrBinaryTree.FRoot -ID1253=DOMAIN_ALIAS_RID_NETWORK_CONFIGURATION_OPS -ID12530=TJclStrBinaryTree.FTraverseOrder -ID12531=TJclStrBinaryTree.GetTraverseOrder -ID12532=TJclStrBinaryTree.IsEmpty -ID12533=TJclStrBinaryTree.Last -ID12534=TJclStrBinaryTree.Remove@string -ID12535=TJclStrBinaryTree.RemoveAll@IJclStrCollection -ID12536=TJclStrBinaryTree.RetainAll@IJclStrCollection -ID12537=TJclStrBinaryTree.RotateLeft@PJclStrBinaryNode -ID12538=TJclStrBinaryTree.RotateRight@PJclStrBinaryNode -ID12539=TJclStrBinaryTree.SetTraverseOrder@TJclTraverseOrder -ID1254=DOMAIN_ALIAS_RID_REMOTE_DESKTOP_USERS -ID12540=TJclStrBinaryTree.Size -ID12541=TJclStrBucket -ID12542=TJclStrBucket.Entries -ID12543=TJclStrBucket.TJclStrBucket=recordCount -ID12544=TJclStrBucketArray -ID12545=TJclStrCollection -ID12546=TJclStrCollection.Add@string -ID12547=TJclStrCollection.AddAll@IJclStrCollection -ID12548=TJclStrCollection.AppendDelimited@string@string -ID12549=TJclStrCollection.AppendFromStrings@TStrings -ID1255=DOMAIN_ALIAS_RID_TS_LICENSE_SERVERS -ID12550=TJclStrCollection.AppendToStrings@TStrings -ID12551=TJclStrCollection.Clear -ID12552=TJclStrCollection.Contains@string -ID12553=TJclStrCollection.ContainsAll@IJclStrCollection -ID12554=TJclStrCollection.Equals@IJclStrCollection -ID12555=TJclStrCollection.First -ID12556=TJclStrCollection.GetAsDelimited@string -ID12557=TJclStrCollection.GetAsStrings -ID12558=TJclStrCollection.IsEmpty -ID12559=TJclStrCollection.Last -ID1256=DOMAIN_USER_RID_MAX -ID12560=TJclStrCollection.LoadDelimited@string@string -ID12561=TJclStrCollection.LoadFromStrings@TStrings -ID12562=TJclStrCollection.Remove@string -ID12563=TJclStrCollection.RemoveAll@IJclStrCollection -ID12564=TJclStrCollection.RetainAll@IJclStrCollection -ID12565=TJclStrCollection.SaveToStrings@TStrings -ID12566=TJclStrCollection.Size -ID12567=TJclStream -ID12568=TJclStream.Seek@Int64@TSeekOrigin -ID12569=TJclStream.Seek@Longint@Word -ID1257=DomainCheck@Boolean -ID12570=TJclStream.SetSize@Int64 -ID12571=TJclStream.SetSize@Longint -ID12572=TJclStreamDecorator -ID12573=TJclStreamDecorator.AfterStreamChange -ID12574=TJclStreamDecorator.BeforeStreamChange -ID12575=TJclStreamDecorator.Create@TStream@Boolean -ID12576=TJclStreamDecorator.Destroy -ID12577=TJclStreamDecorator.DoAfterStreamChange -ID12578=TJclStreamDecorator.DoBeforeStreamChange -ID12579=TJclStreamDecorator.FAfterStreamChange -ID1258=DosDateTimeToFileTime@Word@Word@TFileTime -ID12580=TJclStreamDecorator.FBeforeStreamChange -ID12581=TJclStreamDecorator.FOwnsStream -ID12582=TJclStreamDecorator.FStream -ID12583=TJclStreamDecorator.OwnsStream -ID12584=TJclStreamDecorator.Read@@Longint -ID12585=TJclStreamDecorator.Seek@Int64@TSeekOrigin -ID12586=TJclStreamDecorator.Seek@Longint@Word -ID12587=TJclStreamDecorator.SetSize@Int64 -ID12588=TJclStreamDecorator.SetSize@Longint -ID12589=TJclStreamDecorator.SetStream@TStream -ID1259=DotNetFormat@string@array of const -ID12590=TJclStreamDecorator.Stream -ID12591=TJclStreamDecorator.Write@@Longint -ID12592=TJclStreamReadEvent -ID12593=TJclStreamSeekEvent -ID12594=TJclStreamSizeEvent -ID12595=TJclStreamWriteEvent -ID12596=TJclStrEntry -ID12597=TJclStrEntry.Key -ID12598=TJclStrEntry.Value -ID12599=TJclStrEntryArray +ID1250=CountObject@IJclDoubleIterator@Integer@Double@TDoubleCompare +ID12500=TJclCpioDecompressArchive +ID12501=TJclCRC16Stream +ID12502=TJclCRC16Stream.AfterBlockRead +ID12503=TJclCRC16Stream.BeforeBlockWrite +ID12504=TJclCRC16Stream.Create@TStream@Boolean +ID12505=TJclCRC32Stream +ID12506=TJclCRC32Stream.AfterBlockRead +ID12507=TJclCRC32Stream.BeforeBlockWrite +ID12508=TJclCRC32Stream.Create@TStream@Boolean +ID12509=TJclCustomLocationInfoList +ID1251=CountObject@IJclDoubleIterator@Integer@Double@TDoubleEqualityCompare +ID12510=TJclCustomLocationInfoListClass +ID12511=TJclCustomSimpleSerializer +ID12512=TJclCustomThreadInfo +ID12513=TJclDataSymbolInfo +ID12514=TJclDataSymbolInfo.Create@PSymbolInfo +ID12515=TJclDataSymbolInfo.FNameIndex +ID12516=TJclDataSymbolInfo.FOffset +ID12517=TJclDataSymbolInfo.FTypeIndex +ID12518=TJclDataSymbolInfo.NameIndex +ID12519=TJclDataSymbolInfo.Offset +ID1252=CountObject@IJclExtendedIterator@Integer@Extended@TExtendedCompare +ID12520=TJclDataSymbolInfo.TypeIndex +ID12521=TJclDbgHeader +ID12522=TJclDbgHeader.CheckSum +ID12523=TJclDbgHeader.CheckSumValid +ID12524=TJclDbgHeader.LineNumbers +ID12525=TJclDbgHeader.ModuleName +ID12526=TJclDbgHeader.Signature +ID12527=TJclDbgHeader.SourceNames +ID12528=TJclDbgHeader.Symbols +ID12529=TJclDbgHeader.Units +ID1253=CountObject@IJclExtendedIterator@Integer@Extended@TExtendedEqualityCompare +ID12530=TJclDbgHeader.Version +ID12531=TJclDbgHeader.Words +ID12532=TJclDCC +ID12533=TJclDCC32 +ID12534=TJclDCC32.AddProjectOptions@string@string +ID12535=TJclDCC32.Compile@string +ID12536=TJclDCC32.ConfigFileName +ID12537=TJclDCC32.Create@TJclBorRADToolInstallation +ID12538=TJclDCC32.Execute@string +ID12539=TJclDCC32.FOnBeforeSaveOptionsToFile +ID1254=CountObject@IJclInt64Iterator@Integer@Int64@TInt64Compare +ID12540=TJclDCC32.GetConfigFileName +ID12541=TJclDCC32.GetExeName +ID12542=TJclDCC32.MakePackage@string@string@string@string +ID12543=TJclDCC32.MakeProject@string@string@string@string +ID12544=TJclDCC32.OnBeforeSaveOptionsToFile +ID12545=TJclDCC32.SaveOptionsToFile@string +ID12546=TJclDCC32.SetDefaultOptions +ID12547=TJclDCC32.SupportsLibSuffix +ID12548=TJclDCCIL +ID12549=TJclDCCIL.FMaxCLRVersion +ID1255=CountObject@IJclInt64Iterator@Integer@Int64@TInt64EqualityCompare +ID12550=TJclDCCIL.GetConfigFileName +ID12551=TJclDCCIL.GetExeName +ID12552=TJclDCCIL.GetMaxCLRVersion +ID12553=TJclDCCIL.MakeProject@string@string@string +ID12554=TJclDCCIL.MaxCLRVersion +ID12555=TJclDCCIL.SetDefaultOptions +ID12556=TJclDebDecompressArchive +ID12557=TJclDebugInfoSourceClass +ID12558=TJclDebugInfoSymbols +ID12559=TJclDebugInfoSymbols.CleanupDebugSymbols +ID1256=CountObject@IJclIntegerIterator@Integer@Integer@TIntegerCompare +ID12560=TJclDebugInfoSymbols.GetLocationInfo@Pointer@TJclLocationInfo +ID12561=TJclDebugInfoSymbols.InitializeDebugSymbols +ID12562=TJclDebugInfoSymbols.InitializeSource +ID12563=TJclDebugInfoSymbols.LoadDebugFunctions +ID12564=TJclDebugInfoSymbols.UnloadDebugFunctions +ID12565=TJclDebugInfoTD32 +ID12566=TJclDebugInfoTD32.Destroy +ID12567=TJclDebugInfoTD32.FImage +ID12568=TJclDebugInfoTD32.GetLocationInfo@Pointer@TJclLocationInfo +ID12569=TJclDebugInfoTD32.InitializeSource +ID1257=CountObject@IJclIntegerIterator@Integer@Integer@TIntegerEqualityCompare +ID12570=TJclDebugThread +ID12571=TJclDebugThread.Create@Boolean@string +ID12572=TJclDebugThread.Destroy +ID12573=TJclDebugThread.DoHandleException +ID12574=TJclDebugThread.DoNotify +ID12575=TJclDebugThread.DoSyncHandleException +ID12576=TJclDebugThread.FSyncException +ID12577=TJclDebugThread.FThreadName +ID12578=TJclDebugThread.GetThreadInfo +ID12579=TJclDebugThread.HandleException@TObject +ID1258=CountObject@IJclIntfIterator@Integer@IInterface@TIntfCompare +ID12580=TJclDebugThread.SyncException +ID12581=TJclDebugThread.ThreadInfo +ID12582=TJclDebugThread.ThreadName +ID12583=TJclDebugThreadInfo +ID12584=TJclDebugThreadList +ID12585=TJclDebugThreadList.Create +ID12586=TJclDebugThreadList.Destroy +ID12587=TJclDebugThreadList.DoSyncException@TJclDebugThread +ID12588=TJclDebugThreadList.DoSyncThreadRegistered +ID12589=TJclDebugThreadList.DoSyncThreadUnregistered +ID1259=CountObject@IJclIntfIterator@Integer@IInterface@TIntfEqualityCompare +ID12590=TJclDebugThreadList.DoThreadRegistered@TThread +ID12591=TJclDebugThreadList.DoThreadUnregistered@TThread +ID12592=TJclDebugThreadList.FList +ID12593=TJclDebugThreadList.FLock +ID12594=TJclDebugThreadList.FOnSyncException +ID12595=TJclDebugThreadList.FOnThreadRegistered +ID12596=TJclDebugThreadList.FOnThreadUnregistered +ID12597=TJclDebugThreadList.FReadLock +ID12598=TJclDebugThreadList.FRegSyncThreadID +ID12599=TJclDebugThreadList.FUnregSyncThreadID ID126=!!OVERLOADED_Seek_TJclStreamDecorator -ID1260=DotNetFormat@string@array of System.Object -ID12600=TJclStrIntfBucket -ID12601=TJclStrIntfBucket.Entries -ID12602=TJclStrIntfBucket.TJclStrIntfBucket=recordCount -ID12603=TJclStrIntfBucketArray -ID12604=TJclStrIntfEntry -ID12605=TJclStrIntfEntry.Key -ID12606=TJclStrIntfEntry.Value -ID12607=TJclStrIntfEntryArray -ID12608=TJclStrLinkedListItem -ID12609=TJclStrLinkedListItem.Next -ID1261=DotNetFormat@string@System.Object -ID12610=TJclStrLinkedListItem.TJclStrLinkedListItem=recordStr -ID12611=TJclStrStrBucket -ID12612=TJclStrStrBucket.Entries -ID12613=TJclStrStrBucket.TJclStrStrBucket=recordCount -ID12614=TJclStrStrBucketArray -ID12615=TJclStrStrEntry -ID12616=TJclStrStrEntry.Key -ID12617=TJclStrStrEntry.Value -ID12618=TJclStrStrEntryArray -ID12619=TJclStructStorageAccessMode -ID1262=DotNetFormat@string@System.Object@System.Object -ID12620=TJclStructStorageAccessMode.smCreate -ID12621=TJclStructStorageAccessMode.smOpenRead -ID12622=TJclStructStorageAccessMode.smOpenWrite -ID12623=TJclStructStorageAccessMode.smShareDenyRead -ID12624=TJclStructStorageAccessMode.smShareDenyWrite -ID12625=TJclStructStorageAccessMode.smTransacted -ID12626=TJclStructStorageAccessModes -ID12627=TJclStructStorageFolder -ID12628=TJclStructStorageFolder.Add@string@Boolean -ID12629=TJclStructStorageFolder.AssignTo@TPersistent -ID1263=DotNetFormat@string@System.Object@System.Object@System.Object -ID12630=TJclStructStorageFolder.Check -ID12631=TJclStructStorageFolder.CheckResult@HRESULT -ID12632=TJclStructStorageFolder.Commit -ID12633=TJclStructStorageFolder.Convert@string -ID12634=TJclStructStorageFolder.CopyTo@string@string@TJclStructStorageFolder -ID12635=TJclStructStorageFolder.Create@string@TJclStructStorageAccessModes@Boolean -ID12636=TJclStructStorageFolder.Delete@string -ID12637=TJclStructStorageFolder.Destroy -ID12638=TJclStructStorageFolder.FAccessMode -ID12639=TJclStructStorageFolder.FConvertedMode -ID1264=DotNetFormat@string@Variant -ID12640=TJclStructStorageFolder.FFileName -ID12641=TJclStructStorageFolder.FLastError -ID12642=TJclStructStorageFolder.FreeStats@TStatStg -ID12643=TJclStructStorageFolder.FStorage -ID12644=TJclStructStorageFolder.GetFileStream@string@TStream -ID12645=TJclStructStorageFolder.GetFolder@string@TJclStructStorageFolder -ID12646=TJclStructStorageFolder.GetName -ID12647=TJclStructStorageFolder.GetStats@TStatStg@Boolean -ID12648=TJclStructStorageFolder.GetSubItems@TStrings@Boolean -ID12649=TJclStructStorageFolder.Intf -ID1265=DotNetFormat@string@Variant@Variant -ID12650=TJclStructStorageFolder.IsStructured@string -ID12651=TJclStructStorageFolder.LastError -ID12652=TJclStructStorageFolder.MoveTo@string@string@TJclStructStorageFolder -ID12653=TJclStructStorageFolder.Name -ID12654=TJclStructStorageFolder.Rename@string@string -ID12655=TJclStructStorageFolder.Revert -ID12656=TJclStructStorageFolder.SetElementTimes@string@TStatStg -ID12657=TJclStructStorageStream -ID12658=TJclStructStorageStream.Check -ID12659=TJclStructStorageStream.CheckResult@HRESULT -ID1266=DotNetFormat@string@Variant@Variant@Variant -ID12660=TJclStructStorageStream.Clone -ID12661=TJclStructStorageStream.CopyTo@TJclStructStorageStream@Int64 -ID12662=TJclStructStorageStream.Destroy -ID12663=TJclStructStorageStream.FLastError -ID12664=TJclStructStorageStream.FName -ID12665=TJclStructStorageStream.FreeStats@TStatStg -ID12666=TJclStructStorageStream.FStream -ID12667=TJclStructStorageStream.GetName -ID12668=TJclStructStorageStream.GetStats@TStatStg@Boolean -ID12669=TJclStructStorageStream.Intf -ID1267=DottedLineTo@TCanvas@Integer@Integer -ID12670=TJclStructStorageStream.LastError -ID12671=TJclStructStorageStream.Name -ID12672=TJclStructStorageStream.Read@@Longint -ID12673=TJclStructStorageStream.Seek@Longint@Word -ID12674=TJclStructStorageStream.SetSize@Longint -ID12675=TJclStructStorageStream.Write@@Longint -ID12676=TJclSymbolInfo -ID12677=TJclSymbolInfo.Create@PSymbolInfo -ID12678=TJclSymbolInfo.FSymbolType -ID12679=TJclSymbolInfo.SymbolType -ID1268=DoubleToHex@Double -ID12680=TJclTARCompressionStream -ID12681=TJclTARDecompressionStream -ID12682=TJclTaskSchedule -ID12683=TJclTaskSchedule.Add@WideString -ID12684=TJclTaskSchedule.Create@WideString -ID12685=TJclTaskSchedule.Delete@Integer -ID12686=TJclTaskSchedule.Destroy -ID12687=TJclTaskSchedule.FTasks -ID12688=TJclTaskSchedule.FTaskScheduler -ID12689=TJclTaskSchedule.GetTargetComputer -ID1269=DPGetDefaultPrinter@string -ID12690=TJclTaskSchedule.GetTask@Integer -ID12691=TJclTaskSchedule.GetTaskCount -ID12692=TJclTaskSchedule.IsRunning -ID12693=TJclTaskSchedule.Refresh -ID12694=TJclTaskSchedule.Remove@ITask -ID12695=TJclTaskSchedule.Remove@TJclScheduledTask -ID12696=TJclTaskSchedule.Remove@WideString -ID12697=TJclTaskSchedule.SetTargetComputer@WideString -ID12698=TJclTaskSchedule.Start -ID12699=TJclTaskSchedule.Stop +ID1260=CountObject@IJclIterator@Integer@TObject@TCompare +ID12600=TJclDebugThreadList.GetThreadClassNames@DWORD +ID12601=TJclDebugThreadList.GetThreadHandle@Integer +ID12602=TJclDebugThreadList.GetThreadID@Integer +ID12603=TJclDebugThreadList.GetThreadIDCount +ID12604=TJclDebugThreadList.GetThreadInfos@DWORD +ID12605=TJclDebugThreadList.GetThreadNames@DWORD +ID12606=TJclDebugThreadList.GetThreadValues@DWORD@Integer +ID12607=TJclDebugThreadList.IndexOfThreadID@DWORD +ID12608=TJclDebugThreadList.InternalRegisterThread@TThread@string +ID12609=TJclDebugThreadList.InternalUnregisterThread@TThread +ID1261=CountObject@IJclIterator@Integer@TObject@TEqualityCompare +ID12610=TJclDebugThreadList.Lock +ID12611=TJclDebugThreadList.OnSyncException +ID12612=TJclDebugThreadList.OnThreadRegistered +ID12613=TJclDebugThreadList.OnThreadUnregistered +ID12614=TJclDebugThreadList.RegisterThread@TThread@string +ID12615=TJclDebugThreadList.ThreadClassNames +ID12616=TJclDebugThreadList.ThreadHandles +ID12617=TJclDebugThreadList.ThreadIDCount +ID12618=TJclDebugThreadList.ThreadIDs +ID12619=TJclDebugThreadList.ThreadInfos +ID1262=CountObject@IJclPtrIterator@Integer@Pointer@TPtrCompare +ID12620=TJclDebugThreadList.ThreadNames +ID12621=TJclDebugThreadList.UnregisterThread@TThread +ID12622=TJclDebugThreadNotifyEvent +ID12623=TJclDecompressArchive +ID12624=TJclDecompressArchiveClass +ID12625=TJclDecompressItem +ID12626=TJclDecompressStream +ID12627=TJclDecompressStream.Create@TStream +ID12628=TJclDecompressStreamClass +ID12629=TJclDefaultUnitVersioningProvider +ID1263=CountObject@IJclPtrIterator@Integer@Pointer@TPtrEqualityCompare +ID12630=TJclDefaultUnitVersioningProvider.Create +ID12631=TJclDefaultUnitVersioningProvider.Destroy +ID12632=TJclDefaultUnitVersioningProvider.FModules +ID12633=TJclDefaultUnitVersioningProvider.IndexOfInstance@THandle +ID12634=TJclDefaultUnitVersioningProvider.LoadModuleUnitVersioningInfo@THandle +ID12635=TJclDefaultUnitVersioningProvider.ReleaseModuleUnitVersioningInfo@THandle +ID12636=TJclDelegatedStream +ID12637=TJclDelegatedStream.FOnRead +ID12638=TJclDelegatedStream.FOnSeek +ID12639=TJclDelegatedStream.FOnSize +ID1264=CountObject@IJclSingleIterator@Integer@Single@TSingleCompare +ID12640=TJclDelegatedStream.FOnWrite +ID12641=TJclDelegatedStream.OnRead +ID12642=TJclDelegatedStream.OnSeek +ID12643=TJclDelegatedStream.OnSize +ID12644=TJclDelegatedStream.OnWrite +ID12645=TJclDelegatedStream.Read@@Longint +ID12646=TJclDelegatedStream.Seek@Int64@TSeekOrigin +ID12647=TJclDelegatedStream.SetSize@Int64 +ID12648=TJclDelegatedStream.Write@@Longint +ID12649=TJclDelphiInstallation +ID1265=CountObject@IJclSingleIterator@Integer@Single@TSingleEqualityCompare +ID12650=TJclDelphiInstallation.ConfigFileName@string +ID12651=TJclDelphiInstallation.Create@string +ID12652=TJclDelphiInstallation.Destroy +ID12653=TJclDelphiInstallation.GetEnvironmentVariables +ID12654=TJclDelphiInstallation.GetLatestUpdatePackForVersion@Integer +ID12655=TJclDelphiInstallation.InstallPackage@string@string@string +ID12656=TJclDelphiInstallation.PackageSourceFileExtension +ID12657=TJclDelphiInstallation.ProjectSourceFileExtension +ID12658=TJclDelphiInstallation.RadToolKind +ID12659=TJclDelphiInstallation.RadToolName +ID1266=CountObject@IJclStrIterator@Integer@string@TStrCompare +ID12660=TJclDisplacedSummaryInformation +ID12661=TJclDisplacedSummaryInformation.GetFMTID +ID12662=TJclDmgDecompressArchive +ID12663=TJclDocSummaryInformation +ID12664=TJclDocSummaryInformation.ByteCount +ID12665=TJclDocSummaryInformation.Category +ID12666=TJclDocSummaryInformation.Company +ID12667=TJclDocSummaryInformation.DocParts +ID12668=TJclDocSummaryInformation.GetFMTID +ID12669=TJclDocSummaryInformation.HeadingPair +ID1267=CountObject@IJclUnicodeStrIterator@Integer@UnicodeString@TUnicodeStrCompare +ID12670=TJclDocSummaryInformation.HiddenCount +ID12671=TJclDocSummaryInformation.LineCount +ID12672=TJclDocSummaryInformation.LinksDirty +ID12673=TJclDocSummaryInformation.Manager +ID12674=TJclDocSummaryInformation.MMClipCount +ID12675=TJclDocSummaryInformation.NoteCount +ID12676=TJclDocSummaryInformation.ParCount +ID12677=TJclDocSummaryInformation.PresFormat +ID12678=TJclDocSummaryInformation.Scale +ID12679=TJclDocSummaryInformation.SlideCount +ID1268=CountObject@IJclUnicodeStrIterator@Integer@UnicodeString@TUnicodeStrEqualityCompare +ID12680=TJclDoubleAbstractContainer +ID12681=TJclDoubleArrayIterator +ID12682=TJclDoubleArrayList +ID12683=TJclDoubleArraySet +ID12684=TJclDoubleBinaryNode +ID12685=TJclDoubleBinaryTree +ID12686=TJclDoubleBinaryTreeIterator +ID12687=TJclDoubleBucket +ID12688=TJclDoubleDoubleBucket +ID12689=TJclDoubleDoubleHashEntry +ID1269=CountObject@IJclWideStrIterator@Integer@WideString@TWideStrCompare +ID12690=TJclDoubleDoubleHashMap +ID12691=TJclDoubleDoubleSortedEntry +ID12692=TJclDoubleDoubleSortedMap +ID12693=TJclDoubleHashEntry +ID12694=TJclDoubleHashMap +ID12695=TJclDoubleHashSet +ID12696=TJclDoubleIntfBucket +ID12697=TJclDoubleIntfHashEntry +ID12698=TJclDoubleIntfHashMap +ID12699=TJclDoubleIntfSortedEntry ID127=!!OVERLOADED_SetProperty_TJclFilePropertySet -ID1270=DPSetDefaultPrinter@string -ID12700=TJclTaskSchedule.TargetComputer -ID12701=TJclTaskSchedule.TaskCount -ID12702=TJclTaskSchedule.Tasks -ID12703=TJclTaskSchedule.TaskScheduler -ID12704=TJclTaskTrigger -ID12705=TJclTaskTrigger.FTaskTrigger -ID12706=TJclTaskTrigger.GetTrigger -ID12707=TJclTaskTrigger.GetTriggerString -ID12708=TJclTaskTrigger.SetTaskTrigger@ITaskTrigger -ID12709=TJclTaskTrigger.SetTrigger@TTaskTrigger -ID1271=DrcFileExtension -ID12710=TJclTaskTrigger.TaskTrigger -ID12711=TJclTaskTrigger.Trigger -ID12712=TJclTaskTrigger.TriggerString -ID12713=TJclTaskTriggers -ID12714=TJclTaskTriggers.Add -ID12715=TJclTaskTriggers.Add@ITaskTrigger -ID12716=TJclTaskTriggers.AddItem@TJclTaskTrigger@Integer -ID12717=TJclTaskTriggers.Create@TJclScheduledWorkItem -ID12718=TJclTaskTriggers.FWorkItem -ID12719=TJclTaskTriggers.GetItem@Integer -ID1272=DROPEFFECT_COPY -ID12720=TJclTaskTriggers.GetOwner -ID12721=TJclTaskTriggers.Insert@Integer -ID12722=TJclTaskTriggers.Items -ID12723=TJclTaskTriggers.SetItem@Integer@TJclTaskTrigger -ID12724=TJclTaskWindowsList -ID12725=TJclTD32FileSignature -ID12726=TJclTD32FileSignature.Offset -ID12727=TJclTD32FileSignature.Signature -ID12728=TJclTD32InfoParser -ID12729=TJclTD32InfoParser.Analyse -ID1273=DROPEFFECT_LINK -ID12730=TJclTD32InfoParser.AnalyseAlignSymbols@PSymbolInfos@DWORD -ID12731=TJclTD32InfoParser.AnalyseGlobalTypes@Pointer@DWORD -ID12732=TJclTD32InfoParser.AnalyseModules@PModuleInfo@DWORD -ID12733=TJclTD32InfoParser.AnalyseNames@Pointer@DWORD -ID12734=TJclTD32InfoParser.AnalyseSourceModules@PSourceModuleInfo@DWORD -ID12735=TJclTD32InfoParser.AnalyseUnknownSubSection@Pointer@DWORD -ID12736=TJclTD32InfoParser.Create@TCustomMemoryStream -ID12737=TJclTD32InfoParser.Data -ID12738=TJclTD32InfoParser.Destroy -ID12739=TJclTD32InfoParser.FBase -ID1274=DROPEFFECT_MOVE -ID12740=TJclTD32InfoParser.FData -ID12741=TJclTD32InfoParser.FindModule@DWORD@TJclModuleInfo -ID12742=TJclTD32InfoParser.FindProc@DWORD@TJclProcSymbolInfo -ID12743=TJclTD32InfoParser.FindSourceModule@DWORD@TJclSourceModuleInfo -ID12744=TJclTD32InfoParser.FModules -ID12745=TJclTD32InfoParser.FNames -ID12746=TJclTD32InfoParser.FProcSymbols -ID12747=TJclTD32InfoParser.FSourceModules -ID12748=TJclTD32InfoParser.FSymbols -ID12749=TJclTD32InfoParser.FValidData -ID1275=DROPEFFECT_NONE -ID12750=TJclTD32InfoParser.GetModule@Integer -ID12751=TJclTD32InfoParser.GetModuleCount -ID12752=TJclTD32InfoParser.GetName@Integer -ID12753=TJclTD32InfoParser.GetNameCount -ID12754=TJclTD32InfoParser.GetProcSymbol@Integer -ID12755=TJclTD32InfoParser.GetProcSymbolCount -ID12756=TJclTD32InfoParser.GetSourceModule@Integer -ID12757=TJclTD32InfoParser.GetSourceModuleCount -ID12758=TJclTD32InfoParser.GetSymbol@Integer -ID12759=TJclTD32InfoParser.GetSymbolCount -ID1276=DROPEFFECT_SCROLL -ID12760=TJclTD32InfoParser.IsTD32DebugInfoValid@Pointer@LongWord -ID12761=TJclTD32InfoParser.IsTD32Sign@TJclTD32FileSignature -ID12762=TJclTD32InfoParser.LfaToVa@DWORD -ID12763=TJclTD32InfoParser.ModuleCount -ID12764=TJclTD32InfoParser.Modules -ID12765=TJclTD32InfoParser.NameCount -ID12766=TJclTD32InfoParser.Names -ID12767=TJclTD32InfoParser.ProcSymbolCount -ID12768=TJclTD32InfoParser.ProcSymbols -ID12769=TJclTD32InfoParser.SourceModuleCount -ID1277=DS_FLAG -ID12770=TJclTD32InfoParser.SourceModules -ID12771=TJclTD32InfoParser.SymbolCount -ID12772=TJclTD32InfoParser.Symbols -ID12773=TJclTD32InfoParser.ValidData -ID12774=TJclTD32InfoScanner -ID12775=TJclTD32InfoScanner.LineNumberFromAddr@DWORD -ID12776=TJclTD32InfoScanner.LineNumberFromAddr@DWORD@Integer -ID12777=TJclTD32InfoScanner.ModuleNameFromAddr@DWORD -ID12778=TJclTD32InfoScanner.ProcNameFromAddr@DWORD -ID12779=TJclTD32InfoScanner.ProcNameFromAddr@DWORD@Integer -ID1278=DUPLICATE -ID12780=TJclTD32InfoScanner.SourceNameFromAddr@DWORD -ID12781=TJclTerminateAppResult -ID12782=TJclTerminateAppResult.taClean -ID12783=TJclTerminateAppResult.taError -ID12784=TJclTerminateAppResult.taKill -ID12785=TJclThreadIDNotifyEvent -ID12786=TJclTreeColor -ID12787=TJclTreeColor.tcBlack -ID12788=TJclTreeColor.tcRed -ID12789=TJclUdtSymbolInfo -ID1279=DUPLICATE_CLOSE_SOURCE -ID12790=TJclUdtSymbolInfo.Create@PSymbolInfo -ID12791=TJclUdtSymbolInfo.FNameIndex -ID12792=TJclUdtSymbolInfo.FProperties -ID12793=TJclUdtSymbolInfo.FTypeIndex -ID12794=TJclUdtSymbolInfo.NameIndex -ID12795=TJclUdtSymbolInfo.Properties -ID12796=TJclUdtSymbolInfo.TypeIndex -ID12797=TJclUnaryInstruction -ID12798=TJclUnitVersioningList -ID12799=TJclUnitVersioningList.Add@TUnitVersionInfo +ID1270=CountObject@IJclWideStrIterator@Integer@WideString@TWideStrEqualityCompare +ID12700=TJclDoubleIntfSortedMap +ID12701=TJclDoubleLinkedList +ID12702=TJclDoubleLinkedListItem +ID12703=TJclDoubleLinkedListIterator +ID12704=TJclDoubleQueue +ID12705=TJclDoubleSortedEntry +ID12706=TJclDoubleSortedMap +ID12707=TJclDoubleStack +ID12708=TJclDoubleTree +ID12709=TJclDoubleTreeIterator +ID1271=CP_ACP +ID12710=TJclDoubleTreeNode +ID12711=TJclDoubleVector +ID12712=TJclDoubleVectorIterator +ID12713=TJclDRMSummaryInformation +ID12714=TJclDRMSummaryInformation.GetFMTID +ID12715=TJclDynamicSplitStream +ID12716=TJclDynArrayTypeInfo +ID12717=TJclEasyStream +ID12718=TJclEasyStream.IsEqual@TStream +ID12719=TJclEasyStream.ReadBoolean +ID1272=CP_MACCP +ID12720=TJclEasyStream.ReadChar +ID12721=TJclEasyStream.ReadCString +ID12722=TJclEasyStream.ReadCurrency +ID12723=TJclEasyStream.ReadDateTime +ID12724=TJclEasyStream.ReadDouble +ID12725=TJclEasyStream.ReadExtended +ID12726=TJclEasyStream.ReadInt64 +ID12727=TJclEasyStream.ReadInteger +ID12728=TJclEasyStream.ReadShortString +ID12729=TJclEasyStream.ReadSingle +ID1273=CP_OEMCP +ID12730=TJclEasyStream.ReadSizedString +ID12731=TJclEasyStream.WriteBoolean@Boolean +ID12732=TJclEasyStream.WriteChar@Char +ID12733=TJclEasyStream.WriteCurrency@Currency +ID12734=TJclEasyStream.WriteDateTime@TDateTime +ID12735=TJclEasyStream.WriteDouble@Double +ID12736=TJclEasyStream.WriteExtended@Extended +ID12737=TJclEasyStream.WriteInt64@Int64 +ID12738=TJclEasyStream.WriteInteger@Integer +ID12739=TJclEasyStream.WriteShortString@ShortString +ID1274=CP_SYMBOL +ID12740=TJclEasyStream.WriteSingle@Single +ID12741=TJclEasyStream.WriteSizedString@string +ID12742=TJclEasyStream.WriteStringDelimitedByNull@string +ID12743=TJclElfDecompressArchive +ID12744=TJclEmptyStream +ID12745=TJclEmptyStream.Read@@Longint +ID12746=TJclEmptyStream.Seek@Int64@TSeekOrigin +ID12747=TJclEmptyStream.SetSize@Int64 +ID12748=TJclEmptyStream.SetSize@Longint +ID12749=TJclEmptyStream.Write@@Longint +ID1275=CP_THREAD_ACP +ID12750=TJclEncryptionMethod +ID12751=TJclEncryptionMethods +ID12752=TJclEntry +ID12753=TJclEntry.Key +ID12754=TJclEntry.Value +ID12755=TJclEntryArray +ID12756=TJclEnumerationTypeInfo +ID12757=TJclEventParamInfo +ID12758=TJclEventStream +ID12759=TJclEventStream.Create@TStream@TStreamNotifyEvent@Boolean +ID1276=CP_UTF16LE +ID12760=TJclEventStream.DoAfterStreamChange +ID12761=TJclEventStream.DoBeforeStreamChange +ID12762=TJclEventStream.DoNotification +ID12763=TJclEventStream.FNotification +ID12764=TJclEventStream.OnNotification +ID12765=TJclEventStream.Read@@Longint +ID12766=TJclEventStream.Seek@Int64@TSeekOrigin +ID12767=TJclEventStream.Seek@Longint@Word +ID12768=TJclEventStream.SetSize@Int64 +ID12769=TJclEventStream.SetSize@Longint +ID1277=CP_UTF7 +ID12770=TJclEventStream.Write@@Longint +ID12771=TJclEventTypeInfo +ID12772=TJclExceptNotifyPriority +ID12773=TJclExceptNotifyPriority.npFirstChain +ID12774=TJclExceptNotifyPriority.npNormal +ID12775=TJclExceptNotifyProcEx +ID12776=TJclExtendedAbstractContainer +ID12777=TJclExtendedArrayIterator +ID12778=TJclExtendedArrayList +ID12779=TJclExtendedArraySet +ID1278=CP_UTF8 +ID12780=TJclExtendedBinaryNode +ID12781=TJclExtendedBinaryTree +ID12782=TJclExtendedBinaryTreeIterator +ID12783=TJclExtendedBucket +ID12784=TJclExtendedExtendedBucket +ID12785=TJclExtendedExtendedHashEntry +ID12786=TJclExtendedExtendedHashMap +ID12787=TJclExtendedExtendedSortedEntry +ID12788=TJclExtendedExtendedSortedMap +ID12789=TJclExtendedHashEntry +ID1279=CPaperNames +ID12790=TJclExtendedHashMap +ID12791=TJclExtendedHashSet +ID12792=TJclExtendedIntfBucket +ID12793=TJclExtendedIntfHashEntry +ID12794=TJclExtendedIntfHashMap +ID12795=TJclExtendedIntfSortedEntry +ID12796=TJclExtendedIntfSortedMap +ID12797=TJclExtendedLinkedList +ID12798=TJclExtendedLinkedListItem +ID12799=TJclExtendedLinkedListIterator ID128=!!OVERLOADED_SetSize_TJclEmptyStream -ID1280=DUPLICATE_DEREG -ID12800=TJclUnitVersioningList.Clear -ID12801=TJclUnitVersioningList.Count -ID12802=TJclUnitVersioningList.Create -ID12803=TJclUnitVersioningList.Destroy -ID12804=TJclUnitVersioningList.FItems -ID12805=TJclUnitVersioningList.GetCount -ID12806=TJclUnitVersioningList.GetItems@Integer -ID12807=TJclUnitVersioningList.Items -ID12808=TJclUnitVersioningList.Load@HMODULE -ID12809=TJclUnitVersioningList.LoadFromDefaultResource@HMODULE -ID1281=DUPLICATE_SAME_ACCESS -ID12810=TJclUnitVersioningList.LoadFromDefaultSection@HMODULE -ID12811=TJclUnitVersioningList.LoadFromStream@TStream -ID12812=TJclUnitVersioningList.SaveToFile@string -ID12813=TJclUnitVersioningList.SaveToStream@TStream -ID12814=TJclUnitVersioningProviderModule -ID12815=TJclUnitVersioningProviderModule.Create@THandle -ID12816=TJclUnitVersioningProviderModule.Destroy -ID12817=TJclUnitVersioningProviderModule.FInfoList -ID12818=TJclUnitVersioningProviderModule.FInstance -ID12819=TJclUnitVersioningProviderModule.InfoList -ID1282=DWORD -ID12820=TJclUnitVersioningProviderModule.Instance -ID12821=TJclVftPathSymbolInfo -ID12822=TJclVftPathSymbolInfo.Create@PSymbolInfo -ID12823=TJclVftPathSymbolInfo.FOffset -ID12824=TJclVftPathSymbolInfo.FPathIndex -ID12825=TJclVftPathSymbolInfo.FRootIndex -ID12826=TJclVftPathSymbolInfo.Offset -ID12827=TJclVftPathSymbolInfo.PathIndex -ID12828=TJclVftPathSymbolInfo.RootIndex -ID12829=TJclVideoSummaryInformation -ID1283=DWORD_PTR -ID12830=TJclVideoSummaryInformation.Compression -ID12831=TJclVideoSummaryInformation.DataRate -ID12832=TJclVideoSummaryInformation.FrameCount -ID12833=TJclVideoSummaryInformation.FrameRate -ID12834=TJclVideoSummaryInformation.GetFMTID -ID12835=TJclVideoSummaryInformation.Height -ID12836=TJclVideoSummaryInformation.SampleSize -ID12837=TJclVideoSummaryInformation.StreamName -ID12838=TJclVideoSummaryInformation.StreamNumber -ID12839=TJclVideoSummaryInformation.TimeLength -ID1284=DynArrayCompareAnsiString@Pointer@Pointer -ID12840=TJclVideoSummaryInformation.Width -ID12841=TJclVolumeSummaryInformation -ID12842=TJclVolumeSummaryInformation.GetFMTID -ID12843=TJclWebViewSummaryInformation -ID12844=TJclWebViewSummaryInformation.GetFMTID -ID12845=TJclWin32ExFunction -ID12846=TJclWin32ExFunction.jwfCancelWaitableTimer -ID12847=TJclWin32ExFunction.jwfCreateWaitableTimer -ID12848=TJclWin32ExFunction.jwfGetFileAttributesEx -ID12849=TJclWin32ExFunction.jwfglGetError -ID1285=DynArrayCompareAnsiText@Pointer@Pointer -ID12850=TJclWin32ExFunction.jwfglGetString -ID12851=TJclWin32ExFunction.jwfgluErrorString -ID12852=TJclWin32ExFunction.jwfInitializeCriticalSectionAndSpinCount -ID12853=TJclWin32ExFunction.jwfOpenWaitableTimer -ID12854=TJclWin32ExFunction.jwfSetCriticalSectionSpinCount -ID12855=TJclWin32ExFunction.jwfSignalObjectAndWait -ID12856=TJclWin32ExFunction.jwfTryEnterCriticalSection -ID12857=TJclWin32ExFunction.jwfwglCreateContext -ID12858=TJclWin32ExFunction.jwfwglDeleteContext -ID12859=TJclWin32ExFunction.jwfwglMakeCurrent -ID1286=DynArrayCompareByte@Pointer@Pointer -ID12860=TJclWin32ExFunctions -ID12861=TJclWithSymbolInfo -ID12862=TJclWithSymbolInfo.Create@PSymbolInfo -ID12863=TJclWithSymbolInfo.FNameIndex -ID12864=TJclWithSymbolInfo.FOffset -ID12865=TJclWithSymbolInfo.FSize -ID12866=TJclWithSymbolInfo.NameIndex -ID12867=TJclWithSymbolInfo.Offset -ID12868=TJclWithSymbolInfo.Size -ID12869=TJclZLibCompressStream -ID1287=DynArrayCompareCardinal@Pointer@Pointer -ID12870=TJclZLibCompressStream.CompressionLevel -ID12871=TJclZLibCompressStream.Create@TStream@TJclCompressionLevel -ID12872=TJclZLibCompressStream.Destroy -ID12873=TJclZLibCompressStream.FCompressionLevel -ID12874=TJclZLibCompressStream.FDeflateInitialized -ID12875=TJclZLibCompressStream.Flush -ID12876=TJclZLibCompressStream.FMemLevel -ID12877=TJclZLibCompressStream.FMethod -ID12878=TJclZLibCompressStream.FStrategy -ID12879=TJclZLibCompressStream.FWindowBits -ID1288=DynArrayCompareDouble@Pointer@Pointer -ID12880=TJclZLibCompressStream.MemLevel -ID12881=TJclZLibCompressStream.Method -ID12882=TJclZLibCompressStream.Reset -ID12883=TJclZLibCompressStream.Seek@Int64@TSeekOrigin -ID12884=TJclZLibCompressStream.SetCompressionLevel@Integer -ID12885=TJclZLibCompressStream.SetMemLevel@Integer -ID12886=TJclZLibCompressStream.SetMethod@Integer -ID12887=TJclZLibCompressStream.SetStrategy@Integer -ID12888=TJclZLibCompressStream.SetWindowBits@Integer -ID12889=TJclZLibCompressStream.Strategy -ID1289=DynArrayCompareExtended@Pointer@Pointer -ID12890=TJclZLibCompressStream.WindowBits -ID12891=TJclZLibCompressStream.Write@@Longint -ID12892=TJclZLibCompressStream.ZLibRecord -ID12893=TJclZLibDecompressStream -ID12894=TJclZLibDecompressStream.Create@TStream@Integer -ID12895=TJclZLibDecompressStream.Destroy -ID12896=TJclZLibDecompressStream.FInflateInitialized -ID12897=TJclZLibDecompressStream.FWindowBits -ID12898=TJclZLibDecompressStream.Read@@Longint -ID12899=TJclZLibDecompressStream.Seek@Int64@TSeekOrigin +ID1280=CPU_TYPE_AMD +ID12800=TJclExtendedQueue +ID12801=TJclExtendedSortedEntry +ID12802=TJclExtendedSortedMap +ID12803=TJclExtendedStack +ID12804=TJclExtendedTree +ID12805=TJclExtendedTreeIterator +ID12806=TJclExtendedTreeNode +ID12807=TJclExtendedVector +ID12808=TJclExtendedVectorIterator +ID12809=TJclFatDecompressArchive +ID1281=CPU_TYPE_CYRIX +ID12810=TJclFileMappingRoundOffset +ID12811=TJclFileMappingRoundOffset.rvDown +ID12812=TJclFileMappingRoundOffset.rvUp +ID12813=TJclFileMappingStream +ID12814=TJclFileMappingStream.Close +ID12815=TJclFileMappingStream.Create@string@Word +ID12816=TJclFileMappingStream.Destroy +ID12817=TJclFileMappingStream.FFileHandle +ID12818=TJclFileMappingStream.FMapping +ID12819=TJclFileMappingStream.Write@@Longint +ID1282=CPU_TYPE_INTEL +ID12820=TJclFileMaskComparator +ID12821=TJclFileMaskComparator.Compare@string +ID12822=TJclFileMaskComparator.Count +ID12823=TJclFileMaskComparator.Create +ID12824=TJclFileMaskComparator.CreateMultiMasks +ID12825=TJclFileMaskComparator.Exts +ID12826=TJclFileMaskComparator.FExts +ID12827=TJclFileMaskComparator.FFileMask +ID12828=TJclFileMaskComparator.FileMask +ID12829=TJclFileMaskComparator.FNames +ID1283=CPU_TYPE_TRANSMETA +ID12830=TJclFileMaskComparator.FSeparator +ID12831=TJclFileMaskComparator.FWildChars +ID12832=TJclFileMaskComparator.GetCount +ID12833=TJclFileMaskComparator.GetExts@Integer +ID12834=TJclFileMaskComparator.GetMasks@Integer +ID12835=TJclFileMaskComparator.GetNames@Integer +ID12836=TJclFileMaskComparator.Masks +ID12837=TJclFileMaskComparator.Names +ID12838=TJclFileMaskComparator.Separator +ID12839=TJclFileMaskComparator.SetFileMask@string +ID1284=CPU_TYPE_VIA +ID12840=TJclFileMaskComparator.SetSeparator@Char +ID12841=TJclFilePropertySet +ID12842=TJclFilePropertySet.Create@IPropertyStorage +ID12843=TJclFilePropertySet.DeleteProperty@TPropID +ID12844=TJclFilePropertySet.DeleteProperty@WideString +ID12845=TJclFilePropertySet.DeletePropertyName@TPropID +ID12846=TJclFilePropertySet.Destroy +ID12847=TJclFilePropertySet.EnumProperties@TJclFileSummaryPropCallback +ID12848=TJclFilePropertySet.FPropertyStorage +ID12849=TJclFilePropertySet.GetAnsiStringProperty@Integer +ID1285=Crc16@array of Byte@Integer@Word +ID12850=TJclFilePropertySet.GetBooleanProperty@Integer +ID12851=TJclFilePropertySet.GetBSTRProperty@Integer +ID12852=TJclFilePropertySet.GetCardinalProperty@Integer +ID12853=TJclFilePropertySet.GetClipDataProperty@Integer +ID12854=TJclFilePropertySet.GetFileTimeProperty@Integer +ID12855=TJclFilePropertySet.GetFMTID +ID12856=TJclFilePropertySet.GetIntegerProperty@Integer +ID12857=TJclFilePropertySet.GetProperty@TPropID +ID12858=TJclFilePropertySet.GetProperty@WideString +ID12859=TJclFilePropertySet.GetPropertyName@TPropID +ID1286=Crc16_A +ID12860=TJclFilePropertySet.GetTCALPSTRProperty@Integer +ID12861=TJclFilePropertySet.GetTCAPROPVARIANTProperty@Integer +ID12862=TJclFilePropertySet.GetWideStringProperty@Integer +ID12863=TJclFilePropertySet.GetWordProperty@Integer +ID12864=TJclFilePropertySet.SetAnsiStringProperty@Integer@AnsiString +ID12865=TJclFilePropertySet.SetBooleanProperty@Integer@Boolean +ID12866=TJclFilePropertySet.SetBSTRProperty@Integer@WideString +ID12867=TJclFilePropertySet.SetCardinalProperty@Integer@Cardinal +ID12868=TJclFilePropertySet.SetClipDataProperty@Integer@PClipData +ID12869=TJclFilePropertySet.SetFileTimeProperty@Integer@TFileTime +ID1287=Crc16_A@array of Byte@Word +ID12870=TJclFilePropertySet.SetIntegerProperty@Integer@Integer +ID12871=TJclFilePropertySet.SetProperty@TPropID@TPropVariant +ID12872=TJclFilePropertySet.SetProperty@WideString@TPropVariant@TPropID +ID12873=TJclFilePropertySet.SetPropertyName@TPropID@WideString +ID12874=TJclFilePropertySet.SetTCALPSTRProperty@Integer@TCALPSTR +ID12875=TJclFilePropertySet.SetTCAPROPVARIANTProperty@Integer@TCAPROPVARIANT +ID12876=TJclFilePropertySet.SetWideStringProperty@Integer@WideString +ID12877=TJclFilePropertySet.SetWordProperty@Integer@Word +ID12878=TJclFilePropertySetClass +ID12879=TJclFileSearchOptions +ID1288=Crc16_A@TCrc16Table@array of Byte@Word +ID12880=TJclFileStream +ID12881=TJclFileStream.Create@string@Word@Cardinal +ID12882=TJclFileStream.Destroy +ID12883=TJclFileSummary +ID12884=TJclFileSummary.AccessMode +ID12885=TJclFileSummary.Create@WideString@TJclFileSummaryAccess@TJclFileSummaryShare@Boolean@Boolean +ID12886=TJclFileSummary.CreatePropertySet@TJclFilePropertySetClass@Boolean +ID12887=TJclFileSummary.DeletePropertySet@TGUID +ID12888=TJclFileSummary.DeletePropertySet@TJclFilePropertySetClass +ID12889=TJclFileSummary.Destroy +ID1289=Crc16_P +ID12890=TJclFileSummary.EnumPropertySet@TJclFileSummaryPropSetCallback +ID12891=TJclFileSummary.FAccessMode +ID12892=TJclFileSummary.FFileName +ID12893=TJclFileSummary.FileName +ID12894=TJclFileSummary.FShareMode +ID12895=TJclFileSummary.FStorage +ID12896=TJclFileSummary.GetPropertySet@TGUID +ID12897=TJclFileSummary.GetPropertySet@TGUID@ +ID12898=TJclFileSummary.GetPropertySet@TJclFilePropertySetClass@ +ID12899=TJclFileSummary.ShareMode ID129=!!OVERLOADED_SetSize_TJclEventStream -ID1290=DynArrayCompareFloat@Pointer@Pointer -ID12900=TJclZLibDecompressStream.SetWindowBits@Integer -ID12901=TJclZLibDecompressStream.WindowBits -ID12902=TJclZLibDecompressStream.ZLibRecord -ID12903=TJmpTable -ID12904=TJmpTable.OPCode -ID12905=TJmpTable.Ptr -ID12906=TKeyboardState -ID12907=TLangIdRec -ID12908=TLangIdRec.CodePage -ID12909=TLangIdRec.LangId -ID1291=DynArrayCompareInt64@Pointer@Pointer -ID12910=TLangIdRec.Pair -ID12911=TLargeInteger -ID12912=TLineMappingEntry -ID12913=TLineMappingEntry.Offsets -ID12914=TLineMappingEntry.PairCount -ID12915=TLineMappingEntry.SegmentIndex -ID12916=TLocalGroupInfo0 -ID12917=TLocalGroupInfo1 -ID12918=TLocalGroupInfo1002 -ID12919=TLocalGroupMembersInfo0 -ID1292=DynArrayCompareInteger@Pointer@Pointer -ID12920=TLocalGroupMembersInfo1 -ID12921=TLocalGroupMembersInfo2 -ID12922=TLocalGroupMembersInfo3 -ID12923=TLsaHandle -ID12924=TLsaObjectAttributes -ID12925=TLsaString -ID12926=TLsaUnicodeString -ID12927=TM_FLAG -ID12928=TMCI_Open_Parms -ID12929=TMeteredSection -ID1293=DynArrayCompareShortInt@Pointer@Pointer -ID12930=TMeteredSection.Event -ID12931=TMeteredSection.FileMap -ID12932=TMeteredSection.SharedInfo -ID12933=TMetSectSharedInfo -ID12934=TMetSectSharedInfo.AvailableCount -ID12935=TMetSectSharedInfo.Initialized -ID12936=TMetSectSharedInfo.MaximumCount -ID12937=TMetSectSharedInfo.SpinLock -ID12938=TMetSectSharedInfo.ThreadsWaiting -ID12939=TMIDIChannel -ID1294=DynArrayCompareSingle@Pointer@Pointer -ID12940=TMIDIDataByte -ID12941=TMIDIDataWord -ID12942=TMIDIKey -ID12943=TMIDINote -ID12944=TMIDINotes -ID12945=TMIDIStatusByte -ID12946=TMIDIVelocity -ID12947=TMixerCaps -ID12948=TMixerControl -ID12949=TMixerLine -ID1295=DynArrayCompareSmallInt@Pointer@Pointer -ID12950=TMrewPreferred -ID12951=TMrewPreferred.mpEqual -ID12952=TMrewPreferred.mpReaders -ID12953=TMrewPreferred.mpWriters -ID12954=TMrewThreadInfo -ID12955=TMrewThreadInfo.Reader -ID12956=TMrewThreadInfo.RecursionCount -ID12957=TMrewThreadInfo.ThreadId -ID12958=TMrewThreadInfoArray -ID12959=TMutexInfo -ID1296=DynArrayCompareString@Pointer@Pointer -ID12960=TMutexInfo.Abandoned -ID12961=TMutexInfo.Owned -ID12962=TMutexInfo.SignalState -ID12963=TNcb -ID12964=TNcbPost -ID12965=TNetApiStatus -ID12966=TNetUserAuthFlag -ID12967=TNetUserAuthFlag.afOpAccounts -ID12968=TNetUserAuthFlag.afOpComm -ID12969=TNetUserAuthFlag.afOpPrint -ID1297=DynArrayCompareText@Pointer@Pointer -ID12970=TNetUserAuthFlag.afOpServer -ID12971=TNetUserAuthFlags -ID12972=TNetUserFlag -ID12973=TNetUserFlag.ufAccountDisable -ID12974=TNetUserFlag.ufDontExpirePassword -ID12975=TNetUserFlag.ufHomedirRequired -ID12976=TNetUserFlag.ufLockout -ID12977=TNetUserFlag.ufMNSLogonAccount -ID12978=TNetUserFlag.ufPasswordCantChange -ID12979=TNetUserFlag.ufPasswordNotRequired -ID1298=DynArrayCompareWord@Pointer@Pointer -ID12980=TNetUserFlags -ID12981=TNetUserInfoFlag -ID12982=TNetUserInfoFlag.uifInterdomainTrustAccount -ID12983=TNetUserInfoFlag.uifNormalAccount -ID12984=TNetUserInfoFlag.uifScript -ID12985=TNetUserInfoFlag.uifServerTrustAccount -ID12986=TNetUserInfoFlag.uifTempDuplicateAccount -ID12987=TNetUserInfoFlag.uifWorkstationTrustAccount -ID12988=TNetUserInfoFlags -ID12989=TNetUserPriv -ID1299=E -ID12990=TNetUserPriv.upAdmin -ID12991=TNetUserPriv.upGuest -ID12992=TNetUserPriv.upUnknown -ID12993=TNetUserPriv.upUser -ID12994=TNodeIterateFunc -ID12995=TNtfsHardLinkInfo -ID12996=TNtfsHardLinkInfo.FileIndex -ID12997=TNtfsHardLinkInfo.FileIndexHigh -ID12998=TNtfsHardLinkInfo.FileIndexLow -ID12999=TNtfsHardLinkInfo.LinkCount +ID1290=Crc16_P@PJclByteArray@Integer@Word +ID12900=TJclFileSummaryAccess +ID12901=TJclFileSummaryAccess.fsaRead +ID12902=TJclFileSummaryAccess.fsaReadWrite +ID12903=TJclFileSummaryAccess.fsaWrite +ID12904=TJclFileSummaryInformation +ID12905=TJclFileSummaryInformation.AppName +ID12906=TJclFileSummaryInformation.Author +ID12907=TJclFileSummaryInformation.CharCount +ID12908=TJclFileSummaryInformation.Comments +ID12909=TJclFileSummaryInformation.CreationTime +ID1291=Crc16_P@TCrc16Table@PJclByteArray@Integer@Word +ID12910=TJclFileSummaryInformation.EditTime +ID12911=TJclFileSummaryInformation.GetFMTID +ID12912=TJclFileSummaryInformation.KeyWords +ID12913=TJclFileSummaryInformation.LastAuthor +ID12914=TJclFileSummaryInformation.LastPrintedTime +ID12915=TJclFileSummaryInformation.LastSaveTime +ID12916=TJclFileSummaryInformation.PageCount +ID12917=TJclFileSummaryInformation.RevNumber +ID12918=TJclFileSummaryInformation.Security +ID12919=TJclFileSummaryInformation.Subject +ID1292=Crc16Bits +ID12920=TJclFileSummaryInformation.Template +ID12921=TJclFileSummaryInformation.Thumnail +ID12922=TJclFileSummaryInformation.Title +ID12923=TJclFileSummaryInformation.WordCount +ID12924=TJclFileSummaryPropCallback +ID12925=TJclFileSummaryPropSetCallback +ID12926=TJclFileSummaryShare +ID12927=TJclFileSummaryShare.fssDenyAll +ID12928=TJclFileSummaryShare.fssDenyNone +ID12929=TJclFileSummaryShare.fssDenyRead +ID1293=Crc16Bytes +ID12930=TJclFileSummaryShare.fssDenyWrite +ID12931=TJclFlatSet +ID12932=TJclFlatSet.Clear +ID12933=TJclFlatSet.Create +ID12934=TJclFlatSet.Destroy +ID12935=TJclFlatSet.FBits +ID12936=TJclFlatSet.GetBit@Integer +ID12937=TJclFlatSet.GetRange@Integer@Integer@Boolean +ID12938=TJclFlatSet.Invert +ID12939=TJclFlatSet.SetBit@Integer@Boolean +ID1294=Crc16DefaultStart +ID12940=TJclFlatSet.SetRange@Integer@Integer@Boolean +ID12941=TJclFloatArrayIterator +ID12942=TJclFloatArrayList +ID12943=TJclFloatArraySet +ID12944=TJclFloatBinaryNode +ID12945=TJclFloatBinaryTree +ID12946=TJclFloatBinaryTreeIterator +ID12947=TJclFloatBucket +ID12948=TJclFloatFloatBucket +ID12949=TJclFloatFloatHashEntry +ID1295=Crc16DefaultTable +ID12950=TJclFloatFloatHashMap +ID12951=TJclFloatFloatSortedEntry +ID12952=TJclFloatFloatSortedMap +ID12953=TJclFloatHashEntry +ID12954=TJclFloatHashMap +ID12955=TJclFloatHashSet +ID12956=TJclFloatIntfBucket +ID12957=TJclFloatIntfHashEntry +ID12958=TJclFloatIntfHashMap +ID12959=TJclFloatIntfSortedEntry +ID1296=Crc16HighBit +ID12960=TJclFloatIntfSortedMap +ID12961=TJclFloatLinkedList +ID12962=TJclFloatLinkedListItem +ID12963=TJclFloatLinkedListIterator +ID12964=TJclFloatQueue +ID12965=TJclFloatSortedEntry +ID12966=TJclFloatSortedMap +ID12967=TJclFloatStack +ID12968=TJclFloatTree +ID12969=TJclFloatTreeIterator +ID1297=Crc16PolynomCCITT +ID12970=TJclFloatTreeNode +ID12971=TJclFloatTypeInfo +ID12972=TJclFloatVector +ID12973=TJclFloatVectorIterator +ID12974=TJclFlvDecompressArchive +ID12975=TJclGDataSymbolInfo +ID12976=TJclGlobalProcSymbolInfo +ID12977=TJclGZipCompressArchive +ID12978=TJclGZIPCompressionStream +ID12979=TJclGZIPCompressionStream.AutoSetTime +ID1298=Crc16PolynomIBM +ID12980=TJclGZIPCompressionStream.Comment +ID12981=TJclGZIPCompressionStream.Create@TStream@TJclCompressionLevel +ID12982=TJclGZIPCompressionStream.Destroy +ID12983=TJclGZIPCompressionStream.DosTime +ID12984=TJclGZIPCompressionStream.ExtraField +ID12985=TJclGZIPCompressionStream.FatSystem +ID12986=TJclGZIPCompressionStream.FAutoSetTime +ID12987=TJclGZIPCompressionStream.FComment +ID12988=TJclGZIPCompressionStream.FCompressionLevel +ID12989=TJclGZIPCompressionStream.FDataCRC32 +ID1299=Crc32@array of Byte@Integer@Cardinal +ID12990=TJclGZIPCompressionStream.FExtraField +ID12991=TJclGZIPCompressionStream.FFatSystem +ID12992=TJclGZIPCompressionStream.FFlags +ID12993=TJclGZIPCompressionStream.FFooterWritten +ID12994=TJclGZIPCompressionStream.FHeaderWritten +ID12995=TJclGZIPCompressionStream.Flags +ID12996=TJclGZIPCompressionStream.Flush +ID12997=TJclGZIPCompressionStream.FOriginalFileName +ID12998=TJclGZIPCompressionStream.FOriginalSize +ID12999=TJclGZIPCompressionStream.FUnixTime ID13=!!OVERLOADED_ClrImageFlag_TJclClrHeaderEx ID130=!!OVERLOADED_SetSize_TJclHandleStream -ID1300=EAMD_3DNOW -ID13000=TNtProductType -ID13001=TNtProductType.ptAdvancedServer -ID13002=TNtProductType.ptDatacenterServer -ID13003=TNtProductType.ptEnterprise -ID13004=TNtProductType.ptPersonal -ID13005=TNtProductType.ptProfessional -ID13006=TNtProductType.ptServer -ID13007=TNtProductType.ptUnknown -ID13008=TNtProductType.ptWebEdition -ID13009=TNtProductType.ptWorkStation -ID1301=EAMD_APIC -ID13010=TNumericSystemBase -ID13011=TOffsetPair -ID13012=TOffsetPair.EndOffset -ID13013=TOffsetPair.StartOffset -ID13014=TOffsetPairArray -ID13015=ToggleBit@Cardinal@TBitRange -ID13016=ToggleBit@Int64@TBitRange -ID13017=ToggleBit@Integer@TBitRange -ID13018=ToggleBit@Shortint@TBitRange -ID13019=ToggleBit@Smallint@TBitRange -ID1302=EAMD_BIT_10 -ID13020=ToggleBit@Word@TBitRange -ID13021=ToggleBitBuffer@@Cardinal -ID13022=TOKEN_USER -ID13023=TOpLock -ID13024=TOpLock.olBatch -ID13025=TOpLock.olExclusive -ID13026=TOpLock.olFilter -ID13027=TOpLock.olReadOnly -ID13028=TOptexSharedInfo -ID13029=TOptexSharedInfo.LockCount -ID1303=EAMD_BIT_18 -ID13030=TOptexSharedInfo.RecursionCount -ID13031=TOptexSharedInfo.SpinCount -ID13032=TOptexSharedInfo.ThreadId -ID13033=TOSVersionInfoExA -ID13034=TOSVersionInfoExW -ID13035=TouchFileTimes@THandle@TSystemTime -ID13036=TPCharArray -ID13037=TPCRE -ID13038=TPCRECalloutIndex -ID13039=TPCREExtra -ID1304=EAMD_BIT_19 -ID13040=TPCREIntArray -ID13041=TPCRELibNotLoadedHandler -ID13042=TPointArray -ID13043=TPointerArray -ID13044=TPolarComplex -ID13045=TPolarComplex.Angle -ID13046=TPolarComplex.Radius -ID13047=TPolicyAccountDomainInfo -ID13048=TPolicyInformationClass -ID13049=TPrimalityTestMethod -ID1305=EAMD_BIT_21 -ID13050=TPrimalityTestMethod.ptRabinMiller -ID13051=TPrimalityTestMethod.ptTrialDivision -ID13052=TProcessorArchitecture -ID13053=TProcessorArchitecture.paIA64 -ID13054=TProcessorArchitecture.paUnknown -ID13055=TProcessorArchitecture.pax8632 -ID13056=TProcessorArchitecture.pax8664 -ID13057=TQueryServiceConfig2A -ID13058=TraceMsg@string -ID13059=TRANSMETA_BIT_10 -ID1306=EAMD_BIT_26 -ID13060=TRANSMETA_BIT_12 -ID13061=TRANSMETA_BIT_13 -ID13062=TRANSMETA_BIT_14 -ID13063=TRANSMETA_BIT_16 -ID13064=TRANSMETA_BIT_17 -ID13065=TRANSMETA_BIT_19 -ID13066=TRANSMETA_BIT_20 -ID13067=TRANSMETA_BIT_21 -ID13068=TRANSMETA_BIT_22 -ID13069=TRANSMETA_BIT_24 -ID1307=EAMD_BIT_27 -ID13070=TRANSMETA_BIT_25 -ID13071=TRANSMETA_BIT_26 -ID13072=TRANSMETA_BIT_27 -ID13073=TRANSMETA_BIT_28 -ID13074=TRANSMETA_BIT_29 -ID13075=TRANSMETA_BIT_30 -ID13076=TRANSMETA_BIT_31 -ID13077=TRANSMETA_BIT_6 -ID13078=TRANSMETA_BIT_7 -ID13079=TRANSMETA_BIT_9 -ID1308=EAMD_BIT_28 -ID13080=TRANSMETA_CMOV -ID13081=TRANSMETA_CX8 -ID13082=TRANSMETA_DE -ID13083=TRANSMETA_FPU -ID13084=TRANSMETA_MMX -ID13085=TRANSMETA_MSR -ID13086=TRANSMETA_PSE -ID13087=TRANSMETA_PSN -ID13088=TRANSMETA_SEP -ID13089=TRANSMETA_TSC -ID1309=EAMD_CMOV -ID13090=TRANSMETA_VME -ID13091=TRasDialDlg -ID13092=TRectComplex -ID13093=TRectComplex.Add@TRectComplex@TRectComplex -ID13094=TRectComplex.Divide@TRectComplex@TRectComplex -ID13095=TRectComplex.Equal@TRectComplex@TRectComplex -ID13096=TRectComplex.Exp@TRectComplex -ID13097=TRectComplex.Im -ID13098=TRectComplex.Implicit@Float -ID13099=TRectComplex.Implicit@Int64 +ID1300=Crc32_A +ID13000=TJclGZIPCompressionStream.FZLibStream +ID13001=TJclGZIPCompressionStream.GetDosTime +ID13002=TJclGZIPCompressionStream.GetUnixTime +ID13003=TJclGZIPCompressionStream.OriginalFileName +ID13004=TJclGZIPCompressionStream.Reset +ID13005=TJclGZIPCompressionStream.SetDosTime@TDateTime +ID13006=TJclGZIPCompressionStream.SetUnixTime@Cardinal +ID13007=TJclGZIPCompressionStream.UnixTime +ID13008=TJclGZIPCompressionStream.Write@@Longint +ID13009=TJclGZIPCompressionStream.WriteHeader +ID1301=Crc32_A@array of Byte@Cardinal +ID13010=TJclGZIPCompressionStream.ZLibStreamProgress@TObject +ID13011=TJclGZipDecompressArchive +ID13012=TJclGZIPDecompressionStream +ID13013=TJclGZIPDecompressionStream.AutoCheckDataCRC32 +ID13014=TJclGZIPDecompressionStream.Comment +ID13015=TJclGZIPDecompressionStream.CompressedDataSize +ID13016=TJclGZIPDecompressionStream.CompressionLevel +ID13017=TJclGZIPDecompressionStream.ComputedDataCRC32 +ID13018=TJclGZIPDecompressionStream.ComputedHeaderCRC16 +ID13019=TJclGZIPDecompressionStream.Create@TStream@Boolean +ID1302=Crc32_A@TCrc32Table@array of Byte@Cardinal +ID13020=TJclGZIPDecompressionStream.Destroy +ID13021=TJclGZIPDecompressionStream.DosTime +ID13022=TJclGZIPDecompressionStream.ExtraField +ID13023=TJclGZIPDecompressionStream.FatSystem +ID13024=TJclGZIPDecompressionStream.FAutoCheckDataCRC32 +ID13025=TJclGZIPDecompressionStream.FComment +ID13026=TJclGZIPDecompressionStream.FCompressedDataSize +ID13027=TJclGZIPDecompressionStream.FCompressedDataStream +ID13028=TJclGZIPDecompressionStream.FComputedDataCRC32 +ID13029=TJclGZIPDecompressionStream.FComputedHeaderCRC16 +ID1303=Crc32_P +ID13030=TJclGZIPDecompressionStream.FDataEnded +ID13031=TJclGZIPDecompressionStream.FDataSize +ID13032=TJclGZIPDecompressionStream.FDataStarted +ID13033=TJclGZIPDecompressionStream.FExtraField +ID13034=TJclGZIPDecompressionStream.FFooter +ID13035=TJclGZIPDecompressionStream.FHeader +ID13036=TJclGZIPDecompressionStream.Flags +ID13037=TJclGZIPDecompressionStream.FOriginalFileName +ID13038=TJclGZIPDecompressionStream.FStoredHeaderCRC16 +ID13039=TJclGZIPDecompressionStream.FZLibStream +ID1304=Crc32_P@PJclByteArray@Integer@Cardinal +ID13040=TJclGZIPDecompressionStream.GetCompressedDataSize +ID13041=TJclGZIPDecompressionStream.GetComputedDataCRC32 +ID13042=TJclGZIPDecompressionStream.GetDosTime +ID13043=TJclGZIPDecompressionStream.GetFatSystem +ID13044=TJclGZIPDecompressionStream.GetFlags +ID13045=TJclGZIPDecompressionStream.GetOriginalDataSize +ID13046=TJclGZIPDecompressionStream.GetStoredDataCRC32 +ID13047=TJclGZIPDecompressionStream.OriginalDataSize +ID13048=TJclGZIPDecompressionStream.OriginalFileName +ID13049=TJclGZIPDecompressionStream.Read@@Longint +ID1305=Crc32_P@TCrc32Table@PJclByteArray@Integer@Cardinal +ID13050=TJclGZIPDecompressionStream.ReadCompressedData@TObject@@Longint +ID13051=TJclGZIPDecompressionStream.StoredDataCRC32 +ID13052=TJclGZIPDecompressionStream.StoredHeaderCRC16 +ID13053=TJclGZIPDecompressionStream.UnixTime +ID13054=TJclGZIPDecompressionStream.ZLibStreamProgress@TObject +ID13055=TJclGZIPFatSystem +ID13056=TJclGZIPFatSystem.gfsAcorn +ID13057=TJclGZIPFatSystem.gfsAmiga +ID13058=TJclGZIPFatSystem.gfsAtari +ID13059=TJclGZIPFatSystem.gfsCPM +ID1306=Crc32Bits +ID13060=TJclGZIPFatSystem.gfsFat +ID13061=TJclGZIPFatSystem.gfsHPFS +ID13062=TJclGZIPFatSystem.gfsMac +ID13063=TJclGZIPFatSystem.gfsNTFS +ID13064=TJclGZIPFatSystem.gfsOther +ID13065=TJclGZIPFatSystem.gfsQDOS +ID13066=TJclGZIPFatSystem.gfsTOPS +ID13067=TJclGZIPFatSystem.gfsUnix +ID13068=TJclGZIPFatSystem.gfsUnknown +ID13069=TJclGZIPFatSystem.gfsVM +ID1307=Crc32Bytes +ID13070=TJclGZIPFatSystem.gfsVMS +ID13071=TJclGZIPFatSystem.gfsZ +ID13072=TJclGZIPFlag +ID13073=TJclGZIPFlag.gfComment +ID13074=TJclGZIPFlag.gfDataIsText +ID13075=TJclGZIPFlag.gfExtraField +ID13076=TJclGZIPFlag.gfHeaderCRC16 +ID13077=TJclGZIPFlag.gfOriginalFileName +ID13078=TJclGZIPFlags +ID13079=TJclGZIPFooter +ID1308=Crc32DefaultStart +ID13080=TJclGZIPFooter.DataCRC32 +ID13081=TJclGZIPFooter.DataSize +ID13082=TJclGZIPHeader +ID13083=TJclGZIPHeader.CompressionMethod +ID13084=TJclGZIPHeader.ExtraFlags +ID13085=TJclGZIPHeader.Flags +ID13086=TJclGZIPHeader.ID1 +ID13087=TJclGZIPHeader.ID2 +ID13088=TJclGZIPHeader.ModifiedTime +ID13089=TJclGZIPHeader.OS +ID1309=Crc32DefaultTable +ID13090=TJclGZIPSubFieldHeader +ID13091=TJclGZIPSubFieldHeader.Len +ID13092=TJclGZIPSubFieldHeader.SI1 +ID13093=TJclGZIPSubFieldHeader.SI2 +ID13094=TJclGZipUpdateArchive +ID13095=TJclHandleStream +ID13096=TJclHandleStream.Create@THandle +ID13097=TJclHandleStream.FHandle +ID13098=TJclHandleStream.Handle +ID13099=TJclHandleStream.Read@@Longint ID131=!!OVERLOADED_SetSize_TJclStream -ID1310=EAMD_CX8 -ID13100=TRectComplex.Implicit@Integer -ID13101=TRectComplex.Implicit@TPolarComplex -ID13102=TRectComplex.Multiply@TRectComplex@TRectComplex -ID13103=TRectComplex.Negative@TRectComplex -ID13104=TRectComplex.NotEqual@TRectComplex@TRectComplex -ID13105=TRectComplex.Re -ID13106=TRectComplex.Subtract@TRectComplex@TRectComplex -ID13107=TRectCoord -ID13108=TRectCoord.X -ID13109=TRectCoord.Y -ID1311=EAMD_DE -ID13110=TrimLeftLengthW@WideString -ID13111=TrimLeftW@WideString -ID13112=TrimRightLengthW@WideString -ID13113=TrimRightW@WideString -ID13114=TrimW@WideString -ID13115=TruncPower@Float@Float -ID13116=TryStrToCurr@string@Currency -ID13117=TryStrToFloat@string@Double -ID13118=TryStrToFloat@string@Extended -ID13119=TryStrToFloat@string@Single -ID1312=EAMD_EX3DNOW -ID13120=TryStrToInt@string@Integer -ID13121=TryStrToInt64@string@Int64 -ID13122=TSaveFormat -ID13123=TSaveFormat.sfAnsi -ID13124=TSaveFormat.sfUTF16LSB -ID13125=TSaveFormat.sfUTF16MSB -ID13126=TSaveFormat.sfUTF8 -ID13127=TSC_FLAG -ID13128=TScheduleWeekDays -ID13129=TSeekOrigin -ID1313=EAMD_EXMMX -ID13130=TSeekOrigin.soBeginning -ID13131=TSeekOrigin.soCurrent -ID13132=TSeekOrigin.soEnd -ID13133=TSegmentInfo -ID13134=TSegmentInfo.Flags -ID13135=TSegmentInfo.Offset -ID13136=TSegmentInfo.Segment -ID13137=TSegmentInfo.Size -ID13138=TSegmentInfoArray -ID13139=TSemaphoreCounts -ID1314=EAMD_FFX -ID13140=TSemaphoreCounts.CurrentCount -ID13141=TSemaphoreCounts.MaximumCount -ID13142=TServiceDescriptionA -ID13143=TSessionBuffer -ID13144=TSessionHeader -ID13145=TSetOfAnsiChar -ID13146=TSHCopyOption -ID13147=TSHCopyOption.coAllowUndo -ID13148=TSHCopyOption.coFilesOnly -ID13149=TSHCopyOption.coNoConfirmation -ID1315=EAMD_FPU -ID13150=TSHCopyOption.coSilent -ID13151=TSHCopyOptions -ID13152=TSHMoveOption -ID13153=TSHMoveOption.moAllowUndo -ID13154=TSHMoveOption.moFilesOnly -ID13155=TSHMoveOption.moNoConfirmation -ID13156=TSHMoveOption.moSilent -ID13157=TSHMoveOptions -ID13158=TSHSegmentId -ID13159=TSid -ID1316=EAMD_FX -ID13160=TSidAndAttributes -ID13161=TSidAndAttributesArray -ID13162=TSidNameUse -ID13163=TSingleNoteTuningData -ID13164=TSingleNoteTuningData.DWord -ID13165=TSingleNoteTuningData.Frequency -ID13166=TSingleNoteTuningData.Key -ID13167=TSortProc -ID13168=TSourceFileEntry -ID13169=TSourceFileEntry.BaseSrcLines -ID1317=EAMD_LONG -ID13170=TSourceFileEntry.NameIndex -ID13171=TSourceFileEntry.SegmentCount -ID13172=TSourceModuleInfo -ID13173=TSourceModuleInfo.BaseSrcFiles -ID13174=TSourceModuleInfo.FileCount -ID13175=TSourceModuleInfo.SegmentCount -ID13176=TStereoChannel -ID13177=TStereoChannel.scLeft -ID13178=TStereoChannel.scRight -ID13179=TStrApplyFunction -ID1318=EAMD_MCA -ID13180=TStrCompare -ID13181=TStreamNotifyEvent -ID13182=TStringBuilder -ID13183=TStringBuilder.__Chars__ -ID13184=TStringBuilder.Append@array of Char -ID13185=TStringBuilder.Append@array of Char@Integer@Integer -ID13186=TStringBuilder.Append@Boolean -ID13187=TStringBuilder.Append@Cardinal -ID13188=TStringBuilder.Append@Char@Integer -ID13189=TStringBuilder.Append@Double -ID1319=EAMD_MCE -ID13190=TStringBuilder.Append@Int64 -ID13191=TStringBuilder.Append@Integer -ID13192=TStringBuilder.Append@string -ID13193=TStringBuilder.Append@string@Integer@Integer -ID13194=TStringBuilder.Append@TObject -ID13195=TStringBuilder.AppendFormat@string@array of const -ID13196=TStringBuilder.AppendFormat@string@Variant -ID13197=TStringBuilder.AppendFormat@string@Variant@Variant -ID13198=TStringBuilder.AppendFormat@string@Variant@Variant@Variant -ID13199=TStringBuilder.AppendPChar@PChar@Integer@Integer +ID1310=Crc32HighBit +ID13100=TJclHandleStream.Seek@Int64@TSeekOrigin +ID13101=TJclHandleStream.SetSize@Int64 +ID13102=TJclHandleStream.SetSize@Longint +ID13103=TJclHandleStream.Write@@Longint +ID13104=TJclHashElem +ID13105=TJclHashEntry +ID13106=TJclHashFunction +ID13107=TJclHashKind +ID13108=TJclHashList +ID13109=TJclHashMap +ID1311=Crc32Koopman +ID13110=TJclHashRecord +ID13111=TJclHelp2Manager +ID13112=TJclHelp2Manager.CommitTransaction +ID13113=TJclHelp2Manager.Create +ID13114=TJclHelp2Manager.Create@TJclBorRADToolInstallation +ID13115=TJclHelp2Manager.CreateTransaction +ID13116=TJclHelp2Manager.Destroy +ID13117=TJclHelp2Manager.FHxPlugin +ID13118=TJclHelp2Manager.FHxRegister +ID13119=TJclHelp2Manager.FHxRegisterSession +ID1312=Crc32PolynomCastagnoli +ID13120=TJclHelp2Manager.FIdeNameSpace +ID13121=TJclHelp2Manager.GetHxPlugin +ID13122=TJclHelp2Manager.GetHxRegister +ID13123=TJclHelp2Manager.GetHxRegisterSession +ID13124=TJclHelp2Manager.HxPlugin +ID13125=TJclHelp2Manager.HxRegister +ID13126=TJclHelp2Manager.HxRegisterSession +ID13127=TJclHelp2Manager.IdeNamespace +ID13128=TJclHelp2Manager.PlugNameSpaceIn@WideString@WideString +ID13129=TJclHelp2Manager.PlugNameSpaceInBorlandHelp@WideString +ID1313=Crc32PolynomIEEE +ID13130=TJclHelp2Manager.RegisterHelpFile@WideString@WideString@Integer@WideString@WideString +ID13131=TJclHelp2Manager.RegisterNameSpace@WideString@WideString@WideString +ID13132=TJclHelp2Manager.RequireObject@TJclHelp2Objects +ID13133=TJclHelp2Manager.UnPlugNameSpace@WideString@WideString +ID13134=TJclHelp2Manager.UnPlugNameSpaceFromBorlandHelp@WideString +ID13135=TJclHelp2Manager.UnregisterHelpFile@WideString@WideString@Integer +ID13136=TJclHelp2Manager.UnregisterNameSpace@WideString +ID13137=TJclHelp2Object +ID13138=TJclHelp2Object.hoPlugin +ID13139=TJclHelp2Object.hoRegister +ID1314=Create7zFile@TFileName@TFileName@Int64@String@TJclCompressionProgressEvent +ID13140=TJclHelp2Object.hoRegisterSession +ID13141=TJclHelp2Objects +ID13142=TJclHfsDecompressArchive +ID13143=TJclImageInformation +ID13144=TJclImageInformation.GetFMTID +ID13145=TJclImageSummaryInformation +ID13146=TJclImageSummaryInformation.GetFMTID +ID13147=TJclInfoStringsWriter +ID13148=TJclInfoStringsWriter.Create@TStrings@Integer +ID13149=TJclInfoStringsWriter.FStrings +ID1315=Create7zFile@TStrings@TFileName@Int64@String@TJclCompressionProgressEvent +ID13150=TJclInfoStringsWriter.PrimWrite@string +ID13151=TJclInfoStringsWriter.Strings +ID13152=TJclInfoWriter +ID13153=TJclInfoWriter.Create@Integer +ID13154=TJclInfoWriter.CurLine +ID13155=TJclInfoWriter.Destroy +ID13156=TJclInfoWriter.DoWrap +ID13157=TJclInfoWriter.DoWriteCompleteLines +ID13158=TJclInfoWriter.FCurLine +ID13159=TJclInfoWriter.FIndentLevel +ID1316=CreateAutoPtr@TObject +ID13160=TJclInfoWriter.FWrap +ID13161=TJclInfoWriter.GetWrap +ID13162=TJclInfoWriter.Indent +ID13163=TJclInfoWriter.IndentLevel +ID13164=TJclInfoWriter.Outdent +ID13165=TJclInfoWriter.PrimWrite@string +ID13166=TJclInfoWriter.SetWrap@Integer +ID13167=TJclInfoWriter.Wrap +ID13168=TJclInfoWriter.Write@string +ID13169=TJclInfoWriter.Writeln@string +ID1317=CreateComponentCategory@TGUID@string +ID13170=TJclInOrderAnsiStrBinaryTreeIterator +ID13171=TJclInOrderBinaryTreeIterator +ID13172=TJclInOrderCardinalBinaryTreeIterator +ID13173=TJclInOrderDoubleBinaryTreeIterator +ID13174=TJclInOrderExtendedBinaryTreeIterator +ID13175=TJclInOrderFloatBinaryTreeIterator +ID13176=TJclInOrderInt64BinaryTreeIterator +ID13177=TJclInOrderIntegerBinaryTreeIterator +ID13178=TJclInOrderIntfBinaryTreeIterator +ID13179=TJclInOrderPtrBinaryTreeIterator +ID1318=CreateDOSProcessRedirected@string@string@string +ID13180=TJclInOrderSingleBinaryTreeIterator +ID13181=TJclInOrderStrBinaryTreeIterator +ID13182=TJclInOrderUnicodeStrBinaryTreeIterator +ID13183=TJclInOrderWideStrBinaryTreeIterator +ID13184=TJclInPlaceUpdateArchive +ID13185=TJclInputBuffer +ID13186=TJclInputBuffer.Clear +ID13187=TJclInputBuffer.Console +ID13188=TJclInputBuffer.Create@TJclConsole +ID13189=TJclInputBuffer.Destroy +ID1319=CreateGoal@PChar +ID13190=TJclInputBuffer.EventCount +ID13191=TJclInputBuffer.FConsole +ID13192=TJclInputBuffer.FHandle +ID13193=TJclInputBuffer.GetEvent +ID13194=TJclInputBuffer.GetEventCount +ID13195=TJclInputBuffer.GetEvents@Integer +ID13196=TJclInputBuffer.GetEvents@TJclInputRecordArray +ID13197=TJclInputBuffer.GetMode +ID13198=TJclInputBuffer.Handle +ID13199=TJclInputBuffer.Mode ID132=!!OVERLOADED_SetSize_TJclStreamDecorator -ID1320=EAMD_MMX -ID13200=TStringBuilder.Capacity -ID13201=TStringBuilder.Chars -ID13202=TStringBuilder.Create@Integer@Integer -ID13203=TStringBuilder.Create@string@Integer -ID13204=TStringBuilder.Create@string@Integer@Integer@Integer -ID13205=TStringBuilder.Destroy -ID13206=TStringBuilder.EnsureCapacity@Integer -ID13207=TStringBuilder.FChars -ID13208=TStringBuilder.FLength -ID13209=TStringBuilder.FLock -ID1321=EAMD_MSR -ID13210=TStringBuilder.FMaxCapacity -ID13211=TStringBuilder.GetCapacity -ID13212=TStringBuilder.GetChars@Integer -ID13213=TStringBuilder.Insert@Integer@array of Char -ID13214=TStringBuilder.Insert@Integer@array of Char@Integer@Integer -ID13215=TStringBuilder.Insert@Integer@Boolean -ID13216=TStringBuilder.Insert@Integer@Cardinal -ID13217=TStringBuilder.Insert@Integer@Double -ID13218=TStringBuilder.Insert@Integer@Int64 -ID13219=TStringBuilder.Insert@Integer@Integer -ID1322=EAMD_MTRR -ID13220=TStringBuilder.Insert@Integer@string@Integer -ID13221=TStringBuilder.Insert@Integer@TObject -ID13222=TStringBuilder.InsertPChar@Integer@PChar@Integer@Integer -ID13223=TStringBuilder.Length -ID13224=TStringBuilder.MaxCapacity -ID13225=TStringBuilder.Remove@Integer@Integer -ID13226=TStringBuilder.Replace@Char@Char@Integer@Integer -ID13227=TStringBuilder.Replace@string@string@Integer@Integer -ID13228=TStringBuilder.Set_Length@Integer -ID13229=TStringBuilder.SetCapacity@Integer -ID1323=EAMD_NX -ID13230=TStringBuilder.SetChars@Integer@Char -ID13231=TStringBuilder.ToString -ID13232=TStrSortProc -ID13233=TSTSegmentId -ID13234=TSymbolConstantInfo -ID13235=TSymbolConstantInfo.NameIndex -ID13236=TSymbolConstantInfo.Reserved -ID13237=TSymbolConstantInfo.TypeIndex -ID13238=TSymbolConstantInfo.Value -ID13239=TSymbolDataInfo -ID1324=EAMD_PAE -ID13240=TSymbolDataInfo.NameIndex -ID13241=TSymbolDataInfo.Offset -ID13242=TSymbolDataInfo.Reserved -ID13243=TSymbolDataInfo.Segment -ID13244=TSymbolDataInfo.TypeIndex -ID13245=TSymbolInfo -ID13246=TSymbolInfo.Constant -ID13247=TSymbolInfo.Data -ID13248=TSymbolInfo.Label32 -ID13249=TSymbolInfo.ObjName -ID1325=EAMD_PAT -ID13250=TSymbolInfo.Proc -ID13251=TSymbolInfo.Size -ID13252=TSymbolInfo.SymbolType -ID13253=TSymbolInfo.Udt -ID13254=TSymbolInfo.VftPath -ID13255=TSymbolInfo.With32 -ID13256=TSymbolInfos -ID13257=TSymbolInfos.Signature -ID13258=TSymbolInfos.Symbols -ID13259=TSymbolLabelInfo -ID1326=EAMD_PGE -ID13260=TSymbolLabelInfo.NameIndex -ID13261=TSymbolLabelInfo.NearFar -ID13262=TSymbolLabelInfo.Offset -ID13263=TSymbolLabelInfo.Reserved -ID13264=TSymbolLabelInfo.Segment -ID13265=TSymbolObjNameInfo -ID13266=TSymbolObjNameInfo.NameIndex -ID13267=TSymbolObjNameInfo.Signature -ID13268=TSymbolProcInfo -ID13269=TSymbolProcInfo.DebugEnd -ID1327=EAMD_PSE -ID13270=TSymbolProcInfo.DebugStart -ID13271=TSymbolProcInfo.NameIndex -ID13272=TSymbolProcInfo.NearFar -ID13273=TSymbolProcInfo.Offset -ID13274=TSymbolProcInfo.pEnd -ID13275=TSymbolProcInfo.pNext -ID13276=TSymbolProcInfo.pParent -ID13277=TSymbolProcInfo.ProcType -ID13278=TSymbolProcInfo.Reserved -ID13279=TSymbolProcInfo.Segment -ID1328=EAMD_PSE2 -ID13280=TSymbolProcInfo.Size -ID13281=TSymbolUdtInfo -ID13282=TSymbolUdtInfo.NameIndex -ID13283=TSymbolUdtInfo.Properties -ID13284=TSymbolUdtInfo.Reserved -ID13285=TSymbolUdtInfo.TypeIndex -ID13286=TSymbolVftPathInfo -ID13287=TSymbolVftPathInfo.Offset -ID13288=TSymbolVftPathInfo.PathIndex -ID13289=TSymbolVftPathInfo.Reserved -ID1329=EAMD_SEP -ID13290=TSymbolVftPathInfo.RootIndex -ID13291=TSymbolVftPathInfo.Segment -ID13292=TSymbolWithInfo -ID13293=TSymbolWithInfo.NameIndex -ID13294=TSymbolWithInfo.Offset -ID13295=TSymbolWithInfo.pEnd -ID13296=TSymbolWithInfo.pParent -ID13297=TSymbolWithInfo.Reserved -ID13298=TSymbolWithInfo.Segment -ID13299=TSymbolWithInfo.Size +ID1320=CreateHardLinkA +ID13200=TJclInputBuffer.PeekEvent +ID13201=TJclInputBuffer.PeekEvents@Integer +ID13202=TJclInputBuffer.PeekEvents@TJclInputRecordArray +ID13203=TJclInputBuffer.PutEvent@TInputRecord +ID13204=TJclInputBuffer.PutEvents@TJclInputRecordArray +ID13205=TJclInputBuffer.RaiseCtrlEvent@TJclInputCtrlEvent@DWORD +ID13206=TJclInputBuffer.SetMode@TJclConsoleInputModes +ID13207=TJclInputBuffer.WaitEvent@DWORD +ID13208=TJclInputCtrlEvent +ID13209=TJclInputCtrlEvent.ceCtrlBreak +ID1321=CreateHardLinkW +ID13210=TJclInputCtrlEvent.ceCtrlC +ID13211=TJclInputCtrlEvent.ceCtrlClose +ID13212=TJclInputCtrlEvent.ceCtrlLogOff +ID13213=TJclInputCtrlEvent.ceCtrlShutdown +ID13214=TJclInputRecordArray +ID13215=TJclInstruction +ID13216=TJclInstruction.Create@TJclClrILGenerator@TJclOpCode +ID13217=TJclInstruction.Description +ID13218=TJclInstruction.DumpIL@TJclInstructionDumpILOptions +ID13219=TJclInstruction.DumpILOption@TJclInstructionDumpILOption +ID1322=CreateMutex@PSecurityAttributes@DWORD@PChar +ID13220=TJclInstruction.FOffset +ID13221=TJclInstruction.FOpCode +ID13222=TJclInstruction.FormatLabel@Integer +ID13223=TJclInstruction.FOwner +ID13224=TJclInstruction.FParam +ID13225=TJclInstruction.FullName +ID13226=TJclInstruction.GetDescription +ID13227=TJclInstruction.GetFullName +ID13228=TJclInstruction.GetName +ID13229=TJclInstruction.GetParamType +ID1323=CREATEPROCESS_MANIFEST_RESOURCE_ID +ID13230=TJclInstruction.GetRealOpCode +ID13231=TJclInstruction.GetSize +ID13232=TJclInstruction.GetWideOpCode +ID13233=TJclInstruction.Load@TStream +ID13234=TJclInstruction.Name +ID13235=TJclInstruction.Offset +ID13236=TJclInstruction.OpCode +ID13237=TJclInstruction.Owner +ID13238=TJclInstruction.Param +ID13239=TJclInstruction.ParamType +ID1324=CreateRegionFromBitmap +ID13240=TJclInstruction.RealOpCode +ID13241=TJclInstruction.Save@TStream +ID13242=TJclInstruction.Size +ID13243=TJclInstruction.WideOpCode +ID13244=TJclInstructionDumpILOption +ID13245=TJclInstructionDumpILOption.doComment +ID13246=TJclInstructionDumpILOption.doIL +ID13247=TJclInstructionDumpILOption.doLineNo +ID13248=TJclInstructionDumpILOption.doRawBytes +ID13249=TJclInstructionDumpILOption.doTokenValue +ID1325=crossplatform.inc +ID13250=TJclInstructionDumpILOptions +ID13251=TJclInstructionParamType +ID13252=TJclInstructionParamType.ptArray +ID13253=TJclInstructionParamType.ptI1 +ID13254=TJclInstructionParamType.ptI2 +ID13255=TJclInstructionParamType.ptI4 +ID13256=TJclInstructionParamType.ptI8 +ID13257=TJclInstructionParamType.ptLOff +ID13258=TJclInstructionParamType.ptR4 +ID13259=TJclInstructionParamType.ptR8 +ID1326=CRYPT_KEY_LEN +ID13260=TJclInstructionParamType.ptSOff +ID13261=TJclInstructionParamType.ptToken +ID13262=TJclInstructionParamType.ptU1 +ID13263=TJclInstructionParamType.ptU2 +ID13264=TJclInstructionParamType.ptU4 +ID13265=TJclInstructionParamType.ptU8 +ID13266=TJclInstructionParamType.ptVoid +ID13267=TJclInt64AbstractContainer +ID13268=TJclInt64ArrayIterator +ID13269=TJclInt64ArrayList +ID1327=CRYPT_TXT_LEN +ID13270=TJclInt64ArraySet +ID13271=TJclInt64BinaryNode +ID13272=TJclInt64BinaryTree +ID13273=TJclInt64BinaryTreeIterator +ID13274=TJclInt64Bucket +ID13275=TJclInt64HashEntry +ID13276=TJclInt64HashMap +ID13277=TJclInt64HashSet +ID13278=TJclInt64Int64Bucket +ID13279=TJclInt64Int64HashEntry +ID1328=Csc@TRectComplex +ID13280=TJclInt64Int64HashMap +ID13281=TJclInt64Int64SortedEntry +ID13282=TJclInt64Int64SortedMap +ID13283=TJclInt64IntfBucket +ID13284=TJclInt64IntfHashEntry +ID13285=TJclInt64IntfHashMap +ID13286=TJclInt64IntfSortedEntry +ID13287=TJclInt64IntfSortedMap +ID13288=TJclInt64LinkedList +ID13289=TJclInt64LinkedListItem +ID1329=CscH@TRectComplex +ID13290=TJclInt64LinkedListIterator +ID13291=TJclInt64Queue +ID13292=TJclInt64SortedEntry +ID13293=TJclInt64SortedMap +ID13294=TJclInt64Stack +ID13295=TJclInt64Tree +ID13296=TJclInt64TreeIterator +ID13297=TJclInt64TreeNode +ID13298=TJclInt64TypeInfo +ID13299=TJclInt64Vector ID133=!!OVERLOADED_Subtract_TJclRational -ID1330=EAMD_TSC -ID13300=TTemperatureType -ID13301=TTemperatureType.ttCelsius -ID13302=TTemperatureType.ttFahrenheit -ID13303=TTemperatureType.ttKelvin -ID13304=TTemperatureType.ttRankine -ID13305=TTemperatureType.ttReaumur -ID13306=TTernary32Func -ID13307=TTernary64Func -ID13308=TTernary80Func -ID13309=TTextHandler -ID1331=EAMD_VME -ID13310=TTimeCaps -ID13311=TTimerInfo -ID13312=TTimerInfo.Remaining -ID13313=TTimerInfo.Signaled -ID13314=TTLBInformation -ID13315=TTLBInformation.tiAssociativity -ID13316=TTLBInformation.tiEntries -ID13317=TTokenUser -ID13318=TTransmetaSpecific -ID13319=TTransmetaSpecific.CodeMorphingABCD -ID1332=EAMD2_ALTMOVCR8 -ID13320=TTransmetaSpecific.CodeMorphingXXXX -ID13321=TTransmetaSpecific.CodeTLB -ID13322=TTransmetaSpecific.CurrentFrequency -ID13323=TTransmetaSpecific.CurrentPerformance -ID13324=TTransmetaSpecific.CurrentVoltage -ID13325=TTransmetaSpecific.DataTLB -ID13326=TTransmetaSpecific.ExFeatures -ID13327=TTransmetaSpecific.Frequency -ID13328=TTransmetaSpecific.L1CodeCache -ID13329=TTransmetaSpecific.L1DataCache -ID1333=EAMD2_BIT_10 -ID13330=TTransmetaSpecific.L2Cache -ID13331=TTransmetaSpecific.RevisionABCD -ID13332=TTransmetaSpecific.RevisionXXXX -ID13333=TTransmetaSpecific.TransmetaFeatures -ID13334=TTransmetaSpecific.TransmetaInformations -ID13335=TTraverseMethod -ID13336=TUcCClass -ID13337=TUcCClass.Ranges -ID13338=TUcCClass.RangesUsed -ID13339=TUcElement -ID1334=EAMD2_BIT_11 -ID13340=TUcElement.AType -ID13341=TUcElement.LHS -ID13342=TUcElement.OnStack -ID13343=TUcElement.RHS -ID13344=TUcEquivalent -ID13345=TUcEquivalent.Left -ID13346=TUcEquivalent.Right -ID13347=TUcEquivalentList -ID13348=TUcEquivalentList.Equivalents -ID13349=TUcEquivalentList.EquivalentsUsed -ID1335=EAMD2_BIT_12 -ID13350=TUcExpressionList -ID13351=TUcExpressionList.Expressions -ID13352=TUcExpressionList.ExpressionsUsed -ID13353=TUcRange -ID13354=TUcRange.MaxCode -ID13355=TUcRange.MinCode -ID13356=TUCS2Array -ID13357=TUCS4Array -ID13358=TUcState -ID13359=TUcState.Accepting -ID1336=EAMD2_BIT_13 -ID13360=TUcState.ID -ID13361=TUcState.StateList -ID13362=TUcState.Transitions -ID13363=TUcState.TransitionsUsed -ID13364=TUcStateList -ID13365=TUcStateList.List -ID13366=TUcStateList.ListUsed -ID13367=TUcStateTable -ID13368=TUcStateTable.States -ID13369=TUcStateTable.StatesUsed -ID1337=EAMD2_BIT_14 -ID13370=TUcSymbol -ID13371=TUcSymbol.CCL -ID13372=TUcSymbol.Chr -ID13373=TUcSymbolTable -ID13374=TUcSymbolTable.Symbols -ID13375=TUcSymbolTable.SymbolsUsed -ID13376=TUcSymbolTableEntry -ID13377=TUcSymbolTableEntry.AType -ID13378=TUcSymbolTableEntry.Categories -ID13379=TUcSymbolTableEntry.ID -ID1338=EAMD2_BIT_15 -ID13380=TUcSymbolTableEntry.Mods -ID13381=TUcSymbolTableEntry.States -ID13382=TUcSymbolTableEntry.Symbol -ID13383=TUcTransition -ID13384=TUcTransition.NextState -ID13385=TUcTransition.Symbol -ID13386=TUcTransitions -ID13387=TUcTransitions.Transitions -ID13388=TUcTransitions.TransitionsUsed -ID13389=TULargeInteger -ID1339=EAMD2_BIT_16 -ID13390=TULargeInteger.HighPart -ID13391=TULargeInteger.LowPart -ID13392=TULargeInteger.QuadPart -ID13393=TUnary32Func -ID13394=TUnary64Func -ID13395=TUnary80Func -ID13396=TUnicodeBlockRange -ID13397=TUnicodeBlockRange.RangeEnd -ID13398=TUnicodeBlockRange.RangeStart -ID13399=TUnicodePath +ID1330=CSIDL_ADMINTOOLS +ID13300=TJclInt64VectorIterator +ID13301=TJclIntegerAbstractContainer +ID13302=TJclIntegerArrayIterator +ID13303=TJclIntegerArrayList +ID13304=TJclIntegerArraySet +ID13305=TJclIntegerBinaryNode +ID13306=TJclIntegerBinaryTree +ID13307=TJclIntegerBinaryTreeIterator +ID13308=TJclIntegerBucket +ID13309=TJclIntegerHashEntry +ID1331=CSIDL_CDBURN_AREA +ID13310=TJclIntegerHashMap +ID13311=TJclIntegerHashSet +ID13312=TJclIntegerIntegerBucket +ID13313=TJclIntegerIntegerHashEntry +ID13314=TJclIntegerIntegerHashMap +ID13315=TJclIntegerIntegerSortedEntry +ID13316=TJclIntegerIntegerSortedMap +ID13317=TJclIntegerIntfBucket +ID13318=TJclIntegerIntfHashEntry +ID13319=TJclIntegerIntfHashMap +ID1332=CSIDL_COMMON_ADMINTOOLS +ID13320=TJclIntegerIntfSortedEntry +ID13321=TJclIntegerIntfSortedMap +ID13322=TJclIntegerLinkedList +ID13323=TJclIntegerLinkedListItem +ID13324=TJclIntegerLinkedListIterator +ID13325=TJclIntegerQueue +ID13326=TJclIntegerSortedEntry +ID13327=TJclIntegerSortedMap +ID13328=TJclIntegerStack +ID13329=TJclIntegerTree +ID1333=CSIDL_COMMON_APPDATA +ID13330=TJclIntegerTreeIterator +ID13331=TJclIntegerTreeNode +ID13332=TJclIntegerVector +ID13333=TJclIntegerVectorIterator +ID13334=TJclInterfacedPersistent +ID13335=TJclInterfaceTypeInfo +ID13336=TJclIntfAbstractContainer +ID13337=TJclIntfAnsiStrBucket +ID13338=TJclIntfAnsiStrHashEntry +ID13339=TJclIntfAnsiStrHashMap +ID1334=CSIDL_COMMON_DOCUMENTS +ID13340=TJclIntfAnsiStrSortedEntry +ID13341=TJclIntfAnsiStrSortedMap +ID13342=TJclIntfArrayIterator +ID13343=TJclIntfArrayList +ID13344=TJclIntfArraySet +ID13345=TJclIntfArraySet.Add@IInterface +ID13346=TJclIntfArraySet.AddAll@IJclIntfCollection +ID13347=TJclIntfArraySet.BinarySearch@IInterface +ID13348=TJclIntfArraySet.Contains@IInterface +ID13349=TJclIntfArraySet.Insert@Integer@IInterface +ID1335=CSIDL_COMMON_MUSIC +ID13350=TJclIntfArraySet.Intersect@IJclIntfCollection +ID13351=TJclIntfArraySet.Subtract@IJclIntfCollection +ID13352=TJclIntfArraySet.Union@IJclIntfCollection +ID13353=TJclIntfBinaryNode +ID13354=TJclIntfBinaryNode.Color +ID13355=TJclIntfBinaryNode.Left +ID13356=TJclIntfBinaryNode.Parent +ID13357=TJclIntfBinaryNode.Right +ID13358=TJclIntfBinaryNode.TJclIntfBinaryNode=recordObj +ID13359=TJclIntfBinaryTree +ID1336=CSIDL_COMMON_OEM_LINKS +ID13360=TJclIntfBinaryTree.Add@IInterface +ID13361=TJclIntfBinaryTree.AddAll@IJclIntfCollection +ID13362=TJclIntfBinaryTree.Clear +ID13363=TJclIntfBinaryTree.Clone +ID13364=TJclIntfBinaryTree.Contains@IInterface +ID13365=TJclIntfBinaryTree.ContainsAll@IJclIntfCollection +ID13366=TJclIntfBinaryTree.Create@TIntfCompare +ID13367=TJclIntfBinaryTree.Destroy +ID13368=TJclIntfBinaryTree.Equals@IJclIntfCollection +ID13369=TJclIntfBinaryTree.FComparator +ID1337=CSIDL_COMMON_PICTURES +ID13370=TJclIntfBinaryTree.FCount +ID13371=TJclIntfBinaryTree.First +ID13372=TJclIntfBinaryTree.FRoot +ID13373=TJclIntfBinaryTree.FTraverseOrder +ID13374=TJclIntfBinaryTree.GetTraverseOrder +ID13375=TJclIntfBinaryTree.IsEmpty +ID13376=TJclIntfBinaryTree.Last +ID13377=TJclIntfBinaryTree.Remove@IInterface +ID13378=TJclIntfBinaryTree.RemoveAll@IJclIntfCollection +ID13379=TJclIntfBinaryTree.RetainAll@IJclIntfCollection +ID1338=CSIDL_COMMON_TEMPLATES +ID13380=TJclIntfBinaryTree.RotateLeft@PJclIntfBinaryNode +ID13381=TJclIntfBinaryTree.RotateRight@PJclIntfBinaryNode +ID13382=TJclIntfBinaryTree.SetTraverseOrder@TJclTraverseOrder +ID13383=TJclIntfBinaryTree.Size +ID13384=TJclIntfBinaryTreeIterator +ID13385=TJclIntfBucket +ID13386=TJclIntfCardinalBucket +ID13387=TJclIntfCardinalHashEntry +ID13388=TJclIntfCardinalHashMap +ID13389=TJclIntfCardinalSortedEntry +ID1339=CSIDL_COMMON_VIDEO +ID13390=TJclIntfCardinalSortedMap +ID13391=TJclIntfCriticalSection +ID13392=TJclIntfCriticalSection._AddRef +ID13393=TJclIntfCriticalSection._Release +ID13394=TJclIntfCriticalSection.Create +ID13395=TJclIntfCriticalSection.Destroy +ID13396=TJclIntfCriticalSection.FCriticalSection +ID13397=TJclIntfCriticalSection.QueryInterface@TGUID@ +ID13398=TJclIntfDoubleBucket +ID13399=TJclIntfDoubleHashEntry ID134=!!OVERLOADED_SwitchActiveNotesOff_TJclMIDIOut -ID1340=EAMD2_BIT_17 -ID13400=TUnitVersion -ID13401=TUnitVersion.Create@PUnitVersionInfo -ID13402=TUnitVersion.Data -ID13403=TUnitVersion.Date -ID13404=TUnitVersion.DateTime -ID13405=TUnitVersion.Extra -ID13406=TUnitVersion.FInfo -ID13407=TUnitVersion.LogPath -ID13408=TUnitVersion.RCSfile -ID13409=TUnitVersion.Revision -ID1341=EAMD2_BIT_18 -ID13410=TUnitVersionInfo -ID13411=TUnitVersionInfo.Data -ID13412=TUnitVersionInfo.Date -ID13413=TUnitVersionInfo.Extra -ID13414=TUnitVersionInfo.LogPath -ID13415=TUnitVersionInfo.RCSfile -ID13416=TUnitVersionInfo.Revision -ID13417=TUnitVersioning -ID13418=TUnitVersioning.Add@THandle@PUnitVersionInfo -ID13419=TUnitVersioning.Count -ID1342=EAMD2_BIT_19 -ID13420=TUnitVersioning.Create -ID13421=TUnitVersioning.Destroy -ID13422=TUnitVersioning.FindUnit@string@string -ID13423=TUnitVersioning.FModules -ID13424=TUnitVersioning.FProviders -ID13425=TUnitVersioning.GetCount -ID13426=TUnitVersioning.GetItems@Integer -ID13427=TUnitVersioning.GetModuleCount -ID13428=TUnitVersioning.GetModules@Integer -ID13429=TUnitVersioning.IndexOf@string@string -ID1343=EAMD2_BIT_20 -ID13430=TUnitVersioning.Items -ID13431=TUnitVersioning.LoadModuleUnitVersioningInfo@THandle -ID13432=TUnitVersioning.ModuleCount -ID13433=TUnitVersioning.Modules -ID13434=TUnitVersioning.RegisterProvider@TUnitVersioningProviderClass -ID13435=TUnitVersioning.UnregisterModule@THandle -ID13436=TUnitVersioning.UnregisterModule@TUnitVersioningModule -ID13437=TUnitVersioning.ValidateModules -ID13438=TUnitVersioningModule -ID13439=TUnitVersioningModule.Add@PUnitVersionInfo -ID1344=EAMD2_BIT_21 -ID13440=TUnitVersioningModule.Count -ID13441=TUnitVersioningModule.Create@THandle -ID13442=TUnitVersioningModule.Destroy -ID13443=TUnitVersioningModule.FindUnit@string@string -ID13444=TUnitVersioningModule.FInstance -ID13445=TUnitVersioningModule.FItems -ID13446=TUnitVersioningModule.GetCount -ID13447=TUnitVersioningModule.GetItems@Integer -ID13448=TUnitVersioningModule.IndexOf@string@string -ID13449=TUnitVersioningModule.IndexOfInfo@PUnitVersionInfo -ID1345=EAMD2_BIT_22 -ID13450=TUnitVersioningModule.Instance -ID13451=TUnitVersioningModule.Items -ID13452=TUnitVersioningProviderClass -ID13453=TUntypedSearchCompare -ID13454=TUREBuffer -ID13455=TUREBuffer.EquivalentList -ID13456=TUREBuffer.Error -ID13457=TUREBuffer.ExpressionList -ID13458=TUREBuffer.Flags -ID13459=TUREBuffer.Reducing -ID1346=EAMD2_BIT_23 -ID13460=TUREBuffer.Stack -ID13461=TUREBuffer.States -ID13462=TUREBuffer.SymbolTable -ID13463=TUserInfo0 -ID13464=TUserInfo1 -ID13465=TUserInfo2 -ID13466=TUTBMChar -ID13467=TUTBMChar.LoCase -ID13468=TUTBMChar.TitleCase -ID13469=TUTBMChar.UpCase -ID1347=EAMD2_BIT_24 -ID13470=TUTBMSkip -ID13471=TUTBMSkip.BMChar -ID13472=TUTBMSkip.SkipValues -ID13473=TVIASpecific -ID13474=TVIASpecific.DataTLB -ID13475=TVIASpecific.ExFeatures -ID13476=TVIASpecific.InstructionTLB -ID13477=TVIASpecific.L1DataCache -ID13478=TVIASpecific.L1InstructionCache -ID13479=TVIASpecific.L2DataCache -ID1348=EAMD2_BIT_25 -ID13480=TWideFileOptions -ID13481=TWideFileOptionsType -ID13482=TWideFileOptionsType.foAnsiFile -ID13483=TWideFileOptionsType.foUnicodeLB -ID13484=TWideStringItem -ID13485=TWideStringItem.FObject -ID13486=TWideStringItem.FString -ID13487=TWideStringItemList -ID13488=TwoPi -ID13489=TWordArray -ID1349=EAMD2_BIT_26 -ID13490=TwoToPower63 -ID13491=TWStringItem -ID13492=TWStringItem.FObject -ID13493=TWStringItem.FString -ID13494=TWStringList -ID13495=TWStringList.AddObject@WideString@TObject -ID13496=TWStringList.CaseSensitive -ID13497=TWStringList.Changed -ID13498=TWStringList.Changing -ID13499=TWStringList.Clear +ID1340=CSIDL_COMPUTERSNEARME +ID13400=TJclIntfDoubleHashMap +ID13401=TJclIntfDoubleSortedEntry +ID13402=TJclIntfDoubleSortedMap +ID13403=TJclIntfExtendedBucket +ID13404=TJclIntfExtendedHashEntry +ID13405=TJclIntfExtendedHashMap +ID13406=TJclIntfExtendedSortedEntry +ID13407=TJclIntfExtendedSortedMap +ID13408=TJclIntfFloatBucket +ID13409=TJclIntfFloatHashEntry +ID1341=CSIDL_CONNECTIONS +ID13410=TJclIntfFloatHashMap +ID13411=TJclIntfFloatSortedEntry +ID13412=TJclIntfFloatSortedMap +ID13413=TJclIntfHashEntry +ID13414=TJclIntfHashMap +ID13415=TJclIntfHashSet +ID13416=TJclIntfInt64Bucket +ID13417=TJclIntfInt64HashEntry +ID13418=TJclIntfInt64HashMap +ID13419=TJclIntfInt64SortedEntry +ID1342=CSIDL_MYPICTURES +ID13420=TJclIntfInt64SortedMap +ID13421=TJclIntfIntegerBucket +ID13422=TJclIntfIntegerHashEntry +ID13423=TJclIntfIntegerHashMap +ID13424=TJclIntfIntegerSortedEntry +ID13425=TJclIntfIntegerSortedMap +ID13426=TJclIntfIntfBucket +ID13427=TJclIntfIntfBucket.Entries +ID13428=TJclIntfIntfBucket.TJclIntfIntfBucket=recordCount +ID13429=TJclIntfIntfBucketArray +ID1343=CSIDL_PROFILE +ID13430=TJclIntfIntfEntry +ID13431=TJclIntfIntfEntry.Key +ID13432=TJclIntfIntfEntry.Value +ID13433=TJclIntfIntfEntryArray +ID13434=TJclIntfIntfHashEntry +ID13435=TJclIntfIntfHashMap +ID13436=TJclIntfIntfSortedEntry +ID13437=TJclIntfIntfSortedMap +ID13438=TJclIntfLinkedList +ID13439=TJclIntfLinkedListItem +ID1344=CSIDL_PROGRAM_FILES +ID13440=TJclIntfLinkedListItem.Next +ID13441=TJclIntfLinkedListItem.TJclIntfLinkedListItem=recordObj +ID13442=TJclIntfLinkedListIterator +ID13443=TJclIntfPtrBucket +ID13444=TJclIntfPtrHashEntry +ID13445=TJclIntfPtrHashMap +ID13446=TJclIntfPtrSortedEntry +ID13447=TJclIntfPtrSortedMap +ID13448=TJclIntfQueue +ID13449=TJclIntfSingleBucket +ID1345=CSIDL_PROGRAM_FILES_COMMON +ID13450=TJclIntfSingleHashEntry +ID13451=TJclIntfSingleHashMap +ID13452=TJclIntfSingleSortedEntry +ID13453=TJclIntfSingleSortedMap +ID13454=TJclIntfSortedEntry +ID13455=TJclIntfSortedMap +ID13456=TJclIntfStack +ID13457=TJclIntfStrBucket +ID13458=TJclIntfStrHashEntry +ID13459=TJclIntfStrHashMap +ID1346=CSIDL_RESOURCES +ID13460=TJclIntfStrSortedEntry +ID13461=TJclIntfStrSortedMap +ID13462=TJclIntfTree +ID13463=TJclIntfTreeIterator +ID13464=TJclIntfTreeNode +ID13465=TJclIntfUnicodeStrBucket +ID13466=TJclIntfUnicodeStrHashEntry +ID13467=TJclIntfUnicodeStrHashMap +ID13468=TJclIntfUnicodeStrSortedEntry +ID13469=TJclIntfUnicodeStrSortedMap +ID1347=CSIDL_RESOURCES_LOCALIZED +ID13470=TJclIntfVector +ID13471=TJclIntfVectorIterator +ID13472=TJclIntfWideStrBucket +ID13473=TJclIntfWideStrHashEntry +ID13474=TJclIntfWideStrHashMap +ID13475=TJclIntfWideStrSortedEntry +ID13476=TJclIntfWideStrSortedMap +ID13477=TJclIsoDecompressArchive +ID13478=TJclJpegSummaryInformation +ID13479=TJclJpegSummaryInformation.GetFMTID +ID1348=CSIDL_SYSTEM +ID13480=TJclKillLevel +ID13481=TJclKillLevel.klNormal +ID13482=TJclKillLevel.klNoSignal +ID13483=TJclKillLevel.klTimeOut +ID13484=TJclLabelSymbolInfo +ID13485=TJclLabelSymbolInfo.Create@PSymbolInfo +ID13486=TJclLabelSymbolInfo.FNameIndex +ID13487=TJclLabelSymbolInfo.FOffset +ID13488=TJclLabelSymbolInfo.NameIndex +ID13489=TJclLabelSymbolInfo.Offset +ID1349=CSIDL_WINDOWS +ID13490=TJclLDataSymbolInfo +ID13491=TJclLineInfo +ID13492=TJclLineInfo.Create@DWORD@DWORD +ID13493=TJclLineInfo.FLineNo +ID13494=TJclLineInfo.FOffset +ID13495=TJclLineInfo.LineNo +ID13496=TJclLineInfo.Offset +ID13497=TJclLinkedList +ID13498=TJclLinkedListItem +ID13499=TJclLinkedListItem.Next ID135=!!OVERLOADED_TranslateToSEFElement_TEDISpecToSEFTranslator -ID1350=EAMD2_BIT_27 -ID13500=TWStringList.CompareStrings@WideString@WideString -ID13501=TWStringList.Create -ID13502=TWStringList.CustomSort@TWStringListSortCompare -ID13503=TWStringList.Delete@Integer -ID13504=TWStringList.Destroy -ID13505=TWStringList.Duplicates -ID13506=TWStringList.Exchange@Integer@Integer -ID13507=TWStringList.FCaseSensitive -ID13508=TWStringList.FDuplicates -ID13509=TWStringList.Find@WideString@Integer -ID1351=EAMD2_BIT_28 -ID13510=TWStringList.FList -ID13511=TWStringList.FOnChange -ID13512=TWStringList.FOnChanging -ID13513=TWStringList.FSorted -ID13514=TWStringList.GetCapacity -ID13515=TWStringList.GetCount -ID13516=TWStringList.GetItem@Integer -ID13517=TWStringList.GetObject@Integer -ID13518=TWStringList.GetP@Integer -ID13519=TWStringList.IndexOf@WideString -ID1352=EAMD2_BIT_29 -ID13520=TWStringList.InsertObject@Integer@WideString@TObject -ID13521=TWStringList.OnChange -ID13522=TWStringList.OnChanging -ID13523=TWStringList.Put@Integer@WideString -ID13524=TWStringList.PutObject@Integer@TObject -ID13525=TWStringList.SetCapacity@Integer -ID13526=TWStringList.SetCaseSensitive@Boolean -ID13527=TWStringList.SetSorted@Boolean -ID13528=TWStringList.SetUpdateState@Boolean -ID13529=TWStringList.Sort -ID1353=EAMD2_BIT_3 -ID13530=TWStringList.Sorted -ID13531=TWStringListSortCompare -ID13532=TWStrings -ID13533=TWStrings.Add@WideString -ID13534=TWStrings.AddObject@WideString@TObject -ID13535=TWStrings.AddStrings@TStrings -ID13536=TWStrings.AddStrings@TWStrings -ID13537=TWStrings.AddStringsTo@TStrings -ID13538=TWStrings.Append@WideString -ID13539=TWStrings.Assign@TPersistent -ID1354=EAMD2_BIT_30 -ID13540=TWStrings.AssignTo@TPersistent -ID13541=TWStrings.BeginUpdate -ID13542=TWStrings.Capacity -ID13543=TWStrings.Clear -ID13544=TWStrings.CommaText -ID13545=TWStrings.CompareStrings@WideString@WideString -ID13546=TWStrings.Count -ID13547=TWStrings.Create -ID13548=TWStrings.CreateAnsiStringList -ID13549=TWStrings.DefineProperties@TFiler -ID1355=EAMD2_BIT_31 -ID13550=TWStrings.Delete@Integer -ID13551=TWStrings.DelimitedText -ID13552=TWStrings.Delimiter -ID13553=TWStrings.EndUpdate -ID13554=TWStrings.Equals@TStrings -ID13555=TWStrings.Equals@TWStrings -ID13556=TWStrings.Exchange@Integer@Integer -ID13557=TWStrings.ExtractName@WideString -ID13558=TWStrings.FDelimiter -ID13559=TWStrings.FLineSeparator -ID1356=EAMD2_BIT_5 -ID13560=TWStrings.FNameValueSeparator -ID13561=TWStrings.FQuoteChar -ID13562=TWStrings.FUpdateCount -ID13563=TWStrings.Get@Integer -ID13564=TWStrings.GetCapacity -ID13565=TWStrings.GetCommaText -ID13566=TWStrings.GetCount -ID13567=TWStrings.GetDelimitedText -ID13568=TWStrings.GetDelimitedTextEx@WideChar@WideChar -ID13569=TWStrings.GetName@Integer -ID1357=EAMD2_BIT_6 -ID13570=TWStrings.GetObject@Integer -ID13571=TWStrings.GetP@Integer -ID13572=TWStrings.GetText -ID13573=TWStrings.GetTextStr -ID13574=TWStrings.GetValue@WideString -ID13575=TWStrings.GetValueFromIndex@Integer -ID13576=TWStrings.IndexOf@WideString -ID13577=TWStrings.IndexOfName@WideString -ID13578=TWStrings.IndexOfObject@TObject -ID13579=TWStrings.Insert@Integer@WideString -ID1358=EAMD2_BIT_7 -ID13580=TWStrings.InsertObject@Integer@WideString@TObject -ID13581=TWStrings.LineSeparator -ID13582=TWStrings.LoadFromFile@AnsiString@TWideFileOptions -ID13583=TWStrings.LoadFromStream@TStream@TWideFileOptions -ID13584=TWStrings.Move@Integer@Integer -ID13585=TWStrings.Names -ID13586=TWStrings.NameValueSeparator -ID13587=TWStrings.Objects -ID13588=TWStrings.PStrings -ID13589=TWStrings.Put@Integer@WideString -ID1359=EAMD2_BIT_8 -ID13590=TWStrings.PutObject@Integer@TObject -ID13591=TWStrings.QuoteChar -ID13592=TWStrings.ReadData@TReader -ID13593=TWStrings.SaveToFile@AnsiString@TWideFileOptions -ID13594=TWStrings.SaveToStream@TStream@TWideFileOptions -ID13595=TWStrings.SetCapacity@Integer -ID13596=TWStrings.SetCommaText@WideString -ID13597=TWStrings.SetDelimitedText@WideString -ID13598=TWStrings.SetDelimitedTextEx@WideChar@WideChar@WideString -ID13599=TWStrings.SetText@PWideChar +ID1350=CurrentTimeZoneSupportsDaylightSavings +ID13500=TJclLinkedListItem.TJclLinkedListItem=recordObj +ID13501=TJclLinkedListIterator +ID13502=TJclLinkSummaryInformation +ID13503=TJclLinkSummaryInformation.GetFMTID +ID13504=TJclLocaleDateFormats +ID13505=TJclLocaleDateFormats.ldLong +ID13506=TJclLocaleDateFormats.ldShort +ID13507=TJclLocaleDateFormats.ldYearMonth +ID13508=TJclLocalesDays +ID13509=TJclLocalesMonths +ID1351=CX8_FLAG +ID13510=TJclLocalProcSymbolInfo +ID13511=TJclLocationInfoClass +ID13512=TJclLocationInfoEx +ID13513=TJclLocationInfoExValues +ID13514=TJclLocationInfoList +ID13515=TJclLocationInfoListOptions +ID13516=TJclLzhDecompressArchive +ID13517=TJclLzma86DecompressArchive +ID13518=TJclLzmaDecompressArchive +ID13519=TJclMachoDecompressArchive +ID1352=CyclePerDeg +ID13520=TJclMapClassTableEvent +ID13521=TJclMapLineNumber +ID13522=TJclMapLineNumber.LineNumber +ID13523=TJclMapLineNumber.Segment +ID13524=TJclMapLineNumber.VA +ID13525=TJclMapLineNumbersEvent +ID13526=TJclMapLineNumberUnitEvent +ID13527=TJclMappedTextReader +ID13528=TJclMappedTextReader.AssignTo@TPersistent +ID13529=TJclMappedTextReader.AsString +ID1353=CyclePerGrad +ID13530=TJclMappedTextReader.Chars +ID13531=TJclMappedTextReader.Content +ID13532=TJclMappedTextReader.Create@string@TJclMappedTextReaderIndex +ID13533=TJclMappedTextReader.Create@TCustomMemoryStream@Boolean@TJclMappedTextReaderIndex +ID13534=TJclMappedTextReader.CreateIndex +ID13535=TJclMappedTextReader.Destroy +ID13536=TJclMappedTextReader.Eof +ID13537=TJclMappedTextReader.FContent +ID13538=TJclMappedTextReader.FEnd +ID13539=TJclMappedTextReader.FFreeStream +ID1354=CyclePerRad +ID13540=TJclMappedTextReader.FIndex +ID13541=TJclMappedTextReader.FIndexOption +ID13542=TJclMappedTextReader.FLastLineNumber +ID13543=TJclMappedTextReader.FLastPosition +ID13544=TJclMappedTextReader.FLineCount +ID13545=TJclMappedTextReader.FMemoryStream +ID13546=TJclMappedTextReader.FPosition +ID13547=TJclMappedTextReader.FSize +ID13548=TJclMappedTextReader.GetAsString +ID13549=TJclMappedTextReader.GetChars@Integer +ID1355=CYRIX_APIC +ID13550=TJclMappedTextReader.GetEof +ID13551=TJclMappedTextReader.GetLineCount +ID13552=TJclMappedTextReader.GetLines@Integer +ID13553=TJclMappedTextReader.GetPosition +ID13554=TJclMappedTextReader.GetPositionFromLine@Integer +ID13555=TJclMappedTextReader.GoBegin +ID13556=TJclMappedTextReader.IndexOption +ID13557=TJclMappedTextReader.Init +ID13558=TJclMappedTextReader.LineCount +ID13559=TJclMappedTextReader.Lines +ID1356=CYRIX_BIT_10 +ID13560=TJclMappedTextReader.Position +ID13561=TJclMappedTextReader.PositionFromLine +ID13562=TJclMappedTextReader.PtrFromLine@Integer +ID13563=TJclMappedTextReader.Read +ID13564=TJclMappedTextReader.ReadLn +ID13565=TJclMappedTextReader.SetPosition@Integer +ID13566=TJclMappedTextReader.Size +ID13567=TJclMappedTextReader.StringFromPosition@PChar +ID13568=TJclMappedTextReaderIndex +ID13569=TJclMappedTextReaderIndex.tiFull +ID1357=CYRIX_BIT_11 +ID13570=TJclMappedTextReaderIndex.tiNoIndex +ID13571=TJclMapProcName +ID13572=TJclMapProcName.ProcName +ID13573=TJclMapProcName.Segment +ID13574=TJclMapProcName.VA +ID13575=TJclMapPublicsEvent +ID13576=TJclMapSegment +ID13577=TJclMapSegment.EndVA +ID13578=TJclMapSegment.Segment +ID13579=TJclMapSegment.StartVA +ID1358=CYRIX_BIT_16 +ID13580=TJclMapSegment.UnitName +ID13581=TJclMapSegmentClass +ID13582=TJclMapSegmentClass.Addr +ID13583=TJclMapSegmentClass.GroupName +ID13584=TJclMapSegmentClass.Len +ID13585=TJclMapSegmentClass.SectionName +ID13586=TJclMapSegmentClass.Segment +ID13587=TJclMapSegmentClass.VA +ID13588=TJclMapSegmentEvent +ID13589=TJclMbrDecompressArchive +ID1359=CYRIX_BIT_17 +ID13590=TJclMediaFileSummaryInformation +ID13591=TJclMediaFileSummaryInformation.Copyright +ID13592=TJclMediaFileSummaryInformation.Editor +ID13593=TJclMediaFileSummaryInformation.GetFMTID +ID13594=TJclMediaFileSummaryInformation.Owner +ID13595=TJclMediaFileSummaryInformation.Production +ID13596=TJclMediaFileSummaryInformation.Project +ID13597=TJclMediaFileSummaryInformation.Rating +ID13598=TJclMediaFileSummaryInformation.SequenceNo +ID13599=TJclMediaFileSummaryInformation.Source ID136=!!OVERLOADED_TranslateToSEFSegment_TEDISpecToSEFTranslator -ID1360=EAMD2_BIT_9 -ID13600=TWStrings.SetTextStr@WideString -ID13601=TWStrings.SetUpdateState@Boolean -ID13602=TWStrings.SetValue@WideString@WideString -ID13603=TWStrings.SetValueFromIndex@Integer@WideString -ID13604=TWStrings.Strings -ID13605=TWStrings.Text -ID13606=TWStrings.UpdateCount -ID13607=TWStrings.ValueFromIndex -ID13608=TWStrings.Values -ID13609=TWStrings.WriteData@TWriter -ID1361=EAMD2_CMPLEGACY -ID13610=UCLEANUI -ID13611=UCS2 -ID13612=UDIRTYUI -ID13613=UF_ACCOUNT_TYPE_MASK -ID13614=UF_ACCOUNTDISABLE -ID13615=UF_DONT_EXPIRE_PASSWD -ID13616=UF_DONT_REQUIRE_PREAUTH -ID13617=UF_ENCRYPTED_TEXT_PASSWORD_ALLOWED -ID13618=UF_HOMEDIR_REQUIRED -ID13619=UF_INTERDOMAIN_TRUST_ACCOUNT -ID1362=EAMD2_LAHF -ID13620=UF_LOCKOUT -ID13621=UF_MACHINE_ACCOUNT_MASK -ID13622=UF_MNS_LOGON_ACCOUNT -ID13623=UF_NORMAL_ACCOUNT -ID13624=UF_NOT_DELEGATED -ID13625=UF_PASSWD_CANT_CHANGE -ID13626=UF_PASSWD_NOTREQD -ID13627=UF_PASSWORD_EXPIRED -ID13628=UF_SCRIPT -ID13629=UF_SERVER_TRUST_ACCOUNT -ID1363=EAMD2_SVM -ID13630=UF_SETTABLE_BITS -ID13631=UF_SMARTCARD_REQUIRED -ID13632=UF_TEMP_DUPLICATE_ACCOUNT -ID13633=UF_TRUSTED_FOR_DELEGATION -ID13634=UF_TRUSTED_TO_AUTHENTICATE_FOR_DELEGATION -ID13635=UF_USE_DES_KEY_ONLY -ID13636=UF_WORKSTATION_TRUST_ACCOUNT -ID13637=UInt16 -ID13638=UInt32 -ID13639=UInt64 -ID1364=EColorConversionError -ID13640=UInt8 -ID13641=ULONG_PTR -ID13642=ULONGLONG -ID13643=UNASegmentId -ID13644=UNBSegmentId -ID13645=UnBZip2File@string@string@TJclCompressStreamProgressCallback@Pointer -ID13646=UNCLEN -ID13647=UnDecorateSymbolName@string PAnsiChar@string PAnsiChar@DWORD@DWORD -ID13648=UNDNAME_32_BIT_DECODE -ID13649=UNDNAME_COMPLETE -ID1365=ECYRIX_APIC -ID13650=UNDNAME_NAME_ONLY -ID13651=UNDNAME_NO_ACCESS_SPECIFIERS -ID13652=UNDNAME_NO_ALLOCATION_LANGUAGE -ID13653=UNDNAME_NO_ALLOCATION_MODEL -ID13654=UNDNAME_NO_ARGUMENTS -ID13655=UNDNAME_NO_CV_THISTYPE -ID13656=UNDNAME_NO_FUNCTION_RETURNS -ID13657=UNDNAME_NO_LEADING_UNDERSCORES -ID13658=UNDNAME_NO_MEMBER_TYPE -ID13659=UNDNAME_NO_MS_KEYWORDS -ID1366=ECYRIX_BIT_11 -ID13660=UNDNAME_NO_MS_THISTYPE -ID13661=UNDNAME_NO_RETURN_UDT_MODEL -ID13662=UNDNAME_NO_SPECIAL_SYMS -ID13663=UNDNAME_NO_THISTYPE -ID13664=UNDNAME_NO_THROW_SIGNATURES -ID13665=UNESegmentId -ID13666=UNGSegmentId -ID13667=UnGZipFile@string@string@TJclCompressStreamProgressCallback@Pointer -ID13668=UNHSegmentId -ID13669=Unicode -ID1367=ECYRIX_BIT_17 -ID13670=UnicodeCaseFold@UCS4 -ID13671=UNIQUE_NAME -ID13672=UnitConversions -ID13673=UNITS_PER_DAY -ID13674=UNITS_PER_WEEK -ID13675=UnitVersioning -ID13676=UnixTimeStart -ID13677=UNLEN -ID13678=UnloadPCRE -ID13679=UnMapAndLoad@LOADED_IMAGE -ID1368=ECYRIX_BIT_18 -ID13680=Unmask8087Exceptions -ID13681=UnRegisterCLSIDInCategory@TGUID@TGUID -ID13682=UnregisterUnitVersion@THandle -ID13683=UNTSegmentId -ID13684=UNZSegmentId -ID13685=USER_INFO_0 -ID13686=USER_INFO_1 -ID13687=USER_INFO_2 -ID13688=USER_MAXSTORAGE_UNLIMITED -ID13689=USER_NO_LOGOFF -ID1369=ECYRIX_BIT_19 -ID13690=USER_PRIV_ADMIN -ID13691=USER_PRIV_GUEST -ID13692=USER_PRIV_MASK -ID13693=USER_PRIV_USER -ID13694=USHORT -ID13695=Value_UndefinedMaximum -ID13696=VariantArrayToStream@OleVariant@IStream -ID13697=VariantArrayToStream@OleVariant@TStream -ID13698=VendorIDAMD -ID13699=VendorIDCyrix +ID1360=CYRIX_BIT_18 +ID13600=TJclMediaFileSummaryInformation.Status +ID13601=TJclMediaFileSummaryInformation.Supplier +ID13602=TJclMethodArray +ID13603=TJclMethodBroadCast +ID13604=TJclMIDIOut +ID13605=TJclMIDIOut.ActiveNotes +ID13606=TJclMIDIOut.Destroy +ID13607=TJclMIDIOut.DoSendMessage@array of Byte +ID13608=TJclMIDIOut.FActiveNotes +ID13609=TJclMIDIOut.FMIDIStatus +ID1361=CYRIX_BIT_19 +ID13610=TJclMIDIOut.FRunningStatusEnabled +ID13611=TJclMIDIOut.GetActiveNotes@TMIDIChannel +ID13612=TJclMIDIOut.GetMIDIStatus +ID13613=TJclMIDIOut.GetName +ID13614=TJclMIDIOut.GetRunningStatusEnabled +ID13615=TJclMIDIOut.IsRunningStatus@TMIDIStatusByte +ID13616=TJclMIDIOut.Name +ID13617=TJclMIDIOut.NoteIsOn@TMIDIChannel@TMIDINote +ID13618=TJclMIDIOut.ResetAllControllers@TMIDIChannel +ID13619=TJclMIDIOut.RunningStatusEnabled +ID1362=CYRIX_BIT_20 +ID13620=TJclMIDIOut.SelectProgram@TMIDIChannel@TMIDIDataWord@TMIDIDataByte +ID13621=TJclMIDIOut.SendBalanceChange@TMIDIChannel@TMidiDataByte +ID13622=TJclMIDIOut.SendBalanceChangeHR@TMIDIChannel@TMidiDataWord +ID13623=TJclMIDIOut.SendBreathControlChange@TMIDIChannel@TMidiDataByte +ID13624=TJclMIDIOut.SendBreathControlChangeHR@TMIDIChannel@TMidiDataWord +ID13625=TJclMIDIOut.SendChannelMessage@TMIDIStatusByte@TMIDIChannel@TMIDIDataByte@TMIDIDataByte +ID13626=TJclMIDIOut.SendChannelPressure@TMIDIChannel@TMIDIDataByte +ID13627=TJclMIDIOut.SendChannelVolumeChange@TMIDIChannel@TMidiDataByte +ID13628=TJclMIDIOut.SendChannelVolumeChangeHR@TMIDIChannel@TMidiDataWord +ID13629=TJclMIDIOut.SendControlChange@TMIDIChannel@TMIDIDataByte@TMIDIDataByte +ID1363=CYRIX_BIT_21 +ID13630=TJclMIDIOut.SendControlChangeHR@TMIDIChannel@TMIDIDataByte@TMIDIDataWord +ID13631=TJclMIDIOut.SendDataEntry@TMIDIChannel@TMidiDataByte +ID13632=TJclMIDIOut.SendDataEntryHR@TMIDIChannel@TMidiDataWord +ID13633=TJclMIDIOut.SendExpressionChange@TMIDIChannel@TMidiDataByte +ID13634=TJclMIDIOut.SendExpressionChangeHR@TMIDIChannel@TMidiDataWord +ID13635=TJclMIDIOut.SendFootControllerChange@TMIDIChannel@TMidiDataByte +ID13636=TJclMIDIOut.SendFootControllerChangeHR@TMIDIChannel@TMidiDataWord +ID13637=TJclMIDIOut.SendMessage@array of Byte +ID13638=TJclMIDIOut.SendModulationWheelChange@TMIDIChannel@TMidiDataByte +ID13639=TJclMIDIOut.SendModulationWheelChangeHR@TMIDIChannel@TMidiDataWord +ID1364=CYRIX_BIT_22 +ID13640=TJclMIDIOut.SendNoteOff@TMIDIChannel@TMIDINote@TMIDIDataByte +ID13641=TJclMIDIOut.SendNoteOn@TMIDIChannel@TMIDINote@TMIDIDataByte +ID13642=TJclMIDIOut.SendPanChange@TMIDIChannel@TMidiDataByte +ID13643=TJclMIDIOut.SendPanChangeHR@TMIDIChannel@TMidiDataWord +ID13644=TJclMIDIOut.SendPitchWheelChange@TMIDIChannel@TMIDIDataWord +ID13645=TJclMIDIOut.SendPitchWheelPos@TMIDIChannel@Single +ID13646=TJclMIDIOut.SendPolyphonicKeyPressure@TMIDIChannel@TMIDINote@TMIDIDataByte +ID13647=TJclMIDIOut.SendPortamentoTimeChange@TMIDIChannel@TMidiDataByte +ID13648=TJclMIDIOut.SendPortamentoTimeChangeHR@TMIDIChannel@TMidiDataWord +ID13649=TJclMIDIOut.SendProgramChange@TMIDIChannel@TMIDIDataByte +ID1365=CYRIX_BIT_24 +ID13650=TJclMIDIOut.SendSingleNoteTuningChange@TMidiDataByte@TMidiDataByte@array of TSingleNoteTuningData +ID13651=TJclMIDIOut.SendSwitchChange@TMIDIChannel@TMIDIDataByte@Boolean +ID13652=TJclMIDIOut.SetRunningStatusEnabled@Boolean +ID13653=TJclMIDIOut.SwitchActiveNotesOff +ID13654=TJclMIDIOut.SwitchActiveNotesOff@TMIDIChannel +ID13655=TJclMIDIOut.SwitchAllNotesOff@TMIDIChannel +ID13656=TJclMIDIOut.SwitchAllSoundOff@TMIDIChannel +ID13657=TJclMIDIOut.SwitchHold2@TMIDIChannel@Boolean +ID13658=TJclMIDIOut.SwitchLegato@TMIDIChannel@Boolean +ID13659=TJclMIDIOut.SwitchLocalControl@TMIDIChannel@Boolean +ID1366=CYRIX_BIT_25 +ID13660=TJclMIDIOut.SwitchMonoModeOn@TMIDIChannel@Integer +ID13661=TJclMIDIOut.SwitchOmniModeOff@TMIDIChannel +ID13662=TJclMIDIOut.SwitchOmniModeOn@TMIDIChannel +ID13663=TJclMIDIOut.SwitchPolyModeOn@TMIDIChannel +ID13664=TJclMIDIOut.SwitchPortamento@TMIDIChannel@Boolean +ID13665=TJclMIDIOut.SwitchSoftPedal@TMIDIChannel@Boolean +ID13666=TJclMIDIOut.SwitchSostenuto@TMIDIChannel@Boolean +ID13667=TJclMIDIOut.SwitchSustain@TMIDIChannel@Boolean +ID13668=TJclMiscSummaryInformation +ID13669=TJclMiscSummaryInformation.GetFMTID +ID1367=CYRIX_BIT_26 +ID13670=TJclMixer +ID13671=TJclMixer.BuildDevices +ID13672=TJclMixer.CallbackWnd +ID13673=TJclMixer.Create@THandle +ID13674=TJclMixer.Destroy +ID13675=TJclMixer.DeviceCount +ID13676=TJclMixer.Devices +ID13677=TJclMixer.FCallbackWnd +ID13678=TJclMixer.FDeviceList +ID13679=TJclMixer.FirstDevice +ID1368=CYRIX_BIT_27 +ID13680=TJclMixer.GetDeviceCount +ID13681=TJclMixer.GetDevices@Integer +ID13682=TJclMixer.GetFirstDevice +ID13683=TJclMixer.GetLineByID@HMIXER@DWORD +ID13684=TJclMixer.GetLineControlByID@HMIXER@DWORD +ID13685=TJclMixer.GetLineMute@Integer +ID13686=TJclMixer.GetLineVolume@Integer +ID13687=TJclMixer.LineByID +ID13688=TJclMixer.LineControlByID +ID13689=TJclMixer.LineMute +ID1369=CYRIX_BIT_28 +ID13690=TJclMixer.LineVolume +ID13691=TJclMixer.SetLineMute@Integer@Boolean +ID13692=TJclMixer.SetLineVolume@Integer@Cardinal +ID13693=TJclMixer.SpeakersMute +ID13694=TJclMixer.SpeakersVolume +ID13695=TJclMixerDestination +ID13696=TJclMixerDestination.BuildSources +ID13697=TJclMixerDestination.Create@TJclMixerDevice@Cardinal +ID13698=TJclMixerDestination.Destroy +ID13699=TJclMixerDestination.FSources ID137=!!OVERLOADED_UnregisterModule_TUnitVersioning -ID1370=ECYRIX_BIT_20 -ID13700=VendorIDIntel -ID13701=VendorIDTransmeta -ID13702=VendorIDVIA -ID13703=VER_AND -ID13704=VER_BUILDNUMBER -ID13705=VER_CONDITION_MASK -ID13706=VER_EQUAL -ID13707=VER_GREATER -ID13708=VER_GREATER_EQUAL -ID13709=VER_LESS -ID1371=ECYRIX_BIT_21 -ID13710=VER_LESS_EQUAL -ID13711=VER_MAJORVERSION -ID13712=VER_MINORVERSION -ID13713=VER_NUM_BITS_PER_CONDITION_MASK -ID13714=VER_OR -ID13715=VER_PLATFORM_WIN32_NT -ID13716=VER_PLATFORM_WIN32_WINDOWS -ID13717=VER_PLATFORM_WIN32s -ID13718=VER_PLATFORMID -ID13719=VER_PRODUCT_TYPE -ID1372=ECYRIX_BIT_22 -ID13720=VER_SERVER_NT -ID13721=VER_SERVICEPACKMAJOR -ID13722=VER_SERVICEPACKMINOR -ID13723=VER_SUITE_BLADE -ID13724=VER_SUITE_COMPUTE_SERVER -ID13725=VER_SUITE_EMBEDDED_RESTRICTED -ID13726=VER_SUITE_SECURITY_APPLIANCE -ID13727=VER_SUITE_STORAGE_SERVER -ID13728=VER_SUITENAME -ID13729=VER_WORKSTATION_NT -ID1373=ECYRIX_BIT_25 -ID13730=VersionExtractFileInfo@TVSFixedFileInfo@Word@Word@Word@Word -ID13731=VersionExtractProductInfo@TVSFixedFileInfo@Word@Word@Word@Word -ID13732=VersionFixedFileInfoString@string@TFileVersionFormat@string -ID13733=VFT2_DRV_COMM -ID13734=VFT2_DRV_DISPLAY -ID13735=VFT2_DRV_INSTALLABLE -ID13736=VFT2_DRV_KEYBOARD -ID13737=VFT2_DRV_LANGUAGE -ID13738=VFT2_DRV_MOUSE -ID13739=VFT2_DRV_NETWORK -ID1374=ECYRIX_BIT_26 -ID13740=VFT2_DRV_PRINTER -ID13741=VFT2_DRV_SOUND -ID13742=VFT2_DRV_SYSTEM -ID13743=VFT2_UNKNOWN -ID13744=VIA_3DNOW -ID13745=VIA_APIC -ID13746=VIA_BIT_10 -ID13747=VIA_BIT_19 -ID13748=VIA_BIT_20 -ID13749=VIA_BIT_21 -ID1375=ECYRIX_BIT_27 -ID13750=VIA_BIT_22 -ID13751=VIA_BIT_26 -ID13752=VIA_BIT_27 -ID13753=VIA_BIT_28 -ID13754=VIA_BIT_29 -ID13755=VIA_BIT_30 -ID13756=VIA_CMOVE -ID13757=VIA_CX8 -ID13758=VIA_DE -ID13759=VIA_FPU -ID1376=ECYRIX_BIT_28 -ID13760=VIA_FX -ID13761=VIA_MCA -ID13762=VIA_MCE -ID13763=VIA_MMX -ID13764=VIA_MSR -ID13765=VIA_MTRR -ID13766=VIA_PAE -ID13767=VIA_PAT -ID13768=VIA_PSE -ID13769=VIA_PSE2 -ID1377=ECYRIX_BIT_29 -ID13770=VIA_PTE -ID13771=VIA_SEP -ID13772=VIA_SNUM -ID13773=VIA_SSE -ID13774=VIA_TSC -ID13775=VIA_VME -ID13776=VME_FLAG -ID13777=VOS__BASE -ID13778=VOS__PM16 -ID13779=VOS__PM32 -ID1378=ECYRIX_BIT_30 -ID13780=VOS__WINDOWS16 -ID13781=VOS__WINDOWS32 -ID13782=WaitAlertableForMultipleObjects@array of TJclDispatcherObject@Boolean@Cardinal -ID13783=WaitForMultipleObjects@array of TJclDispatcherObject@Boolean@Cardinal -ID13784=WideCarriageReturn -ID13785=WideCaseFolding@WideChar -ID13786=WideCaseFolding@WideString -ID13787=WideCharToChar@WideChar -ID13788=WideCompareStr@WideString@WideString -ID13789=WideCompareText -ID1379=ECYRIX_BIT_31 -ID13790=WideCompareText@WideString@WideString -ID13791=WideCR -ID13792=WideCRLF -ID13793=WideFormat@WideString@array of const -ID13794=WideFormFeed -ID13795=WideLF -ID13796=WideLineFeed -ID13797=WideLineSeparator -ID13798=WideLowerCase@WideString -ID13799=WideMultiSzDup@PWideMultiSz +ID1370=CYRIX_BIT_29 +ID13700=TJclMixerDestination.GetSourceCount +ID13701=TJclMixerDestination.GetSources@Integer +ID13702=TJclMixerDestination.SourceCount +ID13703=TJclMixerDestination.Sources +ID13704=TJclMixerDevice +ID13705=TJclMixerDevice.BuildDestinations +ID13706=TJclMixerDevice.BuildLines +ID13707=TJclMixerDevice.Capabilities +ID13708=TJclMixerDevice.Close +ID13709=TJclMixerDevice.Create@Cardinal@THandle +ID1371=CYRIX_BIT_30 +ID13710=TJclMixerDevice.DestinationCount +ID13711=TJclMixerDevice.Destinations +ID13712=TJclMixerDevice.Destroy +ID13713=TJclMixerDevice.DeviceIndex +ID13714=TJclMixerDevice.FCapabilities +ID13715=TJclMixerDevice.FDestinations +ID13716=TJclMixerDevice.FDeviceIndex +ID13717=TJclMixerDevice.FHandle +ID13718=TJclMixerDevice.FindLineControl@DWORD@DWORD +ID13719=TJclMixerDevice.FLines +ID1372=CYRIX_BIT_31 +ID13720=TJclMixerDevice.GetDestinationCount +ID13721=TJclMixerDevice.GetDestinations@Integer +ID13722=TJclMixerDevice.GetLineByComponentType@DWORD +ID13723=TJclMixerDevice.GetLineByID@DWORD +ID13724=TJclMixerDevice.GetLineControlByID@DWORD +ID13725=TJclMixerDevice.GetLineCount +ID13726=TJclMixerDevice.GetLines@Integer +ID13727=TJclMixerDevice.GetLineUniformValue@DWORD@DWORD +ID13728=TJclMixerDevice.GetProductName +ID13729=TJclMixerDevice.Handle +ID1373=CYRIX_CMOV +ID13730=TJclMixerDevice.LineByComponentType +ID13731=TJclMixerDevice.LineByID +ID13732=TJclMixerDevice.LineControlByID +ID13733=TJclMixerDevice.LineCount +ID13734=TJclMixerDevice.Lines +ID13735=TJclMixerDevice.LineUniformValue +ID13736=TJclMixerDevice.Open@THandle +ID13737=TJclMixerDevice.ProductName +ID13738=TJclMixerDevice.SetLineUniformValue@DWORD@DWORD@Cardinal +ID13739=TJclMixerLine +ID1374=CYRIX_CX8 +ID13740=TJclMixerLine.BuildLineControls +ID13741=TJclMixerLine.ComponentString +ID13742=TJclMixerLine.ComponentTypeToString@DWORD +ID13743=TJclMixerLine.Create@TJclMixerDevice +ID13744=TJclMixerLine.Destroy +ID13745=TJclMixerLine.FLineControls +ID13746=TJclMixerLine.FLineInfo +ID13747=TJclMixerLine.FMixerDevice +ID13748=TJclMixerLine.GetComponentString +ID13749=TJclMixerLine.GetHasControlType@DWORD +ID1375=CYRIX_DE +ID13750=TJclMixerLine.GetID +ID13751=TJclMixerLine.GetLineControlByType@DWORD +ID13752=TJclMixerLine.GetLineControlCount +ID13753=TJclMixerLine.GetLineControls@Integer +ID13754=TJclMixerLine.GetName +ID13755=TJclMixerLine.HasControlType +ID13756=TJclMixerLine.ID +ID13757=TJclMixerLine.LineControlByType +ID13758=TJclMixerLine.LineControlCount +ID13759=TJclMixerLine.LineControls +ID1376=CYRIX_FPU +ID13760=TJclMixerLine.LineInfo +ID13761=TJclMixerLine.MixerDevice +ID13762=TJclMixerLine.Name +ID13763=TJclMixerLineControl +ID13764=TJclMixerLineControl.ControlInfo +ID13765=TJclMixerLineControl.Create@TJclMixerLine@TMixerControl +ID13766=TJclMixerLineControl.Destroy +ID13767=TJclMixerLineControl.FControlInfo +ID13768=TJclMixerLineControl.FIsList +ID13769=TJclMixerLineControl.FIsMultiple +ID1377=CYRIX_MCA +ID13770=TJclMixerLineControl.FIsUniform +ID13771=TJclMixerLineControl.FListText +ID13772=TJclMixerLineControl.FMixerLine +ID13773=TJclMixerLineControl.FormatValue@Cardinal +ID13774=TJclMixerLineControl.GetID +ID13775=TJclMixerLineControl.GetIsDisabled +ID13776=TJclMixerLineControl.GetListText +ID13777=TJclMixerLineControl.GetName +ID13778=TJclMixerLineControl.GetUniformValue +ID13779=TJclMixerLineControl.GetValue +ID1378=CYRIX_MCE +ID13780=TJclMixerLineControl.GetValueString +ID13781=TJclMixerLineControl.ID +ID13782=TJclMixerLineControl.IsDisabled +ID13783=TJclMixerLineControl.IsList +ID13784=TJclMixerLineControl.IsMultiple +ID13785=TJclMixerLineControl.IsUniform +ID13786=TJclMixerLineControl.ListText +ID13787=TJclMixerLineControl.MixerLine +ID13788=TJclMixerLineControl.Name +ID13789=TJclMixerLineControl.PrepareControlDetailsStruc@TMixerControlDetails@Boolean@Boolean +ID1379=CYRIX_MMX +ID13790=TJclMixerLineControl.SetUniformValue@Cardinal +ID13791=TJclMixerLineControl.SetValue@TDynCardinalArray +ID13792=TJclMixerLineControl.UniformValue +ID13793=TJclMixerLineControl.Value +ID13794=TJclMixerLineControl.ValueString +ID13795=TJclMixerSource +ID13796=TJclMixerSource.Create@TJclMixerDestination@Cardinal +ID13797=TJclMixerSource.FMixerDestination +ID13798=TJclMixerSource.MixerDestination +ID13799=TJclModuleArray ID138=!!OVERLOADED_VTableKinds_TJclClrVTableFixupRecord -ID1380=ECYRIX_CX8 -ID13800=WideMultiSzLength@PWideMultiSz -ID13801=WideMultiSzToWideStrings@TWideStrings@PWideMultiSz -ID13802=WideNull -ID13803=WideParagraphSeparator -ID13804=WidePos@WideString@WideString -ID13805=WideReverse@Widestring -ID13806=WideReverseInPlace@WideString -ID13807=WideSpace -ID13808=WideStartsStr@WideString@WideString -ID13809=WideStartsText@WideString@WideString -ID1381=ECYRIX_DE -ID13810=WideStringsToWideMultiSz@PWideMultiSz@TWideStrings -ID13811=WideTabulator -ID13812=WideTitleCase@WideChar -ID13813=WideTitleCase@WideString -ID13814=WideUpperCase@WideString -ID13815=WideVerticalTab -ID13816=WinColor@TColor32 -ID13817=WinColorToOpenGLColor@TColor@Float@Float@Float -ID13818=Windows.ComponentObjectModel -ID13819=Windows.LANManager -ID1382=ECYRIX_EMMX -ID13820=Windows.Security -ID13821=Windows.ServiceControl -ID13822=Windows.Shell -ID13823=Windows.Win32API -ID13824=Windows_Specific -ID13825=WinExec32@string@Integer -ID13826=WinExec32AndRedirectOutput@string@string@Boolean -ID13827=WinExec32AndWait@string@Integer -ID13828=WordMask -ID13829=WriteIcon@TStream@HBITMAP@HBITMAP@Boolean -ID1383=ECYRIX_FCMOV -ID13830=WriteProtectedMemory@Pointer@Pointer@Cardinal@Cardinal -ID13831=XMLAttribute_Description -ID13832=XMLAttribute_Id -ID13833=XMLAttribute_MaximumLength -ID13834=XMLAttribute_MaximumUsage -ID13835=XMLAttribute_MinimumLength -ID13836=XMLAttribute_OwnerLoopId -ID13837=XMLAttribute_ParentLoopId -ID13838=XMLAttribute_Position -ID13839=XMLAttribute_RequirementDesignator -ID1384=ECYRIX_FPU -ID13840=XMLAttribute_Section -ID13841=XMLAttribute_Type -ID13842=XMLTag_EDIFile -ID13843=XMLTag_Element -ID13844=XMLTag_FGHSegmentId -ID13845=XMLTag_FGTSegmentId -ID13846=XMLTag_FunctionalGroup -ID13847=XMLTag_ICHSegmentId -ID13848=XMLTag_ICTSegmentId -ID13849=XMLTag_InterchangeControl -ID1385=ECYRIX_ICMOV -ID13850=XMLTag_Segment -ID13851=XMLTag_TransactionSet -ID13852=XMLTag_TransactionSetLoop -ID13853=XMLTag_TSHSegmentId -ID13854=XMLTag_TSTSegmentId -ID1386=ECYRIX_MCA -ID1387=ECYRIX_MCE -ID1388=ECYRIX_MMX -ID1389=ECYRIX_MSR +ID1380=CYRIX_MSR +ID13800=TJclModuleInfo +ID13801=TJclModuleInfo.Create@PModuleInfo +ID13802=TJclModuleInfo.FNameIndex +ID13803=TJclModuleInfo.FSegmentCount +ID13804=TJclModuleInfo.FSegments +ID13805=TJclModuleInfo.GetSegment@Integer +ID13806=TJclModuleInfo.NameIndex +ID13807=TJclModuleInfo.Segment +ID13808=TJclModuleInfo.SegmentCount +ID13809=TJclModuleInfoList +ID1381=CYRIX_MTRR +ID13810=TJclModuleInfoList.AddModule@HMODULE@Boolean +ID13811=TJclModuleInfoList.BuildModulesList +ID13812=TJclModuleInfoList.Create@Boolean@Boolean +ID13813=TJclModuleInfoList.CreateItemForAddress@Pointer@Boolean +ID13814=TJclModuleInfoList.DynamicBuild +ID13815=TJclModuleInfoList.FDynamicBuild +ID13816=TJclModuleInfoList.FSystemModulesOnly +ID13817=TJclModuleInfoList.GetItems@Integer +ID13818=TJclModuleInfoList.GetModuleFromAddress@Pointer +ID13819=TJclModuleInfoList.IsSystemModuleAddress@Pointer +ID1382=CYRIX_PAE +ID13820=TJclModuleInfoList.IsValidModuleAddress@Pointer +ID13821=TJclModuleInfoList.Items +ID13822=TJclModuleInfoList.ModuleFromAddress +ID13823=TJclMsdosSys +ID13824=TJclMSISummaryInformation +ID13825=TJclMSISummaryInformation.GetFMTID +ID13826=TJclMSISummaryInformation.Restrict +ID13827=TJclMSISummaryInformation.Source +ID13828=TJclMSISummaryInformation.Version +ID13829=TJclMslzDecompressArchive +ID1383=CYRIX_PGE +ID13830=TJclMubDecompressArchive +ID13831=TJclMultiplexStream +ID13832=TJclMultiplexStream.Add@TStream +ID13833=TJclMultiplexStream.Clear +ID13834=TJclMultiplexStream.Count +ID13835=TJclMultiplexStream.Create +ID13836=TJclMultiplexStream.Delete@Integer +ID13837=TJclMultiplexStream.Destroy +ID13838=TJclMultiplexStream.FReadStreamIndex +ID13839=TJclMultiplexStream.FStreams +ID1384=CYRIX_PSE +ID13840=TJclMultiplexStream.GetCount +ID13841=TJclMultiplexStream.GetReadStream +ID13842=TJclMultiplexStream.GetStream@Integer +ID13843=TJclMultiplexStream.Read@@Longint +ID13844=TJclMultiplexStream.ReadStream +ID13845=TJclMultiplexStream.ReadStreamIndex +ID13846=TJclMultiplexStream.Remove@TStream +ID13847=TJclMultiplexStream.Seek@Int64@TSeekOrigin +ID13848=TJclMultiplexStream.SetReadStream@TStream +ID13849=TJclMultiplexStream.SetReadStreamIndex@Integer +ID1385=CYRIX_TSC +ID13850=TJclMultiplexStream.SetSize@Int64 +ID13851=TJclMultiplexStream.SetStream@Integer@TStream +ID13852=TJclMultiplexStream.Streams +ID13853=TJclMultiplexStream.Write@@Longint +ID13854=TJclMultiSafeGuard +ID13855=TJclMusicSummaryInformation +ID13856=TJclMusicSummaryInformation.GetFMTID +ID13857=TJclNotifyEventBroadcast +ID13858=TJclNsisDecompressArchive +ID13859=TJclNtfsDecompressArchive +ID1386=CYRIX_VME +ID13860=TJclNullStream +ID13861=TJclNullStream.FPosition +ID13862=TJclNullStream.FSize +ID13863=TJclNullStream.Read@@Longint +ID13864=TJclNullStream.Seek@Int64@TSeekOrigin +ID13865=TJclNullStream.SetSize@Int64 +ID13866=TJclNullStream.Write@@Longint +ID13867=TJclObjMultiSafeGuard +ID13868=TJclObjNameSymbolInfo +ID13869=TJclObjNameSymbolInfo.Create@PSymbolInfo +ID1387=DATE_LTRREADING +ID13870=TJclObjNameSymbolInfo.FNameIndex +ID13871=TJclObjNameSymbolInfo.FSignature +ID13872=TJclObjNameSymbolInfo.NameIndex +ID13873=TJclObjNameSymbolInfo.Signature +ID13874=TJclObjSafeGuard +ID13875=TJclOnSimpleProgress +ID13876=TJclOnSimpleXMLParsed +ID13877=TJclOnValueParsed +ID13878=TJclOpCode +ID13879=TJclOpCode.opAdd +ID1388=DATE_RTLREADING +ID13880=TJclOpCode.opAdd_ovf +ID13881=TJclOpCode.opAdd_ovf_un +ID13882=TJclOpCode.opAnd +ID13883=TJclOpCode.opArgLlist +ID13884=TJclOpCode.opBeq +ID13885=TJclOpCode.opBeq_s +ID13886=TJclOpCode.opBge +ID13887=TJclOpCode.opBge_s +ID13888=TJclOpCode.opBge_un +ID13889=TJclOpCode.opBge_un_s +ID1389=DateandTime +ID13890=TJclOpCode.opBgt +ID13891=TJclOpCode.opBgt_s +ID13892=TJclOpCode.opBgt_un +ID13893=TJclOpCode.opBgt_un_s +ID13894=TJclOpCode.opBle +ID13895=TJclOpCode.opBle_s +ID13896=TJclOpCode.opBle_un +ID13897=TJclOpCode.opBle_un_s +ID13898=TJclOpCode.opBlt +ID13899=TJclOpCode.opBlt_s ID139=!!OVERLOADED_Write_TJclScreenBuffer -ID1390=ECYRIX_MTRR -ID1391=ECYRIX_PAE -ID1392=ECYRIX_PGE -ID1393=ECYRIX_PSE -ID1394=ECYRIX_SEP -ID1395=ECYRIX_TSC -ID1396=ECYRIX_VME -ID1397=EDI -ID1398=EDIDataType_Binary -ID1399=EDIDataType_Date +ID1390=DateCurrentTimeZoneClocksChangeToDaylightSavings +ID13900=TJclOpCode.opBlt_un +ID13901=TJclOpCode.opBlt_un_s +ID13902=TJclOpCode.opBne_un +ID13903=TJclOpCode.opBne_un_s +ID13904=TJclOpCode.opBox +ID13905=TJclOpCode.opBr +ID13906=TJclOpCode.opBr_s +ID13907=TJclOpCode.opBreak +ID13908=TJclOpCode.opBrFalse +ID13909=TJclOpCode.opBrFalse_s +ID1391=DateCurrentTimeZoneClocksChangeToStandard +ID13910=TJclOpCode.opBrTrue +ID13911=TJclOpCode.opBrTrue_s +ID13912=TJclOpCode.opCall +ID13913=TJclOpCode.opCalli +ID13914=TJclOpCode.opCallVirt +ID13915=TJclOpCode.opCastClass +ID13916=TJclOpCode.opCeq +ID13917=TJclOpCode.opCgt +ID13918=TJclOpCode.opCgt_un +ID13919=TJclOpCode.opCkFinite +ID1392=DateTimeToSystemTime@TDateTime@TSystemTime +ID13920=TJclOpCode.opClt +ID13921=TJclOpCode.opClt_un +ID13922=TJclOpCode.opConv_i +ID13923=TJclOpCode.opConv_i1 +ID13924=TJclOpCode.opConv_i2 +ID13925=TJclOpCode.opConv_i4 +ID13926=TJclOpCode.opConv_i8 +ID13927=TJclOpCode.opConv_ovf_i +ID13928=TJclOpCode.opConv_ovf_i_un +ID13929=TJclOpCode.opConv_ovf_i1 +ID1393=DayOfTheYear@TDateTime@Integer +ID13930=TJclOpCode.opConv_ovf_i1_un +ID13931=TJclOpCode.opConv_ovf_i2 +ID13932=TJclOpCode.opConv_ovf_i2_un +ID13933=TJclOpCode.opConv_ovf_i4 +ID13934=TJclOpCode.opConv_ovf_i4_un +ID13935=TJclOpCode.opConv_ovf_i8 +ID13936=TJclOpCode.opConv_ovf_i8_un +ID13937=TJclOpCode.opConv_ovf_u +ID13938=TJclOpCode.opConv_ovf_u_un +ID13939=TJclOpCode.opConv_ovf_u1 +ID1394=DCC32ExeName +ID13940=TJclOpCode.opConv_ovf_u1_un +ID13941=TJclOpCode.opConv_ovf_u2 +ID13942=TJclOpCode.opConv_ovf_u2_un +ID13943=TJclOpCode.opConv_ovf_u4 +ID13944=TJclOpCode.opConv_ovf_u4_un +ID13945=TJclOpCode.opConv_ovf_u8 +ID13946=TJclOpCode.opConv_ovf_u8_un +ID13947=TJclOpCode.opConv_r_un +ID13948=TJclOpCode.opConv_r4 +ID13949=TJclOpCode.opConv_r8 +ID1395=DCCILExeName +ID13950=TJclOpCode.opConv_u +ID13951=TJclOpCode.opConv_u1 +ID13952=TJclOpCode.opConv_u2 +ID13953=TJclOpCode.opConv_u4 +ID13954=TJclOpCode.opConv_u8 +ID13955=TJclOpCode.opCpBlk +ID13956=TJclOpCode.opCpObj +ID13957=TJclOpCode.opDiv +ID13958=TJclOpCode.opDiv_un +ID13959=TJclOpCode.opDup +ID1396=DE_FLAG +ID13960=TJclOpCode.opEndFilter +ID13961=TJclOpCode.opEndFinally +ID13962=TJclOpCode.opInitBlk +ID13963=TJclOpCode.opInitObj +ID13964=TJclOpCode.opIsInst +ID13965=TJclOpCode.opJmp +ID13966=TJclOpCode.opLdArg +ID13967=TJclOpCode.opLdArg_0 +ID13968=TJclOpCode.opLdArg_1 +ID13969=TJclOpCode.opLdArg_2 +ID1397=Debug_EDIDataObjectListCreated +ID13970=TJclOpCode.opLdArg_3 +ID13971=TJclOpCode.opldArg_s +ID13972=TJclOpCode.opLdArga +ID13973=TJclOpCode.opLdArga_s +ID13974=TJclOpCode.opLdc_i4 +ID13975=TJclOpCode.opLdc_I4_0 +ID13976=TJclOpCode.opLdc_I4_1 +ID13977=TJclOpCode.opLdc_I4_2 +ID13978=TJclOpCode.opLdc_I4_3 +ID13979=TJclOpCode.opLdc_I4_4 +ID1398=Debug_EDIDataObjectListDestroyed +ID13980=TJclOpCode.opLdc_I4_5 +ID13981=TJclOpCode.opLdc_I4_6 +ID13982=TJclOpCode.opLdc_I4_7 +ID13983=TJclOpCode.opLdc_I4_8 +ID13984=TJclOpCode.opLdc_I4_M1 +ID13985=TJclOpCode.opLdc_I4_s +ID13986=TJclOpCode.opLdc_i8 +ID13987=TJclOpCode.opLdc_r4 +ID13988=TJclOpCode.opLdc_r8 +ID13989=TJclOpCode.opLdElem_i +ID1399=Debug_EDIDataObjectListItemsCreated +ID13990=TJclOpCode.opLdElem_i1 +ID13991=TJclOpCode.opLdElem_i2 +ID13992=TJclOpCode.opLdElem_i4 +ID13993=TJclOpCode.opLdElem_i8 +ID13994=TJclOpCode.opLdElem_r4 +ID13995=TJclOpCode.opLdElem_r8 +ID13996=TJclOpCode.opLdElem_ref +ID13997=TJclOpCode.opLdElem_u1 +ID13998=TJclOpCode.opLdElem_u2 +ID13999=TJclOpCode.opLdElem_u4 ID14=!!OVERLOADED_CompileDelphiPackage_TJclBorRADToolInstallation ID140=!!OVERLOADED_Write_TJclSimpleLog -ID1400=EDIDataType_Decimal -ID1401=EDIDataType_Identifier -ID1402=EDIDataType_Numeric -ID1403=EDIDataType_String -ID1404=EDIDataType_Time -ID1405=EDISEFUserAttributeAmpersand -ID1406=EDISEFUserAttributeAmpersandDesc -ID1407=EDISEFUserAttributeDollarSign -ID1408=EDISEFUserAttributeDollarSignDesc -ID1409=EDISEFUserAttributeExclamationPoint +ID1400=Debug_EDIDataObjectListItemsDestroyed +ID14000=TJclOpCode.opLdElema +ID14001=TJclOpCode.opLdFld +ID14002=TJclOpCode.opLdFlda +ID14003=TJclOpCode.opLdFtn +ID14004=TJclOpCode.opLdInd_i +ID14005=TJclOpCode.opLdInd_i1 +ID14006=TJclOpCode.opLdInd_i2 +ID14007=TJclOpCode.opLdInd_i4 +ID14008=TJclOpCode.opLdInd_i8 +ID14009=TJclOpCode.opLdInd_r4 +ID1401=Debug_EDIDataObjectsCreated +ID14010=TJclOpCode.opLdInd_r8 +ID14011=TJclOpCode.opLdInd_ref +ID14012=TJclOpCode.opLdInd_u1 +ID14013=TJclOpCode.opLdInd_u2 +ID14014=TJclOpCode.opLdInd_u4 +ID14015=TJclOpCode.opLdLen +ID14016=TJclOpCode.opLdLoc +ID14017=TJclOpCode.opLdLoc_0 +ID14018=TJclOpCode.opLdLoc_1 +ID14019=TJclOpCode.opLdLoc_2 +ID1402=Debug_EDIDataObjectsDestroyed +ID14020=TJclOpCode.opLdLoc_3 +ID14021=TJclOpCode.opLdLoc_s +ID14022=TJclOpCode.opLdLoca +ID14023=TJclOpCode.opLdLoca_s +ID14024=TJclOpCode.opLdNull +ID14025=TJclOpCode.opLdObj +ID14026=TJclOpCode.opLdsFld +ID14027=TJclOpCode.opLdsFlda +ID14028=TJclOpCode.opLdStr +ID14029=TJclOpCode.opLdToken +ID1403=DEBUG_NO_BINARY +ID14030=TJclOpCode.opLdVirtFtn +ID14031=TJclOpCode.opLeave +ID14032=TJclOpCode.opLeave_s +ID14033=TJclOpCode.opLocalLoc +ID14034=TJclOpCode.opMkRefAny +ID14035=TJclOpCode.opMul +ID14036=TJclOpCode.opMul_ovf +ID14037=TJclOpCode.opMul_ovf_un +ID14038=TJclOpCode.opNeg +ID14039=TJclOpCode.opNewArr +ID1404=DEBUG_NO_EXPORTS +ID14040=TJclOpCode.opNewObj +ID14041=TJclOpCode.opNop +ID14042=TJclOpCode.opNot +ID14043=TJclOpCode.opOr +ID14044=TJclOpCode.opPop +ID14045=TJclOpCode.opPrefix1 +ID14046=TJclOpCode.opPrefix2 +ID14047=TJclOpCode.opPrefix3 +ID14048=TJclOpCode.opPrefix4 +ID14049=TJclOpCode.opPrefix5 +ID1405=DEBUG_NO_MAP +ID14050=TJclOpCode.opPrefix6 +ID14051=TJclOpCode.opPrefix7 +ID14052=TJclOpCode.opPrefixRef +ID14053=TJclOpCode.opRefAnyType +ID14054=TJclOpCode.opRefAnyVal +ID14055=TJclOpCode.opRem +ID14056=TJclOpCode.opRem_un +ID14057=TJclOpCode.opRet +ID14058=TJclOpCode.opRethrow +ID14059=TJclOpCode.opShl +ID1406=DEBUG_NO_SYMBOLS +ID14060=TJclOpCode.opShr +ID14061=TJclOpCode.opShr_un +ID14062=TJclOpCode.opSizeOf +ID14063=TJclOpCode.opStArg +ID14064=TJclOpCode.opStArg_s +ID14065=TJclOpCode.opStElem_i +ID14066=TJclOpCode.opStElem_i1 +ID14067=TJclOpCode.opStElem_i2 +ID14068=TJclOpCode.opStElem_i4 +ID14069=TJclOpCode.opStElem_i8 +ID1407=DEBUG_NO_TD32 +ID14070=TJclOpCode.opStElem_r4 +ID14071=TJclOpCode.opStElem_r8 +ID14072=TJclOpCode.opStElem_ref +ID14073=TJclOpCode.opStFld +ID14074=TJclOpCode.opStInd_i +ID14075=TJclOpCode.opStInd_i1 +ID14076=TJclOpCode.opStInd_i2 +ID14077=TJclOpCode.opStInd_i4 +ID14078=TJclOpCode.opStInd_i8 +ID14079=TJclOpCode.opStInd_r4 +ID1408=Debugging +ID14080=TJclOpCode.opStInd_r8 +ID14081=TJclOpCode.opStInd_ref +ID14082=TJclOpCode.opStLoc +ID14083=TJclOpCode.opStLoc_0 +ID14084=TJclOpCode.opStLoc_1 +ID14085=TJclOpCode.opStLoc_2 +ID14086=TJclOpCode.opStLoc_3 +ID14087=TJclOpCode.opStLoc_s +ID14088=TJclOpCode.opStObj +ID14089=TJclOpCode.opStsFld +ID1409=DecLimit@Cardinal@Cardinal@Cardinal +ID14090=TJclOpCode.opSub +ID14091=TJclOpCode.opSub_ovf +ID14092=TJclOpCode.opSub_ovf_un +ID14093=TJclOpCode.opSwitch +ID14094=TJclOpCode.opTail +ID14095=TJclOpCode.opThrow +ID14096=TJclOpCode.optUnused56 +ID14097=TJclOpCode.opUnaligned +ID14098=TJclOpCode.opUnbox +ID14099=TJclOpCode.opUnused1 ID141=!!OVERLOADED_WriteTo_TJclByteMap -ID1410=EDISEFUserAttributeExclamationPointDesc -ID1411=EDISEFUserAttributeHyphen -ID1412=EDISEFUserAttributeHyphenDesc -ID1413=EDISEFUserAttributePeriod -ID1414=EDISEFUserAttributePeriodDesc -ID1415=EDISEFUserAttributeSet -ID1416=EDIXMLError001 -ID1417=EDIXMLError002 -ID1418=EDIXMLError003 -ID1419=EDIXMLError004 +ID1410=DecLimit@Int64@Int64@Int64 +ID14100=TJclOpCode.opUnused10 +ID14101=TJclOpCode.opUnused11 +ID14102=TJclOpCode.opUnused12 +ID14103=TJclOpCode.opUnused13 +ID14104=TJclOpCode.opUnused14 +ID14105=TJclOpCode.opUnused15 +ID14106=TJclOpCode.opUnused16 +ID14107=TJclOpCode.opUnused17 +ID14108=TJclOpCode.opUnused18 +ID14109=TJclOpCode.opUnused19 +ID1411=DecLimit@Integer@Integer@Integer +ID14110=TJclOpCode.opUnused2 +ID14111=TJclOpCode.opUnused20 +ID14112=TJclOpCode.opUnused21 +ID14113=TJclOpCode.opUnused22 +ID14114=TJclOpCode.opUnused23 +ID14115=TJclOpCode.opUnused24 +ID14116=TJclOpCode.opUnused25 +ID14117=TJclOpCode.opUnused26 +ID14118=TJclOpCode.opUnused27 +ID14119=TJclOpCode.opUnused28 +ID1412=DecLimit@Shortint@Shortint@Shortint +ID14120=TJclOpCode.opUnused29 +ID14121=TJclOpCode.opUnused3 +ID14122=TJclOpCode.opUnused30 +ID14123=TJclOpCode.opUnused31 +ID14124=TJclOpCode.opUnused32 +ID14125=TJclOpCode.opUnused33 +ID14126=TJclOpCode.opUnused34 +ID14127=TJclOpCode.opUnused35 +ID14128=TJclOpCode.opUnused36 +ID14129=TJclOpCode.opUnused37 +ID1413=DecLimit@Smallint@Smallint@Smallint +ID14130=TJclOpCode.opUnused38 +ID14131=TJclOpCode.opUnused39 +ID14132=TJclOpCode.opUnused4 +ID14133=TJclOpCode.opUnused40 +ID14134=TJclOpCode.opUnused41 +ID14135=TJclOpCode.opUnused42 +ID14136=TJclOpCode.opUnused43 +ID14137=TJclOpCode.opUnused44 +ID14138=TJclOpCode.opUnused45 +ID14139=TJclOpCode.opUnused46 +ID1414=DecLimit@Word@Word@Word +ID14140=TJclOpCode.opUnused47 +ID14141=TJclOpCode.opUnused48 +ID14142=TJclOpCode.opUnused49 +ID14143=TJclOpCode.opUnused5 +ID14144=TJclOpCode.opUnused50 +ID14145=TJclOpCode.opUnused51 +ID14146=TJclOpCode.opUnused52 +ID14147=TJclOpCode.opUnused53 +ID14148=TJclOpCode.opUnused54 +ID14149=TJclOpCode.opUnused55 +ID1415=DecLimitClamp@Cardinal@Cardinal@Cardinal +ID14150=TJclOpCode.opUnused57 +ID14151=TJclOpCode.opUnused58 +ID14152=TJclOpCode.opUnused59 +ID14153=TJclOpCode.opUnused6 +ID14154=TJclOpCode.opUnused60 +ID14155=TJclOpCode.opUnused61 +ID14156=TJclOpCode.opUnused62 +ID14157=TJclOpCode.opUnused63 +ID14158=TJclOpCode.opUnused64 +ID14159=TJclOpCode.opUnused65 +ID1416=DecLimitClamp@Int64@Int64@Int64 +ID14160=TJclOpCode.opUnused66 +ID14161=TJclOpCode.opUnused67 +ID14162=TJclOpCode.opUnused68 +ID14163=TJclOpCode.opUnused69 +ID14164=TJclOpCode.opUnused7 +ID14165=TJclOpCode.opUnused70 +ID14166=TJclOpCode.opUnused8 +ID14167=TJclOpCode.opUnused9 +ID14168=TJclOpCode.opVolatile +ID14169=TJclOpCode.opXor +ID1417=DecLimitClamp@Integer@Integer@Integer +ID14170=TJclOpenDialogFavoritesHook +ID14171=TJclOpenDialogHook +ID14172=TJclOpenDialogHookClass +ID14173=TJclOrdinalRangeTypeInfo +ID14174=TJclOrdinalTypeInfo +ID14175=TJclOutOfPlaceUpdateArchive +ID14176=TJclPeBorForm +ID14177=TJclPeBorForm.ConvertFormToText@TStream +ID14178=TJclPeBorForm.ConvertFormToText@TStrings +ID14179=TJclPeBorForm.Create@TJclPeResourceItem@TFilerFlags@Integer@string@string +ID1418=DecLimitClamp@Shortint@Shortint@Shortint +ID14180=TJclPeBorForm.DisplayName +ID14181=TJclPeBorForm.FFormClassName +ID14182=TJclPeBorForm.FFormFlags +ID14183=TJclPeBorForm.FFormObjectName +ID14184=TJclPeBorForm.FFormPosition +ID14185=TJclPeBorForm.FormClassName +ID14186=TJclPeBorForm.FormFlags +ID14187=TJclPeBorForm.FormObjectName +ID14188=TJclPeBorForm.FormPosition +ID14189=TJclPeBorForm.FResItem +ID1419=DecLimitClamp@Smallint@Smallint@Smallint +ID14190=TJclPeBorForm.GetDisplayName +ID14191=TJclPeBorForm.ResItem +ID14192=TJclPeBorImagesCache +ID14193=TJclPeBorImagesCache.GetImages@TFileName +ID14194=TJclPeBorImagesCache.GetPeImageClass +ID14195=TJclPeBorImagesCache.Images +ID14196=TJclPeBorTD32Image +ID14197=TJclPeBorTD32Image.AfterOpen +ID14198=TJclPeBorTD32Image.CheckDebugData +ID14199=TJclPeBorTD32Image.Clear ID142=!!RECORDS -ID1420=EDIXMLError005 -ID1421=EDIXMLError006 -ID1422=EDIXMLError007 -ID1423=EDIXMLError008 -ID1424=EDIXMLError009 -ID1425=EDIXMLError010 -ID1426=EDIXMLError011 -ID1427=EDIXMLError012 -ID1428=EDIXMLError013 -ID1429=EDIXMLError014 +ID1420=DecLimitClamp@Word@Word@Word +ID14200=TJclPeBorTD32Image.ClearDebugData +ID14201=TJclPeBorTD32Image.FIsTD32DebugPresent +ID14202=TJclPeBorTD32Image.FTD32DebugData +ID14203=TJclPeBorTD32Image.FTD32Scanner +ID14204=TJclPeBorTD32Image.IsDebugInfoInImage@TCustomMemoryStream +ID14205=TJclPeBorTD32Image.IsDebugInfoInTds@TCustomMemoryStream +ID14206=TJclPeBorTD32Image.IsTD32DebugPresent +ID14207=TJclPeBorTD32Image.TD32DebugData +ID14208=TJclPeBorTD32Image.TD32Scanner +ID14209=TJclPeCertificate +ID1421=DecodeDate@TDateTime@Integer@Word@Word +ID14210=TJclPeCertificate.Create@TWinCertificate@Pointer +ID14211=TJclPeCertificate.Data +ID14212=TJclPeCertificate.FData +ID14213=TJclPeCertificate.FHeader +ID14214=TJclPeCertificate.Header +ID14215=TJclPeCertificateList +ID14216=TJclPeCertificateList.Create@TJclPeImage +ID14217=TJclPeCertificateList.CreateList +ID14218=TJclPeCertificateList.GetItems@Integer +ID14219=TJclPeCertificateList.Items +ID1422=DecodeDate@TDateTime@Word@Word@Word +ID14220=TJclPeCLRHeader +ID14221=TJclPeCLRHeader.Create@TJclPeImage +ID14222=TJclPeCLRHeader.FHeader +ID14223=TJclPeCLRHeader.FImage +ID14224=TJclPeCLRHeader.GetHasMetadata +ID14225=TJclPeCLRHeader.GetVersionString +ID14226=TJclPeCLRHeader.HasMetadata +ID14227=TJclPeCLRHeader.Header +ID14228=TJclPeCLRHeader.Image +ID14229=TJclPeCLRHeader.ReadHeader +ID1423=DecodeHttpBasicAuthentication@AnsiString@AnsiString@AnsiString +ID14230=TJclPeCLRHeader.VersionString +ID14231=TJclPeDecompressArchive +ID14232=TJclPeImageClass +ID14233=TJclPeMetadata +ID14234=TJclPeMetadata.BlobAt@DWORD +ID14235=TJclPeMetadata.BlobCount +ID14236=TJclPeMetadata.Blobs +ID14237=TJclPeMetadata.Create@TJclPeImage +ID14238=TJclPeMetadata.Destroy +ID14239=TJclPeMetadata.DumpIL +ID1424=DecodeHttpBasicAuthentication@string@string@string +ID14240=TJclPeMetadata.FBlobStream +ID14241=TJclPeMetadata.FGuidStream +ID14242=TJclPeMetadata.FHeader +ID14243=TJclPeMetadata.FImage +ID14244=TJclPeMetadata.FindStream@string@TJclClrStream +ID14245=TJclPeMetadata.FindStream@TJclClrStreamClass@TJclClrStream +ID14246=TJclPeMetadata.Flags +ID14247=TJclPeMetadata.FStreams +ID14248=TJclPeMetadata.FStringStream +ID14249=TJclPeMetadata.FTableStream +ID1425=DefaultContainerCapacity +ID14250=TJclPeMetadata.FUserStringStream +ID14251=TJclPeMetadata.GetBlob@Integer +ID14252=TJclPeMetadata.GetBlobCount +ID14253=TJclPeMetadata.GetFlags +ID14254=TJclPeMetadata.GetGuid@Integer +ID14255=TJclPeMetadata.GetGuidCount +ID14256=TJclPeMetadata.GetStream@Integer +ID14257=TJclPeMetadata.GetStreamCount +ID14258=TJclPeMetadata.GetString@Integer +ID14259=TJclPeMetadata.GetStringCount +ID1426=DefaultSCMDesiredAccess +ID14260=TJclPeMetadata.GetTable@TJclClrTableKind +ID14261=TJclPeMetadata.GetTableCount +ID14262=TJclPeMetadata.GetToken@TJclClrToken +ID14263=TJclPeMetadata.GetVersion +ID14264=TJclPeMetadata.GetVersionString +ID14265=TJclPeMetadata.GuidCount +ID14266=TJclPeMetadata.Guids +ID14267=TJclPeMetadata.Header +ID14268=TJclPeMetadata.Image +ID14269=TJclPeMetadata.MakeToken@TJclClrTableKind@Integer +ID1427=DefaultSvcDesiredAccess +ID14270=TJclPeMetadata.StreamCount +ID14271=TJclPeMetadata.Streams +ID14272=TJclPeMetadata.StringAt@DWORD +ID14273=TJclPeMetadata.StringCount +ID14274=TJclPeMetadata.Strings +ID14275=TJclPeMetadata.TableCount +ID14276=TJclPeMetadata.Tables +ID14277=TJclPeMetadata.TokenCode@TJclClrToken +ID14278=TJclPeMetadata.TokenExists@TJclClrToken +ID14279=TJclPeMetadata.TokenIndex@TJclClrToken +ID1428=DegPerArcMinute +ID14280=TJclPeMetadata.Tokens +ID14281=TJclPeMetadata.TokenTable@TJclClrToken +ID14282=TJclPeMetadata.UserGetString@Integer +ID14283=TJclPeMetadata.UserGetStringCount +ID14284=TJclPeMetadata.UserStringAt@DWORD +ID14285=TJclPeMetadata.UserStringCount +ID14286=TJclPeMetadata.UserStrings +ID14287=TJclPeMetadata.Version +ID14288=TJclPeMetadata.VersionString +ID14289=TJclPeTarget +ID1429=DegPerArcSecond +ID14290=TJclPeTarget.taUnknown +ID14291=TJclPeTarget.taWin32 +ID14292=TJclPeTarget.taWin64 +ID14293=TJclPostOrderAnsiStrBinaryTreeIterator +ID14294=TJclPostOrderAnsiStrTreeIterator +ID14295=TJclPostOrderBinaryTreeIterator +ID14296=TJclPostOrderCardinalBinaryTreeIterator +ID14297=TJclPostOrderCardinalTreeIterator +ID14298=TJclPostOrderDoubleBinaryTreeIterator +ID14299=TJclPostOrderDoubleTreeIterator ID143=!!SYMREF -ID1430=EDIXMLError015 -ID1431=EDIXMLError016 -ID1432=EDIXMLError017 -ID1433=EDIXMLError018 -ID1434=EDIXMLError019 -ID1435=EDIXMLError020 -ID1436=EDIXMLError021 -ID1437=EDIXMLError022 -ID1438=EDIXMLError023 -ID1439=EDIXMLError024 +ID1430=DegPerCycle +ID14300=TJclPostOrderExtendedBinaryTreeIterator +ID14301=TJclPostOrderExtendedTreeIterator +ID14302=TJclPostOrderFloatBinaryTreeIterator +ID14303=TJclPostOrderFloatTreeIterator +ID14304=TJclPostOrderInt64BinaryTreeIterator +ID14305=TJclPostOrderInt64TreeIterator +ID14306=TJclPostOrderIntegerBinaryTreeIterator +ID14307=TJclPostOrderIntegerTreeIterator +ID14308=TJclPostOrderIntfBinaryTreeIterator +ID14309=TJclPostOrderIntfTreeIterator +ID1431=DegPerGrad +ID14310=TJclPostOrderPtrBinaryTreeIterator +ID14311=TJclPostOrderPtrTreeIterator +ID14312=TJclPostOrderSingleBinaryTreeIterator +ID14313=TJclPostOrderSingleTreeIterator +ID14314=TJclPostOrderStrBinaryTreeIterator +ID14315=TJclPostOrderStrTreeIterator +ID14316=TJclPostOrderTreeIterator +ID14317=TJclPostOrderUnicodeStrBinaryTreeIterator +ID14318=TJclPostOrderUnicodeStrTreeIterator +ID14319=TJclPostOrderWideStrBinaryTreeIterator +ID1432=DegPerRad +ID14320=TJclPostOrderWideStrTreeIterator +ID14321=TJclPpmdDecompressArchive +ID14322=TJclPreOrderAnsiStrBinaryTreeIterator +ID14323=TJclPreOrderAnsiStrTreeIterator +ID14324=TJclPreOrderBinaryTreeIterator +ID14325=TJclPreOrderCardinalBinaryTreeIterator +ID14326=TJclPreOrderCardinalTreeIterator +ID14327=TJclPreOrderDoubleBinaryTreeIterator +ID14328=TJclPreOrderDoubleTreeIterator +ID14329=TJclPreOrderExtendedBinaryTreeIterator +ID1433=DegToGrad@Extended +ID14330=TJclPreOrderExtendedTreeIterator +ID14331=TJclPreOrderFloatBinaryTreeIterator +ID14332=TJclPreOrderFloatTreeIterator +ID14333=TJclPreOrderInt64BinaryTreeIterator +ID14334=TJclPreOrderInt64TreeIterator +ID14335=TJclPreOrderIntegerBinaryTreeIterator +ID14336=TJclPreOrderIntegerTreeIterator +ID14337=TJclPreOrderIntfBinaryTreeIterator +ID14338=TJclPreOrderIntfTreeIterator +ID14339=TJclPreOrderPtrBinaryTreeIterator +ID1434=DegToGrad@Float +ID14340=TJclPreOrderPtrTreeIterator +ID14341=TJclPreOrderSingleBinaryTreeIterator +ID14342=TJclPreOrderSingleTreeIterator +ID14343=TJclPreOrderStrBinaryTreeIterator +ID14344=TJclPreOrderStrTreeIterator +ID14345=TJclPreOrderTreeIterator +ID14346=TJclPreOrderUnicodeStrBinaryTreeIterator +ID14347=TJclPreOrderUnicodeStrTreeIterator +ID14348=TJclPreOrderWideStrBinaryTreeIterator +ID14349=TJclPreOrderWideStrTreeIterator +ID1435=DegToGrad@Single +ID14350=TJclPrintSet +ID14351=TJclPrintSet.BinIndex +ID14352=TJclPrintSet.CheckPrinter +ID14353=TJclPrintSet.Color +ID14354=TJclPrintSet.Copies +ID14355=TJclPrintSet.CpiToDot@Double@Double +ID14356=TJclPrintSet.Create +ID14357=TJclPrintSet.CustomPageSetup@Double@Double +ID14358=TJclPrintSet.DefaultPaperName@Word +ID14359=TJclPrintSet.DefaultSource +ID1436=DegToRad@Extended +ID14360=TJclPrintSet.Destroy +ID14361=TJclPrintSet.DpiX +ID14362=TJclPrintSet.DpiY +ID14363=TJclPrintSet.Duplex +ID14364=TJclPrintSet.FBinArray +ID14365=TJclPrintSet.FDevice +ID14366=TJclPrintSet.FDeviceMode +ID14367=TJclPrintSet.FDpiX +ID14368=TJclPrintSet.FDriver +ID14369=TJclPrintSet.FHandle +ID1437=DegToRad@Float +ID14370=TJclPrintSet.FiDpiY +ID14371=TJclPrintSet.FNumBins +ID14372=TJclPrintSet.FNumPapers +ID14373=TJclPrintSet.FPaperArray +ID14374=TJclPrintSet.FPort +ID14375=TJclPrintSet.FPrinter +ID14376=TJclPrintSet.GetBin +ID14377=TJclPrintSet.GetBinIndex +ID14378=TJclPrintSet.GetBinSourceList +ID14379=TJclPrintSet.GetBinSourceList@TStrings +ID1438=DegToRad@Single +ID14380=TJclPrintSet.GetColor +ID14381=TJclPrintSet.GetCopies +ID14382=TJclPrintSet.GetDuplex +ID14383=TJclPrintSet.GetOrientation +ID14384=TJclPrintSet.GetPaperIndex +ID14385=TJclPrintSet.GetPaperLength +ID14386=TJclPrintSet.GetPaperList +ID14387=TJclPrintSet.GetPaperList@TStrings +ID14388=TJclPrintSet.GetPaperSize +ID14389=TJclPrintSet.GetPaperWidth +ID1439=DeleteCompositeElementFrom@TEDISEFDataObjectGroup@TEDISEFCompositeElement +ID14390=TJclPrintSet.GetPrinterDriver +ID14391=TJclPrintSet.GetPrinterName +ID14392=TJclPrintSet.GetPrinterPort +ID14393=TJclPrintSet.GetPrintQuality +ID14394=TJclPrintSet.GetScale +ID14395=TJclPrintSet.GetTrueTypeOption +ID14396=TJclPrintSet.GetYResolution +ID14397=TJclPrintSet.LpiToDot@Double@Double +ID14398=TJclPrintSet.Orientation +ID14399=TJclPrintSet.PaperIndex ID144=!!TYPES -ID1440=EDIXMLError025 -ID1441=EDIXMLError026 -ID1442=EDIXMLError027 -ID1443=EDIXMLError028 -ID1444=EDIXMLError029 -ID1445=EDIXMLError030 -ID1446=EDIXMLError031 -ID1447=EDIXMLError032 -ID1448=EDIXMLError033 -ID1449=EDIXMLError034 +ID1440=DeleteElementFrom@TEDISEFDataObjectGroup@TEDISEFElement +ID14400=TJclPrintSet.PaperLength +ID14401=TJclPrintSet.PaperSize +ID14402=TJclPrintSet.PaperWidth +ID14403=TJclPrintSet.PrinterDriver +ID14404=TJclPrintSet.PrinterName +ID14405=TJclPrintSet.PrinterPort +ID14406=TJclPrintSet.PrintQuality +ID14407=TJclPrintSet.ReadFromIniFile@string@string +ID14408=TJclPrintSet.ResetPrinterDialogs +ID14409=TJclPrintSet.SavePrinterAsDefault +ID1441=DeleteLoopFrom@TEDISEFDataObjectGroup@TEDISEFLoop +ID14410=TJclPrintSet.SaveToDefaults +ID14411=TJclPrintSet.SaveToIniFile@string@string +ID14412=TJclPrintSet.Scale +ID14413=TJclPrintSet.SetBin@Integer +ID14414=TJclPrintSet.SetBinArray +ID14415=TJclPrintSet.SetBinFromList@Byte +ID14416=TJclPrintSet.SetColor@Integer +ID14417=TJclPrintSet.SetCopies@Integer +ID14418=TJclPrintSet.SetDeviceMode@Boolean +ID14419=TJclPrintSet.SetDuplex@Integer +ID1442=DeleteRepeatingPatternFrom@TEDISEFDataObjectGroup@TEDISEFRepeatingPattern +ID14420=TJclPrintSet.SetOrientation@Integer +ID14421=TJclPrintSet.SetPaperArray +ID14422=TJclPrintSet.SetPaperFromList@Byte +ID14423=TJclPrintSet.SetPaperLength@Integer +ID14424=TJclPrintSet.SetPaperSize@Integer +ID14425=TJclPrintSet.SetPaperWidth@Integer +ID14426=TJclPrintSet.SetPort@string +ID14427=TJclPrintSet.SetPrintQuality@Integer +ID14428=TJclPrintSet.SetScale@Integer +ID14429=TJclPrintSet.SetTrueTypeOption@Integer +ID1443=DeleteSegmentFrom@TEDISEFDataObjectGroup@TEDISEFSegment +ID14430=TJclPrintSet.SetYResolution@Integer +ID14431=TJclPrintSet.TextOutCm@Double@Double@string +ID14432=TJclPrintSet.TextOutCpiLpi@Double@Double@Double@Double@string +ID14433=TJclPrintSet.TextOutInch@Double@Double@string +ID14434=TJclPrintSet.TrueTypeOption +ID14435=TJclPrintSet.UpdateDeviceMode +ID14436=TJclPrintSet.XCmToDot@Double +ID14437=TJclPrintSet.XInchToDot@Double +ID14438=TJclPrintSet.YCmToDot@Double +ID14439=TJclPrintSet.YInchToDot@Double +ID1444=DeleteSubElementFrom@TEDISEFDataObjectGroup@TEDISEFSubElement +ID14440=TJclPrintSet.YResolution +ID14441=TJclProcedureEvent +ID14442=TJclProcedureEventBroadcast +ID14443=TJclProcSymbolInfo +ID14444=TJclProcSymbolInfo.Create@PSymbolInfo +ID14445=TJclProcSymbolInfo.FNameIndex +ID14446=TJclProcSymbolInfo.FOffset +ID14447=TJclProcSymbolInfo.FSize +ID14448=TJclProcSymbolInfo.NameIndex +ID14449=TJclProcSymbolInfo.Offset +ID1445=DeleteTableFrom@TEDISEFDataObjectGroup@TEDISEFTable +ID14450=TJclProcSymbolInfo.Size +ID14451=TJclPropInfo +ID14452=TJclPtrAbstractContainer +ID14453=TJclPtrArrayIterator +ID14454=TJclPtrArrayList +ID14455=TJclPtrArraySet +ID14456=TJclPtrBinaryNode +ID14457=TJclPtrBinaryTree +ID14458=TJclPtrBinaryTreeIterator +ID14459=TJclPtrBucket +ID1446=DeleteVolumeMountPoint@LPCSTR +ID14460=TJclPtrHashEntry +ID14461=TJclPtrHashMap +ID14462=TJclPtrHashSet +ID14463=TJclPtrIntfBucket +ID14464=TJclPtrIntfHashEntry +ID14465=TJclPtrIntfHashMap +ID14466=TJclPtrIntfSortedEntry +ID14467=TJclPtrIntfSortedMap +ID14468=TJclPtrLinkedList +ID14469=TJclPtrLinkedListItem +ID1447=DELPHI +ID14470=TJclPtrLinkedListIterator +ID14471=TJclPtrPtrBucket +ID14472=TJclPtrPtrHashEntry +ID14473=TJclPtrPtrHashMap +ID14474=TJclPtrPtrSortedEntry +ID14475=TJclPtrPtrSortedMap +ID14476=TJclPtrQueue +ID14477=TJclPtrSortedEntry +ID14478=TJclPtrSortedMap +ID14479=TJclPtrStack +ID1448=DelphiHKEY +ID14480=TJclPtrTree +ID14481=TJclPtrTreeIterator +ID14482=TJclPtrTreeNode +ID14483=TJclPtrVector +ID14484=TJclPtrVectorIterator +ID14485=TJclPublicSymbolInfo +ID14486=TJclQuerySummaryInformation +ID14487=TJclQuerySummaryInformation.GetFMTID +ID14488=TJclRandomStream +ID14489=TJclRandomStream.GetRandSeed +ID1449=DEREGISTERED +ID14490=TJclRandomStream.RandomData +ID14491=TJclRandomStream.Randomize +ID14492=TJclRandomStream.RandSeed +ID14493=TJclRandomStream.Read@@Longint +ID14494=TJclRandomStream.SetRandSeed@Longint +ID14495=TJclRARCompressionStream +ID14496=TJclRarDecompressArchive +ID14497=TJclRARDecompressionStream +ID14498=TJclRational +ID14499=TJclRational.Abs ID145=!!VARIABLES -ID1450=EDIXMLError035 -ID1451=EDIXMLError036 -ID1452=EDIXMLError037 -ID1453=EDIXMLError038 -ID1454=EDIXMLError039 -ID1455=EDIXMLError040 -ID1456=EDIXMLError041 -ID1457=EDIXMLError042 -ID1458=EDIXMLError043 -ID1459=EDIXMLError044 +ID1450=DesignerCLX +ID14500=TJclRational.Add@Float +ID14501=TJclRational.Add@Integer +ID14502=TJclRational.Add@TJclRational +ID14503=TJclRational.AsFloat +ID14504=TJclRational.Assign@Float +ID14505=TJclRational.Assign@Integer@Integer +ID14506=TJclRational.Assign@TJclRational +ID14507=TJclRational.AssignOne +ID14508=TJclRational.AssignZero +ID14509=TJclRational.AsString +ID1451=DesignerVCL +ID14510=TJclRational.Create +ID14511=TJclRational.Create@Float +ID14512=TJclRational.Create@Integer@Integer +ID14513=TJclRational.Denominator +ID14514=TJclRational.Divide@Float +ID14515=TJclRational.Divide@Integer +ID14516=TJclRational.Divide@TJclRational +ID14517=TJclRational.Duplicate +ID14518=TJclRational.FN +ID14519=TJclRational.FT +ID1452=DestroyEnvironmentBlock@PChar +ID14520=TJclRational.GetAsFloat +ID14521=TJclRational.GetAsString +ID14522=TJclRational.IsEqual@Float +ID14523=TJclRational.IsEqual@Integer@Integer +ID14524=TJclRational.IsEqual@TJclRational +ID14525=TJclRational.IsOne +ID14526=TJclRational.IsZero +ID14527=TJclRational.Multiply@Float +ID14528=TJclRational.Multiply@Integer +ID14529=TJclRational.Multiply@TJclRational +ID1453=DEVICE_TYPE +ID14530=TJclRational.Negate +ID14531=TJclRational.Numerator +ID14532=TJclRational.Power@Float +ID14533=TJclRational.Power@Integer +ID14534=TJclRational.Power@TJclRational +ID14535=TJclRational.Reciprocal +ID14536=TJclRational.SetAsFloat@Float +ID14537=TJclRational.SetAsString@string +ID14538=TJclRational.Sgn +ID14539=TJclRational.Simplify +ID1454=DEVLEN +ID14540=TJclRational.Sqr +ID14541=TJclRational.Sqrt +ID14542=TJclRational.Subtract@Float +ID14543=TJclRational.Subtract@Integer +ID14544=TJclRational.Subtract@TJclRational +ID14545=TJclRebaseImageInfo32 +ID14546=TJclRebaseImageInfo32.NewImageBase +ID14547=TJclRebaseImageInfo32.NewImageSize +ID14548=TJclRebaseImageInfo32.OldImageBase +ID14549=TJclRebaseImageInfo32.OldImageSize +ID1455=DialogUnitsToPixelsX@Word +ID14550=TJclRebaseImageInfo64 +ID14551=TJclRebaseImageInfo64.NewImageBase +ID14552=TJclRebaseImageInfo64.NewImageSize +ID14553=TJclRebaseImageInfo64.OldImageBase +ID14554=TJclRebaseImageInfo64.OldImageSize +ID14555=TJclReferenceMemoryStream +ID14556=TJclReferenceMemoryStream.Create@Pointer@Longint +ID14557=TJclReferenceMemoryStream.Write@@Longint +ID14558=TJclRegEx +ID14559=TJclRegExCallout +ID1456=DialogUnitsToPixelsY@Word +ID14560=TJclRegExOption +ID14561=TJclRegExOptions +ID14562=TJclRegionBitmapMode +ID14563=TJclRegionBitmapMode.rmExclude +ID14564=TJclRegionBitmapMode.rmInclude +ID14565=TJclRegionCombineOperator +ID14566=TJclRegionCombineOperator.coAnd +ID14567=TJclRegionCombineOperator.coDiff +ID14568=TJclRegionCombineOperator.coOr +ID14569=TJclRegionCombineOperator.coXor +ID1457=Diff@TRectComplex@TRectComplex +ID14570=TJclRegionKind +ID14571=TJclRegionKind.rkComplex +ID14572=TJclRegionKind.rkError +ID14573=TJclRegionKind.rkNull +ID14574=TJclRegionKind.rkSimple +ID14575=TJclRegWOW64Access +ID14576=TJclRpmDecompressArchive +ID14577=TJclSafeGuard +ID14578=TJclScheduledTask +ID14579=TJclScheduledTask.ApplicationName +ID1458=DIFFERENCE +ID14580=TJclScheduledTask.GetApplicationName +ID14581=TJclScheduledTask.GetMaxRunTime +ID14582=TJclScheduledTask.GetParameters +ID14583=TJclScheduledTask.GetPriority +ID14584=TJclScheduledTask.GetTask +ID14585=TJclScheduledTask.GetTaskFlags +ID14586=TJclScheduledTask.GetWorkingDirectory +ID14587=TJclScheduledTask.MaxRunTime +ID14588=TJclScheduledTask.Parameters +ID14589=TJclScheduledTask.Priority +ID1459=DirDelimiter +ID14590=TJclScheduledTask.SetApplicationName@WideString +ID14591=TJclScheduledTask.SetMaxRunTime@DWORD +ID14592=TJclScheduledTask.SetParameters@WideString +ID14593=TJclScheduledTask.SetPriority@DWORD +ID14594=TJclScheduledTask.SetTaskFlags@DWORD +ID14595=TJclScheduledTask.SetWorkingDirectory@WideString +ID14596=TJclScheduledTask.ShowPage@TJclScheduleTaskPropertyPages +ID14597=TJclScheduledTask.Task +ID14598=TJclScheduledTask.TaskFlags +ID14599=TJclScheduledTask.WorkingDirectory ID146=__FILE__ -ID1460=EDIXMLError045 -ID1461=EDIXMLError046 -ID1462=EDIXMLError047 -ID1463=EDIXMLError048 -ID1464=EDIXMLError049 -ID1465=EDIXMLError050 -ID1466=EDIXMLError051 -ID1467=EDIXMLError052 -ID1468=EDIXMLError053 -ID1469=EDIXMLError054 +ID1460=DirectPrint@string@string +ID14600=TJclScheduledTaskFlag +ID14601=TJclScheduledTaskFlag.tfDeleteWhenDone +ID14602=TJclScheduledTaskFlag.tfDisabled +ID14603=TJclScheduledTaskFlag.tfDontStartIfOnBatteries +ID14604=TJclScheduledTaskFlag.tfHidden +ID14605=TJclScheduledTaskFlag.tfInteractive +ID14606=TJclScheduledTaskFlag.tfKillIfGoingOnBatteries +ID14607=TJclScheduledTaskFlag.tfKillOnIdleEndl +ID14608=TJclScheduledTaskFlag.tfRestartOnIdleResume +ID14609=TJclScheduledTaskFlag.tfRunIfConnectedToInternet +ID1461=DirectPrint@string@string@string +ID14610=TJclScheduledTaskFlag.tfRunOnlyIfDocked +ID14611=TJclScheduledTaskFlag.tfRunOnlyIfLoggedOn +ID14612=TJclScheduledTaskFlag.tfStartOnlyIfIdle +ID14613=TJclScheduledTaskFlag.tfSystemRequired +ID14614=TJclScheduledTaskFlags +ID14615=TJclScheduledTaskStatus +ID14616=TJclScheduledTaskStatus.tsHasNotRun +ID14617=TJclScheduledTaskStatus.tsNotScheduled +ID14618=TJclScheduledTaskStatus.tsReady +ID14619=TJclScheduledTaskStatus.tsRunning +ID1462=DirSeparator +ID14620=TJclScheduledTaskStatus.tsUnknown +ID14621=TJclScheduledWorkItem +ID14622=TJclScheduledWorkItem.AccountName +ID14623=TJclScheduledWorkItem.Comment +ID14624=TJclScheduledWorkItem.Create@WideString@IScheduledWorkItem +ID14625=TJclScheduledWorkItem.Creator +ID14626=TJclScheduledWorkItem.DeadlineMinutes +ID14627=TJclScheduledWorkItem.Destroy +ID14628=TJclScheduledWorkItem.ErrorRetryCount +ID14629=TJclScheduledWorkItem.ErrorRetryInterval +ID1463=DisplayPropDialog@THandle@string +ID14630=TJclScheduledWorkItem.ExitCode +ID14631=TJclScheduledWorkItem.FData +ID14632=TJclScheduledWorkItem.Flags +ID14633=TJclScheduledWorkItem.FScheduledWorkItem +ID14634=TJclScheduledWorkItem.FTaskName +ID14635=TJclScheduledWorkItem.FTriggers +ID14636=TJclScheduledWorkItem.GetAccountName +ID14637=TJclScheduledWorkItem.GetComment +ID14638=TJclScheduledWorkItem.GetCreator +ID14639=TJclScheduledWorkItem.GetData +ID1464=DLLVER_PLATFORM_NT +ID14640=TJclScheduledWorkItem.GetDeadlineMinutes +ID14641=TJclScheduledWorkItem.GetErrorRetryCount +ID14642=TJclScheduledWorkItem.GetErrorRetryInterval +ID14643=TJclScheduledWorkItem.GetExitCode +ID14644=TJclScheduledWorkItem.GetFlags +ID14645=TJclScheduledWorkItem.GetIdleMinutes +ID14646=TJclScheduledWorkItem.GetMostRecentRunTime +ID14647=TJclScheduledWorkItem.GetNextRunTime +ID14648=TJclScheduledWorkItem.GetRunTimes@TDateTime@TDateTime +ID14649=TJclScheduledWorkItem.GetStatus +ID1465=DLLVER_PLATFORM_WINDOWS +ID14650=TJclScheduledWorkItem.GetTrigger@Integer +ID14651=TJclScheduledWorkItem.GetTriggerCount +ID14652=TJclScheduledWorkItem.IdleMinutes +ID14653=TJclScheduledWorkItem.MostRecentRunTime +ID14654=TJclScheduledWorkItem.NextRunTime +ID14655=TJclScheduledWorkItem.OwnerData +ID14656=TJclScheduledWorkItem.Password +ID14657=TJclScheduledWorkItem.Refresh +ID14658=TJclScheduledWorkItem.Run +ID14659=TJclScheduledWorkItem.Save +ID1466=DLLVERSIONINFO +ID14660=TJclScheduledWorkItem.ScheduledWorkItem +ID14661=TJclScheduledWorkItem.SetAccountInformation@WideString@WideString +ID14662=TJclScheduledWorkItem.SetAccountName@WideString +ID14663=TJclScheduledWorkItem.SetComment@WideString +ID14664=TJclScheduledWorkItem.SetCreator@WideString +ID14665=TJclScheduledWorkItem.SetData@TStream +ID14666=TJclScheduledWorkItem.SetErrorRetryCount@Word +ID14667=TJclScheduledWorkItem.SetErrorRetryInterval@Word +ID14668=TJclScheduledWorkItem.SetFlags@TJclScheduledTaskFlags +ID14669=TJclScheduledWorkItem.SetPassword@WideString +ID1467=DNLEN +ID14670=TJclScheduledWorkItem.Status +ID14671=TJclScheduledWorkItem.TaskName +ID14672=TJclScheduledWorkItem.Terminate +ID14673=TJclScheduledWorkItem.TriggerCount +ID14674=TJclScheduledWorkItem.Triggers +ID14675=TJclScheduleTaskPropertyPage +ID14676=TJclScheduleTaskPropertyPage.ppSchedule +ID14677=TJclScheduleTaskPropertyPage.ppSettings +ID14678=TJclScheduleTaskPropertyPage.ppTask +ID14679=TJclScheduleTaskPropertyPages +ID1468=DOFCompilerSection +ID14680=TJclScopedStream +ID14681=TJclScopedStream.Create@TStream@Int64 +ID14682=TJclScopedStream.FCurrentPos +ID14683=TJclScopedStream.FMaxSize +ID14684=TJclScopedStream.FParentStream +ID14685=TJclScopedStream.FStartPos +ID14686=TJclScopedStream.MaxSize +ID14687=TJclScopedStream.ParentStream +ID14688=TJclScopedStream.Read@@Longint +ID14689=TJclScopedStream.Seek@Int64@TSeekOrigin +ID1469=DOFConditionals +ID14690=TJclScopedStream.StartPos +ID14691=TJclScopedStream.Write@@Longint +ID14692=TJclScreenBackColor +ID14693=TJclScreenBackColor.bclBlack +ID14694=TJclScreenBackColor.bclBlue +ID14695=TJclScreenBackColor.bclCyan +ID14696=TJclScreenBackColor.bclGreen +ID14697=TJclScreenBackColor.bclMagenta +ID14698=TJclScreenBackColor.bclRed +ID14699=TJclScreenBackColor.bclWhite ID147=__FILE_OF_ADDR__ -ID1470=EDIXMLError055 -ID1471=EDIXMLError056 -ID1472=EDIXMLError057 -ID1473=EDIXMLError058 -ID1474=EDIXMLError059 -ID1475=EDIXMLError060 -ID1476=EDIXMLError061 -ID1477=EDIXMLError062 -ID1478=EINTEL_BIT_1 -ID1479=EINTEL_BIT_11 +ID1470=DOFDirectoriesSection +ID14700=TJclScreenBackColor.bclYellow +ID14701=TJclScreenBuffer +ID14702=TJclScreenBuffer.Clear +ID14703=TJclScreenBuffer.Create +ID14704=TJclScreenBuffer.Create@Smallint@Smallint +ID14705=TJclScreenBuffer.Create@THandle +ID14706=TJclScreenBuffer.Cursor +ID14707=TJclScreenBuffer.Destroy +ID14708=TJclScreenBuffer.DoResize@Smallint@Smallint +ID14709=TJclScreenBuffer.DoResize@TCoord +ID1471=DOFLinkerSection +ID14710=TJclScreenBuffer.FCharList +ID14711=TJclScreenBuffer.FCursor +ID14712=TJclScreenBuffer.FFont +ID14713=TJclScreenBuffer.FHandle +ID14714=TJclScreenBuffer.Fill@Char@IJclScreenTextAttribute +ID14715=TJclScreenBuffer.FOnAfterResize +ID14716=TJclScreenBuffer.FOnBeforeResize +ID14717=TJclScreenBuffer.Font +ID14718=TJclScreenBuffer.FWindow +ID14719=TJclScreenBuffer.GetHeight +ID1472=DOFPackageNoLinkKey +ID14720=TJclScreenBuffer.GetInfo +ID14721=TJclScreenBuffer.GetMode +ID14722=TJclScreenBuffer.GetSize +ID14723=TJclScreenBuffer.GetWidth +ID14724=TJclScreenBuffer.Handle +ID14725=TJclScreenBuffer.Height +ID14726=TJclScreenBuffer.Info +ID14727=TJclScreenBuffer.Init +ID14728=TJclScreenBuffer.Mode +ID14729=TJclScreenBuffer.OnAfterResize +ID1473=DOFPackagesKey +ID14730=TJclScreenBuffer.OnBeforeResize +ID14731=TJclScreenBuffer.Read@Integer +ID14732=TJclScreenBuffer.Read@Smallint@Smallint@Integer +ID14733=TJclScreenBuffer.Readln +ID14734=TJclScreenBuffer.Readln@Smallint@Smallint +ID14735=TJclScreenBuffer.SetHeight@Smallint +ID14736=TJclScreenBuffer.SetMode@TJclConsoleOutputModes +ID14737=TJclScreenBuffer.SetSize@TCoord +ID14738=TJclScreenBuffer.SetWidth@Smallint +ID14739=TJclScreenBuffer.Size +ID1474=DOFSearchPathName +ID14740=TJclScreenBuffer.Width +ID14741=TJclScreenBuffer.Window +ID14742=TJclScreenBuffer.Write@string@IJclScreenTextAttribute +ID14743=TJclScreenBuffer.Write@string@Smallint@Smallint@array of Word +ID14744=TJclScreenBuffer.Write@string@Smallint@Smallint@IJclScreenTextAttribute +ID14745=TJclScreenBuffer.Write@string@Smallint@Smallint@PWORD +ID14746=TJclScreenBuffer.Write@string@TJclScreenBufferTextHorizontalAlign@TJclScreenBufferTextVerticalAlign@IJclScreenTextAttribute +ID14747=TJclScreenBuffer.Writeln@string@IJclScreenTextAttribute +ID14748=TJclScreenBufferAfterResizeEvent +ID14749=TJclScreenBufferBeforeResizeEvent +ID1475=DOFUnitOutputDirKey +ID14750=TJclScreenBufferTextHorizontalAlign +ID14751=TJclScreenBufferTextHorizontalAlign.thaCenter +ID14752=TJclScreenBufferTextHorizontalAlign.thaCurrent +ID14753=TJclScreenBufferTextHorizontalAlign.thaLeft +ID14754=TJclScreenBufferTextHorizontalAlign.thaRight +ID14755=TJclScreenBufferTextVerticalAlign +ID14756=TJclScreenBufferTextVerticalAlign.tvaBottom +ID14757=TJclScreenBufferTextVerticalAlign.tvaCenter +ID14758=TJclScreenBufferTextVerticalAlign.tvaCurrent +ID14759=TJclScreenBufferTextVerticalAlign.tvaTop +ID1476=DOMAIN_ALIAS_RID_AUTHORIZATIONACCESS +ID14760=TJclScreenCharacter +ID14761=TJclScreenCharacter.Character +ID14762=TJclScreenCharacter.Create@TCharInfo +ID14763=TJclScreenCharacter.FCharInfo +ID14764=TJclScreenCharacter.GetCharacter +ID14765=TJclScreenCharacter.GetTextAttribute +ID14766=TJclScreenCharacter.Info +ID14767=TJclScreenCharacter.SetCharacter@Char +ID14768=TJclScreenCharacter.SetTextAttribute@Word +ID14769=TJclScreenCursor +ID1477=DOMAIN_ALIAS_RID_INCOMING_FOREST_TRUST_BUILDERS +ID14770=TJclScreenCursor.Create@TJclScreenBuffer +ID14771=TJclScreenCursor.FScreenBuffer +ID14772=TJclScreenCursor.GetInfo +ID14773=TJclScreenCursor.GetPosition +ID14774=TJclScreenCursor.GetSize +ID14775=TJclScreenCursor.GetVisible +ID14776=TJclScreenCursor.Info +ID14777=TJclScreenCursor.MoveBy@Smallint@Smallint +ID14778=TJclScreenCursor.MoveBy@TCoord +ID14779=TJclScreenCursor.MoveTo@Smallint@Smallint +ID1478=DOMAIN_ALIAS_RID_LOGGING_USERS +ID14780=TJclScreenCursor.MoveTo@TCoord +ID14781=TJclScreenCursor.Position +ID14782=TJclScreenCursor.ScreenBuffer +ID14783=TJclScreenCursor.SetInfo@TConsoleCursorInfo +ID14784=TJclScreenCursor.SetPosition@TCoord +ID14785=TJclScreenCursor.SetSize@TJclScreenCursorSize +ID14786=TJclScreenCursor.SetVisible@Boolean +ID14787=TJclScreenCursor.Size +ID14788=TJclScreenCursor.Visible +ID14789=TJclScreenCursorSize +ID1479=DOMAIN_ALIAS_RID_MONITORING_USERS +ID14790=TJclScreenCustomTextAttribute +ID14791=TJclScreenCustomTextAttribute.BgColor +ID14792=TJclScreenCustomTextAttribute.BgHighlight +ID14793=TJclScreenCustomTextAttribute.Clear +ID14794=TJclScreenCustomTextAttribute.Color +ID14795=TJclScreenCustomTextAttribute.Create@TJclScreenCustomTextAttribute +ID14796=TJclScreenCustomTextAttribute.GetBgColor +ID14797=TJclScreenCustomTextAttribute.GetBgHighlight +ID14798=TJclScreenCustomTextAttribute.GetColor +ID14799=TJclScreenCustomTextAttribute.GetHighlight ID148=_ACTION_HEADER -ID1480=EINTEL_BIT_12 -ID1481=EINTEL_BIT_15 -ID1482=EINTEL_BIT_16 -ID1483=EINTEL_BIT_17 -ID1484=EINTEL_BIT_18 -ID1485=EINTEL_BIT_19 -ID1486=EINTEL_BIT_2 -ID1487=EINTEL_BIT_20 -ID1488=EINTEL_BIT_21 -ID1489=EINTEL_BIT_22 +ID1480=DOMAIN_ALIAS_RID_NETWORK_CONFIGURATION_OPS +ID14800=TJclScreenCustomTextAttribute.GetStyle +ID14801=TJclScreenCustomTextAttribute.GetTextAttribute +ID14802=TJclScreenCustomTextAttribute.Highlight +ID14803=TJclScreenCustomTextAttribute.SetBgColor@TJclScreenBackColor +ID14804=TJclScreenCustomTextAttribute.SetBgHighlight@Boolean +ID14805=TJclScreenCustomTextAttribute.SetColor@TJclScreenFontColor +ID14806=TJclScreenCustomTextAttribute.SetHighlight@Boolean +ID14807=TJclScreenCustomTextAttribute.SetStyle@TJclScreenFontStyles +ID14808=TJclScreenCustomTextAttribute.SetTextAttribute@Word +ID14809=TJclScreenCustomTextAttribute.Style +ID1481=DOMAIN_ALIAS_RID_REMOTE_DESKTOP_USERS +ID14810=TJclScreenCustomTextAttribute.TextAttribute +ID14811=TJclScreenFont +ID14812=TJclScreenFont.Create@TJclScreenBuffer +ID14813=TJclScreenFont.FScreenBuffer +ID14814=TJclScreenFont.GetTextAttribute +ID14815=TJclScreenFont.ScreenBuffer +ID14816=TJclScreenFont.SetTextAttribute@Word +ID14817=TJclScreenFontColor +ID14818=TJclScreenFontColor.fclBlack +ID14819=TJclScreenFontColor.fclBlue +ID1482=DOMAIN_ALIAS_RID_TS_LICENSE_SERVERS +ID14820=TJclScreenFontColor.fclCyan +ID14821=TJclScreenFontColor.fclGreen +ID14822=TJclScreenFontColor.fclMagenta +ID14823=TJclScreenFontColor.fclRed +ID14824=TJclScreenFontColor.fclWhite +ID14825=TJclScreenFontColor.fclYellow +ID14826=TJclScreenFontStyle +ID14827=TJclScreenFontStyle.fsGridHorizontal +ID14828=TJclScreenFontStyle.fsGridLeftVertical +ID14829=TJclScreenFontStyle.fsGridRightVertical +ID1483=DOMAIN_USER_RID_MAX +ID14830=TJclScreenFontStyle.fsLeadingByte +ID14831=TJclScreenFontStyle.fsReverseVideo +ID14832=TJclScreenFontStyle.fsSbcsDbcs +ID14833=TJclScreenFontStyle.fsTrailingByte +ID14834=TJclScreenFontStyle.fsUnderscore +ID14835=TJclScreenFontStyles +ID14836=TJclScreenTextAttribute +ID14837=TJclScreenTextAttribute.Create@TJclScreenFontColor@TJclScreenBackColor@Boolean@Boolean@TJclScreenFontStyles +ID14838=TJclScreenTextAttribute.Create@Word +ID14839=TJclScreenTextAttribute.FAttribute +ID1484=DomainCheck@Boolean +ID14840=TJclScreenTextAttribute.GetTextAttribute +ID14841=TJclScreenTextAttribute.SetTextAttribute@Word +ID14842=TJclScreenWindow +ID14843=TJclScreenWindow.Bottom +ID14844=TJclScreenWindow.Create@TJclScreenBuffer +ID14845=TJclScreenWindow.DoResize@TSmallRect@Boolean +ID14846=TJclScreenWindow.FScreenBuffer +ID14847=TJclScreenWindow.GetBottom +ID14848=TJclScreenWindow.GetHeight +ID14849=TJclScreenWindow.GetLeft +ID1485=DosDateTimeToFileTime@Word@Word@TFileTime +ID14850=TJclScreenWindow.GetMaxConsoleWindowSize +ID14851=TJclScreenWindow.GetMaxWindow +ID14852=TJclScreenWindow.GetPosition +ID14853=TJclScreenWindow.GetRight +ID14854=TJclScreenWindow.GetSize +ID14855=TJclScreenWindow.GetTop +ID14856=TJclScreenWindow.GetWidth +ID14857=TJclScreenWindow.Height +ID14858=TJclScreenWindow.InternalSetPosition@SmallInt@SmallInt +ID14859=TJclScreenWindow.InternalSetSize@SmallInt@SmallInt +ID1486=DotNetFormat@string@array of const +ID14860=TJclScreenWindow.Left +ID14861=TJclScreenWindow.MaxConsoleWindowSize +ID14862=TJclScreenWindow.MaxWindow +ID14863=TJclScreenWindow.Position +ID14864=TJclScreenWindow.Right +ID14865=TJclScreenWindow.ScreenBuffer +ID14866=TJclScreenWindow.Scroll@Smallint@Smallint +ID14867=TJclScreenWindow.SetBottom@Smallint +ID14868=TJclScreenWindow.SetHeight@Smallint +ID14869=TJclScreenWindow.SetLeft@Smallint +ID1487=DotNetFormat@string@array of System.Object +ID14870=TJclScreenWindow.SetPosition@TCoord +ID14871=TJclScreenWindow.SetRight@Smallint +ID14872=TJclScreenWindow.SetSize@TCoord +ID14873=TJclScreenWindow.SetTop@Smallint +ID14874=TJclScreenWindow.SetWidth@Smallint +ID14875=TJclScreenWindow.Size +ID14876=TJclScreenWindow.Top +ID14877=TJclScreenWindow.Width +ID14878=TJclSectoredStream +ID14879=TJclSectoredStream.AfterBlockRead +ID1488=DotNetFormat@string@System.Object +ID14880=TJclSectoredStream.BeforeBlockWrite +ID14881=TJclSectoredStream.Create@TStream@Boolean@Integer +ID14882=TJclSectoredStream.DoAfterStreamChange +ID14883=TJclSectoredStream.FlatToSectored@Int64 +ID14884=TJclSectoredStream.Flush +ID14885=TJclSectoredStream.FSectorOverHead +ID14886=TJclSectoredStream.GetCalcedSize +ID14887=TJclSectoredStream.LoadBuffer +ID14888=TJclSectoredStream.SectoredToFlat@Int64 +ID14889=TJclSerializableException +ID1489=DotNetFormat@string@System.Object@System.Object +ID14890=TJclSerializableExceptionInfo +ID14891=TJclSerializableLocationInfo +ID14892=TJclSerializableLocationInfoList +ID14893=TJclSerializableModuleInfo +ID14894=TJclSerializableModuleInfoList +ID14895=TJclSerializableThreadInfo +ID14896=TJclSerializableThreadInfoList +ID14897=TJclServiceStates +ID14898=TJclServiceTypes +ID14899=TJclSetTypeInfo ID149=_ACTION_HEADER.action_code -ID1490=EINTEL_BIT_23 -ID1491=EINTEL_BIT_24 -ID1492=EINTEL_BIT_25 -ID1493=EINTEL_BIT_26 -ID1494=EINTEL_BIT_27 -ID1495=EINTEL_BIT_28 -ID1496=EINTEL_BIT_29 -ID1497=EINTEL_BIT_30 -ID1498=EINTEL_BIT_31 -ID1499=EINTEL_BIT_6 +ID1490=DotNetFormat@string@System.Object@System.Object@System.Object +ID14900=TJclSevenzipCompressArchive +ID14901=TJclSevenzipDecompressArchive +ID14902=TJclSevenzipExtractCallback +ID14903=TJclSevenzipInStream +ID14904=TJclSevenzipOpenCallback +ID14905=TJclSevenzipOutStream +ID14906=TJclSevenzipUpdateArchive +ID14907=TJclSevenzipUpdateCallback +ID14908=TJclShareSummaryInformation +ID14909=TJclShareSummaryInformation.GetFMTID +ID1491=DotNetFormat@string@Variant +ID14910=TJclShellSummaryInformation +ID14911=TJclShellSummaryInformation.GetFMTID +ID14912=TJclSimpleLog +ID14913=TJclSimpleLog.ClearLog +ID14914=TJclSimpleLog.CloseLog +ID14915=TJclSimpleLog.Create@string +ID14916=TJclSimpleLog.CreateDefaultFileName +ID14917=TJclSimpleLog.Destroy +ID14918=TJclSimpleLog.FLogFileHandle +ID14919=TJclSimpleLog.FLogFileName +ID1492=DotNetFormat@string@Variant@Variant +ID14920=TJclSimpleLog.FLogWasEmpty +ID14921=TJclSimpleLog.GetLogOpen +ID14922=TJclSimpleLog.LogFileName +ID14923=TJclSimpleLog.LogOpen +ID14924=TJclSimpleLog.OpenLog +ID14925=TJclSimpleLog.Write@string@Integer +ID14926=TJclSimpleLog.Write@TStrings@Integer +ID14927=TJclSimpleLog.WriteStamp@Integer +ID14928=TJclSimpleXML +ID14929=TJclSimpleXMLElem +ID1493=DotNetFormat@string@Variant@Variant@Variant +ID14930=TJclSimpleXMLElemCData +ID14931=TJclSimpleXMLElemClass +ID14932=TJclSimpleXMLElemClassic +ID14933=TJclSimpleXMLElemComment +ID14934=TJclSimpleXMLElemCompare +ID14935=TJclSimpleXMLElemDocType +ID14936=TJclSimpleXMLElemHeader +ID14937=TJclSimpleXMLElemMSOApplication +ID14938=TJclSimpleXMLElemProcessingInstruction +ID14939=TJclSimpleXMLElems +ID1494=DottedLineTo@TCanvas@Integer@Integer +ID14940=TJclSimpleXMLElemSheet +ID14941=TJclSimpleXMLElemsProlog +ID14942=TJclSimpleXMLElemText +ID14943=TJclSimpleXMLEncodeEvent +ID14944=TJclSimpleXMLEncodeStreamEvent +ID14945=TJclSimpleXMLNamedElems +ID14946=TJclSimpleXMLOptions +ID14947=TJclSimpleXMLProp +ID14948=TJclSimpleXMLProps +ID14949=TJclSingleAbstractContainer +ID1495=DoubleSimpleCompare@Double@Double +ID14950=TJclSingleArrayIterator +ID14951=TJclSingleArrayList +ID14952=TJclSingleArraySet +ID14953=TJclSingleBinaryNode +ID14954=TJclSingleBinaryTree +ID14955=TJclSingleBinaryTreeIterator +ID14956=TJclSingleBucket +ID14957=TJclSingleHashEntry +ID14958=TJclSingleHashMap +ID14959=TJclSingleHashSet +ID1496=DoubleSimpleEqualityCompare@Double@Double +ID14960=TJclSingleIntfBucket +ID14961=TJclSingleIntfHashEntry +ID14962=TJclSingleIntfHashMap +ID14963=TJclSingleIntfSortedEntry +ID14964=TJclSingleIntfSortedMap +ID14965=TJclSingleLinkedList +ID14966=TJclSingleLinkedListItem +ID14967=TJclSingleLinkedListIterator +ID14968=TJclSingleQueue +ID14969=TJclSingleSingleBucket +ID1497=DoubleSimpleHashConvert@Double +ID14970=TJclSingleSingleHashEntry +ID14971=TJclSingleSingleHashMap +ID14972=TJclSingleSingleSortedEntry +ID14973=TJclSingleSingleSortedMap +ID14974=TJclSingleSortedEntry +ID14975=TJclSingleSortedMap +ID14976=TJclSingleStack +ID14977=TJclSingleTree +ID14978=TJclSingleTreeIterator +ID14979=TJclSingleTreeNode +ID1498=DoubleSortProc +ID14980=TJclSingleVector +ID14981=TJclSingleVectorIterator +ID14982=TJclSmartCompOptions +ID14983=TJclSortedEntry +ID14984=TJclSortedMap +ID14985=TJclSourceModuleInfo +ID14986=TJclSourceModuleInfo.Create@PSourceFileEntry@DWORD +ID14987=TJclSourceModuleInfo.Destroy +ID14988=TJclSourceModuleInfo.FindLine@DWORD@TJclLineInfo +ID14989=TJclSourceModuleInfo.FLines +ID1499=DoubleToHex@Double +ID14990=TJclSourceModuleInfo.FNameIndex +ID14991=TJclSourceModuleInfo.FSegmentCount +ID14992=TJclSourceModuleInfo.FSegments +ID14993=TJclSourceModuleInfo.GetLine@Integer +ID14994=TJclSourceModuleInfo.GetLineCount +ID14995=TJclSourceModuleInfo.GetSegment@Integer +ID14996=TJclSourceModuleInfo.Line +ID14997=TJclSourceModuleInfo.LineCount +ID14998=TJclSourceModuleInfo.NameIndex +ID14999=TJclSourceModuleInfo.Segment ID15=!!OVERLOADED_ConvertFormToText_TJclPeBorForm ID150=_ACTION_HEADER.reserved -ID1500=EINTEL_CMPXCHG16B -ID1501=EINTEL_CNXTID -ID1502=EINTEL_DSCPL -ID1503=EINTEL_EST -ID1504=EINTEL_MONITOR -ID1505=EINTEL_SSE3 -ID1506=EINTEL_SSSE3 -ID1507=EINTEL_TM2 -ID1508=EINTEL_VMX -ID1509=EINTEL_XTPR +ID1500=DPGetDefaultPrinter@string +ID15000=TJclSourceModuleInfo.SegmentCount +ID15001=TJclSparseFlatSet +ID15002=TJclSparseFlatSet.Clear +ID15003=TJclSparseFlatSet.Destroy +ID15004=TJclSparseFlatSet.FSetList +ID15005=TJclSparseFlatSet.FSetListEntries +ID15006=TJclSparseFlatSet.GetBit@Integer +ID15007=TJclSparseFlatSet.GetRange@Integer@Integer@Boolean +ID15008=TJclSparseFlatSet.Invert +ID15009=TJclSparseFlatSet.SetBit@Integer@Boolean +ID1501=DPSetDefaultPrinter@string +ID15010=TJclSparseFlatSet.SetRange@Integer@Integer@Boolean +ID15011=TJclSplitDecompressArchive +ID15012=TJclSplitStream +ID15013=TJclSplitVolume +ID15014=TJclStackTrackingOption +ID15015=TJclStackTrackingOption.stAllModules +ID15016=TJclStackTrackingOption.stDelayedTrace +ID15017=TJclStackTrackingOption.stExceptFrame +ID15018=TJclStackTrackingOption.stMainThreadOnly +ID15019=TJclStackTrackingOption.stRawMode +ID1502=DrcFileExtension +ID15020=TJclStackTrackingOption.stStack +ID15021=TJclStackTrackingOption.stStaticModuleList +ID15022=TJclStackTrackingOption.stTraceAllExceptions +ID15023=TJclStackTrackingOptions +ID15024=TJclStaticSplitStream +ID15025=TJclStorageSummaryInformation +ID15026=TJclStorageSummaryInformation.GetFMTID +ID15027=TJclStrAbstractContainer +ID15028=TJclStrArrayIterator +ID15029=TJclStrArrayList +ID1503=DROP_OBSOLETE_CODE +ID15030=TJclStrArraySet +ID15031=TJclStrArraySet.Add@string +ID15032=TJclStrArraySet.AddAll@IJclStrCollection +ID15033=TJclStrArraySet.BinarySearch@string +ID15034=TJclStrArraySet.Contains@string +ID15035=TJclStrArraySet.Insert@Integer@string +ID15036=TJclStrArraySet.Intersect@IJclStrCollection +ID15037=TJclStrArraySet.Subtract@IJclStrCollection +ID15038=TJclStrArraySet.Union@IJclStrCollection +ID15039=TJclStrBinaryNode +ID1504=DROPEFFECT_COPY +ID15040=TJclStrBinaryNode.Color +ID15041=TJclStrBinaryNode.Left +ID15042=TJclStrBinaryNode.Parent +ID15043=TJclStrBinaryNode.Right +ID15044=TJclStrBinaryNode.TJclStrBinaryNode=recordStr +ID15045=TJclStrBinaryTree +ID15046=TJclStrBinaryTree.Add@string +ID15047=TJclStrBinaryTree.AddAll@IJclStrCollection +ID15048=TJclStrBinaryTree.Clear +ID15049=TJclStrBinaryTree.Clone +ID1505=DROPEFFECT_LINK +ID15050=TJclStrBinaryTree.Contains@string +ID15051=TJclStrBinaryTree.ContainsAll@IJclStrCollection +ID15052=TJclStrBinaryTree.Create@TStrCompare +ID15053=TJclStrBinaryTree.Destroy +ID15054=TJclStrBinaryTree.Equals@IJclStrCollection +ID15055=TJclStrBinaryTree.FComparator +ID15056=TJclStrBinaryTree.FCount +ID15057=TJclStrBinaryTree.First +ID15058=TJclStrBinaryTree.FRoot +ID15059=TJclStrBinaryTree.FTraverseOrder +ID1506=DROPEFFECT_MOVE +ID15060=TJclStrBinaryTree.GetTraverseOrder +ID15061=TJclStrBinaryTree.IsEmpty +ID15062=TJclStrBinaryTree.Last +ID15063=TJclStrBinaryTree.Remove@string +ID15064=TJclStrBinaryTree.RemoveAll@IJclStrCollection +ID15065=TJclStrBinaryTree.RetainAll@IJclStrCollection +ID15066=TJclStrBinaryTree.RotateLeft@PJclStrBinaryNode +ID15067=TJclStrBinaryTree.RotateRight@PJclStrBinaryNode +ID15068=TJclStrBinaryTree.SetTraverseOrder@TJclTraverseOrder +ID15069=TJclStrBinaryTree.Size +ID1507=DROPEFFECT_NONE +ID15070=TJclStrBinaryTreeIterator +ID15071=TJclStrBucket +ID15072=TJclStrBucket.Entries +ID15073=TJclStrBucket.TJclStrBucket=recordCount +ID15074=TJclStrBucketArray +ID15075=TJclStrCollection +ID15076=TJclStrCollection.Add@string +ID15077=TJclStrCollection.AddAll@IJclStrCollection +ID15078=TJclStrCollection.AppendDelimited@string@string +ID15079=TJclStrCollection.AppendFromStrings@TStrings +ID1508=DROPEFFECT_SCROLL +ID15080=TJclStrCollection.AppendToStrings@TStrings +ID15081=TJclStrCollection.Clear +ID15082=TJclStrCollection.Contains@string +ID15083=TJclStrCollection.ContainsAll@IJclStrCollection +ID15084=TJclStrCollection.Equals@IJclStrCollection +ID15085=TJclStrCollection.First +ID15086=TJclStrCollection.GetAsDelimited@string +ID15087=TJclStrCollection.GetAsStrings +ID15088=TJclStrCollection.IsEmpty +ID15089=TJclStrCollection.Last +ID1509=DS_FLAG +ID15090=TJclStrCollection.LoadDelimited@string@string +ID15091=TJclStrCollection.LoadFromStrings@TStrings +ID15092=TJclStrCollection.Remove@string +ID15093=TJclStrCollection.RemoveAll@IJclStrCollection +ID15094=TJclStrCollection.RetainAll@IJclStrCollection +ID15095=TJclStrCollection.SaveToStrings@TStrings +ID15096=TJclStrCollection.Size +ID15097=TJclStream +ID15098=TJclStream.Seek@Int64@TSeekOrigin +ID15099=TJclStream.Seek@Longint@Word ID151=_ACTION_HEADER.transport_id -ID1510=EINTEL64_2_BIT_1 -ID1511=EINTEL64_2_BIT_10 -ID1512=EINTEL64_2_BIT_11 -ID1513=EINTEL64_2_BIT_12 -ID1514=EINTEL64_2_BIT_13 -ID1515=EINTEL64_2_BIT_14 -ID1516=EINTEL64_2_BIT_15 -ID1517=EINTEL64_2_BIT_16 -ID1518=EINTEL64_2_BIT_17 -ID1519=EINTEL64_2_BIT_18 +ID1510=DUPLICATE +ID15100=TJclStream.SetSize@Int64 +ID15101=TJclStream.SetSize@Longint +ID15102=TJclStreamAccess +ID15103=TJclStreamDecorator +ID15104=TJclStreamDecorator.AfterStreamChange +ID15105=TJclStreamDecorator.BeforeStreamChange +ID15106=TJclStreamDecorator.Create@TStream@Boolean +ID15107=TJclStreamDecorator.Destroy +ID15108=TJclStreamDecorator.DoAfterStreamChange +ID15109=TJclStreamDecorator.DoBeforeStreamChange +ID1511=DUPLICATE_CLOSE_SOURCE +ID15110=TJclStreamDecorator.FAfterStreamChange +ID15111=TJclStreamDecorator.FBeforeStreamChange +ID15112=TJclStreamDecorator.FOwnsStream +ID15113=TJclStreamDecorator.FStream +ID15114=TJclStreamDecorator.OwnsStream +ID15115=TJclStreamDecorator.Read@@Longint +ID15116=TJclStreamDecorator.Seek@Int64@TSeekOrigin +ID15117=TJclStreamDecorator.Seek@Longint@Word +ID15118=TJclStreamDecorator.SetSize@Int64 +ID15119=TJclStreamDecorator.SetSize@Longint +ID1512=DUPLICATE_DEREG +ID15120=TJclStreamDecorator.SetStream@TStream +ID15121=TJclStreamDecorator.Stream +ID15122=TJclStreamDecorator.Write@@Longint +ID15123=TJclStreamGetNextCharFunc +ID15124=TJclStreamReadEvent +ID15125=TJclStreamSeekEvent +ID15126=TJclStreamSetNextCharFunc +ID15127=TJclStreamSizeEvent +ID15128=TJclStreamSkipCharsFunc +ID15129=TJclStreamWriteEvent +ID1513=DUPLICATE_SAME_ACCESS +ID15130=TJclStrEntry +ID15131=TJclStrEntry.Key +ID15132=TJclStrEntry.Value +ID15133=TJclStrEntryArray +ID15134=TJclStrHashEntry +ID15135=TJclStrHashMap +ID15136=TJclStrHashSet +ID15137=TJclStringBuilder +ID15138=TJclStringEncoding +ID15139=TJclStringList +ID1514=DWORD +ID15140=TJclStringListObjectsMode +ID15141=TJclStringListSortCompare +ID15142=TJclStringStream +ID15143=TJclStringStreamClass +ID15144=TJclStringTypeInfo +ID15145=TJclStrIntfBucket +ID15146=TJclStrIntfBucket.Entries +ID15147=TJclStrIntfBucket.TJclStrIntfBucket=recordCount +ID15148=TJclStrIntfBucketArray +ID15149=TJclStrIntfEntry +ID1515=DWORD_PTR +ID15150=TJclStrIntfEntry.Key +ID15151=TJclStrIntfEntry.Value +ID15152=TJclStrIntfEntryArray +ID15153=TJclStrIntfHashEntry +ID15154=TJclStrIntfHashMap +ID15155=TJclStrIntfSortedEntry +ID15156=TJclStrIntfSortedMap +ID15157=TJclStrLinkedList +ID15158=TJclStrLinkedListItem +ID15159=TJclStrLinkedListItem.Next +ID1516=Dynamic arrays +ID15160=TJclStrLinkedListItem.TJclStrLinkedListItem=recordStr +ID15161=TJclStrLinkedListIterator +ID15162=TJclStrQueue +ID15163=TJclStrSortedEntry +ID15164=TJclStrSortedMap +ID15165=TJclStrStack +ID15166=TJclStrStrBucket +ID15167=TJclStrStrBucket.Entries +ID15168=TJclStrStrBucket.TJclStrStrBucket=recordCount +ID15169=TJclStrStrBucketArray +ID1517=DynArrayCompareAnsiString@Pointer@Pointer +ID15170=TJclStrStrEntry +ID15171=TJclStrStrEntry.Key +ID15172=TJclStrStrEntry.Value +ID15173=TJclStrStrEntryArray +ID15174=TJclStrStrHashEntry +ID15175=TJclStrStrHashMap +ID15176=TJclStrStrSortedEntry +ID15177=TJclStrStrSortedMap +ID15178=TJclStrTree +ID15179=TJclStrTreeIterator +ID1518=DynArrayCompareAnsiText@Pointer@Pointer +ID15180=TJclStrTreeNode +ID15181=TJclStructStorageAccessMode +ID15182=TJclStructStorageAccessMode.smCreate +ID15183=TJclStructStorageAccessMode.smOpenRead +ID15184=TJclStructStorageAccessMode.smOpenWrite +ID15185=TJclStructStorageAccessMode.smShareDenyRead +ID15186=TJclStructStorageAccessMode.smShareDenyWrite +ID15187=TJclStructStorageAccessMode.smTransacted +ID15188=TJclStructStorageAccessModes +ID15189=TJclStructStorageFolder +ID1519=DynArrayCompareByte@Pointer@Pointer +ID15190=TJclStructStorageFolder.Add@string@Boolean +ID15191=TJclStructStorageFolder.AssignTo@TPersistent +ID15192=TJclStructStorageFolder.Check +ID15193=TJclStructStorageFolder.CheckResult@HRESULT +ID15194=TJclStructStorageFolder.Commit +ID15195=TJclStructStorageFolder.Convert@string +ID15196=TJclStructStorageFolder.CopyTo@string@string@TJclStructStorageFolder +ID15197=TJclStructStorageFolder.Create@string@TJclStructStorageAccessModes@Boolean +ID15198=TJclStructStorageFolder.Delete@string +ID15199=TJclStructStorageFolder.Destroy ID152=_ADAPTER_STATUS -ID1520=EINTEL64_2_BIT_19 -ID1521=EINTEL64_2_BIT_2 -ID1522=EINTEL64_2_BIT_20 -ID1523=EINTEL64_2_BIT_21 -ID1524=EINTEL64_2_BIT_22 -ID1525=EINTEL64_2_BIT_23 -ID1526=EINTEL64_2_BIT_24 -ID1527=EINTEL64_2_BIT_25 -ID1528=EINTEL64_2_BIT_26 -ID1529=EINTEL64_2_BIT_27 +ID1520=DynArrayCompareCardinal@Pointer@Pointer +ID15200=TJclStructStorageFolder.FAccessMode +ID15201=TJclStructStorageFolder.FConvertedMode +ID15202=TJclStructStorageFolder.FFileName +ID15203=TJclStructStorageFolder.FLastError +ID15204=TJclStructStorageFolder.FreeStats@TStatStg +ID15205=TJclStructStorageFolder.FStorage +ID15206=TJclStructStorageFolder.GetFileStream@string@TStream +ID15207=TJclStructStorageFolder.GetFolder@string@TJclStructStorageFolder +ID15208=TJclStructStorageFolder.GetName +ID15209=TJclStructStorageFolder.GetStats@TStatStg@Boolean +ID1521=DynArrayCompareDouble@Pointer@Pointer +ID15210=TJclStructStorageFolder.GetSubItems@TStrings@Boolean +ID15211=TJclStructStorageFolder.Intf +ID15212=TJclStructStorageFolder.IsStructured@string +ID15213=TJclStructStorageFolder.LastError +ID15214=TJclStructStorageFolder.MoveTo@string@string@TJclStructStorageFolder +ID15215=TJclStructStorageFolder.Name +ID15216=TJclStructStorageFolder.Rename@string@string +ID15217=TJclStructStorageFolder.Revert +ID15218=TJclStructStorageFolder.SetElementTimes@string@TStatStg +ID15219=TJclStructStorageStream +ID1522=DynArrayCompareExtended@Pointer@Pointer +ID15220=TJclStructStorageStream.Check +ID15221=TJclStructStorageStream.CheckResult@HRESULT +ID15222=TJclStructStorageStream.Clone +ID15223=TJclStructStorageStream.CopyTo@TJclStructStorageStream@Int64 +ID15224=TJclStructStorageStream.Destroy +ID15225=TJclStructStorageStream.FLastError +ID15226=TJclStructStorageStream.FName +ID15227=TJclStructStorageStream.FreeStats@TStatStg +ID15228=TJclStructStorageStream.FStream +ID15229=TJclStructStorageStream.GetName +ID1523=DynArrayCompareFloat@Pointer@Pointer +ID15230=TJclStructStorageStream.GetStats@TStatStg@Boolean +ID15231=TJclStructStorageStream.Intf +ID15232=TJclStructStorageStream.LastError +ID15233=TJclStructStorageStream.Name +ID15234=TJclStructStorageStream.Read@@Longint +ID15235=TJclStructStorageStream.Seek@Longint@Word +ID15236=TJclStructStorageStream.SetSize@Longint +ID15237=TJclStructStorageStream.Write@@Longint +ID15238=TJclStrVector +ID15239=TJclStrVectorIterator +ID1524=DynArrayCompareInt64@Pointer@Pointer +ID15240=TJclSwfcCompressArchive +ID15241=TJclSwfcDecompressArchive +ID15242=TJclSwfcUpdateArchive +ID15243=TJclSwfDecompressArchive +ID15244=TJclSymbolInfo +ID15245=TJclSymbolInfo.Create@PSymbolInfo +ID15246=TJclSymbolInfo.FSymbolType +ID15247=TJclSymbolInfo.SymbolType +ID15248=TJclTarCompressArchive +ID15249=TJclTARCompressionStream +ID1525=DynArrayCompareInteger@Pointer@Pointer +ID15250=TJclTarDecompressArchive +ID15251=TJclTARDecompressionStream +ID15252=TJclTarUpdateArchive +ID15253=TJclTaskSchedule +ID15254=TJclTaskSchedule.Add@WideString +ID15255=TJclTaskSchedule.Create@WideString +ID15256=TJclTaskSchedule.Delete@Integer +ID15257=TJclTaskSchedule.Destroy +ID15258=TJclTaskSchedule.FTasks +ID15259=TJclTaskSchedule.FTaskScheduler +ID1526=DynArrayCompareShortInt@Pointer@Pointer +ID15260=TJclTaskSchedule.GetTargetComputer +ID15261=TJclTaskSchedule.GetTask@Integer +ID15262=TJclTaskSchedule.GetTaskCount +ID15263=TJclTaskSchedule.IsRunning +ID15264=TJclTaskSchedule.Refresh +ID15265=TJclTaskSchedule.Remove@ITask +ID15266=TJclTaskSchedule.Remove@TJclScheduledTask +ID15267=TJclTaskSchedule.Remove@WideString +ID15268=TJclTaskSchedule.SetTargetComputer@WideString +ID15269=TJclTaskSchedule.Start +ID1527=DynArrayCompareSingle@Pointer@Pointer +ID15270=TJclTaskSchedule.Stop +ID15271=TJclTaskSchedule.TargetComputer +ID15272=TJclTaskSchedule.TaskCount +ID15273=TJclTaskSchedule.Tasks +ID15274=TJclTaskSchedule.TaskScheduler +ID15275=TJclTaskTrigger +ID15276=TJclTaskTrigger.FTaskTrigger +ID15277=TJclTaskTrigger.GetTrigger +ID15278=TJclTaskTrigger.GetTriggerString +ID15279=TJclTaskTrigger.SetTaskTrigger@ITaskTrigger +ID1528=DynArrayCompareSmallInt@Pointer@Pointer +ID15280=TJclTaskTrigger.SetTrigger@TTaskTrigger +ID15281=TJclTaskTrigger.TaskTrigger +ID15282=TJclTaskTrigger.Trigger +ID15283=TJclTaskTrigger.TriggerString +ID15284=TJclTaskTriggers +ID15285=TJclTaskTriggers.Add +ID15286=TJclTaskTriggers.Add@ITaskTrigger +ID15287=TJclTaskTriggers.AddItem@TJclTaskTrigger@Integer +ID15288=TJclTaskTriggers.Create@TJclScheduledWorkItem +ID15289=TJclTaskTriggers.FWorkItem +ID1529=DynArrayCompareString@Pointer@Pointer +ID15290=TJclTaskTriggers.GetItem@Integer +ID15291=TJclTaskTriggers.GetOwner +ID15292=TJclTaskTriggers.Insert@Integer +ID15293=TJclTaskTriggers.Items +ID15294=TJclTaskTriggers.SetItem@Integer@TJclTaskTrigger +ID15295=TJclTaskWindowsList +ID15296=TJclTD32ConstantSymbolInfo +ID15297=TJclTD32DataSymbolInfo +ID15298=TJclTD32FileSignature +ID15299=TJclTD32FileSignature.Offset ID153=_ADAPTER_STATUS.adapter_address -ID1530=EINTEL64_2_BIT_28 -ID1531=EINTEL64_2_BIT_29 -ID1532=EINTEL64_2_BIT_3 -ID1533=EINTEL64_2_BIT_30 -ID1534=EINTEL64_2_BIT_31 -ID1535=EINTEL64_2_BIT_4 -ID1536=EINTEL64_2_BIT_5 -ID1537=EINTEL64_2_BIT_6 -ID1538=EINTEL64_2_BIT_7 -ID1539=EINTEL64_2_BIT_8 +ID1530=DynArrayCompareText@Pointer@Pointer +ID15300=TJclTD32FileSignature.Signature +ID15301=TJclTD32GDataSymbolInfo +ID15302=TJclTD32GlobalProcSymbolInfo +ID15303=TJclTD32InfoParser +ID15304=TJclTD32InfoParser.Analyse +ID15305=TJclTD32InfoParser.AnalyseAlignSymbols@PSymbolInfos@DWORD +ID15306=TJclTD32InfoParser.AnalyseGlobalTypes@Pointer@DWORD +ID15307=TJclTD32InfoParser.AnalyseModules@PModuleInfo@DWORD +ID15308=TJclTD32InfoParser.AnalyseNames@Pointer@DWORD +ID15309=TJclTD32InfoParser.AnalyseSourceModules@PSourceModuleInfo@DWORD +ID1531=DynArrayCompareWideString@Pointer@Pointer +ID15310=TJclTD32InfoParser.AnalyseUnknownSubSection@Pointer@DWORD +ID15311=TJclTD32InfoParser.Create@TCustomMemoryStream +ID15312=TJclTD32InfoParser.Data +ID15313=TJclTD32InfoParser.Destroy +ID15314=TJclTD32InfoParser.FBase +ID15315=TJclTD32InfoParser.FData +ID15316=TJclTD32InfoParser.FindModule@DWORD@TJclModuleInfo +ID15317=TJclTD32InfoParser.FindProc@DWORD@TJclProcSymbolInfo +ID15318=TJclTD32InfoParser.FindSourceModule@DWORD@TJclSourceModuleInfo +ID15319=TJclTD32InfoParser.FModules +ID1532=DynArrayCompareWideText@Pointer@Pointer +ID15320=TJclTD32InfoParser.FNames +ID15321=TJclTD32InfoParser.FProcSymbols +ID15322=TJclTD32InfoParser.FSourceModules +ID15323=TJclTD32InfoParser.FSymbols +ID15324=TJclTD32InfoParser.FValidData +ID15325=TJclTD32InfoParser.GetModule@Integer +ID15326=TJclTD32InfoParser.GetModuleCount +ID15327=TJclTD32InfoParser.GetName@Integer +ID15328=TJclTD32InfoParser.GetNameCount +ID15329=TJclTD32InfoParser.GetProcSymbol@Integer +ID1533=DynArrayCompareWord@Pointer@Pointer +ID15330=TJclTD32InfoParser.GetProcSymbolCount +ID15331=TJclTD32InfoParser.GetSourceModule@Integer +ID15332=TJclTD32InfoParser.GetSourceModuleCount +ID15333=TJclTD32InfoParser.GetSymbol@Integer +ID15334=TJclTD32InfoParser.GetSymbolCount +ID15335=TJclTD32InfoParser.IsTD32DebugInfoValid@Pointer@LongWord +ID15336=TJclTD32InfoParser.IsTD32Sign@TJclTD32FileSignature +ID15337=TJclTD32InfoParser.LfaToVa@DWORD +ID15338=TJclTD32InfoParser.ModuleCount +ID15339=TJclTD32InfoParser.Modules +ID1534=E +ID15340=TJclTD32InfoParser.NameCount +ID15341=TJclTD32InfoParser.Names +ID15342=TJclTD32InfoParser.ProcSymbolCount +ID15343=TJclTD32InfoParser.ProcSymbols +ID15344=TJclTD32InfoParser.SourceModuleCount +ID15345=TJclTD32InfoParser.SourceModules +ID15346=TJclTD32InfoParser.SymbolCount +ID15347=TJclTD32InfoParser.Symbols +ID15348=TJclTD32InfoParser.ValidData +ID15349=TJclTD32InfoScanner +ID1535=EAMD_1GBPAGE +ID15350=TJclTD32InfoScanner.LineNumberFromAddr@DWORD +ID15351=TJclTD32InfoScanner.LineNumberFromAddr@DWORD@Integer +ID15352=TJclTD32InfoScanner.ModuleNameFromAddr@DWORD +ID15353=TJclTD32InfoScanner.ProcNameFromAddr@DWORD +ID15354=TJclTD32InfoScanner.ProcNameFromAddr@DWORD@Integer +ID15355=TJclTD32InfoScanner.SourceNameFromAddr@DWORD +ID15356=TJclTD32LabelSymbolInfo +ID15357=TJclTD32LDataSymbolInfo +ID15358=TJclTD32LineInfo +ID15359=TJclTD32LocalProcSymbolInfo +ID1536=EAMD_3DNOW +ID15360=TJclTD32ModuleInfo +ID15361=TJclTD32ObjNameSymbolInfo +ID15362=TJclTD32ProcSymbolInfo +ID15363=TJclTD32PublicSymbolInfo +ID15364=TJclTD32SourceModuleInfo +ID15365=TJclTD32SymbolInfo +ID15366=TJclTD32UdtSymbolInfo +ID15367=TJclTD32VftPathSymbolInfo +ID15368=TJclTD32WithSymbolInfo +ID15369=TJclTerminateAppResult +ID1537=EAMD_APIC +ID15370=TJclTerminateAppResult.taClean +ID15371=TJclTerminateAppResult.taError +ID15372=TJclTerminateAppResult.taKill +ID15373=TJclThreadIDNotifyEvent +ID15374=TJclThreadInfo +ID15375=TJclThreadInfoList +ID15376=TJclThreadInfoOptions +ID15377=TJclTimeZoneCallBackFunc +ID15378=TJclTimeZoneInfo +ID15379=TJclTimeZoneRegInfo +ID1538=EAMD_BIT_10 +ID15380=TJclTimeZones +ID15381=TJclTraverseOrder +ID15382=TJclTree +ID15383=TJclTreeColor +ID15384=TJclTreeColor.tcBlack +ID15385=TJclTreeColor.tcRed +ID15386=TJclTreeIterator +ID15387=TJclTreeNode +ID15388=TJclTypeInfo +ID15389=TJclTZIValueInfo +ID1539=EAMD_BIT_18 +ID15390=TJclUdfDecompressArchive +ID15391=TJclUdtSymbolInfo +ID15392=TJclUdtSymbolInfo.Create@PSymbolInfo +ID15393=TJclUdtSymbolInfo.FNameIndex +ID15394=TJclUdtSymbolInfo.FProperties +ID15395=TJclUdtSymbolInfo.FTypeIndex +ID15396=TJclUdtSymbolInfo.NameIndex +ID15397=TJclUdtSymbolInfo.Properties +ID15398=TJclUdtSymbolInfo.TypeIndex +ID15399=TJclULargeInteger ID154=_ADAPTER_STATUS.adapter_type -ID1540=EINTEL64_2_BIT_9 -ID1541=EINTEL64_2_LAHF -ID1542=EINTEL64_BIT_0 -ID1543=EINTEL64_BIT_1 -ID1544=EINTEL64_BIT_10 -ID1545=EINTEL64_BIT_12 -ID1546=EINTEL64_BIT_13 -ID1547=EINTEL64_BIT_14 -ID1548=EINTEL64_BIT_15 -ID1549=EINTEL64_BIT_16 +ID1540=EAMD_BIT_19 +ID15400=TJclUnaryInstruction +ID15401=TJclUnicodeStrAbstractCollection +ID15402=TJclUnicodeStrAbstractContainer +ID15403=TJclUnicodeStrArrayIterator +ID15404=TJclUnicodeStrArrayList +ID15405=TJclUnicodeStrArraySet +ID15406=TJclUnicodeStrBinaryNode +ID15407=TJclUnicodeStrBinaryTree +ID15408=TJclUnicodeStrBinaryTreeIterator +ID15409=TJclUnicodeStrBucket +ID1541=EAMD_BIT_21 +ID15410=TJclUnicodeStrHashEntry +ID15411=TJclUnicodeStrHashMap +ID15412=TJclUnicodeStrHashSet +ID15413=TJclUnicodeStringList +ID15414=TJclUnicodeStrings +ID15415=TJclUnicodeStrIntfBucket +ID15416=TJclUnicodeStrIntfHashEntry +ID15417=TJclUnicodeStrIntfHashMap +ID15418=TJclUnicodeStrIntfSortedEntry +ID15419=TJclUnicodeStrIntfSortedMap +ID1542=EAMD_BIT_26 +ID15420=TJclUnicodeStrLinkedList +ID15421=TJclUnicodeStrLinkedListItem +ID15422=TJclUnicodeStrLinkedListIterator +ID15423=TJclUnicodeStrQueue +ID15424=TJclUnicodeStrSortedEntry +ID15425=TJclUnicodeStrSortedMap +ID15426=TJclUnicodeStrStack +ID15427=TJclUnicodeStrTree +ID15428=TJclUnicodeStrTreeIterator +ID15429=TJclUnicodeStrTreeNode +ID1543=EAMD_BIT_27 +ID15430=TJclUnicodeStrUnicodeStrBucket +ID15431=TJclUnicodeStrUnicodeStrHashEntry +ID15432=TJclUnicodeStrUnicodeStrHashMap +ID15433=TJclUnicodeStrUnicodeStrSortedEntry +ID15434=TJclUnicodeStrUnicodeStrSortedMap +ID15435=TJclUnicodeStrVector +ID15436=TJclUnicodeStrVectorIterator +ID15437=TJclUnitVersioningList +ID15438=TJclUnitVersioningList.Add@TUnitVersionInfo +ID15439=TJclUnitVersioningList.Clear +ID1544=EAMD_BIT_28 +ID15440=TJclUnitVersioningList.Count +ID15441=TJclUnitVersioningList.Create +ID15442=TJclUnitVersioningList.Destroy +ID15443=TJclUnitVersioningList.FItems +ID15444=TJclUnitVersioningList.GetCount +ID15445=TJclUnitVersioningList.GetItems@Integer +ID15446=TJclUnitVersioningList.Items +ID15447=TJclUnitVersioningList.Load@HMODULE +ID15448=TJclUnitVersioningList.LoadFromDefaultResource@HMODULE +ID15449=TJclUnitVersioningList.LoadFromDefaultSection@HMODULE +ID1545=EAMD_CMOV +ID15450=TJclUnitVersioningList.LoadFromStream@TStream +ID15451=TJclUnitVersioningList.SaveToFile@string +ID15452=TJclUnitVersioningList.SaveToStream@TStream +ID15453=TJclUnitVersioningProviderModule +ID15454=TJclUnitVersioningProviderModule.Create@THandle +ID15455=TJclUnitVersioningProviderModule.Destroy +ID15456=TJclUnitVersioningProviderModule.FInfoList +ID15457=TJclUnitVersioningProviderModule.FInstance +ID15458=TJclUnitVersioningProviderModule.InfoList +ID15459=TJclUnitVersioningProviderModule.Instance +ID1546=EAMD_CX8 +ID15460=TJclUpdateArchive +ID15461=TJclUpdateArchiveClass +ID15462=TJclUpdateControl +ID15463=TJclUpdateItem +ID15464=TJclUTF16Stream +ID15465=TJclUTF8Stream +ID15466=TJclVector +ID15467=TJclVectorIterator +ID15468=TJclVersionControlActionInfo +ID15469=TJclVersionControlActionsCache +ID1547=EAMD_DE +ID15470=TJclVersionControlActionType +ID15471=TJclVersionControlActionTypes +ID15472=TJclVersionControlCache +ID15473=TJclVersionControlCVS +ID15474=TJclVersionControlPlugin +ID15475=TJclVersionControlPluginClass +ID15476=TJclVersionControlPluginList +ID15477=TJclVersionControlSVN +ID15478=TJclVersionControlSystemPlugin +ID15479=TJclVftPathSymbolInfo +ID1548=EAMD_EX3DNOW +ID15480=TJclVftPathSymbolInfo.Create@PSymbolInfo +ID15481=TJclVftPathSymbolInfo.FOffset +ID15482=TJclVftPathSymbolInfo.FPathIndex +ID15483=TJclVftPathSymbolInfo.FRootIndex +ID15484=TJclVftPathSymbolInfo.Offset +ID15485=TJclVftPathSymbolInfo.PathIndex +ID15486=TJclVftPathSymbolInfo.RootIndex +ID15487=TJclVhdDecompressArchive +ID15488=TJclVideoSummaryInformation +ID15489=TJclVideoSummaryInformation.Compression +ID1549=EAMD_EXMMX +ID15490=TJclVideoSummaryInformation.DataRate +ID15491=TJclVideoSummaryInformation.FrameCount +ID15492=TJclVideoSummaryInformation.FrameRate +ID15493=TJclVideoSummaryInformation.GetFMTID +ID15494=TJclVideoSummaryInformation.Height +ID15495=TJclVideoSummaryInformation.SampleSize +ID15496=TJclVideoSummaryInformation.StreamName +ID15497=TJclVideoSummaryInformation.StreamNumber +ID15498=TJclVideoSummaryInformation.TimeLength +ID15499=TJclVideoSummaryInformation.Width ID155=_ADAPTER_STATUS.duration -ID1550=EINTEL64_BIT_17 -ID1551=EINTEL64_BIT_18 -ID1552=EINTEL64_BIT_19 -ID1553=EINTEL64_BIT_2 -ID1554=EINTEL64_BIT_21 -ID1555=EINTEL64_BIT_22 -ID1556=EINTEL64_BIT_23 -ID1557=EINTEL64_BIT_24 -ID1558=EINTEL64_BIT_25 -ID1559=EINTEL64_BIT_26 +ID1550=EAMD_FFX +ID15500=TJclVolumeEvent +ID15501=TJclVolumeMaxSizeEvent +ID15502=TJclVolumeSummaryInformation +ID15503=TJclVolumeSummaryInformation.GetFMTID +ID15504=TJclWaitHandle +ID15505=TJclWebViewSummaryInformation +ID15506=TJclWebViewSummaryInformation.GetFMTID +ID15507=TJclWideMappedTextReader +ID15508=TJclWideStrAbstractCollection +ID15509=TJclWideStrAbstractContainer +ID1551=EAMD_FPU +ID15510=TJclWideStrArrayIterator +ID15511=TJclWideStrArrayList +ID15512=TJclWideStrArraySet +ID15513=TJclWideStrBinaryNode +ID15514=TJclWideStrBinaryTree +ID15515=TJclWideStrBinaryTreeIterator +ID15516=TJclWideStrBucket +ID15517=TJclWideStrEncoding +ID15518=TJclWideStrHashEntry +ID15519=TJclWideStrHashMap +ID1552=EAMD_FX +ID15520=TJclWideStrHashSet +ID15521=TJclWideStringList +ID15522=TJclWideStringListSortCompare +ID15523=TJclWideStrings +ID15524=TJclWideStrIntfBucket +ID15525=TJclWideStrIntfHashEntry +ID15526=TJclWideStrIntfHashMap +ID15527=TJclWideStrIntfSortedEntry +ID15528=TJclWideStrIntfSortedMap +ID15529=TJclWideStrLinkedList +ID1553=EAMD_LONG +ID15530=TJclWideStrLinkedListItem +ID15531=TJclWideStrLinkedListIterator +ID15532=TJclWideStrQueue +ID15533=TJclWideStrSortedEntry +ID15534=TJclWideStrSortedMap +ID15535=TJclWideStrStack +ID15536=TJclWideStrTree +ID15537=TJclWideStrTreeIterator +ID15538=TJclWideStrTreeNode +ID15539=TJclWideStrVector +ID1554=EAMD_MCA +ID15540=TJclWideStrVectorIterator +ID15541=TJclWideStrWideStrBucket +ID15542=TJclWideStrWideStrHashEntry +ID15543=TJclWideStrWideStrHashMap +ID15544=TJclWideStrWideStrSortedEntry +ID15545=TJclWideStrWideStrSortedMap +ID15546=TJclWimDecompressArchive +ID15547=TJclWin32ExFunction +ID15548=TJclWin32ExFunction.jwfCancelWaitableTimer +ID15549=TJclWin32ExFunction.jwfCreateWaitableTimer +ID1555=EAMD_MCE +ID15550=TJclWin32ExFunction.jwfGetFileAttributesEx +ID15551=TJclWin32ExFunction.jwfglGetError +ID15552=TJclWin32ExFunction.jwfglGetString +ID15553=TJclWin32ExFunction.jwfgluErrorString +ID15554=TJclWin32ExFunction.jwfInitializeCriticalSectionAndSpinCount +ID15555=TJclWin32ExFunction.jwfOpenWaitableTimer +ID15556=TJclWin32ExFunction.jwfSetCriticalSectionSpinCount +ID15557=TJclWin32ExFunction.jwfSignalObjectAndWait +ID15558=TJclWin32ExFunction.jwfTryEnterCriticalSection +ID15559=TJclWin32ExFunction.jwfwglCreateContext +ID1556=EAMD_MMX +ID15560=TJclWin32ExFunction.jwfwglDeleteContext +ID15561=TJclWin32ExFunction.jwfwglMakeCurrent +ID15562=TJclWin32ExFunctions +ID15563=TJclWinMidiOut +ID15564=TJclWithSymbolInfo +ID15565=TJclWithSymbolInfo.Create@PSymbolInfo +ID15566=TJclWithSymbolInfo.FNameIndex +ID15567=TJclWithSymbolInfo.FOffset +ID15568=TJclWithSymbolInfo.FSize +ID15569=TJclWithSymbolInfo.NameIndex +ID1557=EAMD_MSR +ID15570=TJclWithSymbolInfo.Offset +ID15571=TJclWithSymbolInfo.Size +ID15572=TJclXarDecompressArchive +ID15573=TJclXMLDeserializer +ID15574=TJclXMLSerializer +ID15575=TJclXzCompressArchive +ID15576=TJclXzDecompressArchive +ID15577=TJclXzUpdateArchive +ID15578=TJclZDecompressArchive +ID15579=TJclZipCompressArchive +ID1558=EAMD_MTRR +ID15580=TJclZipDecompressArchive +ID15581=TJclZipUpdateArchive +ID15582=TJclZLibCompressStream +ID15583=TJclZLibCompressStream.CompressionLevel +ID15584=TJclZLibCompressStream.Create@TStream@TJclCompressionLevel +ID15585=TJclZLibCompressStream.Destroy +ID15586=TJclZLibCompressStream.FCompressionLevel +ID15587=TJclZLibCompressStream.FDeflateInitialized +ID15588=TJclZLibCompressStream.Flush +ID15589=TJclZLibCompressStream.FMemLevel +ID1559=EAMD_NX +ID15590=TJclZLibCompressStream.FMethod +ID15591=TJclZLibCompressStream.FStrategy +ID15592=TJclZLibCompressStream.FWindowBits +ID15593=TJclZLibCompressStream.MemLevel +ID15594=TJclZLibCompressStream.Method +ID15595=TJclZLibCompressStream.Reset +ID15596=TJclZLibCompressStream.Seek@Int64@TSeekOrigin +ID15597=TJclZLibCompressStream.SetCompressionLevel@Integer +ID15598=TJclZLibCompressStream.SetMemLevel@Integer +ID15599=TJclZLibCompressStream.SetMethod@Integer ID156=_ADAPTER_STATUS.free_ncbs -ID1560=EINTEL64_BIT_27 -ID1561=EINTEL64_BIT_28 -ID1562=EINTEL64_BIT_3 -ID1563=EINTEL64_BIT_30 -ID1564=EINTEL64_BIT_31 -ID1565=EINTEL64_BIT_4 -ID1566=EINTEL64_BIT_5 -ID1567=EINTEL64_BIT_6 -ID1568=EINTEL64_BIT_7 -ID1569=EINTEL64_BIT_8 +ID1560=EAMD_PAE +ID15600=TJclZLibCompressStream.SetStrategy@Integer +ID15601=TJclZLibCompressStream.SetWindowBits@Integer +ID15602=TJclZLibCompressStream.Strategy +ID15603=TJclZLibCompressStream.WindowBits +ID15604=TJclZLibCompressStream.Write@@Longint +ID15605=TJclZLibCompressStream.ZLibRecord +ID15606=TJclZLibDecompressStream +ID15607=TJclZLibDecompressStream.Create@TStream@Integer +ID15608=TJclZLibDecompressStream.Destroy +ID15609=TJclZLibDecompressStream.FInflateInitialized +ID1561=EAMD_PAT +ID15610=TJclZLibDecompressStream.FWindowBits +ID15611=TJclZLibDecompressStream.Read@@Longint +ID15612=TJclZLibDecompressStream.Seek@Int64@TSeekOrigin +ID15613=TJclZLibDecompressStream.SetWindowBits@Integer +ID15614=TJclZLibDecompressStream.WindowBits +ID15615=TJclZLibDecompressStream.ZLibRecord +ID15616=TJmpTable +ID15617=TJmpTable.OPCode +ID15618=TJmpTable.Ptr +ID15619=TKeyboardState +ID1562=EAMD_PGE +ID15620=TLangIdRec +ID15621=TLangIdRec.CodePage +ID15622=TLangIdRec.LangId +ID15623=TLangIdRec.Pair +ID15624=TLargeInteger +ID15625=TLibraryGoal +ID15626=TLineMappingEntry +ID15627=TLineMappingEntry.Offsets +ID15628=TLineMappingEntry.PairCount +ID15629=TLineMappingEntry.SegmentIndex +ID1563=EAMD_PSE +ID15630=TLocalGroupInfo0 +ID15631=TLocalGroupInfo1 +ID15632=TLocalGroupInfo1002 +ID15633=TLocalGroupMembersInfo0 +ID15634=TLocalGroupMembersInfo1 +ID15635=TLocalGroupMembersInfo2 +ID15636=TLocalGroupMembersInfo3 +ID15637=TLsaHandle +ID15638=TLsaObjectAttributes +ID15639=TLsaString +ID1564=EAMD_PSE2 +ID15640=TLsaUnicodeString +ID15641=TM_FLAG +ID15642=TMCI_Open_Parms +ID15643=TMeteredSection +ID15644=TMeteredSection.Event +ID15645=TMeteredSection.FileMap +ID15646=TMeteredSection.SharedInfo +ID15647=TMetSectSharedInfo +ID15648=TMetSectSharedInfo.AvailableCount +ID15649=TMetSectSharedInfo.Initialized +ID1565=EAMD_RDTSCP +ID15650=TMetSectSharedInfo.MaximumCount +ID15651=TMetSectSharedInfo.SpinLock +ID15652=TMetSectSharedInfo.ThreadsWaiting +ID15653=TMIDIChannel +ID15654=TMIDIDataByte +ID15655=TMIDIDataWord +ID15656=TMIDIKey +ID15657=TMIDINote +ID15658=TMIDINotes +ID15659=TMIDIStatusByte +ID1566=EAMD_SEP +ID15660=TMIDIVelocity +ID15661=TMixerCaps +ID15662=TMixerControl +ID15663=TMixerLine +ID15664=TMrewPreferred +ID15665=TMrewPreferred.mpEqual +ID15666=TMrewPreferred.mpReaders +ID15667=TMrewPreferred.mpWriters +ID15668=TMrewThreadInfo +ID15669=TMrewThreadInfo.Reader +ID1567=EAMD_TSC +ID15670=TMrewThreadInfo.RecursionCount +ID15671=TMrewThreadInfo.ThreadId +ID15672=TMrewThreadInfoArray +ID15673=TMutexInfo +ID15674=TMutexInfo.Abandoned +ID15675=TMutexInfo.Owned +ID15676=TMutexInfo.SignalState +ID15677=TNcb +ID15678=TNcbPost +ID15679=TNetApiStatus +ID1568=EAMD_VME +ID15680=TNetUserAuthFlag +ID15681=TNetUserAuthFlag.afOpAccounts +ID15682=TNetUserAuthFlag.afOpComm +ID15683=TNetUserAuthFlag.afOpPrint +ID15684=TNetUserAuthFlag.afOpServer +ID15685=TNetUserAuthFlags +ID15686=TNetUserFlag +ID15687=TNetUserFlag.ufAccountDisable +ID15688=TNetUserFlag.ufDontExpirePassword +ID15689=TNetUserFlag.ufHomedirRequired +ID1569=EAMD2_3DNOWPREFETCH +ID15690=TNetUserFlag.ufLockout +ID15691=TNetUserFlag.ufMNSLogonAccount +ID15692=TNetUserFlag.ufPasswordCantChange +ID15693=TNetUserFlag.ufPasswordNotRequired +ID15694=TNetUserFlags +ID15695=TNetUserInfoFlag +ID15696=TNetUserInfoFlag.uifInterdomainTrustAccount +ID15697=TNetUserInfoFlag.uifNormalAccount +ID15698=TNetUserInfoFlag.uifScript +ID15699=TNetUserInfoFlag.uifServerTrustAccount ID157=_ADAPTER_STATUS.frmr_recv -ID1570=EINTEL64_BIT_9 -ID1571=EINTEL64_EDB -ID1572=EINTEL64_EM64T -ID1573=EINTEL64_SYS -ID1574=EInvalidParam -ID1575=EJclAddr64Exception -ID1576=EJclBorRADException -ID1577=EJclCliInstructionError -ID1578=EJclCliInstructionStreamInvalid -ID1579=EJclClrException +ID1570=EAMD2_ABM +ID15700=TNetUserInfoFlag.uifTempDuplicateAccount +ID15701=TNetUserInfoFlag.uifWorkstationTrustAccount +ID15702=TNetUserInfoFlags +ID15703=TNetUserPriv +ID15704=TNetUserPriv.upAdmin +ID15705=TNetUserPriv.upGuest +ID15706=TNetUserPriv.upUnknown +ID15707=TNetUserPriv.upUser +ID15708=TNodeIterateFunc +ID15709=TNormalizationForm +ID1571=EAMD2_ALTMOVCR8 +ID15710=TNtfsHardLinkInfo +ID15711=TNtfsHardLinkInfo.FileIndex +ID15712=TNtfsHardLinkInfo.FileIndexHigh +ID15713=TNtfsHardLinkInfo.FileIndexLow +ID15714=TNtfsHardLinkInfo.LinkCount +ID15715=TNtProductType +ID15716=TNtProductType.ptAdvancedServer +ID15717=TNtProductType.ptDatacenterServer +ID15718=TNtProductType.ptEnterprise +ID15719=TNtProductType.ptPersonal +ID1572=EAMD2_BIT_10 +ID15720=TNtProductType.ptProfessional +ID15721=TNtProductType.ptServer +ID15722=TNtProductType.ptUnknown +ID15723=TNtProductType.ptWebEdition +ID15724=TNtProductType.ptWorkStation +ID15725=TNumericSystemBase +ID15726=TOffsetPair +ID15727=TOffsetPair.EndOffset +ID15728=TOffsetPair.StartOffset +ID15729=TOffsetPairArray +ID1573=EAMD2_BIT_11 +ID15730=ToggleBit@Cardinal@TBitRange +ID15731=ToggleBit@Int64@TBitRange +ID15732=ToggleBit@Integer@TBitRange +ID15733=ToggleBit@Shortint@TBitRange +ID15734=ToggleBit@Smallint@TBitRange +ID15735=ToggleBit@Word@TBitRange +ID15736=ToggleBitBuffer@@Cardinal +ID15737=ToggleBitBuffer@@Int64 +ID15738=TOKEN_USER +ID15739=TOpLock +ID1574=EAMD2_BIT_12 +ID15740=TOpLock.olBatch +ID15741=TOpLock.olExclusive +ID15742=TOpLock.olFilter +ID15743=TOpLock.olReadOnly +ID15744=TOptexSharedInfo +ID15745=TOptexSharedInfo.LockCount +ID15746=TOptexSharedInfo.RecursionCount +ID15747=TOptexSharedInfo.SpinCount +ID15748=TOptexSharedInfo.ThreadId +ID15749=TOSEnabledFeature +ID1575=EAMD2_BIT_13 +ID15750=TOSEnabledFeatures +ID15751=TOSVersionInfoExA +ID15752=TOSVersionInfoExW +ID15753=TouchFileTimes@THandle@TSystemTime +ID15754=TPAnsiCharArray +ID15755=TPCharArray +ID15756=TPCRE +ID15757=TPCRECalloutIndex +ID15758=TPCREExtra +ID15759=TPCREIntArray +ID1576=EAMD2_BIT_14 +ID15760=TPCRELibNotLoadedHandler +ID15761=TPointArray +ID15762=TPointerArray +ID15763=TPolarComplex +ID15764=TPolarComplex.Angle +ID15765=TPolarComplex.Radius +ID15766=TPolicyAccountDomainInfo +ID15767=TPolicyInformationClass +ID15768=TPrimalityTestMethod +ID15769=TPrimalityTestMethod.ptRabinMiller +ID1577=EAMD2_BIT_15 +ID15770=TPrimalityTestMethod.ptTrialDivision +ID15771=TProcessorArchitecture +ID15772=TProcessorArchitecture.paIA64 +ID15773=TProcessorArchitecture.paUnknown +ID15774=TProcessorArchitecture.pax8632 +ID15775=TProcessorArchitecture.pax8664 +ID15776=TProgramGoal +ID15777=TProjectOptions +ID15778=TPtrApplyFunction +ID15779=TPtrCompare +ID1578=EAMD2_BIT_16 +ID15780=TPtrEqualityCompare +ID15781=TPtrHashConvert +ID15782=TPtrIterateProcedure +ID15783=TPtrSortProc +ID15784=TPWideCharArray +ID15785=TQueryServiceConfig2A +ID15786=TraceMsg@string +ID15787=TRANSMETA_BIT_10 +ID15788=TRANSMETA_BIT_12 +ID15789=TRANSMETA_BIT_13 +ID1579=EAMD2_BIT_17 +ID15790=TRANSMETA_BIT_14 +ID15791=TRANSMETA_BIT_16 +ID15792=TRANSMETA_BIT_17 +ID15793=TRANSMETA_BIT_19 +ID15794=TRANSMETA_BIT_20 +ID15795=TRANSMETA_BIT_21 +ID15796=TRANSMETA_BIT_22 +ID15797=TRANSMETA_BIT_24 +ID15798=TRANSMETA_BIT_25 +ID15799=TRANSMETA_BIT_26 ID158=_ADAPTER_STATUS.frmr_xmit -ID1580=EJclCommandLineToolError -ID1581=EJclCompressionError -ID1582=EJclConcurrentModificationError -ID1583=EJclConversionError -ID1584=EJclCounterError -ID1585=EJclCriticalSectionError -ID1586=EJclDateTimeError -ID1587=EJclDispatcherObjectError -ID1588=EJclEDIError -ID1589=EJclEventError +ID1580=EAMD2_BIT_18 +ID15800=TRANSMETA_BIT_27 +ID15801=TRANSMETA_BIT_28 +ID15802=TRANSMETA_BIT_29 +ID15803=TRANSMETA_BIT_30 +ID15804=TRANSMETA_BIT_31 +ID15805=TRANSMETA_BIT_6 +ID15806=TRANSMETA_BIT_7 +ID15807=TRANSMETA_BIT_9 +ID15808=TRANSMETA_CMOV +ID15809=TRANSMETA_CX8 +ID1581=EAMD2_BIT_19 +ID15810=TRANSMETA_DE +ID15811=TRANSMETA_FPU +ID15812=TRANSMETA_MMX +ID15813=TRANSMETA_MSR +ID15814=TRANSMETA_PSE +ID15815=TRANSMETA_PSN +ID15816=TRANSMETA_SEP +ID15817=TRANSMETA_TSC +ID15818=TRANSMETA_VME +ID15819=TRasDialDlg +ID1582=EAMD2_BIT_20 +ID15820=TRectComplex +ID15821=TRectComplex.Add@TRectComplex@TRectComplex +ID15822=TRectComplex.Divide@TRectComplex@TRectComplex +ID15823=TRectComplex.Equal@TRectComplex@TRectComplex +ID15824=TRectComplex.Exp@TRectComplex +ID15825=TRectComplex.Im +ID15826=TRectComplex.Implicit@Float +ID15827=TRectComplex.Implicit@Int64 +ID15828=TRectComplex.Implicit@Integer +ID15829=TRectComplex.Implicit@TPolarComplex +ID1583=EAMD2_BIT_21 +ID15830=TRectComplex.Multiply@TRectComplex@TRectComplex +ID15831=TRectComplex.Negative@TRectComplex +ID15832=TRectComplex.NotEqual@TRectComplex@TRectComplex +ID15833=TRectComplex.Re +ID15834=TRectComplex.Subtract@TRectComplex@TRectComplex +ID15835=TRectCoord +ID15836=TRectCoord.X +ID15837=TRectCoord.Y +ID15838=TRefUnique +ID15839=TrimLeftLengthW@WideString +ID1584=EAMD2_BIT_22 +ID15840=TrimLeftW@WideString +ID15841=TrimRightLengthW@WideString +ID15842=TrimRightW@WideString +ID15843=TrimStrings@TStrings@Boolean +ID15844=TrimStringsLeft@TStrings@Boolean +ID15845=TrimStringsRight@TStrings@Boolean +ID15846=TrimW@WideString +ID15847=TRootKey +ID15848=TruncPower@Float@Float +ID15849=TryStringToUCS4@string@TUCS4Array +ID1585=EAMD2_BIT_23 +ID15850=TryStringToUTF16@string@TUTF16String +ID15851=TryStringToUTF8@string@TUTF8String +ID15852=TryStrToCurr@string@Currency +ID15853=TryStrToFloat@string@Double +ID15854=TryStrToFloat@string@Extended +ID15855=TryStrToFloat@string@Single +ID15856=TryStrToInt@string@Integer +ID15857=TryStrToInt64@string@Int64 +ID15858=TryUCS4ToString@TUCS4Array@string +ID15859=TryUCS4ToUTF16@TUCS4Array@TUTF16String +ID1586=EAMD2_BIT_24 +ID15860=TryUCS4ToUTF8@TUCS4Array@TUTF8String +ID15861=TryUTF16ToString@TUTF16String@string +ID15862=TryUTF16ToUCS4@TUTF16String@TUCS4Array +ID15863=TryUTF16ToUTF8@TUTF16String@TUTF8String +ID15864=TryUTF8ToString@TUTF8String@string +ID15865=TryUTF8ToUCS4@TUTF8String@TUCS4Array +ID15866=TryUTF8ToUTF16@TUTF8String@TUTF16String +ID15867=TSaveFormat +ID15868=TSaveFormat.sfAnsi +ID15869=TSaveFormat.sfUTF16LSB +ID1587=EAMD2_BIT_25 +ID15870=TSaveFormat.sfUTF16MSB +ID15871=TSaveFormat.sfUTF8 +ID15872=TSC_FLAG +ID15873=TScheduleWeekDays +ID15874=TSeekOrigin +ID15875=TSeekOrigin.soBeginning +ID15876=TSeekOrigin.soCurrent +ID15877=TSeekOrigin.soEnd +ID15878=TSegmentInfo +ID15879=TSegmentInfo.Flags +ID1588=EAMD2_BIT_26 +ID15880=TSegmentInfo.Offset +ID15881=TSegmentInfo.Segment +ID15882=TSegmentInfo.Size +ID15883=TSegmentInfoArray +ID15884=TSemaphoreCounts +ID15885=TSemaphoreCounts.CurrentCount +ID15886=TSemaphoreCounts.MaximumCount +ID15887=TServiceDescriptionA +ID15888=TSessionBuffer +ID15889=TSessionHeader +ID1589=EAMD2_BIT_27 +ID15890=TSetOfAnsiChar +ID15891=TSHCopyOption +ID15892=TSHCopyOption.coAllowUndo +ID15893=TSHCopyOption.coFilesOnly +ID15894=TSHCopyOption.coNoConfirmation +ID15895=TSHCopyOption.coSilent +ID15896=TSHCopyOptions +ID15897=TSHMoveOption +ID15898=TSHMoveOption.moAllowUndo +ID15899=TSHMoveOption.moFilesOnly ID159=_ADAPTER_STATUS.iframe_recv_err -ID1590=EJclFileMappingError -ID1591=EJclFileMappingViewError -ID1592=EJclFileSummaryError -ID1593=EJclFileUtilsError -ID1594=EJclFileVersionInfoError -ID1595=EJclGraphicsError -ID1596=EJclIllegalArgumentError -ID1597=EJclIllegalStateError -ID1598=EJclMathError -ID1599=EJclMciError +ID1590=EAMD2_BIT_28 +ID15900=TSHMoveOption.moNoConfirmation +ID15901=TSHMoveOption.moSilent +ID15902=TSHMoveOptions +ID15903=TSHSegmentId +ID15904=TSid +ID15905=TSidAndAttributes +ID15906=TSidAndAttributesArray +ID15907=TSidNameUse +ID15908=TSingleApplyFunction +ID15909=TSingleCompare +ID1591=EAMD2_BIT_29 +ID15910=TSingleEqualityCompare +ID15911=TSingleHashConvert +ID15912=TSingleIterateProcedure +ID15913=TSingleNoteTuningData +ID15914=TSingleNoteTuningData.DWord +ID15915=TSingleNoteTuningData.Frequency +ID15916=TSingleNoteTuningData.Key +ID15917=TSingleSortProc +ID15918=TSortProc +ID15919=TSourceFileEntry +ID1592=EAMD2_BIT_3 +ID15920=TSourceFileEntry.BaseSrcLines +ID15921=TSourceFileEntry.NameIndex +ID15922=TSourceFileEntry.SegmentCount +ID15923=TSourceModuleInfo +ID15924=TSourceModuleInfo.BaseSrcFiles +ID15925=TSourceModuleInfo.FileCount +ID15926=TSourceModuleInfo.SegmentCount +ID15927=TSSESupport +ID15928=TSSESupports +ID15929=TStereoChannel +ID1593=EAMD2_BIT_30 +ID15930=TStereoChannel.scLeft +ID15931=TStereoChannel.scRight +ID15932=TStrApplyFunction +ID15933=TStrCompare +ID15934=TStreamNotifyEvent +ID15935=TStrEqualityCompare +ID15936=TStrHashConvert +ID15937=TStringBuilder +ID15938=TStringBuilder.__Chars__ +ID15939=TStringBuilder.Append@array of Char +ID1594=EAMD2_BIT_31 +ID15940=TStringBuilder.Append@array of Char@Integer@Integer +ID15941=TStringBuilder.Append@Boolean +ID15942=TStringBuilder.Append@Cardinal +ID15943=TStringBuilder.Append@Char@Integer +ID15944=TStringBuilder.Append@Double +ID15945=TStringBuilder.Append@Int64 +ID15946=TStringBuilder.Append@Integer +ID15947=TStringBuilder.Append@string +ID15948=TStringBuilder.Append@string@Integer@Integer +ID15949=TStringBuilder.Append@TObject +ID1595=EAMD2_BIT_5 +ID15950=TStringBuilder.AppendFormat@string@array of const +ID15951=TStringBuilder.AppendFormat@string@Variant +ID15952=TStringBuilder.AppendFormat@string@Variant@Variant +ID15953=TStringBuilder.AppendFormat@string@Variant@Variant@Variant +ID15954=TStringBuilder.AppendPChar@PChar@Integer@Integer +ID15955=TStringBuilder.Capacity +ID15956=TStringBuilder.Chars +ID15957=TStringBuilder.Create@Integer@Integer +ID15958=TStringBuilder.Create@string@Integer +ID15959=TStringBuilder.Create@string@Integer@Integer@Integer +ID1596=EAMD2_BIT_6 +ID15960=TStringBuilder.Destroy +ID15961=TStringBuilder.EnsureCapacity@Integer +ID15962=TStringBuilder.FChars +ID15963=TStringBuilder.FLength +ID15964=TStringBuilder.FLock +ID15965=TStringBuilder.FMaxCapacity +ID15966=TStringBuilder.GetCapacity +ID15967=TStringBuilder.GetChars@Integer +ID15968=TStringBuilder.Insert@Integer@array of Char +ID15969=TStringBuilder.Insert@Integer@array of Char@Integer@Integer +ID1597=EAMD2_BIT_7 +ID15970=TStringBuilder.Insert@Integer@Boolean +ID15971=TStringBuilder.Insert@Integer@Cardinal +ID15972=TStringBuilder.Insert@Integer@Double +ID15973=TStringBuilder.Insert@Integer@Int64 +ID15974=TStringBuilder.Insert@Integer@Integer +ID15975=TStringBuilder.Insert@Integer@string@Integer +ID15976=TStringBuilder.Insert@Integer@TObject +ID15977=TStringBuilder.InsertPChar@Integer@PChar@Integer@Integer +ID15978=TStringBuilder.Length +ID15979=TStringBuilder.MaxCapacity +ID1598=EAMD2_BIT_8 +ID15980=TStringBuilder.Remove@Integer@Integer +ID15981=TStringBuilder.Replace@Char@Char@Integer@Integer +ID15982=TStringBuilder.Replace@string@string@Integer@Integer +ID15983=TStringBuilder.Set_Length@Integer +ID15984=TStringBuilder.SetCapacity@Integer +ID15985=TStringBuilder.SetChars@Integer@Char +ID15986=TStringBuilder.ToString +ID15987=TStrIterateProcedure +ID15988=TStrSortProc +ID15989=TSTSegmentId +ID1599=EAMD2_BIT_9 +ID15990=TSymbolConstantInfo +ID15991=TSymbolConstantInfo.NameIndex +ID15992=TSymbolConstantInfo.Reserved +ID15993=TSymbolConstantInfo.TypeIndex +ID15994=TSymbolConstantInfo.Value +ID15995=TSymbolDataInfo +ID15996=TSymbolDataInfo.NameIndex +ID15997=TSymbolDataInfo.Offset +ID15998=TSymbolDataInfo.Reserved +ID15999=TSymbolDataInfo.Segment ID16=!!OVERLOADED_ConvertToXMLTransaction_TEDIXMLANSIX12FormatTranslator ID160=_ADAPTER_STATUS.iframe_xmit_err -ID1600=EJclMciError.Create@MCIERROR@string -ID1601=EJclMciError.CreateFmt@MCIERROR@string@array of const -ID1602=EJclMciError.CreateRes@MCIERROR@Integer -ID1603=EJclMciError.FMciErrorMsg -ID1604=EJclMciError.FMciErrorNo -ID1605=EJclMciError.MciErrorMsg -ID1606=EJclMciError.MciErrorNo -ID1607=EJclMetadataError -ID1608=EJclMeteredSectionError -ID1609=EJclMIDIError +ID1600=EAMD2_CMPLEGACY +ID16000=TSymbolDataInfo.TypeIndex +ID16001=TSymbolInfo +ID16002=TSymbolInfo.Constant +ID16003=TSymbolInfo.Data +ID16004=TSymbolInfo.Label32 +ID16005=TSymbolInfo.ObjName +ID16006=TSymbolInfo.Proc +ID16007=TSymbolInfo.Size +ID16008=TSymbolInfo.SymbolType +ID16009=TSymbolInfo.Udt +ID1601=EAMD2_EXTAPICSPACE +ID16010=TSymbolInfo.VftPath +ID16011=TSymbolInfo.With32 +ID16012=TSymbolInfos +ID16013=TSymbolInfos.Signature +ID16014=TSymbolInfos.Symbols +ID16015=TSymbolLabelInfo +ID16016=TSymbolLabelInfo.NameIndex +ID16017=TSymbolLabelInfo.NearFar +ID16018=TSymbolLabelInfo.Offset +ID16019=TSymbolLabelInfo.Reserved +ID1602=EAMD2_IBS +ID16020=TSymbolLabelInfo.Segment +ID16021=TSymbolObjNameInfo +ID16022=TSymbolObjNameInfo.NameIndex +ID16023=TSymbolObjNameInfo.Signature +ID16024=TSymbolProcInfo +ID16025=TSymbolProcInfo.DebugEnd +ID16026=TSymbolProcInfo.DebugStart +ID16027=TSymbolProcInfo.NameIndex +ID16028=TSymbolProcInfo.NearFar +ID16029=TSymbolProcInfo.Offset +ID1603=EAMD2_LAHF +ID16030=TSymbolProcInfo.pEnd +ID16031=TSymbolProcInfo.pNext +ID16032=TSymbolProcInfo.pParent +ID16033=TSymbolProcInfo.ProcType +ID16034=TSymbolProcInfo.Reserved +ID16035=TSymbolProcInfo.Segment +ID16036=TSymbolProcInfo.Size +ID16037=TSymbolUdtInfo +ID16038=TSymbolUdtInfo.NameIndex +ID16039=TSymbolUdtInfo.Properties +ID1604=EAMD2_MISALIGNSSE +ID16040=TSymbolUdtInfo.Reserved +ID16041=TSymbolUdtInfo.TypeIndex +ID16042=TSymbolVftPathInfo +ID16043=TSymbolVftPathInfo.Offset +ID16044=TSymbolVftPathInfo.PathIndex +ID16045=TSymbolVftPathInfo.Reserved +ID16046=TSymbolVftPathInfo.RootIndex +ID16047=TSymbolVftPathInfo.Segment +ID16048=TSymbolWithInfo +ID16049=TSymbolWithInfo.NameIndex +ID1605=EAMD2_OSVW +ID16050=TSymbolWithInfo.Offset +ID16051=TSymbolWithInfo.pEnd +ID16052=TSymbolWithInfo.pParent +ID16053=TSymbolWithInfo.Reserved +ID16054=TSymbolWithInfo.Segment +ID16055=TSymbolWithInfo.Size +ID16056=TTemperatureType +ID16057=TTemperatureType.ttCelsius +ID16058=TTemperatureType.ttFahrenheit +ID16059=TTemperatureType.ttKelvin +ID1606=EAMD2_SKINIT +ID16060=TTemperatureType.ttRankine +ID16061=TTemperatureType.ttReaumur +ID16062=TTernary32Func +ID16063=TTernary64Func +ID16064=TTernary80Func +ID16065=TTextHandler +ID16066=TTimeCaps +ID16067=TTimerInfo +ID16068=TTimerInfo.Remaining +ID16069=TTimerInfo.Signaled +ID1607=EAMD2_SSE4A +ID16070=TTLBInformation +ID16071=TTLBInformation.tiAssociativity +ID16072=TTLBInformation.tiEntries +ID16073=TTokenUser +ID16074=TTransmetaSpecific +ID16075=TTransmetaSpecific.CodeMorphingABCD +ID16076=TTransmetaSpecific.CodeMorphingXXXX +ID16077=TTransmetaSpecific.CodeTLB +ID16078=TTransmetaSpecific.CurrentFrequency +ID16079=TTransmetaSpecific.CurrentPerformance +ID1608=EAMD2_SSE5 +ID16080=TTransmetaSpecific.CurrentVoltage +ID16081=TTransmetaSpecific.DataTLB +ID16082=TTransmetaSpecific.ExFeatures +ID16083=TTransmetaSpecific.Frequency +ID16084=TTransmetaSpecific.L1CodeCache +ID16085=TTransmetaSpecific.L1DataCache +ID16086=TTransmetaSpecific.L2Cache +ID16087=TTransmetaSpecific.RevisionABCD +ID16088=TTransmetaSpecific.RevisionXXXX +ID16089=TTransmetaSpecific.TransmetaFeatures +ID1609=EAMD2_SVM +ID16090=TTransmetaSpecific.TransmetaInformations +ID16091=TTraverseMethod +ID16092=TUcCClass +ID16093=TUcCClass.Ranges +ID16094=TUcCClass.RangesUsed +ID16095=TUcElement +ID16096=TUcElement.AType +ID16097=TUcElement.LHS +ID16098=TUcElement.OnStack +ID16099=TUcElement.RHS ID161=_ADAPTER_STATUS.max_cfg_ncbs -ID1610=EJclMixerError -ID1611=EJclMmTimerError -ID1612=EJclMutexError -ID1613=EJclNaNSignal -ID1614=EJclNaNSignal.Create@TNaNTag@Boolean -ID1615=EJclNaNSignal.FTag -ID1616=EJclNaNSignal.Tag -ID1617=EJclNoSuchElementError -ID1618=EJclNtfsError -ID1619=EJclOperationNotSupportedError +ID1610=EAMD2_WDT +ID16100=TUcEquivalent +ID16101=TUcEquivalent.Left +ID16102=TUcEquivalent.Right +ID16103=TUcEquivalentList +ID16104=TUcEquivalentList.Equivalents +ID16105=TUcEquivalentList.EquivalentsUsed +ID16106=TUcExpressionList +ID16107=TUcExpressionList.Expressions +ID16108=TUcExpressionList.ExpressionsUsed +ID16109=TUcNumber +ID1611=EAutoAdjustNotEnabled +ID16110=TUcRange +ID16111=TUcRange.MaxCode +ID16112=TUcRange.MinCode +ID16113=TUCS2Array +ID16114=TUCS2String +ID16115=TUCS4Array +ID16116=TUcState +ID16117=TUcState.Accepting +ID16118=TUcState.ID +ID16119=TUcState.StateList +ID1612=EColorConversionError +ID16120=TUcState.Transitions +ID16121=TUcState.TransitionsUsed +ID16122=TUcStateList +ID16123=TUcStateList.List +ID16124=TUcStateList.ListUsed +ID16125=TUcStateTable +ID16126=TUcStateTable.States +ID16127=TUcStateTable.StatesUsed +ID16128=TUcSymbol +ID16129=TUcSymbol.CCL +ID1613=ECYRIX_APIC +ID16130=TUcSymbol.Chr +ID16131=TUcSymbolTable +ID16132=TUcSymbolTable.Symbols +ID16133=TUcSymbolTable.SymbolsUsed +ID16134=TUcSymbolTableEntry +ID16135=TUcSymbolTableEntry.AType +ID16136=TUcSymbolTableEntry.Categories +ID16137=TUcSymbolTableEntry.ID +ID16138=TUcSymbolTableEntry.Mods +ID16139=TUcSymbolTableEntry.States +ID1614=ECYRIX_BIT_11 +ID16140=TUcSymbolTableEntry.Symbol +ID16141=TUcTransition +ID16142=TUcTransition.NextState +ID16143=TUcTransition.Symbol +ID16144=TUcTransitions +ID16145=TUcTransitions.Transitions +ID16146=TUcTransitions.TransitionsUsed +ID16147=TULargeInteger +ID16148=TULargeInteger.HighPart +ID16149=TULargeInteger.LowPart +ID1615=ECYRIX_BIT_17 +ID16150=TULargeInteger.QuadPart +ID16151=TUnary32Func +ID16152=TUnary64Func +ID16153=TUnary80Func +ID16154=TUnicodeBlock +ID16155=TUnicodeBlockData +ID16156=TUnicodeBlockRange +ID16157=TUnicodeBlockRange.RangeEnd +ID16158=TUnicodeBlockRange.RangeStart +ID16159=TUnicodePath +ID1616=ECYRIX_BIT_18 +ID16160=TUnicodeStrApplyFunction +ID16161=TUnicodeStrCompare +ID16162=TUnicodeStrEqualityCompare +ID16163=TUnicodeStrHashConvert +ID16164=TUnicodeStrIterateProcedure +ID16165=TUnicodeStrSortProc +ID16166=TUnitGoal +ID16167=TUnitVersion +ID16168=TUnitVersion.Create@PUnitVersionInfo +ID16169=TUnitVersion.Data +ID1617=ECYRIX_BIT_19 +ID16170=TUnitVersion.Date +ID16171=TUnitVersion.DateTime +ID16172=TUnitVersion.Extra +ID16173=TUnitVersion.FInfo +ID16174=TUnitVersion.LogPath +ID16175=TUnitVersion.RCSfile +ID16176=TUnitVersion.Revision +ID16177=TUnitVersionInfo +ID16178=TUnitVersionInfo.Data +ID16179=TUnitVersionInfo.Date +ID1618=ECYRIX_BIT_20 +ID16180=TUnitVersionInfo.Extra +ID16181=TUnitVersionInfo.LogPath +ID16182=TUnitVersionInfo.RCSfile +ID16183=TUnitVersionInfo.Revision +ID16184=TUnitVersioning +ID16185=TUnitVersioning.Add@THandle@PUnitVersionInfo +ID16186=TUnitVersioning.Count +ID16187=TUnitVersioning.Create +ID16188=TUnitVersioning.Destroy +ID16189=TUnitVersioning.FindUnit@string@string +ID1619=ECYRIX_BIT_21 +ID16190=TUnitVersioning.FModules +ID16191=TUnitVersioning.FProviders +ID16192=TUnitVersioning.GetCount +ID16193=TUnitVersioning.GetItems@Integer +ID16194=TUnitVersioning.GetModuleCount +ID16195=TUnitVersioning.GetModules@Integer +ID16196=TUnitVersioning.IndexOf@string@string +ID16197=TUnitVersioning.Items +ID16198=TUnitVersioning.LoadModuleUnitVersioningInfo@THandle +ID16199=TUnitVersioning.ModuleCount ID162=_ADAPTER_STATUS.max_cfg_sess -ID1620=EJclOutOfBoundsError -ID1621=EJclPathError -ID1622=EJclPrinterError -ID1623=EJclRTTIError -ID1624=EJclSecurityError -ID1625=EJclSemaphoreError -ID1626=EJclStatisticsError -ID1627=EJclStreamError -ID1628=EJclStringError -ID1629=EJclStructStorageError +ID1620=ECYRIX_BIT_22 +ID16200=TUnitVersioning.Modules +ID16201=TUnitVersioning.RegisterProvider@TUnitVersioningProviderClass +ID16202=TUnitVersioning.UnregisterModule@THandle +ID16203=TUnitVersioning.UnregisterModule@TUnitVersioningModule +ID16204=TUnitVersioning.ValidateModules +ID16205=TUnitVersioningModule +ID16206=TUnitVersioningModule.Add@PUnitVersionInfo +ID16207=TUnitVersioningModule.Count +ID16208=TUnitVersioningModule.Create@THandle +ID16209=TUnitVersioningModule.Destroy +ID1621=ECYRIX_BIT_25 +ID16210=TUnitVersioningModule.FindUnit@string@string +ID16211=TUnitVersioningModule.FInstance +ID16212=TUnitVersioningModule.FItems +ID16213=TUnitVersioningModule.GetCount +ID16214=TUnitVersioningModule.GetItems@Integer +ID16215=TUnitVersioningModule.IndexOf@string@string +ID16216=TUnitVersioningModule.IndexOfInfo@PUnitVersionInfo +ID16217=TUnitVersioningModule.Instance +ID16218=TUnitVersioningModule.Items +ID16219=TUnitVersioningProviderClass +ID1622=ECYRIX_BIT_26 +ID16220=TUntypedSearchCompare +ID16221=TUREBuffer +ID16222=TUREBuffer.EquivalentList +ID16223=TUREBuffer.Error +ID16224=TUREBuffer.ExpressionList +ID16225=TUREBuffer.Flags +ID16226=TUREBuffer.Reducing +ID16227=TUREBuffer.Stack +ID16228=TUREBuffer.States +ID16229=TUREBuffer.SymbolTable +ID1623=ECYRIX_BIT_27 +ID16230=TUserInfo0 +ID16231=TUserInfo1 +ID16232=TUserInfo2 +ID16233=TUsesList +ID16234=TUTBMChar +ID16235=TUTBMChar.LoCase +ID16236=TUTBMChar.TitleCase +ID16237=TUTBMChar.UpCase +ID16238=TUTBMSkip +ID16239=TUTBMSkip.BMChar +ID1624=ECYRIX_BIT_28 +ID16240=TUTBMSkip.SkipValues +ID16241=TUTF16String +ID16242=TUTF8String +ID16243=TVIASpecific +ID16244=TVIASpecific.DataTLB +ID16245=TVIASpecific.ExFeatures +ID16246=TVIASpecific.InstructionTLB +ID16247=TVIASpecific.L1DataCache +ID16248=TVIASpecific.L1InstructionCache +ID16249=TVIASpecific.L2DataCache +ID1625=ECYRIX_BIT_29 +ID16250=TWideFileOptions +ID16251=TWideFileOptionsType +ID16252=TWideFileOptionsType.foAnsiFile +ID16253=TWideFileOptionsType.foUnicodeLB +ID16254=TWideStrApplyFunction +ID16255=TWideStrCompare +ID16256=TWideStrEqualityCompare +ID16257=TWideStrHashConvert +ID16258=TWideStringItem +ID16259=TWideStringItem.FObject +ID1626=ECYRIX_BIT_30 +ID16260=TWideStringItem.FString +ID16261=TWideStringItemList +ID16262=TWideStringSetter +ID16263=TWideStrIterateProcedure +ID16264=TWideStrSortProc +ID16265=TwoPi +ID16266=TWordArray +ID16267=TwoToPower63 +ID16268=TWStringItem +ID16269=TWStringItem.FObject +ID1627=ECYRIX_BIT_31 +ID16270=TWStringItem.FString +ID16271=TWStringList +ID16272=TWStringList.AddObject@WideString@TObject +ID16273=TWStringList.CaseSensitive +ID16274=TWStringList.Changed +ID16275=TWStringList.Changing +ID16276=TWStringList.Clear +ID16277=TWStringList.CompareStrings@WideString@WideString +ID16278=TWStringList.Create +ID16279=TWStringList.CustomSort@TWStringListSortCompare +ID1628=ECYRIX_CX8 +ID16280=TWStringList.Delete@Integer +ID16281=TWStringList.Destroy +ID16282=TWStringList.Duplicates +ID16283=TWStringList.Exchange@Integer@Integer +ID16284=TWStringList.FCaseSensitive +ID16285=TWStringList.FDuplicates +ID16286=TWStringList.Find@WideString@Integer +ID16287=TWStringList.FList +ID16288=TWStringList.FOnChange +ID16289=TWStringList.FOnChanging +ID1629=ECYRIX_DE +ID16290=TWStringList.FSorted +ID16291=TWStringList.GetCapacity +ID16292=TWStringList.GetCount +ID16293=TWStringList.GetItem@Integer +ID16294=TWStringList.GetObject@Integer +ID16295=TWStringList.GetP@Integer +ID16296=TWStringList.IndexOf@WideString +ID16297=TWStringList.InsertObject@Integer@WideString@TObject +ID16298=TWStringList.OnChange +ID16299=TWStringList.OnChanging ID163=_ADAPTER_STATUS.max_dgram_size -ID1630=EJclTempFileStreamError -ID1631=EJclUnicodeError -ID1632=EJclVMTError -ID1633=EJclWaitableTimerError -ID1634=EJclWin32HandleObjectError -ID1635=ElementSpecId_Reserved -ID1636=EMMS -ID1637=EmptyDelphiSet -ID1638=ENCRYPTED_PWLEN -ID1639=EnsureRange@Double@Double@Double +ID1630=ECYRIX_EMMX +ID16300=TWStringList.Put@Integer@WideString +ID16301=TWStringList.PutObject@Integer@TObject +ID16302=TWStringList.SetCapacity@Integer +ID16303=TWStringList.SetCaseSensitive@Boolean +ID16304=TWStringList.SetSorted@Boolean +ID16305=TWStringList.SetUpdateState@Boolean +ID16306=TWStringList.Sort +ID16307=TWStringList.Sorted +ID16308=TWStringListSortCompare +ID16309=TWStrings +ID1631=ECYRIX_FCMOV +ID16310=TWStrings.Add@WideString +ID16311=TWStrings.AddObject@WideString@TObject +ID16312=TWStrings.AddStrings@TStrings +ID16313=TWStrings.AddStrings@TWStrings +ID16314=TWStrings.AddStringsTo@TStrings +ID16315=TWStrings.Append@WideString +ID16316=TWStrings.Assign@TPersistent +ID16317=TWStrings.AssignTo@TPersistent +ID16318=TWStrings.BeginUpdate +ID16319=TWStrings.Capacity +ID1632=ECYRIX_FPU +ID16320=TWStrings.Clear +ID16321=TWStrings.CommaText +ID16322=TWStrings.CompareStrings@WideString@WideString +ID16323=TWStrings.Count +ID16324=TWStrings.Create +ID16325=TWStrings.CreateAnsiStringList +ID16326=TWStrings.DefineProperties@TFiler +ID16327=TWStrings.Delete@Integer +ID16328=TWStrings.DelimitedText +ID16329=TWStrings.Delimiter +ID1633=ECYRIX_ICMOV +ID16330=TWStrings.EndUpdate +ID16331=TWStrings.Equals@TStrings +ID16332=TWStrings.Equals@TWStrings +ID16333=TWStrings.Exchange@Integer@Integer +ID16334=TWStrings.ExtractName@WideString +ID16335=TWStrings.FDelimiter +ID16336=TWStrings.FLineSeparator +ID16337=TWStrings.FNameValueSeparator +ID16338=TWStrings.FQuoteChar +ID16339=TWStrings.FUpdateCount +ID1634=ECYRIX_MCA +ID16340=TWStrings.Get@Integer +ID16341=TWStrings.GetCapacity +ID16342=TWStrings.GetCommaText +ID16343=TWStrings.GetCount +ID16344=TWStrings.GetDelimitedText +ID16345=TWStrings.GetDelimitedTextEx@WideChar@WideChar +ID16346=TWStrings.GetName@Integer +ID16347=TWStrings.GetObject@Integer +ID16348=TWStrings.GetP@Integer +ID16349=TWStrings.GetText +ID1635=ECYRIX_MCE +ID16350=TWStrings.GetTextStr +ID16351=TWStrings.GetValue@WideString +ID16352=TWStrings.GetValueFromIndex@Integer +ID16353=TWStrings.IndexOf@WideString +ID16354=TWStrings.IndexOfName@WideString +ID16355=TWStrings.IndexOfObject@TObject +ID16356=TWStrings.Insert@Integer@WideString +ID16357=TWStrings.InsertObject@Integer@WideString@TObject +ID16358=TWStrings.LineSeparator +ID16359=TWStrings.LoadFromFile@AnsiString@TWideFileOptions +ID1636=ECYRIX_MMX +ID16360=TWStrings.LoadFromStream@TStream@TWideFileOptions +ID16361=TWStrings.Move@Integer@Integer +ID16362=TWStrings.Names +ID16363=TWStrings.NameValueSeparator +ID16364=TWStrings.Objects +ID16365=TWStrings.PStrings +ID16366=TWStrings.Put@Integer@WideString +ID16367=TWStrings.PutObject@Integer@TObject +ID16368=TWStrings.QuoteChar +ID16369=TWStrings.ReadData@TReader +ID1637=ECYRIX_MSR +ID16370=TWStrings.SaveToFile@AnsiString@TWideFileOptions +ID16371=TWStrings.SaveToStream@TStream@TWideFileOptions +ID16372=TWStrings.SetCapacity@Integer +ID16373=TWStrings.SetCommaText@WideString +ID16374=TWStrings.SetDelimitedText@WideString +ID16375=TWStrings.SetDelimitedTextEx@WideChar@WideChar@WideString +ID16376=TWStrings.SetText@PWideChar +ID16377=TWStrings.SetTextStr@WideString +ID16378=TWStrings.SetUpdateState@Boolean +ID16379=TWStrings.SetValue@WideString@WideString +ID1638=ECYRIX_MTRR +ID16380=TWStrings.SetValueFromIndex@Integer@WideString +ID16381=TWStrings.Strings +ID16382=TWStrings.Text +ID16383=TWStrings.UpdateCount +ID16384=TWStrings.ValueFromIndex +ID16385=TWStrings.Values +ID16386=TWStrings.WriteData@TWriter +ID16387=TXMLVariant +ID16388=UCLEANUI +ID16389=UCS2 +ID1639=ECYRIX_PAE +ID16390=UCS2CharCount@TUCS2String +ID16391=UCS4 +ID16392=UCS4CharCount@TUCS4Array +ID16393=UCS4ReplacementCharacter +ID16394=UCS4ToAnsiChar@UCS4 +ID16395=UCS4ToAnsiString@TUCS4Array +ID16396=UCS4ToChar@UCS4 +ID16397=UCS4ToString@TUCS4Array +ID16398=UCS4ToUTF16@TUCS4Array +ID16399=UCS4ToUTF8@TUCS4Array ID164=_ADAPTER_STATUS.max_ncbs -ID1640=EnsureRange@Int64@Int64@Int64 -ID1641=EnsureRange@Integer@Integer@Integer -ID1642=EnumCalendarInfoExA@CALINFO_ENUMPROCEXA@LCID@CALID@CALTYPE -ID1643=EnvironmentVarAlternateNtSymbolPath -ID1644=EnvironmentVarNtSymbolPath -ID1645=EPCREError -ID1646=EPCREError.CreateRes@PResStringRec@Integer -ID1647=EPCREError.ErrorCode -ID1648=EPCREError.FErrorCode -ID1649=EpsDouble +ID1640=ECYRIX_PGE +ID16400=UCS4ToWideChar@UCS4 +ID16401=UCS4ToWideString@TUCS4Array +ID16402=UDIRTYUI +ID16403=UF_ACCOUNT_TYPE_MASK +ID16404=UF_ACCOUNTDISABLE +ID16405=UF_DONT_EXPIRE_PASSWD +ID16406=UF_DONT_REQUIRE_PREAUTH +ID16407=UF_ENCRYPTED_TEXT_PASSWORD_ALLOWED +ID16408=UF_HOMEDIR_REQUIRED +ID16409=UF_INTERDOMAIN_TRUST_ACCOUNT +ID1641=ECYRIX_PSE +ID16410=UF_LOCKOUT +ID16411=UF_MACHINE_ACCOUNT_MASK +ID16412=UF_MNS_LOGON_ACCOUNT +ID16413=UF_NORMAL_ACCOUNT +ID16414=UF_NOT_DELEGATED +ID16415=UF_PASSWD_CANT_CHANGE +ID16416=UF_PASSWD_NOTREQD +ID16417=UF_PASSWORD_EXPIRED +ID16418=UF_SCRIPT +ID16419=UF_SERVER_TRUST_ACCOUNT +ID1642=ECYRIX_SEP +ID16420=UF_SETTABLE_BITS +ID16421=UF_SMARTCARD_REQUIRED +ID16422=UF_TEMP_DUPLICATE_ACCOUNT +ID16423=UF_TRUSTED_FOR_DELEGATION +ID16424=UF_TRUSTED_TO_AUTHENTICATE_FOR_DELEGATION +ID16425=UF_USE_DES_KEY_ONLY +ID16426=UF_WORKSTATION_TRUST_ACCOUNT +ID16427=UINT_PTR +ID16428=UInt16 +ID16429=UInt32 +ID1643=ECYRIX_TSC +ID16430=UInt64 +ID16431=UInt8 +ID16432=ULARGE_INTEGER +ID16433=ULONG_PTR +ID16434=ULONGLONG +ID16435=UNASegmentId +ID16436=UNBSegmentId +ID16437=UnBZip2File@string@string@TJclCompressStreamProgressCallback@Pointer +ID16438=UnBZip2File@TFileName@TFileName@TJclCompressStreamProgressCallback@Pointer +ID16439=UnBZip2Stream@TStream@TStream@TJclCompressStreamProgressCallback@Pointer +ID1644=ECYRIX_VME +ID16440=UNCLEN +ID16441=UnDecorateSymbolName@string PAnsiChar@string PAnsiChar@DWORD@DWORD +ID16442=UndecorateSymbolName@string@string@DWORD +ID16443=UNDNAME_32_BIT_DECODE +ID16444=UNDNAME_COMPLETE +ID16445=UNDNAME_NAME_ONLY +ID16446=UNDNAME_NO_ACCESS_SPECIFIERS +ID16447=UNDNAME_NO_ALLOCATION_LANGUAGE +ID16448=UNDNAME_NO_ALLOCATION_MODEL +ID16449=UNDNAME_NO_ARGUMENTS +ID1645=EDaylightSavingsNotSupported +ID16450=UNDNAME_NO_CV_THISTYPE +ID16451=UNDNAME_NO_FUNCTION_RETURNS +ID16452=UNDNAME_NO_LEADING_UNDERSCORES +ID16453=UNDNAME_NO_MEMBER_TYPE +ID16454=UNDNAME_NO_MS_KEYWORDS +ID16455=UNDNAME_NO_MS_THISTYPE +ID16456=UNDNAME_NO_RETURN_UDT_MODEL +ID16457=UNDNAME_NO_SPECIAL_SYMS +ID16458=UNDNAME_NO_THISTYPE +ID16459=UNDNAME_NO_THROW_SIGNATURES +ID1646=EDI +ID16460=UNESegmentId +ID16461=UNGSegmentId +ID16462=UnGZipFile@string@string@TJclCompressStreamProgressCallback@Pointer +ID16463=UnGZipFile@TFileName@TFileName@TJclCompressStreamProgressCallback@Pointer +ID16464=UnGZipStream@TStream@TStream@TJclCompressStreamProgressCallback@Pointer +ID16465=UNHSegmentId +ID16466=Unicode +ID16467=Unicode.Charactertestroutines +ID16468=Unicode.Directionality +ID16469=Unicode.Lowlevelcharacterroutines +ID1647=EDIDataType_Binary +ID16470=Unicode.Nullterminatedstrings +ID16471=Unicode.TSearchEngine +ID16472=Unicode.TURESearch +ID16473=Unicode.TUTBMSearch +ID16474=Unicode.TWideStringList +ID16475=Unicode.TWideStrings +ID16476=Unicode.Utilityfunctions +ID16477=Unicode.WideStringconversionroutines +ID16478=Unicode.WideStringroutines +ID16479=UNICODE_BZIP2_DATA +ID1648=EDIDataType_Date +ID16480=UNICODE_RAW_DATA +ID16481=UNICODE_SILENT_FAILURE +ID16482=UNICODE_ZLIB_DATA +ID16483=UnicodeBlockData +ID16484=UnicodeCaseFold@UCS4 +ID16485=UnicodeCompose@array of UCS4@UCS4 +ID16486=UnicodeIsArabicNumber@UCS4 +ID16487=UnicodeIsASCIIHexDigit@UCS4 +ID16488=UnicodeIsBidiControl@UCS4 +ID16489=UnicodeIsBoundaryNeutral@UCS4 +ID1649=EDIDataType_Decimal +ID16490=UnicodeIsCommonNumberSeparator@UCS4 +ID16491=UnicodeIsConnector@UCS4 +ID16492=UnicodeIsDeprecated@UCS4 +ID16493=UnicodeIsDiacritic@UCS4 +ID16494=UnicodeIsEuropeanNumber@UCS4 +ID16495=UnicodeIsEuropeanNumberSeparator@UCS4 +ID16496=UnicodeIsEuropeanNumberTerminator@UCS4 +ID16497=UnicodeIsExtender@UCS4 +ID16498=UnicodeIsHyphen@UCS4 +ID16499=UnicodeIsIdeographic@UCS4 ID165=_ADAPTER_STATUS.max_sess -ID1650=EpsExtended -ID1651=EpsilonSqr -ID1652=EpsSingle -ID1653=Equal@TPolarComplex@TPolarComplex -ID1654=Equal@TRectComplex@TRectComplex -ID1655=ERROR_NO_MORE_FILES -ID1656=ESharedMemError -ID1657=ETemperatureConversionError -ID1658=ETRANSMETA_BIT_10 -ID1659=ETRANSMETA_BIT_11 +ID1650=EDIDataType_Identifier +ID16500=UnicodeIsIDSBinaryOperator@UCS4 +ID16501=UnicodeIsIDSTrinaryOperator@UCS4 +ID16502=UnicodeIsJoinControl@UCS4 +ID16503=UnicodeIsLeftToRightEmbedding@UCS4 +ID16504=UnicodeIsLeftToRightOverride@UCS4 +ID16505=UnicodeIsLetterOther@UCS4 +ID16506=UnicodeIsLogicalOrderException@UCS4 +ID16507=UnicodeIsNonCharacterCodePoint@UCS4 +ID16508=UnicodeIsNumberOther@UCS4 +ID16509=UnicodeIsOtherAlphabetic@UCS4 +ID1651=EDIDataType_Numeric +ID16510=UnicodeIsOtherDefaultIgnorableCodePoint@UCS4 +ID16511=UnicodeIsOtherGraphemeExtend@UCS4 +ID16512=UnicodeIsOtherIDContinue@UCS4 +ID16513=UnicodeIsOtherIDStart@UCS4 +ID16514=UnicodeIsOtherLowercase@UCS4 +ID16515=UnicodeIsOtherMath@UCS4 +ID16516=UnicodeIsOtherNeutrals@UCS4 +ID16517=UnicodeIsOtherUppercase@UCS4 +ID16518=UnicodeIsPatternSyntax@UCS4 +ID16519=UnicodeIsPatternWhiteSpace@UCS4 +ID1652=EDIDataType_String +ID16520=UnicodeIsPopDirectionalFormat@UCS4 +ID16521=UnicodeIsPunctuationOther@UCS4 +ID16522=UnicodeIsRadical@UCS4 +ID16523=UnicodeIsRightToLeftArabic@UCS4 +ID16524=UnicodeIsRightToLeftEmbedding@UCS4 +ID16525=UnicodeIsRightToLeftOverride@UCS4 +ID16526=UnicodeIsSegmentSeparator@UCS4 +ID16527=UnicodeIsSoftDotted@UCS4 +ID16528=UnicodeIsSTerm@UCS4 +ID16529=UnicodeIsSymbolOther@UCS4 +ID1653=EDIDataType_Time +ID16530=UnicodeIsTerminalPunctuation@UCS4 +ID16531=UnicodeIsUnassigned@UCS4 +ID16532=UnicodeIsUnifiedIdeograph@UCS4 +ID16533=UnicodeIsVariationSelector@UCS4 +ID16534=UnicodeStrSimpleCompare@UnicodeString@UnicodeString +ID16535=UnicodeStrSimpleCompareI@UnicodeString@UnicodeString +ID16536=UnicodeStrSimpleEqualityCompare@UnicodeString@UnicodeString +ID16537=UnicodeStrSimpleEqualityCompareI@UnicodeString@UnicodeString +ID16538=UnicodeStrSimpleHashConvert@UnicodeString +ID16539=UnicodeStrSimpleHashConvertI@UnicodeString +ID1654=EDISEFUserAttributeAmpersand +ID16540=UnicodeStrSortProc +ID16541=UNIQUE_NAME +ID16542=UnitConversions +ID16543=UNITS_PER_DAY +ID16544=UNITS_PER_WEEK +ID16545=UnitVersioning +ID16546=UNITVERSIONING +ID16547=UnixTimeStart +ID16548=UNLEN +ID16549=Unload7Zip +ID1655=EDISEFUserAttributeAmpersandDesc +ID16550=UnloadBZip2 +ID16551=UnloadPCRE +ID16552=UnloadSnmp +ID16553=UnloadSnmpExtension +ID16554=UnloadZLib +ID16555=UnMapAndLoad@LOADED_IMAGE +ID16556=Unmask8087Exceptions +ID16557=UnRegisterCLSIDInCategory@TGUID@TGUID +ID16558=UnregisterUnitVersion@THandle +ID16559=UnRegisterVersionControlPluginClass@TJclVersionControlPluginClass +ID1656=EDISEFUserAttributeDollarSign +ID16560=UNTSegmentId +ID16561=UNZSegmentId +ID16562=USER_INFO_0 +ID16563=USER_INFO_1 +ID16564=USER_INFO_2 +ID16565=USER_MAXSTORAGE_UNLIMITED +ID16566=USER_NO_LOGOFF +ID16567=USER_PRIV_ADMIN +ID16568=USER_PRIV_GUEST +ID16569=USER_PRIV_MASK +ID1657=EDISEFUserAttributeDollarSignDesc +ID16570=USER_PRIV_USER +ID16571=USHORT +ID16572=UTCNow +ID16573=UTF16 +ID16574=UTF16CharCount@TUTF16String +ID16575=UTF16GetNextChar@TUTF16String@SizeInt +ID16576=UTF16GetNextChar@UnicodeString@SizeInt +ID16577=UTF16GetNextCharFromStream@TStream@UCS4 +ID16578=UTF16GetPreviousChar@TUTF16String@SizeInt +ID16579=UTF16GetPreviousChar@UnicodeString@SizeInt +ID1658=EDISEFUserAttributeExclamationPoint +ID16580=UTF16SetNextChar@TUTF16String@SizeInt@UCS4 +ID16581=UTF16SetNextChar@UnicodeString@SizeInt@UCS4 +ID16582=UTF16SetNextCharToStream@TStream@UCS4 +ID16583=UTF16SkipChars@TUTF16String@SizeInt@SizeInt +ID16584=UTF16SkipChars@UnicodeString@SizeInt@SizeInt +ID16585=UTF16SkipCharsFromStream@TStream@SizeInt +ID16586=UTF16ToAnsiString@TUTF16String +ID16587=UTF16ToString@TUTF16String +ID16588=UTF16ToUCS4@TUTF16String +ID16589=UTF16ToUTF8@TUTF16String +ID1659=EDISEFUserAttributeExclamationPointDesc +ID16590=UTF32 +ID16591=UTF7 +ID16592=UTF8 +ID16593=UTF8CharCount@TUTF8String +ID16594=UTF8GetNextChar@TUTF8String@SizeInt +ID16595=UTF8GetNextCharFromStream@TStream@UCS4 +ID16596=UTF8SetNextChar@TUTF8String@SizeInt@UCS4 +ID16597=UTF8SetNextCharToStream@TStream@UCS4 +ID16598=UTF8SkipChars@TUTF8String@SizeInt@SizeInt +ID16599=UTF8SkipCharsFromStream@TStream@SizeInt ID166=_ADAPTER_STATUS.max_sess_pkt_size -ID1660=ETRANSMETA_BIT_12 -ID1661=ETRANSMETA_BIT_13 -ID1662=ETRANSMETA_BIT_14 -ID1663=ETRANSMETA_BIT_17 -ID1664=ETRANSMETA_BIT_18 -ID1665=ETRANSMETA_BIT_19 -ID1666=ETRANSMETA_BIT_20 -ID1667=ETRANSMETA_BIT_21 -ID1668=ETRANSMETA_BIT_22 -ID1669=ETRANSMETA_BIT_24 +ID1660=EDISEFUserAttributeHyphen +ID16600=UTF8ToAnsiString@TUTF8String +ID16601=UTF8ToString@TUTF8String +ID16602=UTF8ToUCS4@TUTF8String +ID16603=UTF8ToUTF16@TUTF8String +ID16604=ValidateMutexName@string +ID16605=Value_UndefinedMaximum +ID16606=VariantArrayToStream@OleVariant@IStream +ID16607=VariantArrayToStream@OleVariant@TStream +ID16608=VarXML +ID16609=VendorIDAMD +ID1661=EDISEFUserAttributeHyphenDesc +ID16610=VendorIDCyrix +ID16611=VendorIDIntel +ID16612=VendorIDTransmeta +ID16613=VendorIDVIA +ID16614=VER_AND +ID16615=VER_BUILDNUMBER +ID16616=VER_CONDITION_MASK +ID16617=VER_EQUAL +ID16618=VER_GREATER +ID16619=VER_GREATER_EQUAL +ID1662=EDISEFUserAttributePeriod +ID16620=VER_LESS +ID16621=VER_LESS_EQUAL +ID16622=VER_MAJORVERSION +ID16623=VER_MINORVERSION +ID16624=VER_NUM_BITS_PER_CONDITION_MASK +ID16625=VER_OR +ID16626=VER_PLATFORM_WIN32_NT +ID16627=VER_PLATFORM_WIN32_WINDOWS +ID16628=VER_PLATFORM_WIN32s +ID16629=VER_PLATFORMID +ID1663=EDISEFUserAttributePeriodDesc +ID16630=VER_PRODUCT_TYPE +ID16631=VER_SERVER_NT +ID16632=VER_SERVICEPACKMAJOR +ID16633=VER_SERVICEPACKMINOR +ID16634=VER_SUITE_BLADE +ID16635=VER_SUITE_COMPUTE_SERVER +ID16636=VER_SUITE_EMBEDDED_RESTRICTED +ID16637=VER_SUITE_SECURITY_APPLIANCE +ID16638=VER_SUITE_STORAGE_SERVER +ID16639=VER_SUITENAME +ID1664=EDISEFUserAttributeSet +ID16640=VER_WORKSTATION_NT +ID16641=Version numbers +ID16642=VersionControlActionInfo@TJclVersionControlActionType +ID16643=VersionControlPluginList +ID16644=VersionExtractFileInfo@TVSFixedFileInfo@Word@Word@Word@Word +ID16645=VersionExtractProductInfo@TVSFixedFileInfo@Word@Word@Word@Word +ID16646=VersionFixedFileInfoString@string@TFileVersionFormat@string +ID16647=VersionResourceAvailable@HWND +ID16648=VersionResourceAvailable@string +ID16649=VFT2_DRV_COMM +ID1665=EDIXMLError001 +ID16650=VFT2_DRV_DISPLAY +ID16651=VFT2_DRV_INSTALLABLE +ID16652=VFT2_DRV_KEYBOARD +ID16653=VFT2_DRV_LANGUAGE +ID16654=VFT2_DRV_MOUSE +ID16655=VFT2_DRV_NETWORK +ID16656=VFT2_DRV_PRINTER +ID16657=VFT2_DRV_SOUND +ID16658=VFT2_DRV_SYSTEM +ID16659=VFT2_UNKNOWN +ID1666=EDIXMLError002 +ID16660=VIA_3DNOW +ID16661=VIA_APIC +ID16662=VIA_BIT_10 +ID16663=VIA_BIT_19 +ID16664=VIA_BIT_20 +ID16665=VIA_BIT_21 +ID16666=VIA_BIT_22 +ID16667=VIA_BIT_26 +ID16668=VIA_BIT_27 +ID16669=VIA_BIT_28 +ID1667=EDIXMLError003 +ID16670=VIA_BIT_29 +ID16671=VIA_BIT_30 +ID16672=VIA_CMOVE +ID16673=VIA_CX8 +ID16674=VIA_DE +ID16675=VIA_FPU +ID16676=VIA_FX +ID16677=VIA_MCA +ID16678=VIA_MCE +ID16679=VIA_MMX +ID1668=EDIXMLError004 +ID16680=VIA_MSR +ID16681=VIA_MTRR +ID16682=VIA_PAE +ID16683=VIA_PAT +ID16684=VIA_PSE +ID16685=VIA_PSE2 +ID16686=VIA_PTE +ID16687=VIA_SEP +ID16688=VIA_SNUM +ID16689=VIA_SSE +ID1669=EDIXMLError005 +ID16690=VIA_TSC +ID16691=VIA_VME +ID16692=VME_FLAG +ID16693=VOS__BASE +ID16694=VOS__PM16 +ID16695=VOS__PM32 +ID16696=VOS__WINDOWS16 +ID16697=VOS__WINDOWS32 +ID16698=WaitAlertableForMultipleObjects@array of TJclDispatcherObject@Boolean@Cardinal +ID16699=WaitForMultipleObjects@array of TJclDispatcherObject@Boolean@Cardinal ID167=_ADAPTER_STATUS.name_count -ID1670=ETRANSMETA_BIT_25 -ID1671=ETRANSMETA_BIT_26 -ID1672=ETRANSMETA_BIT_27 -ID1673=ETRANSMETA_BIT_28 -ID1674=ETRANSMETA_BIT_29 -ID1675=ETRANSMETA_BIT_30 -ID1676=ETRANSMETA_BIT_31 -ID1677=ETRANSMETA_BIT_6 -ID1678=ETRANSMETA_BIT_7 -ID1679=ETRANSMETA_BIT_9 +ID1670=EDIXMLError006 +ID16700=WideCarriageReturn +ID16701=WideCaseConvert@WideChar@TCaseType +ID16702=WideCaseConvert@WideString@TCaseType +ID16703=WideCaseFolding@WideChar +ID16704=WideCaseFolding@WideString +ID16705=WideCharToChar@WideChar +ID16706=WideCharToUCS4@WideChar +ID16707=WideCompareStr@WideString@WideString +ID16708=WideCompareText +ID16709=WideCompareText@WideString@WideString +ID1671=EDIXMLError007 +ID16710=WideCR +ID16711=WideCRLF +ID16712=WideFormat@WideString@array of const +ID16713=WideFormFeed +ID16714=WideLF +ID16715=WideLineBreak +ID16716=WideLineFeed +ID16717=WideLineSeparator +ID16718=WideLowerCase@WideString +ID16719=WideMultiSzDup@PWideMultiSz +ID1672=EDIXMLError008 +ID16720=WideMultiSzLength@PWideMultiSz +ID16721=WideMultiSzToWideStrings@TWideStrings@PWideMultiSz +ID16722=WideNull +ID16723=WideParagraphSeparator +ID16724=WidePos@WideString@WideString +ID16725=WideReverse@Widestring +ID16726=WideReverseInPlace@WideString +ID16727=WideSpace +ID16728=WideStartsStr@WideString@WideString +ID16729=WideStartsText@WideString@WideString +ID1673=EDIXMLError009 +ID16730=WideStringsToWideMultiSz@PWideMultiSz@TWideStrings +ID16731=WideStringStreamCopy@TJclStringStream@TJclStringStream@Longint +ID16732=WideStringToUCS4@WideString +ID16733=WideStrSimpleCompare@WideString@WideString +ID16734=WideStrSimpleCompareI@WideString@WideString +ID16735=WideStrSimpleEqualityCompare@WideString@WideString +ID16736=WideStrSimpleEqualityCompareI@WideString@WideString +ID16737=WideStrSimpleHashConvert@WideString +ID16738=WideStrSimpleHashConvertI@WideString +ID16739=WideStrSortProc +ID1674=EDIXMLError010 +ID16740=WideTabulator +ID16741=WideTitleCase@WideChar +ID16742=WideTitleCase@WideString +ID16743=WideUpperCase@WideString +ID16744=WideVerticalTab +ID16745=WinColor@TColor32 +ID16746=WinColorToOpenGLColor@TColor@Float@Float@Float +ID16747=Windows.ComponentObjectModel +ID16748=Windows.LANManager +ID16749=Windows.Security +ID1675=EDIXMLError011 +ID16750=Windows.ServiceControl +ID16751=Windows.Shell +ID16752=Windows.Win32API +ID16753=Windows_Specific +ID16754=windowsonly.inc +ID16755=WindowToModuleFileName@HWND +ID16756=WinExec32@string@Integer +ID16757=WinExec32AndRedirectOutput@string@string@Boolean +ID16758=WinExec32AndWait@string@Integer +ID16759=WordMask +ID1676=EDIXMLError012 +ID16760=WriteIcon@TStream@HBITMAP@HBITMAP@Boolean +ID16761=WriteProtectedMemory@Pointer@Pointer@Cardinal@Cardinal +ID16762=XMLAttribute_Description +ID16763=XMLAttribute_Id +ID16764=XMLAttribute_MaximumLength +ID16765=XMLAttribute_MaximumUsage +ID16766=XMLAttribute_MinimumLength +ID16767=XMLAttribute_OwnerLoopId +ID16768=XMLAttribute_ParentLoopId +ID16769=XMLAttribute_Position +ID1677=EDIXMLError013 +ID16770=XMLAttribute_RequirementDesignator +ID16771=XMLAttribute_Section +ID16772=XMLAttribute_Type +ID16773=XMLCreate +ID16774=XMLCreate@TJclSimpleXMLElem +ID16775=XMLCreateInto@Variant@TJclSimpleXMLElem +ID16776=XMLDecode@string +ID16777=XMLEncode@string +ID16778=XMLTag_EDIFile +ID16779=XMLTag_Element +ID1678=EDIXMLError014 +ID16780=XMLTag_FGHSegmentId +ID16781=XMLTag_FGTSegmentId +ID16782=XMLTag_FunctionalGroup +ID16783=XMLTag_ICHSegmentId +ID16784=XMLTag_ICTSegmentId +ID16785=XMLTag_InterchangeControl +ID16786=XMLTag_Segment +ID16787=XMLTag_TransactionSet +ID16788=XMLTag_TransactionSetLoop +ID16789=XMLTag_TSHSegmentId +ID1679=EDIXMLError015 +ID16790=XMLTag_TSTSegmentId +ID16791=ZLIB_LINKDLL +ID16792=ZLIB_LINKONREQUEST +ID16793=ZLIB_STATICLINK +ID16794=zlibh.pas ID168=_ADAPTER_STATUS.pending_sess -ID1680=ETRANSMETA_CMOV -ID1681=ETRANSMETA_CX8 -ID1682=ETRANSMETA_DE -ID1683=ETRANSMETA_FCMOV -ID1684=ETRANSMETA_FPU -ID1685=ETRANSMETA_MMX -ID1686=ETRANSMETA_MSR -ID1687=ETRANSMETA_PSE -ID1688=ETRANSMETA_TSC -ID1689=ETRANSMETA_VME +ID1680=EDIXMLError016 +ID1681=EDIXMLError017 +ID1682=EDIXMLError018 +ID1683=EDIXMLError019 +ID1684=EDIXMLError020 +ID1685=EDIXMLError021 +ID1686=EDIXMLError022 +ID1687=EDIXMLError023 +ID1688=EDIXMLError024 +ID1689=EDIXMLError025 ID169=_ADAPTER_STATUS.recv_buff_unavail -ID1690=EulerMascheroni -ID1691=EUnitConversionError -ID1692=EveryoneSCMDesiredAccess -ID1693=EVIA_ACEE -ID1694=EVIA_AIS -ID1695=EVIA_AISE -ID1696=EVIA_BIT_10 -ID1697=EVIA_BIT_11 -ID1698=EVIA_BIT_12 -ID1699=EVIA_BIT_13 +ID1690=EDIXMLError026 +ID1691=EDIXMLError027 +ID1692=EDIXMLError028 +ID1693=EDIXMLError029 +ID1694=EDIXMLError030 +ID1695=EDIXMLError031 +ID1696=EDIXMLError032 +ID1697=EDIXMLError033 +ID1698=EDIXMLError034 +ID1699=EDIXMLError035 ID17=!!OVERLOADED_Create_TEDIDelimiters ID170=_ADAPTER_STATUS.recv_success -ID1700=EVIA_BIT_14 -ID1701=EVIA_BIT_15 -ID1702=EVIA_BIT_16 -ID1703=EVIA_BIT_17 -ID1704=EVIA_BIT_18 -ID1705=EVIA_BIT_19 -ID1706=EVIA_BIT_20 -ID1707=EVIA_BIT_21 -ID1708=EVIA_BIT_22 -ID1709=EVIA_BIT_23 +ID1700=EDIXMLError036 +ID1701=EDIXMLError037 +ID1702=EDIXMLError038 +ID1703=EDIXMLError039 +ID1704=EDIXMLError040 +ID1705=EDIXMLError041 +ID1706=EDIXMLError042 +ID1707=EDIXMLError043 +ID1708=EDIXMLError044 +ID1709=EDIXMLError045 ID171=_ADAPTER_STATUS.reserved0 -ID1710=EVIA_BIT_24 -ID1711=EVIA_BIT_25 -ID1712=EVIA_BIT_26 -ID1713=EVIA_BIT_27 -ID1714=EVIA_BIT_28 -ID1715=EVIA_BIT_29 -ID1716=EVIA_BIT_30 -ID1717=EVIA_BIT_31 -ID1718=EVIA_BIT_8 -ID1719=EVIA_BIT_9 +ID1710=EDIXMLError046 +ID1711=EDIXMLError047 +ID1712=EDIXMLError048 +ID1713=EDIXMLError049 +ID1714=EDIXMLError050 +ID1715=EDIXMLError051 +ID1716=EDIXMLError052 +ID1717=EDIXMLError053 +ID1718=EDIXMLError054 +ID1719=EDIXMLError055 ID172=_ADAPTER_STATUS.reserved1 -ID1720=EVIA_FEMMS -ID1721=EVIA_MSR -ID1722=EVIA_NO_ACE -ID1723=EVIA_NO_RNG -ID1724=EVIA_RNGE -ID1725=EVLEN -ID1726=Execute@string@string@Boolean@PBoolean -ID1727=Execute@string@TTextHandler@Boolean@PBoolean -ID1728=Exp@TRectComplex -ID1729=ExprEval +ID1720=EDIXMLError056 +ID1721=EDIXMLError057 +ID1722=EDIXMLError058 +ID1723=EDIXMLError059 +ID1724=EDIXMLError060 +ID1725=EDIXMLError061 +ID1726=EDIXMLError062 +ID1727=EINTEL_AES +ID1728=EINTEL_AVX +ID1729=EINTEL_BIT_1 ID173=_ADAPTER_STATUS.rev_major -ID1730=Exsecans@Float -ID1731=ExtractCompositeElementFrom@TEDISEFDataObjectGroup@TEDISEFCompositeElement -ID1732=ExtractElementFrom@TEDISEFDataObjectGroup@TEDISEFElement -ID1733=ExtractFromDataObjectGroup@array of TEDISEFDataObjectClass@TEDISEFDataObjectGroup@TObjectList -ID1734=ExtractFromDataObjectGroup@TEDISEFDataObjectClass@TEDISEFDataObjectGroup@TObjectList -ID1735=ExtractLoopFrom@TEDISEFDataObjectGroup@TEDISEFLoop -ID1736=ExtractRepeatingPatternFrom@TEDISEFDataObjectGroup@TEDISEFRepeatingPattern -ID1737=ExtractSegmentFrom@TEDISEFDataObjectGroup@TEDISEFSegment -ID1738=ExtractSubElementFrom@TEDISEFDataObjectGroup@TEDISEFSubElement -ID1739=ExtractTableFrom@TEDISEFDataObjectGroup@TEDISEFTable +ID1730=EINTEL_BIT_11 +ID1731=EINTEL_BIT_12 +ID1732=EINTEL_BIT_15 +ID1733=EINTEL_BIT_16 +ID1734=EINTEL_BIT_17 +ID1735=EINTEL_BIT_18 +ID1736=EINTEL_BIT_19 +ID1737=EINTEL_BIT_2 +ID1738=EINTEL_BIT_20 +ID1739=EINTEL_BIT_21 ID174=_ADAPTER_STATUS.rev_minor -ID1740=faCompressed -ID1741=faEncrypted -ID1742=FahrenheitAbsoluteZero -ID1743=FahrenheitBoilingPoint -ID1744=FahrenheitFreezingPoint -ID1745=FahrenheitTo@TTemperatureType@Float -ID1746=FahrenheitToRankine@Float -ID1747=FahrenheitToReaumur@Float -ID1748=faNormalFile -ID1749=faNotContentIndexed +ID1740=EINTEL_BIT_22 +ID1741=EINTEL_BIT_23 +ID1742=EINTEL_BIT_24 +ID1743=EINTEL_BIT_25 +ID1744=EINTEL_BIT_26 +ID1745=EINTEL_BIT_27 +ID1746=EINTEL_BIT_28 +ID1747=EINTEL_BIT_29 +ID1748=EINTEL_BIT_30 +ID1749=EINTEL_BIT_31 ID175=_ADAPTER_STATUS.t1_timeouts -ID1750=faOffline -ID1751=faRejectedByDefault -ID1752=faReparsePoint -ID1753=faSparseFile -ID1754=FastDegToGrad -ID1755=FastDegToRad -ID1756=FastGradToDeg -ID1757=FastGradToRad -ID1758=FastRadToDeg -ID1759=FastRadToGrad +ID1750=EINTEL_BIT_6 +ID1751=EINTEL_CMPXCHG16B +ID1752=EINTEL_CNXTID +ID1753=EINTEL_CX16 +ID1754=EINTEL_DCA +ID1755=EINTEL_DSCPL +ID1756=EINTEL_DTES64 +ID1757=EINTEL_EST +ID1758=EINTEL_FMA +ID1759=EINTEL_MONITOR ID176=_ADAPTER_STATUS.ti_timeouts -ID1760=faSymLink -ID1761=FATDatesEqual@TFileTime@TFileTime -ID1762=faTemporary -ID1763=faUnixSpecific -ID1764=faWindowsSpecific -ID1765=FGHSegmentId -ID1766=FGTSegmentId -ID1767=Fibonacci@Integer -ID1768=FILE_ACTION_ADDED -ID1769=FILE_ACTION_MODIFIED +ID1760=EINTEL_MOVBE +ID1761=EINTEL_OSXSAVE +ID1762=EINTEL_PCID +ID1763=EINTEL_PCLMULQDQ +ID1764=EINTEL_PDCM +ID1765=EINTEL_POPCNT +ID1766=EINTEL_SMX +ID1767=EINTEL_SSE3 +ID1768=EINTEL_SSE4_1 +ID1769=EINTEL_SSE4_2 ID177=_ADAPTER_STATUS.xmit_aborts -ID1770=FILE_ACTION_REMOVED -ID1771=FILE_ACTION_RENAMED_NEW_NAME -ID1772=FILE_ACTION_RENAMED_OLD_NAME -ID1773=FILE_ADD_FILE -ID1774=FILE_ADD_SUBDIRECTORY -ID1775=FILE_ALL_ACCESS -ID1776=FILE_ALLOCATED_RANGE_BUFFER -ID1777=FILE_APPEND_DATA -ID1778=FILE_ATTRIBUTE_ARCHIVE -ID1779=FILE_ATTRIBUTE_COMPRESSED +ID1770=EINTEL_SSSE3 +ID1771=EINTEL_TM2 +ID1772=EINTEL_TSC_DL +ID1773=EINTEL_VMX +ID1774=EINTEL_X2APIC +ID1775=EINTEL_XSAVE +ID1776=EINTEL_XTPR +ID1777=EINTEL64_1GBYTE +ID1778=EINTEL64_2_BIT_1 +ID1779=EINTEL64_2_BIT_10 ID178=_ADAPTER_STATUS.xmit_buf_unavail -ID1780=FILE_ATTRIBUTE_DIRECTORY -ID1781=FILE_ATTRIBUTE_HIDDEN -ID1782=FILE_ATTRIBUTE_NORMAL -ID1783=FILE_ATTRIBUTE_OFFLINE -ID1784=FILE_ATTRIBUTE_READONLY -ID1785=FILE_ATTRIBUTE_SYSTEM -ID1786=FILE_ATTRIBUTE_TEMPORARY -ID1787=FILE_CASE_PRESERVED_NAMES -ID1788=FILE_CASE_SENSITIVE_SEARCH -ID1789=FILE_CREATE_PIPE_INSTANCE +ID1780=EINTEL64_2_BIT_11 +ID1781=EINTEL64_2_BIT_12 +ID1782=EINTEL64_2_BIT_13 +ID1783=EINTEL64_2_BIT_14 +ID1784=EINTEL64_2_BIT_15 +ID1785=EINTEL64_2_BIT_16 +ID1786=EINTEL64_2_BIT_17 +ID1787=EINTEL64_2_BIT_18 +ID1788=EINTEL64_2_BIT_19 +ID1789=EINTEL64_2_BIT_2 ID179=_ADAPTER_STATUS.xmit_success -ID1790=FILE_DELETE_CHILD -ID1791=FILE_DEVICE_8042_PORT -ID1792=FILE_DEVICE_ACPI -ID1793=FILE_DEVICE_BATTERY -ID1794=FILE_DEVICE_BEEP -ID1795=FILE_DEVICE_BUS_EXTENDER -ID1796=FILE_DEVICE_CD_ROM -ID1797=FILE_DEVICE_CD_ROM_FILE_SYSTEM -ID1798=FILE_DEVICE_CHANGER -ID1799=FILE_DEVICE_CONTROLLER +ID1790=EINTEL64_2_BIT_20 +ID1791=EINTEL64_2_BIT_21 +ID1792=EINTEL64_2_BIT_22 +ID1793=EINTEL64_2_BIT_23 +ID1794=EINTEL64_2_BIT_24 +ID1795=EINTEL64_2_BIT_25 +ID1796=EINTEL64_2_BIT_26 +ID1797=EINTEL64_2_BIT_27 +ID1798=EINTEL64_2_BIT_28 +ID1799=EINTEL64_2_BIT_29 ID18=!!OVERLOADED_Create_TEDIXMLFunctionalGroupSegment ID180=_FIND_NAME_BUFFER -ID1800=FILE_DEVICE_DATALINK -ID1801=FILE_DEVICE_DFS -ID1802=FILE_DEVICE_DFS_FILE_SYSTEM -ID1803=FILE_DEVICE_DFS_VOLUME -ID1804=FILE_DEVICE_DISK -ID1805=FILE_DEVICE_DISK_FILE_SYSTEM -ID1806=FILE_DEVICE_DVD -ID1807=FILE_DEVICE_FIPS -ID1808=FILE_DEVICE_FULLSCREEN_VIDEO -ID1809=FILE_DEVICE_INFINIBAND +ID1800=EINTEL64_2_BIT_3 +ID1801=EINTEL64_2_BIT_30 +ID1802=EINTEL64_2_BIT_31 +ID1803=EINTEL64_2_BIT_4 +ID1804=EINTEL64_2_BIT_5 +ID1805=EINTEL64_2_BIT_6 +ID1806=EINTEL64_2_BIT_7 +ID1807=EINTEL64_2_BIT_8 +ID1808=EINTEL64_2_BIT_9 +ID1809=EINTEL64_2_LAHF ID181=_FIND_NAME_BUFFER.access_control -ID1810=FILE_DEVICE_INPORT_PORT -ID1811=FILE_DEVICE_KEYBOARD -ID1812=FILE_DEVICE_KS -ID1813=FILE_DEVICE_KSEC -ID1814=FILE_DEVICE_MAILSLOT -ID1815=FILE_DEVICE_MASS_STORAGE -ID1816=FILE_DEVICE_MIDI_IN -ID1817=FILE_DEVICE_MIDI_OUT -ID1818=FILE_DEVICE_MODEM -ID1819=FILE_DEVICE_MOUSE +ID1810=EINTEL64_BIT_0 +ID1811=EINTEL64_BIT_1 +ID1812=EINTEL64_BIT_10 +ID1813=EINTEL64_BIT_12 +ID1814=EINTEL64_BIT_13 +ID1815=EINTEL64_BIT_14 +ID1816=EINTEL64_BIT_15 +ID1817=EINTEL64_BIT_16 +ID1818=EINTEL64_BIT_17 +ID1819=EINTEL64_BIT_18 ID182=_FIND_NAME_BUFFER.destination_addr -ID1820=FILE_DEVICE_MULTI_UNC_PROVIDER -ID1821=FILE_DEVICE_NAMED_PIPE -ID1822=FILE_DEVICE_NETWORK -ID1823=FILE_DEVICE_NETWORK_BROWSER -ID1824=FILE_DEVICE_NETWORK_FILE_SYSTEM -ID1825=FILE_DEVICE_NETWORK_REDIRECTOR -ID1826=FILE_DEVICE_NULL -ID1827=FILE_DEVICE_PARALLEL_PORT -ID1828=FILE_DEVICE_PHYSICAL_NETCARD -ID1829=FILE_DEVICE_PRINTER +ID1820=EINTEL64_BIT_19 +ID1821=EINTEL64_BIT_2 +ID1822=EINTEL64_BIT_21 +ID1823=EINTEL64_BIT_22 +ID1824=EINTEL64_BIT_23 +ID1825=EINTEL64_BIT_24 +ID1826=EINTEL64_BIT_25 +ID1827=EINTEL64_BIT_26 +ID1828=EINTEL64_BIT_27 +ID1829=EINTEL64_BIT_28 ID183=_FIND_NAME_BUFFER.frame_control -ID1830=FILE_DEVICE_SCANNER -ID1831=FILE_DEVICE_SCREEN -ID1832=FILE_DEVICE_SERENUM -ID1833=FILE_DEVICE_SERIAL_MOUSE_PORT -ID1834=FILE_DEVICE_SERIAL_PORT -ID1835=FILE_DEVICE_SMARTCARD -ID1836=FILE_DEVICE_SMB -ID1837=FILE_DEVICE_SOUND -ID1838=FILE_DEVICE_STREAMS -ID1839=FILE_DEVICE_TAPE +ID1830=EINTEL64_BIT_3 +ID1831=EINTEL64_BIT_30 +ID1832=EINTEL64_BIT_31 +ID1833=EINTEL64_BIT_4 +ID1834=EINTEL64_BIT_5 +ID1835=EINTEL64_BIT_6 +ID1836=EINTEL64_BIT_7 +ID1837=EINTEL64_BIT_8 +ID1838=EINTEL64_BIT_9 +ID1839=EINTEL64_EDB ID184=_FIND_NAME_BUFFER.length -ID1840=FILE_DEVICE_TAPE_FILE_SYSTEM -ID1841=FILE_DEVICE_TERMSRV -ID1842=FILE_DEVICE_TRANSPORT -ID1843=FILE_DEVICE_UNKNOWN -ID1844=FILE_DEVICE_VDM -ID1845=FILE_DEVICE_VIDEO -ID1846=FILE_DEVICE_VIRTUAL_DISK -ID1847=FILE_DEVICE_WAVE_IN -ID1848=FILE_DEVICE_WAVE_OUT -ID1849=FILE_EXECUTE +ID1840=EINTEL64_EM64T +ID1841=EINTEL64_RDTSCP +ID1842=EINTEL64_SYS +ID1843=EINTEL64_XD +ID1844=EInvalidParam +ID1845=EJclAddr64Exception +ID1846=EJclAnsiStringError +ID1847=EJclAnsiStringListError +ID1848=EJclAssignError +ID1849=EJclBorRADException ID185=_FIND_NAME_BUFFER.routing_info -ID1850=FILE_FILE_COMPRESSION -ID1851=FILE_FLAG_BACKUP_SEMANTICS -ID1852=FILE_FLAG_DELETE_ON_CLOSE -ID1853=FILE_FLAG_FIRST_PIPE_INSTANCE -ID1854=FILE_FLAG_NO_BUFFERING -ID1855=FILE_FLAG_OPEN_NO_RECALL -ID1856=FILE_FLAG_OVERLAPPED -ID1857=FILE_FLAG_POSIX_SEMANTICS -ID1858=FILE_FLAG_RANDOM_ACCESS -ID1859=FILE_FLAG_SEQUENTIAL_SCAN +ID1850=EJclCharsetError +ID1851=EJclCliInstructionError +ID1852=EJclCliInstructionStreamInvalid +ID1853=EJclClrException +ID1854=EJclCommandLineToolError +ID1855=EJclCompilerUtilsException +ID1856=EJclCompressionError +ID1857=EJclConcurrentModificationError +ID1858=EJclContainerError +ID1859=EJclConversionError ID186=_FIND_NAME_BUFFER.source_addr -ID1860=FILE_FLAG_WRITE_THROUGH -ID1861=FILE_GENERIC_EXECUTE -ID1862=FILE_GENERIC_READ -ID1863=FILE_GENERIC_WRITE -ID1864=FILE_LIST_DIRECTORY -ID1865=FILE_NAMED_STREAMS -ID1866=FILE_NOTIFY_CHANGE_ATTRIBUTES -ID1867=FILE_NOTIFY_CHANGE_CREATION -ID1868=FILE_NOTIFY_CHANGE_DIR_NAME -ID1869=FILE_NOTIFY_CHANGE_FILE_NAME +ID1860=EJclCounterError +ID1861=EJclCriticalSectionError +ID1862=EJclDateTimeError +ID1863=EJclDispatcherObjectError +ID1864=EJclDuplicateElementError +ID1865=EJclEDIError +ID1866=EJclEventError +ID1867=EJclFileMappingError +ID1868=EJclFileMappingViewError +ID1869=EJclFileSummaryError ID187=_FIND_NAME_HEADER -ID1870=FILE_NOTIFY_CHANGE_LAST_ACCESS -ID1871=FILE_NOTIFY_CHANGE_LAST_WRITE -ID1872=FILE_NOTIFY_CHANGE_SECURITY -ID1873=FILE_NOTIFY_CHANGE_SIZE -ID1874=FILE_PERSISTENT_ACLS -ID1875=FILE_READ_ATTRIBUTES -ID1876=FILE_READ_EA -ID1877=FILE_READ_ONLY_VOLUME -ID1878=FILE_SHARE_DELETE -ID1879=FILE_SHARE_READ +ID1870=EJclFileUtilsError +ID1871=EJclFileVersionInfoError +ID1872=EJclGraphicsError +ID1873=EJclHelpUtilsException +ID1874=EJclIllegalArgumentError +ID1875=EJclIllegalQueueCapacityError +ID1876=EJclIllegalStateError +ID1877=EJclIllegalStateOperationError +ID1878=EJclMathError +ID1879=EJclMciError ID188=_FIND_NAME_HEADER.node_count -ID1880=FILE_SHARE_WRITE -ID1881=FILE_SUPPORTS_ENCRYPTION -ID1882=FILE_SUPPORTS_OBJECT_IDS -ID1883=FILE_SUPPORTS_REMOTE_STORAGE -ID1884=FILE_TRAVERSE -ID1885=FILE_UNICODE_ON_DISK -ID1886=FILE_VOLUME_IS_COMPRESSED -ID1887=FILE_VOLUME_QUOTAS -ID1888=FILE_WRITE_ATTRIBUTES -ID1889=FILE_WRITE_EA +ID1880=EJclMciError.Create@MCIERROR@string +ID1881=EJclMciError.CreateFmt@MCIERROR@string@array of const +ID1882=EJclMciError.CreateRes@MCIERROR@Integer +ID1883=EJclMciError.FMciErrorMsg +ID1884=EJclMciError.FMciErrorNo +ID1885=EJclMciError.MciErrorMsg +ID1886=EJclMciError.MciErrorNo +ID1887=EJclMetadataError +ID1888=EJclMeteredSectionError +ID1889=EJclMIDIError ID189=_FIND_NAME_HEADER.reserved -ID1890=FILE_ZERO_DATA_INFORMATION -ID1891=FilesandIO -ID1892=FileTimeToDosDateTime@TFileTime@Word@Word -ID1893=FileTimeToLocalDateTime -ID1894=FileTimeToSystemTime@TFileTime@TSystemTime -ID1895=FileToString@string -ID1896=Fill@IJclIntfIterator@Integer@IInterface -ID1897=Fill@IJclIterator@Integer@TObject -ID1898=Fill@IJclStrIterator@Integer@string -ID1899=Find@IJclIntfIterator@Integer@IInterface@TIntfCompare +ID1890=EJclMixerError +ID1891=EJclMmTimerError +ID1892=EJclMutexError +ID1893=EJclNaNSignal +ID1894=EJclNaNSignal.Create@TNaNTag@Boolean +ID1895=EJclNaNSignal.FTag +ID1896=EJclNaNSignal.Tag +ID1897=EJclNoCollectionError +ID1898=EJclNoComparerError +ID1899=EJclNoEqualityComparerError ID19=!!OVERLOADED_Create_TEDIXMLInterchangeControlSegment ID190=_FIND_NAME_HEADER.unique_group -ID1900=Find@IJclIterator@Integer@TObject@TCompare -ID1901=Find@IJclStrIterator@Integer@string@TStrCompare -ID1902=FIND_NAME_BUFFER -ID1903=FIND_NAME_HEADER -ID1904=FirstDayOfWeek@Integer@Integer@Integer -ID1905=FirstWeekDay@Integer@Integer -ID1906=FirstWeekDay@Integer@Integer@Integer -ID1907=FirstWeekendDay@Integer@Integer -ID1908=FirstWeekendDay@Integer@Integer@Integer -ID1909=FloatingPointClass@Extended +ID1900=EJclNoHashConverterError +ID1901=EJclNoSuchElementError +ID1902=EJclNtfsError +ID1903=EJclOpenDialogHookError +ID1904=EJclOperationNotSupportedError +ID1905=EJclOutOfBoundsError +ID1906=EJclPathError +ID1907=EJclPeImageError +ID1908=EJclPrinterError +ID1909=EJclReadOnlyError ID191=_FPO_DATA -ID1910=FloatingPointClass@Single -ID1911=FMTID_Audio -ID1912=FMTID_Briefcase -ID1913=FMTID_ControlPanel -ID1914=FMTID_Displaced -ID1915=FMTID_DocumentSummaryInformation -ID1916=FMTID_DRM -ID1917=FMTID_ImageInformation -ID1918=FMTID_ImageProperties -ID1919=FMTID_ImageSummaryInformation +ID1910=EJclRTTIError +ID1911=EJclScheduleError +ID1912=EJclSecurityError +ID1913=EJclSemaphoreError +ID1914=EJclSimpleXMLError +ID1915=EJclStatisticsError +ID1916=EJclStreamError +ID1917=EJclStringConversionError +ID1918=EJclStringError +ID1919=EJclStructStorageError ID192=_FPO_DATA.cbProcSize -ID1920=FMTID_JpegAppHeaders -ID1921=FMTID_Link -ID1922=FMTID_MediaFileSummaryInformation -ID1923=FMTID_Misc -ID1924=FMTID_MUSIC -ID1925=FMTID_Query -ID1926=FMTID_Share -ID1927=FMTID_ShellDetails -ID1928=FMTID_Storage -ID1929=FMTID_SummaryInformation +ID1920=EJclTempFileStreamError +ID1921=EJclUnexpectedEOSequenceError +ID1922=EJclUnicodeError +ID1923=EJclVMTError +ID1924=EJclWaitableTimerError +ID1925=EJclWideStringError +ID1926=EJclWin32HandleObjectError +ID1927=ElementSpecId_Reserved +ID1928=EMMS +ID1929=EmptyDelphiSet ID193=_FPO_DATA.cdwLocals -ID1930=FMTID_Video -ID1931=FMTID_Volume -ID1932=FMTID_WebView -ID1933=FOREST_USER_RID_MAX -ID1934=FormatException -ID1935=FormatVersionString@TVSFixedFileInfo@TFileVersionFormat -ID1936=FormatVersionString@Word@Word -ID1937=FormatVersionString@Word@Word@Word@Word -ID1938=FPO_DATA -ID1939=FPOFLAGS_FRAME +ID1930=ENCRYPTED_PWLEN +ID1931=EnsureRange@Double@Double@Double +ID1932=EnsureRange@Int64@Int64@Int64 +ID1933=EnsureRange@Integer@Integer@Integer +ID1934=EntityDecode@string +ID1935=EntityEncode@string +ID1936=EnumCalendarInfoExA@CALINFO_ENUMPROCEXA@LCID@CALID@CALTYPE +ID1937=EnumFiles@string@TFileInfoHandlerEx@Integer@Integer@PBoolean +ID1938=EnumTimeZones@TJclTimeZoneCallBackFunc +ID1939=EnvironmentVarAlternateNtSymbolPath ID194=_FPO_DATA.cdwParams -ID1940=FPOFLAGS_HAS_SEH -ID1941=FPOFLAGS_PROLOG -ID1942=FPOFLAGS_REGS -ID1943=FPOFLAGS_RESERVED -ID1944=FPOFLAGS_USE_BP -ID1945=FPU_FLAG -ID1946=FRAME_FPO -ID1947=FRAME_NONFPO -ID1948=FRAME_TRAP -ID1949=FRAME_TSS +ID1940=EnvironmentVarNtSymbolPath +ID1941=EPCREError +ID1942=EPCREError.CreateRes@PResStringRec@Integer +ID1943=EPCREError.ErrorCode +ID1944=EPCREError.FErrorCode +ID1945=EpsDouble +ID1946=EpsExtended +ID1947=EpsilonSqr +ID1948=EpsSingle +ID1949=Equal@TPolarComplex@TPolarComplex ID195=_FPO_DATA.Flags -ID1950=FreeTokenInformation@Pointer -ID1951=FreeWideMultiSz@PWideMultiSz -ID1952=FSCTL_ALLOW_EXTENDED_DASD_IO -ID1953=FSCTL_CREATE_OR_GET_OBJECT_ID -ID1954=FSCTL_CREATE_USN_JOURNAL -ID1955=FSCTL_DELETE_OBJECT_ID -ID1956=FSCTL_DELETE_USN_JOURNAL -ID1957=FSCTL_DISMOUNT_VOLUME -ID1958=FSCTL_ENCRYPTION_FSCTL_IO -ID1959=FSCTL_ENUM_USN_DATA +ID1950=Equal@TRectComplex@TRectComplex +ID1951=EqualityCompareEqObjects@TRefUnique@TRefUnique +ID1952=ERROR_NO_MORE_FILES +ID1953=ESharedMemError +ID1954=ETemperatureConversionError +ID1955=ETRANSMETA_BIT_10 +ID1956=ETRANSMETA_BIT_11 +ID1957=ETRANSMETA_BIT_12 +ID1958=ETRANSMETA_BIT_13 +ID1959=ETRANSMETA_BIT_14 ID196=_FPO_DATA.ulOffStart -ID1960=FSCTL_EXTEND_VOLUME -ID1961=FSCTL_FILE_PREFETCH -ID1962=FSCTL_FILESYSTEM_GET_STATISTICS -ID1963=FSCTL_FIND_FILES_BY_SID -ID1964=FSCTL_GET_NTFS_FILE_RECORD -ID1965=FSCTL_GET_NTFS_VOLUME_DATA -ID1966=FSCTL_GET_OBJECT_ID -ID1967=FSCTL_GET_RETRIEVAL_POINTERS -ID1968=FSCTL_GET_VOLUME_BITMAP -ID1969=FSCTL_HSM_DATA +ID1960=ETRANSMETA_BIT_17 +ID1961=ETRANSMETA_BIT_18 +ID1962=ETRANSMETA_BIT_19 +ID1963=ETRANSMETA_BIT_20 +ID1964=ETRANSMETA_BIT_21 +ID1965=ETRANSMETA_BIT_22 +ID1966=ETRANSMETA_BIT_24 +ID1967=ETRANSMETA_BIT_25 +ID1968=ETRANSMETA_BIT_26 +ID1969=ETRANSMETA_BIT_27 ID197=_GET_FILEEX_INFO_LEVELS -ID1970=FSCTL_HSM_MSG -ID1971=FSCTL_INVALIDATE_VOLUMES -ID1972=FSCTL_IS_PATHNAME_VALID -ID1973=FSCTL_IS_VOLUME_DIRTY -ID1974=FSCTL_IS_VOLUME_MOUNTED -ID1975=FSCTL_MARK_AS_SYSTEM_HIVE -ID1976=FSCTL_MARK_HANDLE -ID1977=FSCTL_MARK_VOLUME_DIRTY -ID1978=FSCTL_MOVE_FILE -ID1979=FSCTL_QUERY_FAT_BPB +ID1970=ETRANSMETA_BIT_28 +ID1971=ETRANSMETA_BIT_29 +ID1972=ETRANSMETA_BIT_30 +ID1973=ETRANSMETA_BIT_31 +ID1974=ETRANSMETA_BIT_6 +ID1975=ETRANSMETA_BIT_7 +ID1976=ETRANSMETA_BIT_9 +ID1977=ETRANSMETA_CMOV +ID1978=ETRANSMETA_CX8 +ID1979=ETRANSMETA_DE ID198=_GET_FILEEX_INFO_LEVELS.GetFileExInfoStandard -ID1980=FSCTL_QUERY_RETRIEVAL_POINTERS -ID1981=FSCTL_QUERY_USN_JOURNAL -ID1982=FSCTL_READ_FILE_USN_DATA -ID1983=FSCTL_READ_FROM_PLEX -ID1984=FSCTL_READ_RAW_ENCRYPTED -ID1985=FSCTL_READ_USN_JOURNAL -ID1986=FSCTL_RECALL_FILE -ID1987=FSCTL_SECURITY_ID_CHECK -ID1988=FSCTL_SET_ENCRYPTION -ID1989=FSCTL_SET_OBJECT_ID +ID1980=ETRANSMETA_FCMOV +ID1981=ETRANSMETA_FPU +ID1982=ETRANSMETA_MMX +ID1983=ETRANSMETA_MSR +ID1984=ETRANSMETA_PSE +ID1985=ETRANSMETA_TSC +ID1986=ETRANSMETA_VME +ID1987=EulerMascheroni +ID1988=EUnitConversionError +ID1989=EUsesListError ID199=_GET_FILEEX_INFO_LEVELS.GetFileExMaxInfoLevel -ID1990=FSCTL_SET_OBJECT_ID_EXTENDED -ID1991=FSCTL_SIS_COPYFILE -ID1992=FSCTL_SIS_LINK_FILES -ID1993=FSCTL_WRITE_RAW_ENCRYPTED -ID1994=FSCTL_WRITE_USN_CLOSE_RECORD -ID1995=fstat64@Integer@TStatBuf64 -ID1996=FXSR_FLAG -ID1997=Generate@IJclIntfList@Integer@IInterface -ID1998=Generate@IJclList@Integer@TObject -ID1999=Generate@IJclStrList@Integer@string +ID1990=EveryoneSCMDesiredAccess +ID1991=EVIA_ACEE +ID1992=EVIA_AIS +ID1993=EVIA_AISE +ID1994=EVIA_BIT_10 +ID1995=EVIA_BIT_11 +ID1996=EVIA_BIT_12 +ID1997=EVIA_BIT_13 +ID1998=EVIA_BIT_14 +ID1999=EVIA_BIT_15 ID2=!!FILES ID20=!!OVERLOADED_Create_TEDIXMLSegment ID200=_GROUP_INFO_0 -ID2000=GET_FILEEX_INFO_LEVELS -ID2001=Get8087ControlWord -ID2002=Get8087Infinity -ID2003=Get8087Precision -ID2004=Get8087Rounding -ID2005=GetAllowedPowerOperations -ID2006=GetAntialiasedBitmap -ID2007=GetAPMBatteryFlags -ID2008=GetBackupFileName -ID2009=GetBPKFileInfo@string@Boolean@PString@PString +ID2000=EVIA_BIT_16 +ID2001=EVIA_BIT_17 +ID2002=EVIA_BIT_18 +ID2003=EVIA_BIT_19 +ID2004=EVIA_BIT_20 +ID2005=EVIA_BIT_21 +ID2006=EVIA_BIT_22 +ID2007=EVIA_BIT_23 +ID2008=EVIA_BIT_24 +ID2009=EVIA_BIT_25 ID201=_GROUP_INFO_0.grpi0_name -ID2010=GetBPP -ID2011=GetBPRFileInfo@string@string@PString -ID2012=GetBytesEx@ -ID2013=GetCalendarInfoA@LCID@CALID@CALTYPE@LPSTR@Integer@LPDWORD -ID2014=GetCalendarInfoW@LCID@CALID@CALTYPE@LPWSTR@Integer@LPDWORD -ID2015=GetCDAudioTrackList@TJclCdTrackInfoArray@Char -ID2016=GetCDAudioTrackList@TStrings@Boolean@Char -ID2017=GetCdInfo@TJclCdMediaInfo@Char -ID2018=GetCharSetFromLocale@LCID@TFontCharSet -ID2019=GetCommonDocumentsFolder +ID2010=EVIA_BIT_26 +ID2011=EVIA_BIT_27 +ID2012=EVIA_BIT_28 +ID2013=EVIA_BIT_29 +ID2014=EVIA_BIT_30 +ID2015=EVIA_BIT_31 +ID2016=EVIA_BIT_8 +ID2017=EVIA_BIT_9 +ID2018=EVIA_FEMMS +ID2019=EVIA_MSR ID202=_GROUP_INFO_1 -ID2020=GetComputerSID@PSID@DWORD -ID2021=GetCORRequiredVersion@PWideChar@DWORD@DWORD -ID2022=GetCORSystemDirectory@PWideChar@DWORD@DWORD -ID2023=GetCORVersion@PWideChar@DWORD@DWORD -ID2024=GetCPUSpeed@TFreqInfo -ID2025=GetDefaultPrinterName -ID2026=GetDPKFileInfo@string@Boolean@PString@PString -ID2027=GetDPRFileInfo@string@string@PString -ID2028=GetEDISEFUserAttributeDescription@string -ID2029=GetEDISEFUserAttributeDescription@TEDISEFComsUserAttributes +ID2020=EVIA_NO_ACE +ID2021=EVIA_NO_RNG +ID2022=EVIA_RNGE +ID2023=EVLEN +ID2024=Execute@string@string@Boolean@PBoolean +ID2025=Execute@string@TTextHandler@Boolean@PBoolean +ID2026=Exp@TRectComplex +ID2027=ExpandASCIIString@PAnsiChar@PWideChar@SizeInt +ID2028=ExprEval +ID2029=Exsecans@Float ID203=_GROUP_INFO_1.grpi1_comment -ID2030=GetEnvironmentVar@string@string@Boolean -ID2031=GetEnvironmentVars@TStrings@Boolean -ID2032=GetFileCreation@string@TDateTime -ID2033=GetFileInformation@string@TSearchRec -ID2034=GetFileLastAccess@string@Boolean -ID2035=GetFileLastAccess@string@Integer@Boolean -ID2036=GetFileLastAccess@string@TDateTime -ID2037=GetFileLastAccess@string@TDateTime@Boolean -ID2038=GetFileLastAttrChange@string@Boolean -ID2039=GetFileLastAttrChange@string@Integer@Boolean +ID2030=ExtendedSimpleCompare@Extended@Extended +ID2031=ExtendedSimpleEqualityCompare@Extended@Extended +ID2032=ExtendedSimpleHashConvert@Extended +ID2033=ExtendedSortProc +ID2034=ExtractCompositeElementFrom@TEDISEFDataObjectGroup@TEDISEFCompositeElement +ID2035=ExtractElementFrom@TEDISEFDataObjectGroup@TEDISEFElement +ID2036=ExtractFromDataObjectGroup@array of TEDISEFDataObjectClass@TEDISEFDataObjectGroup@TObjectList +ID2037=ExtractFromDataObjectGroup@TEDISEFDataObjectClass@TEDISEFDataObjectGroup@TObjectList +ID2038=ExtractLoopFrom@TEDISEFDataObjectGroup@TEDISEFLoop +ID2039=ExtractRepeatingPatternFrom@TEDISEFDataObjectGroup@TEDISEFRepeatingPattern ID204=_GROUP_INFO_1.grpi1_name -ID2040=GetFileLastAttrChange@string@TDateTime@Boolean -ID2041=GetFileLastWrite@string@Boolean -ID2042=GetFileLastWrite@string@Integer@Boolean -ID2043=GetFileLastWrite@string@TDateTime -ID2044=GetFileLastWrite@string@TDateTime@Boolean -ID2045=GetFileNameIcon@string@Cardinal -ID2046=GetFileSecurity@LPCTSTR@SECURITY_INFORMATION@PSECURITY_DESCRIPTOR@DWORD@DWORD -ID2047=GetFileSecurityA@LPCSTR@SECURITY_INFORMATION@PSECURITY_DESCRIPTOR@DWORD@DWORD -ID2048=GetFileSecurityW@LPCWSTR@SECURITY_INFORMATION@PSECURITY_DESCRIPTOR@DWORD@DWORD -ID2049=GetFileStatus@string@TStatBuf64@Boolean +ID2040=ExtractSegmentFrom@TEDISEFDataObjectGroup@TEDISEFSegment +ID2041=ExtractSubElementFrom@TEDISEFDataObjectGroup@TEDISEFSubElement +ID2042=ExtractTableFrom@TEDISEFDataObjectGroup@TEDISEFTable +ID2043=faCompressed +ID2044=faEncrypted +ID2045=FahrenheitAbsoluteZero +ID2046=FahrenheitBoilingPoint +ID2047=FahrenheitFreezingPoint +ID2048=FahrenheitTo@TTemperatureType@Float +ID2049=FahrenheitToRankine@Float ID205=_IMAGE_ARCHIVE_MEMBER_HEADER -ID2050=GetFileVersion@PWideChar@PWideChar@DWORD@DWORD -ID2051=GetFreeSystemResources -ID2052=GetFreeSystemResources@TFreeSysResKind -ID2053=GetIconFromBitmap -ID2054=GetImageUnusedHeaderBytes@LOADED_IMAGE@DWORD -ID2055=GetImplementorOfInterface@IInterface -ID2056=GetIpAddresses@TStrings -ID2057=GetISOYearNumberOfDays@Word -ID2058=GetLocationInfo@Pointer@TJclLocationInfo -ID2059=GetMainAppWndFromPid@DWORD +ID2050=FahrenheitToReaumur@Float +ID2051=FamilyCodePageFromCharsetName@string +ID2052=FamilyCodePageFromCodePage@Word +ID2053=faNormalFile +ID2054=faNotContentIndexed +ID2055=faOffline +ID2056=faRejectedByDefault +ID2057=faReparsePoint +ID2058=faSparseFile +ID2059=FastDegToGrad ID206=_IMAGE_ARCHIVE_MEMBER_HEADER.Date -ID2060=GetMidiOutputs@TStrings -ID2061=GetMsdosSys -ID2062=GetNaNTag@Extended -ID2063=GetNaNTag@Single -ID2064=GetNativeSystemInfo@TSystemInfo -ID2065=GetParity@PByte@Integer -ID2066=GetParity@TDynByteArray@Integer -ID2067=GetPCRECalloutCallback -ID2068=GetPCREFreeCallback -ID2069=GetPCREMallocCallback +ID2060=FastDegToRad +ID2061=FastGradToDeg +ID2062=FastGradToRad +ID2063=FastRadToDeg +ID2064=FastRadToGrad +ID2065=faSymLink +ID2066=FATDatesEqual@TFileTime@TFileTime +ID2067=faTemporary +ID2068=faUnixSpecific +ID2069=faWindowsSpecific ID207=_IMAGE_ARCHIVE_MEMBER_HEADER.EndHeader -ID2070=GetPCREStackFreeCallback -ID2071=GetPCREStackMallocCallback -ID2072=GetPending8087Exceptions -ID2073=GetPrinterResolution -ID2074=GetProcessorArchitecture -ID2075=GetProfileFolder -ID2076=GetRealProcAddress@PChar@Pointer -ID2077=GetRequestedRuntimeInfo@PWideChar@PWideChar@PWideChar@DWORD@DWORD@PWideChar@DWORD@DWORD@PWideChar@DWORD@DWORD -ID2078=GetRequestedRuntimeVersion@PWideChar@PWideChar@DWORD@DWORD -ID2079=GetRequestedRuntimeVersionForCLSID@TGuid@PWideChar@DWORD@DWORD@CLSID_RESOLUTION_FLAGS +ID2070=FGHSegmentId +ID2071=FGTSegmentId +ID2072=Fibonacci@Integer +ID2073=FILE_ACTION_ADDED +ID2074=FILE_ACTION_MODIFIED +ID2075=FILE_ACTION_REMOVED +ID2076=FILE_ACTION_RENAMED_NEW_NAME +ID2077=FILE_ACTION_RENAMED_OLD_NAME +ID2078=FILE_ADD_FILE +ID2079=FILE_ADD_SUBDIRECTORY ID208=_IMAGE_ARCHIVE_MEMBER_HEADER.GroupID -ID2080=GetServiceStatusByName@string@string -ID2081=GetSizeOfFile@string -ID2082=GetSizeOfFile@TSearchRec -ID2083=GetUnitVersioning -ID2084=GetVersionEx@POSVERSIONINFOEX -ID2085=GetVersionEx@TOSVersionInfoEx -ID2086=GetVolumeFileSystemFlags@string -ID2087=GetVolumeNameForVolumeMountPoint@LPCSTR@LPSTR@DWORD -ID2088=GetWindowCaption@THandle -ID2089=GetWindowsServicePackVersionString +ID2080=FILE_ALL_ACCESS +ID2081=FILE_ALLOCATED_RANGE_BUFFER +ID2082=FILE_APPEND_DATA +ID2083=FILE_ATTRIBUTE_ARCHIVE +ID2084=FILE_ATTRIBUTE_COMPRESSED +ID2085=FILE_ATTRIBUTE_DIRECTORY +ID2086=FILE_ATTRIBUTE_HIDDEN +ID2087=FILE_ATTRIBUTE_NORMAL +ID2088=FILE_ATTRIBUTE_OFFLINE +ID2089=FILE_ATTRIBUTE_READONLY ID209=_IMAGE_ARCHIVE_MEMBER_HEADER.Mode -ID2090=GNLEN -ID2091=GoldenMean -ID2092=GradPerCycle -ID2093=GradPerDeg -ID2094=GradPerRad -ID2095=GradToDeg@Extended -ID2096=GradToDeg@Float -ID2097=GradToDeg@Single -ID2098=GradToRad@Extended -ID2099=GradToRad@Float +ID2090=FILE_ATTRIBUTE_SYSTEM +ID2091=FILE_ATTRIBUTE_TEMPORARY +ID2092=FILE_CASE_PRESERVED_NAMES +ID2093=FILE_CASE_SENSITIVE_SEARCH +ID2094=FILE_CREATE_PIPE_INSTANCE +ID2095=FILE_DELETE_CHILD +ID2096=FILE_DEVICE_8042_PORT +ID2097=FILE_DEVICE_ACPI +ID2098=FILE_DEVICE_BATTERY +ID2099=FILE_DEVICE_BEEP ID21=!!OVERLOADED_Create_TEDIXMLTransactionSetSegment ID210=_IMAGE_ARCHIVE_MEMBER_HEADER.Name -ID2100=GradToRad@Single -ID2101=Graphics -ID2102=Gray32@Byte@Byte -ID2103=GreenComponent@TColor32 -ID2104=GROUP_INFO_0 -ID2105=GROUP_INFO_1 -ID2106=GROUP_NAME -ID2107=Guard@Pointer@ISafeGuard -ID2108=Guard@TObject@IMultiSafeGuard -ID2109=Guard@TObject@ISafeGuard +ID2100=FILE_DEVICE_BUS_EXTENDER +ID2101=FILE_DEVICE_CD_ROM +ID2102=FILE_DEVICE_CD_ROM_FILE_SYSTEM +ID2103=FILE_DEVICE_CHANGER +ID2104=FILE_DEVICE_CONTROLLER +ID2105=FILE_DEVICE_DATALINK +ID2106=FILE_DEVICE_DFS +ID2107=FILE_DEVICE_DFS_FILE_SYSTEM +ID2108=FILE_DEVICE_DFS_VOLUME +ID2109=FILE_DEVICE_DISK ID211=_IMAGE_ARCHIVE_MEMBER_HEADER.Size -ID2110=GZipFile@string@string@Integer@TJclCompressStreamProgressCallback@Pointer -ID2111=HANGUP_COMPLETE -ID2112=HANGUP_PENDING -ID2113=Hardlinks.pas -ID2114=HDOMAINENUM -ID2115=HELP_MSG_FILENAME -ID2116=HeronianMean@Float@Float -ID2117=HexToDouble@string -ID2118=HibernateOS@Boolean@Boolean -ID2119=HKCC +ID2110=FILE_DEVICE_DISK_FILE_SYSTEM +ID2111=FILE_DEVICE_DVD +ID2112=FILE_DEVICE_FIPS +ID2113=FILE_DEVICE_FULLSCREEN_VIDEO +ID2114=FILE_DEVICE_INFINIBAND +ID2115=FILE_DEVICE_INPORT_PORT +ID2116=FILE_DEVICE_KEYBOARD +ID2117=FILE_DEVICE_KS +ID2118=FILE_DEVICE_KSEC +ID2119=FILE_DEVICE_MAILSLOT ID212=_IMAGE_ARCHIVE_MEMBER_HEADER.UserID -ID2120=HKCR -ID2121=HKCU -ID2122=HKDD -ID2123=HKEY_CLASSES_ROOT -ID2124=HKEY_CURRENT_CONFIG -ID2125=HKEY_CURRENT_USER -ID2126=HKEY_DYN_DATA -ID2127=HKEY_LOCAL_MACHINE -ID2128=HKEY_PERFORMANCE_DATA -ID2129=HKEY_USERS +ID2120=FILE_DEVICE_MASS_STORAGE +ID2121=FILE_DEVICE_MIDI_IN +ID2122=FILE_DEVICE_MIDI_OUT +ID2123=FILE_DEVICE_MODEM +ID2124=FILE_DEVICE_MOUSE +ID2125=FILE_DEVICE_MULTI_UNC_PROVIDER +ID2126=FILE_DEVICE_NAMED_PIPE +ID2127=FILE_DEVICE_NETWORK +ID2128=FILE_DEVICE_NETWORK_BROWSER +ID2129=FILE_DEVICE_NETWORK_FILE_SYSTEM ID213=_IMAGE_COFF_SYMBOLS_HEADER -ID2130=HKLM -ID2131=HKPD -ID2132=HKUS -ID2133=hLn2Pi -ID2134=HLSToRGB@Single@Single@Single@Single@Single@Single -ID2135=HLSToRGB@TColorVector -ID2136=HLSToRGB@THLSValue@THLSValue@THLSValue -ID2137=hNtDll -ID2138=HowAOneLinerCanBiteYou -ID2139=HSLToRGB@Single@Single@Single +ID2130=FILE_DEVICE_NETWORK_REDIRECTOR +ID2131=FILE_DEVICE_NULL +ID2132=FILE_DEVICE_PARALLEL_PORT +ID2133=FILE_DEVICE_PHYSICAL_NETCARD +ID2134=FILE_DEVICE_PRINTER +ID2135=FILE_DEVICE_SCANNER +ID2136=FILE_DEVICE_SCREEN +ID2137=FILE_DEVICE_SERENUM +ID2138=FILE_DEVICE_SERIAL_MOUSE_PORT +ID2139=FILE_DEVICE_SERIAL_PORT ID214=_IMAGE_COFF_SYMBOLS_HEADER.LvaToFirstLinenumber -ID2140=HSLToRGB@Single@Single@Single@Single@Single@Single -ID2141=HTT_FLAG -ID2142=IAHFLAGS_NAMETYPE -ID2143=IAHFLAGS_RESERVED -ID2144=IAHMASK_MBZ16 -ID2145=IAHMASK_MBZ7 -ID2146=IAHMASK_SHIFT -ID2147=IAHMASK_VALUE -ID2148=IAutoPtr -ID2149=IAutoPtr.AsObject +ID2140=FILE_DEVICE_SMARTCARD +ID2141=FILE_DEVICE_SMB +ID2142=FILE_DEVICE_SOUND +ID2143=FILE_DEVICE_STREAMS +ID2144=FILE_DEVICE_TAPE +ID2145=FILE_DEVICE_TAPE_FILE_SYSTEM +ID2146=FILE_DEVICE_TERMSRV +ID2147=FILE_DEVICE_TRANSPORT +ID2148=FILE_DEVICE_UNKNOWN +ID2149=FILE_DEVICE_VDM ID215=_IMAGE_COFF_SYMBOLS_HEADER.LvaToFirstSymbol -ID2150=IAutoPtr.AsPointer -ID2151=IAutoPtr.ReleaseObject -ID2152=ICHSegmentId -ID2153=icMAX_CATEGORY_DESC_LEN -ID2154=ICTSegmentId -ID2155=Iff@Boolean@Byte@Byte -ID2156=Iff@Boolean@Cardinal@Cardinal -ID2157=Iff@Boolean@Char@Char -ID2158=Iff@Boolean@Float@Float -ID2159=Iff@Boolean@Int64@Int64 +ID2150=FILE_DEVICE_VIDEO +ID2151=FILE_DEVICE_VIRTUAL_DISK +ID2152=FILE_DEVICE_WAVE_IN +ID2153=FILE_DEVICE_WAVE_OUT +ID2154=FILE_EXECUTE +ID2155=FILE_FILE_COMPRESSION +ID2156=FILE_FLAG_BACKUP_SEMANTICS +ID2157=FILE_FLAG_DELETE_ON_CLOSE +ID2158=FILE_FLAG_FIRST_PIPE_INSTANCE +ID2159=FILE_FLAG_NO_BUFFERING ID216=_IMAGE_COFF_SYMBOLS_HEADER.NumberOfLinenumbers -ID2160=Iff@Boolean@Integer@Integer -ID2161=Iff@Boolean@Pointer@Pointer -ID2162=Iff@Boolean@string@string -ID2163=Iff@Boolean@Variant@Variant -ID2164=IJclClrAppDomain -ID2165=IJclClrAssembly -ID2166=IJclClrEvidence -ID2167=IJclClrMethod -ID2168=IJclCommandLineTool -ID2169=IJclCommandLineTool.AddPathOption@string@string +ID2160=FILE_FLAG_OPEN_NO_RECALL +ID2161=FILE_FLAG_OVERLAPPED +ID2162=FILE_FLAG_POSIX_SEMANTICS +ID2163=FILE_FLAG_RANDOM_ACCESS +ID2164=FILE_FLAG_SEQUENTIAL_SCAN +ID2165=FILE_FLAG_WRITE_THROUGH +ID2166=FILE_GENERIC_EXECUTE +ID2167=FILE_GENERIC_READ +ID2168=FILE_GENERIC_WRITE +ID2169=FILE_LIST_DIRECTORY ID217=_IMAGE_COFF_SYMBOLS_HEADER.NumberOfSymbols -ID2170=IJclCommandLineTool.Execute@string -ID2171=IJclCommandLineTool.ExeName -ID2172=IJclCommandLineTool.GetExeName -ID2173=IJclCommandLineTool.GetOptions -ID2174=IJclCommandLineTool.GetOutput -ID2175=IJclCommandLineTool.GetOutputCallback -ID2176=IJclCommandLineTool.Options -ID2177=IJclCommandLineTool.Output -ID2178=IJclCommandLineTool.OutputCallback -ID2179=IJclCommandLineTool.SetOutputCallback@TTextHandler +ID2170=FILE_NAMED_STREAMS +ID2171=FILE_NOTIFY_CHANGE_ATTRIBUTES +ID2172=FILE_NOTIFY_CHANGE_CREATION +ID2173=FILE_NOTIFY_CHANGE_DIR_NAME +ID2174=FILE_NOTIFY_CHANGE_FILE_NAME +ID2175=FILE_NOTIFY_CHANGE_LAST_ACCESS +ID2176=FILE_NOTIFY_CHANGE_LAST_WRITE +ID2177=FILE_NOTIFY_CHANGE_SECURITY +ID2178=FILE_NOTIFY_CHANGE_SIZE +ID2179=FILE_PERSISTENT_ACLS ID218=_IMAGE_COFF_SYMBOLS_HEADER.RvaToFirstByteOfCode -ID2180=IJclMsdosSys -ID2181=IJclMsdosSys.AutoScan -ID2182=IJclMsdosSys.BootDelay -ID2183=IJclMsdosSys.BootGUI -ID2184=IJclMsdosSys.BootKeys -ID2185=IJclMsdosSys.BootMenu -ID2186=IJclMsdosSys.BootMenuDefault -ID2187=IJclMsdosSys.BootMenuDelay -ID2188=IJclMsdosSys.BootMulti -ID2189=IJclMsdosSys.BootSafe +ID2180=FILE_READ_ATTRIBUTES +ID2181=FILE_READ_EA +ID2182=FILE_READ_ONLY_VOLUME +ID2183=FILE_SHARE_DELETE +ID2184=FILE_SHARE_READ +ID2185=FILE_SHARE_WRITE +ID2186=FILE_SUPPORTS_ENCRYPTION +ID2187=FILE_SUPPORTS_OBJECT_IDS +ID2188=FILE_SUPPORTS_REMOTE_STORAGE +ID2189=FILE_TRAVERSE ID219=_IMAGE_COFF_SYMBOLS_HEADER.RvaToFirstByteOfData -ID2190=IJclMsdosSys.BootWarn -ID2191=IJclMsdosSys.BootWin -ID2192=IJclMsdosSys.DBLSpace -ID2193=IJclMsdosSys.DoubleBuffer -ID2194=IJclMsdosSys.DRVSpace -ID2195=IJclMsdosSys.GetAutoScan -ID2196=IJclMsdosSys.GetBootDelay -ID2197=IJclMsdosSys.GetBootGUI -ID2198=IJclMsdosSys.GetBootKeys -ID2199=IJclMsdosSys.GetBootMenu +ID2190=FILE_UNICODE_ON_DISK +ID2191=FILE_VOLUME_IS_COMPRESSED +ID2192=FILE_VOLUME_QUOTAS +ID2193=FILE_WRITE_ATTRIBUTES +ID2194=FILE_WRITE_EA +ID2195=FILE_ZERO_DATA_INFORMATION +ID2196=FilesandIO +ID2197=FileTimeToDosDateTime@TFileTime@Word@Word +ID2198=FileTimeToLocalDateTime +ID2199=FileTimeToSystemTime@TFileTime@TSystemTime ID22=!!OVERLOADED_Create_TJclClrExceptionHandler ID220=_IMAGE_COFF_SYMBOLS_HEADER.RvaToLastByteOfCode -ID2200=IJclMsdosSys.GetBootMenuDefault -ID2201=IJclMsdosSys.GetBootMenuDelay -ID2202=IJclMsdosSys.GetBootMulti -ID2203=IJclMsdosSys.GetBootSafe -ID2204=IJclMsdosSys.GetBootWarn -ID2205=IJclMsdosSys.GetBootWin -ID2206=IJclMsdosSys.GetDBLSpace -ID2207=IJclMsdosSys.GetDoubleBuffer -ID2208=IJclMsdosSys.GetDRVSpace -ID2209=IJclMsdosSys.GetHostWinBootDrv +ID2200=FileToString@string +ID2201=Fill@IJclAnsiStrIterator@Integer@AnsiString +ID2202=Fill@IJclCardinalIterator@Integer@Cardinal +ID2203=Fill@IJclDoubleIterator@Integer@Double +ID2204=Fill@IJclExtendedIterator@Integer@Extended +ID2205=Fill@IJclInt64Iterator@Integer@Int64 +ID2206=Fill@IJclIntegerIterator@Integer@Integer +ID2207=Fill@IJclIntfIterator@Integer@IInterface +ID2208=Fill@IJclIterator@Integer@TObject +ID2209=Fill@IJclPtrIterator@Integer@Pointer ID221=_IMAGE_COFF_SYMBOLS_HEADER.RvaToLastByteOfData -ID2210=IJclMsdosSys.GetLoadTop -ID2211=IJclMsdosSys.GetLogo -ID2212=IJclMsdosSys.GetNetwork -ID2213=IJclMsdosSys.GetUninstallDir -ID2214=IJclMsdosSys.GetWinBootDir -ID2215=IJclMsdosSys.GetWinDir -ID2216=IJclMsdosSys.GetWinVer -ID2217=IJclMsdosSys.HostWinBootDrv -ID2218=IJclMsdosSys.LoadTop -ID2219=IJclMsdosSys.Logo +ID2210=Fill@IJclSingleIterator@Integer@Single +ID2211=Fill@IJclStrIterator@Integer@string +ID2212=Fill@IJclUnicodeStrIterator@Integer@UnicodeString +ID2213=Fill@IJclWideStrIterator@Integer@WideString +ID2214=FinalizeOpenDialogFavorites +ID2215=FinalizeOpenDialogHook +ID2216=Find@IJclAnsiStrIterator@Integer@AnsiString@TAnsiStrCompare +ID2217=Find@IJclAnsiStrIterator@Integer@AnsiString@TAnsiStrEqualityCompare +ID2218=Find@IJclCardinalIterator@Integer@Cardinal@TCardinalCompare +ID2219=Find@IJclCardinalIterator@Integer@Cardinal@TCardinalEqualityCompare ID222=_IMAGE_COR_VTABLEFIXUP -ID2220=IJclMsdosSys.Network -ID2221=IJclMsdosSys.SetAutoScan@Boolean -ID2222=IJclMsdosSys.SetBool@Boolean@Boolean -ID2223=IJclMsdosSys.SetBootDelay@Cardinal -ID2224=IJclMsdosSys.SetBootGUI@Boolean -ID2225=IJclMsdosSys.SetBootKeys@Boolean -ID2226=IJclMsdosSys.SetBootMenu@Boolean -ID2227=IJclMsdosSys.SetBootMenuDefault@Cardinal -ID2228=IJclMsdosSys.SetBootMenuDelay@Cardinal -ID2229=IJclMsdosSys.SetBootMulti@Boolean +ID2220=Find@IJclDoubleIterator@Integer@Double@TDoubleCompare +ID2221=Find@IJclDoubleIterator@Integer@Double@TDoubleEqualityCompare +ID2222=Find@IJclExtendedIterator@Integer@Extended@TExtendedCompare +ID2223=Find@IJclExtendedIterator@Integer@Extended@TExtendedEqualityCompare +ID2224=Find@IJclInt64Iterator@Integer@Int64@TInt64Compare +ID2225=Find@IJclInt64Iterator@Integer@Int64@TInt64EqualityCompare +ID2226=Find@IJclIntegerIterator@Integer@Integer@TIntegerCompare +ID2227=Find@IJclIntegerIterator@Integer@Integer@TIntegerEqualityCompare +ID2228=Find@IJclIntfIterator@Integer@IInterface@TIntfCompare +ID2229=Find@IJclIntfIterator@Integer@IInterface@TIntfEqualityCompare ID223=_IMAGE_COR_VTABLEFIXUP.Count -ID2230=IJclMsdosSys.SetBootSafe@Boolean -ID2231=IJclMsdosSys.SetBootWarn@Boolean -ID2232=IJclMsdosSys.SetBootWin@Boolean -ID2233=IJclMsdosSys.SetDBLSpace@Boolean -ID2234=IJclMsdosSys.SetDoubleBuffer@Boolean -ID2235=IJclMsdosSys.SetDRVSpace@Boolean -ID2236=IJclMsdosSys.SetHostWinBootDrv@Char -ID2237=IJclMsdosSys.SetLoadTop@Boolean -ID2238=IJclMsdosSys.SetLogo@Boolean -ID2239=IJclMsdosSys.SetNetwork@Boolean +ID2230=Find@IJclIterator@Integer@TObject@TCompare +ID2231=Find@IJclIterator@Integer@TObject@TEqualityCompare +ID2232=Find@IJclPtrIterator@Integer@Pointer@TPtrCompare +ID2233=Find@IJclPtrIterator@Integer@Pointer@TPtrEqualityCompare +ID2234=Find@IJclSingleIterator@Integer@Single@TSingleCompare +ID2235=Find@IJclSingleIterator@Integer@Single@TSingleEqualityCompare +ID2236=Find@IJclStrIterator@Integer@string@TStrCompare +ID2237=Find@IJclUnicodeStrIterator@Integer@UnicodeString@TUnicodeStrCompare +ID2238=Find@IJclUnicodeStrIterator@Integer@UnicodeString@TUnicodeStrEqualityCompare +ID2239=Find@IJclWideStrIterator@Integer@WideString@TWideStrCompare ID224=_IMAGE_COR_VTABLEFIXUP.Kind -ID2240=IJclMsdosSys.SetString@string@string -ID2241=IJclMsdosSys.SetUninstallDir@Char -ID2242=IJclMsdosSys.SetWinBootDir@string -ID2243=IJclMsdosSys.SetWinDir@string -ID2244=IJclMsdosSys.SetWinVer@string -ID2245=IJclMsdosSys.UninstallDir -ID2246=IJclMsdosSys.WinBootDir -ID2247=IJclMsdosSys.WinDir -ID2248=IJclMsdosSys.WinVer -ID2249=IJclScreenTextAttribute +ID2240=Find@IJclWideStrIterator@Integer@WideString@TWideStrEqualityCompare +ID2241=FIND_NAME_BUFFER +ID2242=FIND_NAME_HEADER +ID2243=FirstDayOfWeek@Integer@Integer@Integer +ID2244=FirstWeekDay@Integer@Integer +ID2245=FirstWeekDay@Integer@Integer@Integer +ID2246=FirstWeekendDay@Integer@Integer +ID2247=FirstWeekendDay@Integer@Integer@Integer +ID2248=Float +ID2249=FloatingPointClass@Extended ID225=_IMAGE_COR_VTABLEFIXUP.RVA -ID2250=IJclScreenTextAttribute.BgColor -ID2251=IJclScreenTextAttribute.BgHighlight -ID2252=IJclScreenTextAttribute.Color -ID2253=IJclScreenTextAttribute.GetBgColor -ID2254=IJclScreenTextAttribute.GetBgHighlight -ID2255=IJclScreenTextAttribute.GetColor -ID2256=IJclScreenTextAttribute.GetHighlight -ID2257=IJclScreenTextAttribute.GetStyle -ID2258=IJclScreenTextAttribute.GetTextAttribute -ID2259=IJclScreenTextAttribute.Highlight +ID2250=FloatingPointClass@Single +ID2251=FloatSimpleCompare@Float@Float +ID2252=FloatSimpleEqualityCompare@Float@Float +ID2253=FloatSimpleHashConvert@Float +ID2254=FMTID_Audio +ID2255=FMTID_Briefcase +ID2256=FMTID_ControlPanel +ID2257=FMTID_Displaced +ID2258=FMTID_DocumentSummaryInformation +ID2259=FMTID_DRM ID226=_IMAGE_DATA_DIRECTORY -ID2260=IJclScreenTextAttribute.SetBgColor@TJclScreenBackColor -ID2261=IJclScreenTextAttribute.SetBgHighlight@Boolean -ID2262=IJclScreenTextAttribute.SetColor@TJclScreenFontColor -ID2263=IJclScreenTextAttribute.SetHighlight@Boolean -ID2264=IJclScreenTextAttribute.SetStyle@TJclScreenFontStyles -ID2265=IJclScreenTextAttribute.SetTextAttribute@Word -ID2266=IJclScreenTextAttribute.Style -ID2267=IJclScreenTextAttribute.TextAttribute -ID2268=IJclWinMidiOut -ID2269=IJclWinMidiOut.ChannelVolume +ID2260=FMTID_ImageInformation +ID2261=FMTID_ImageProperties +ID2262=FMTID_ImageSummaryInformation +ID2263=FMTID_JpegAppHeaders +ID2264=FMTID_Link +ID2265=FMTID_MediaFileSummaryInformation +ID2266=FMTID_Misc +ID2267=FMTID_MUSIC +ID2268=FMTID_Query +ID2269=FMTID_Share ID227=_IMAGE_DATA_DIRECTORY.Size -ID2270=IJclWinMidiOut.GetChannelVolume@TStereoChannel -ID2271=IJclWinMidiOut.GetVolume -ID2272=IJclWinMidiOut.SetChannelVolume@TStereoChannel@Word -ID2273=IJclWinMidiOut.SetVolume@Word -ID2274=IJclWinMidiOut.Volume -ID2275=IMAGE_ARCHITECTURE_ENTRY -ID2276=IMAGE_ARCHITECTURE_HEADER -ID2277=IMAGE_ARCHIVE_END -ID2278=IMAGE_ARCHIVE_LINKER_MEMBER -ID2279=IMAGE_ARCHIVE_LONGNAMES_MEMBER +ID2270=FMTID_ShellDetails +ID2271=FMTID_Storage +ID2272=FMTID_SummaryInformation +ID2273=FMTID_Video +ID2274=FMTID_Volume +ID2275=FMTID_WebView +ID2276=FOREST_USER_RID_MAX +ID2277=FormatException +ID2278=FormatVersionString@TVSFixedFileInfo@TFileVersionFormat +ID2279=FormatVersionString@Word@Word ID228=_IMAGE_DATA_DIRECTORY.VirtualAddress -ID2280=IMAGE_ARCHIVE_MEMBER_HEADER -ID2281=IMAGE_ARCHIVE_PAD -ID2282=IMAGE_ARCHIVE_START -ID2283=IMAGE_ARCHIVE_START_SIZE -ID2284=IMAGE_COFF_SYMBOLS_HEADER -ID2285=IMAGE_COR_EATJ_THUNK_SIZE -ID2286=IMAGE_COR_ILMETHOD_FAT -ID2287=IMAGE_COR_ILMETHOD_FAT.CodeSize -ID2288=IMAGE_COR_ILMETHOD_FAT.Flags_Size -ID2289=IMAGE_COR_ILMETHOD_FAT.LocalVarSigTok +ID2280=FormatVersionString@Word@Word@Word@Word +ID2281=FPO_DATA +ID2282=FPOFLAGS_FRAME +ID2283=FPOFLAGS_HAS_SEH +ID2284=FPOFLAGS_PROLOG +ID2285=FPOFLAGS_REGS +ID2286=FPOFLAGS_RESERVED +ID2287=FPOFLAGS_USE_BP +ID2288=FPU_FLAG +ID2289=FRAME_FPO ID229=_IMAGE_DEBUG_MISC -ID2290=IMAGE_COR_ILMETHOD_FAT.MaxStack -ID2291=IMAGE_COR_ILMETHOD_SECT_EH -ID2292=IMAGE_COR_ILMETHOD_SECT_EH.Fat -ID2293=IMAGE_COR_ILMETHOD_SECT_EH.Small -ID2294=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT -ID2295=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.ClassToken -ID2296=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.FilterOffset -ID2297=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.Flags -ID2298=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.HandlerLength -ID2299=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.HandlerOffset +ID2290=FRAME_NONFPO +ID2291=FRAME_TRAP +ID2292=FRAME_TSS +ID2293=FreeAnsiMultiSz@PAnsiMultiSz +ID2294=FreeMultiSz@PMultiSz +ID2295=FreeMultiSz@PWideMultiSz +ID2296=FreePCharVector@PCharVector +ID2297=FreeTokenInformation@Pointer +ID2298=FreeWideMultiSz@PWideMultiSz +ID2299=FSCTL_ALLOW_EXTENDED_DASD_IO ID23=!!OVERLOADED_Create_TJclClrObject ID230=_IMAGE_DEBUG_MISC.Data -ID2300=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.TryLength -ID2301=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.TryOffset -ID2302=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL -ID2303=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.ClassToken -ID2304=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.FilterOffset -ID2305=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.Flags -ID2306=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.HandlerLength -ID2307=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.HandlerOffset -ID2308=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.TryLength -ID2309=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.TryOffset +ID2300=FSCTL_CREATE_OR_GET_OBJECT_ID +ID2301=FSCTL_CREATE_USN_JOURNAL +ID2302=FSCTL_DELETE_OBJECT_ID +ID2303=FSCTL_DELETE_USN_JOURNAL +ID2304=FSCTL_DISMOUNT_VOLUME +ID2305=FSCTL_ENCRYPTION_FSCTL_IO +ID2306=FSCTL_ENUM_USN_DATA +ID2307=FSCTL_EXTEND_VOLUME +ID2308=FSCTL_FILE_PREFETCH +ID2309=FSCTL_FILESYSTEM_GET_STATISTICS ID231=_IMAGE_DEBUG_MISC.DataType -ID2310=IMAGE_COR_ILMETHOD_SECT_EH_FAT -ID2311=IMAGE_COR_ILMETHOD_SECT_EH_FAT.Clauses -ID2312=IMAGE_COR_ILMETHOD_SECT_EH_FAT.SectFat -ID2313=IMAGE_COR_ILMETHOD_SECT_EH_SMALL -ID2314=IMAGE_COR_ILMETHOD_SECT_EH_SMALL.Clauses -ID2315=IMAGE_COR_ILMETHOD_SECT_EH_SMALL.SectSmall -ID2316=IMAGE_COR_ILMETHOD_SECT_FAT -ID2317=IMAGE_COR_ILMETHOD_SECT_FAT.Kind_DataSize -ID2318=IMAGE_COR_ILMETHOD_SECT_SMALL -ID2319=IMAGE_COR_ILMETHOD_SECT_SMALL.Datasize +ID2310=FSCTL_FIND_FILES_BY_SID +ID2311=FSCTL_GET_NTFS_FILE_RECORD +ID2312=FSCTL_GET_NTFS_VOLUME_DATA +ID2313=FSCTL_GET_OBJECT_ID +ID2314=FSCTL_GET_RETRIEVAL_POINTERS +ID2315=FSCTL_GET_VOLUME_BITMAP +ID2316=FSCTL_HSM_DATA +ID2317=FSCTL_HSM_MSG +ID2318=FSCTL_INVALIDATE_VOLUMES +ID2319=FSCTL_IS_PATHNAME_VALID ID232=_IMAGE_DEBUG_MISC.Length -ID2320=IMAGE_COR_ILMETHOD_SECT_SMALL.Kind -ID2321=IMAGE_COR_ILMETHOD_SECT_SMALL.Padding -ID2322=IMAGE_COR_ILMETHOD_TINY -ID2323=IMAGE_COR_ILMETHOD_TINY.Flags_CodeSize -ID2324=IMAGE_COR_MIH_BASICBLOCK -ID2325=IMAGE_COR_MIH_EHRVA -ID2326=IMAGE_COR_MIH_METHODRVA -ID2327=IMAGE_COR_VTABLEFIXUP -ID2328=IMAGE_DATA_DIRECTORY -ID2329=IMAGE_DEBUG_MISC +ID2320=FSCTL_IS_VOLUME_DIRTY +ID2321=FSCTL_IS_VOLUME_MOUNTED +ID2322=FSCTL_MARK_AS_SYSTEM_HIVE +ID2323=FSCTL_MARK_HANDLE +ID2324=FSCTL_MARK_VOLUME_DIRTY +ID2325=FSCTL_MOVE_FILE +ID2326=FSCTL_QUERY_FAT_BPB +ID2327=FSCTL_QUERY_RETRIEVAL_POINTERS +ID2328=FSCTL_QUERY_USN_JOURNAL +ID2329=FSCTL_READ_FILE_USN_DATA ID233=_IMAGE_DEBUG_MISC.Reserved -ID2330=IMAGE_DEBUG_MISC_EXENAME -ID2331=IMAGE_DIRECTORY_ENTRY_ARCHITECTURE -ID2332=IMAGE_DIRECTORY_ENTRY_BASERELOC -ID2333=IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT -ID2334=IMAGE_DIRECTORY_ENTRY_DEBUG -ID2335=IMAGE_DIRECTORY_ENTRY_EXCEPTION -ID2336=IMAGE_DIRECTORY_ENTRY_EXPORT -ID2337=IMAGE_DIRECTORY_ENTRY_GLOBALPTR -ID2338=IMAGE_DIRECTORY_ENTRY_IAT -ID2339=IMAGE_DIRECTORY_ENTRY_IMPORT +ID2330=FSCTL_READ_FROM_PLEX +ID2331=FSCTL_READ_RAW_ENCRYPTED +ID2332=FSCTL_READ_USN_JOURNAL +ID2333=FSCTL_RECALL_FILE +ID2334=FSCTL_SECURITY_ID_CHECK +ID2335=FSCTL_SET_ENCRYPTION +ID2336=FSCTL_SET_OBJECT_ID +ID2337=FSCTL_SET_OBJECT_ID_EXTENDED +ID2338=FSCTL_SIS_COPYFILE +ID2339=FSCTL_SIS_LINK_FILES ID234=_IMAGE_DEBUG_MISC.Unicode -ID2340=IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG -ID2341=IMAGE_DIRECTORY_ENTRY_RESOURCE -ID2342=IMAGE_DIRECTORY_ENTRY_SECURITY -ID2343=IMAGE_DIRECTORY_ENTRY_TLS -ID2344=IMAGE_DLLCHARACTERISTICS_NO_BIND -ID2345=IMAGE_DLLCHARACTERISTICS_NO_ISOLATION -ID2346=IMAGE_DLLCHARACTERISTICS_NO_SEH -ID2347=IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE -ID2348=IMAGE_DLLCHARACTERISTICS_WDM_DRIVER -ID2349=IMAGE_FILE_32BIT_MACHINE +ID2340=FSCTL_WRITE_RAW_ENCRYPTED +ID2341=FSCTL_WRITE_USN_CLOSE_RECORD +ID2342=fstat64@Integer@TStatBuf64 +ID2343=FXSR_FLAG +ID2344=Generate@IJclAnsiStrList@Integer@AnsiString +ID2345=Generate@IJclCardinalList@Integer@Cardinal +ID2346=Generate@IJclDoubleList@Integer@Double +ID2347=Generate@IJclExtendedList@Integer@Extended +ID2348=Generate@IJclInt64List@Integer@Int64 +ID2349=Generate@IJclIntegerList@Integer@Integer ID235=_IMAGE_FILE_HEADER -ID2350=IMAGE_FILE_AGGRESIVE_WS_TRIM -ID2351=IMAGE_FILE_BYTES_REVERSED_HI -ID2352=IMAGE_FILE_BYTES_REVERSED_LO -ID2353=IMAGE_FILE_DEBUG_STRIPPED -ID2354=IMAGE_FILE_DLL -ID2355=IMAGE_FILE_EXECUTABLE_IMAGE -ID2356=IMAGE_FILE_HEADER -ID2357=IMAGE_FILE_LARGE_ADDRESS_AWARE -ID2358=IMAGE_FILE_LINE_NUMS_STRIPPED -ID2359=IMAGE_FILE_LOCAL_SYMS_STRIPPED +ID2350=Generate@IJclIntfList@Integer@IInterface +ID2351=Generate@IJclList@Integer@TObject +ID2352=Generate@IJclPtrList@Integer@Pointer +ID2353=Generate@IJclSingleList@Integer@Single +ID2354=Generate@IJclStrList@Integer@string +ID2355=Generate@IJclUnicodeStrList@Integer@UnicodeString +ID2356=Generate@IJclWideStrList@Integer@WideString +ID2357=Generics +ID2358=GET_FILEEX_INFO_LEVELS +ID2359=Get7zBoolProp@IInArchive@Integer@Cardinal@TBoolSetter ID236=_IMAGE_FILE_HEADER.Characteristics -ID2360=IMAGE_FILE_MACHINE_ALPHA -ID2361=IMAGE_FILE_MACHINE_ALPHA64 -ID2362=IMAGE_FILE_MACHINE_AM33 -ID2363=IMAGE_FILE_MACHINE_AMD64 -ID2364=IMAGE_FILE_MACHINE_ARM -ID2365=IMAGE_FILE_MACHINE_AXP64 -ID2366=IMAGE_FILE_MACHINE_CEE -ID2367=IMAGE_FILE_MACHINE_CEF -ID2368=IMAGE_FILE_MACHINE_EBC -ID2369=IMAGE_FILE_MACHINE_I386 +ID2360=Get7zCardinalProp@IInArchive@Integer@Cardinal@TCardinalSetter +ID2361=Get7zFileTimeProp@IInArchive@Integer@Cardinal@TFileTimeSetter +ID2362=Get7zInt64Prop@IInArchive@Integer@Cardinal@TInt64Setter +ID2363=Get7zWideStringProp@IInArchive@Integer@Cardinal@TWideStringSetter +ID2364=Get8087ControlWord +ID2365=Get8087Infinity +ID2366=Get8087Precision +ID2367=Get8087Rounding +ID2368=GetAllowedPowerOperations +ID2369=GetAntialiasedBitmap ID237=_IMAGE_FILE_HEADER.Machine -ID2370=IMAGE_FILE_MACHINE_IA64 -ID2371=IMAGE_FILE_MACHINE_M32R -ID2372=IMAGE_FILE_MACHINE_MIPS16 -ID2373=IMAGE_FILE_MACHINE_MIPSFPU -ID2374=IMAGE_FILE_MACHINE_MIPSFPU16 -ID2375=IMAGE_FILE_MACHINE_POWERPC -ID2376=IMAGE_FILE_MACHINE_POWERPCFP -ID2377=IMAGE_FILE_MACHINE_R10000 -ID2378=IMAGE_FILE_MACHINE_R3000 -ID2379=IMAGE_FILE_MACHINE_R4000 +ID2370=GetAPMBatteryFlags +ID2371=GetArchiveFormats +ID2372=GetBackupFileName +ID2373=GetBPKFileInfo@string@Boolean@PString@PString +ID2374=GetBPP +ID2375=GetBPRFileInfo@string@string@PString +ID2376=GetBytesEx@ +ID2377=GetCalendarInfoA@LCID@CALID@CALTYPE@LPSTR@Integer@LPDWORD +ID2378=GetCalendarInfoW@LCID@CALID@CALTYPE@LPWSTR@Integer@LPDWORD +ID2379=GetCDAudioTrackList@TJclCdTrackInfoArray@Char ID238=_IMAGE_FILE_HEADER.NumberOfSections -ID2380=IMAGE_FILE_MACHINE_SH3 -ID2381=IMAGE_FILE_MACHINE_SH3DSP -ID2382=IMAGE_FILE_MACHINE_SH3E -ID2383=IMAGE_FILE_MACHINE_SH4 -ID2384=IMAGE_FILE_MACHINE_SH5 -ID2385=IMAGE_FILE_MACHINE_THUMB -ID2386=IMAGE_FILE_MACHINE_TRICORE -ID2387=IMAGE_FILE_MACHINE_UNKNOWN -ID2388=IMAGE_FILE_MACHINE_WCEMIPSV2 -ID2389=IMAGE_FILE_NET_RUN_FROM_SWAP +ID2380=GetCDAudioTrackList@TStrings@Boolean@Char +ID2381=GetCdInfo@TJclCdMediaInfo@Char +ID2382=GetCharSetFromLocale@LCID@Byte +ID2383=GetCharSetFromLocale@LCID@TFontCharSet +ID2384=GetCommonDocumentsFolder +ID2385=GetComponentPathName +ID2386=GetComputerSID@PSID@DWORD +ID2387=GetCORRequiredVersion@PWideChar@DWORD@DWORD +ID2388=GetCORSystemDirectory@PWideChar@DWORD@DWORD +ID2389=GetCORVersion@PWideChar@DWORD@DWORD ID239=_IMAGE_FILE_HEADER.NumberOfSymbols -ID2390=IMAGE_FILE_RELOCS_STRIPPED -ID2391=IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP -ID2392=IMAGE_FILE_SYSTEM -ID2393=IMAGE_FILE_UP_SYSTEM_ONLY -ID2394=IMAGE_FIRST_SECTION@PImageNtHeaders -ID2395=IMAGE_FUNCTION_ENTRY -ID2396=IMAGE_FUNCTION_ENTRY64 -ID2397=IMAGE_LINENUMBER -ID2398=IMAGE_LOAD_CONFIG_DIRECTORY32 -ID2399=IMAGE_LOAD_CONFIG_DIRECTORY32.CriticalSectionDefaultTimeout +ID2390=GetCPUSpeed@TFreqInfo +ID2391=GetCurrentTimeZoneDaylightSavingsPeriod +ID2392=GetCurrentTimeZoneDescription +ID2393=GetCurrentTimeZoneGMTOffset +ID2394=GetCurrentTimeZoneUTCBias +ID2395=GetDefaultPrinterName +ID2396=GetDPKFileInfo@string@Boolean@PString@PString +ID2397=GetDPRFileInfo@string@string@PString +ID2398=GetEDISEFUserAttributeDescription@string +ID2399=GetEDISEFUserAttributeDescription@TEDISEFComsUserAttributes ID24=!!OVERLOADED_Create_TJclHelp2Manager ID240=_IMAGE_FILE_HEADER.PointerToSymbolTable -ID2400=IMAGE_LOAD_CONFIG_DIRECTORY32.CSDVersion -ID2401=IMAGE_LOAD_CONFIG_DIRECTORY32.DeCommitFreeBlockThreshold -ID2402=IMAGE_LOAD_CONFIG_DIRECTORY32.DeCommitTotalFreeThreshold -ID2403=IMAGE_LOAD_CONFIG_DIRECTORY32.EditList -ID2404=IMAGE_LOAD_CONFIG_DIRECTORY32.GlobalFlagsClear -ID2405=IMAGE_LOAD_CONFIG_DIRECTORY32.GlobalFlagsSet -ID2406=IMAGE_LOAD_CONFIG_DIRECTORY32.LockPrefixTable -ID2407=IMAGE_LOAD_CONFIG_DIRECTORY32.MajorVersion -ID2408=IMAGE_LOAD_CONFIG_DIRECTORY32.MaximumAllocationSize -ID2409=IMAGE_LOAD_CONFIG_DIRECTORY32.MinorVersion +ID2400=GetEnvironmentVar@string@string@Boolean +ID2401=GetEnvironmentVars@TStrings@Boolean +ID2402=GetFileCreation@string@TDateTime +ID2403=GetFileInformation@string@TSearchRec +ID2404=GetFileLastAccess@string@Boolean +ID2405=GetFileLastAccess@string@Integer@Boolean +ID2406=GetFileLastAccess@string@TDateTime +ID2407=GetFileLastAccess@string@TDateTime@Boolean +ID2408=GetFileLastAttrChange@string@Boolean +ID2409=GetFileLastAttrChange@string@Integer@Boolean ID241=_IMAGE_FILE_HEADER.SizeOfOptionalHeader -ID2410=IMAGE_LOAD_CONFIG_DIRECTORY32.ProcessAffinityMask -ID2411=IMAGE_LOAD_CONFIG_DIRECTORY32.ProcessHeapFlags -ID2412=IMAGE_LOAD_CONFIG_DIRECTORY32.Reserved1 -ID2413=IMAGE_LOAD_CONFIG_DIRECTORY32.SecurityCookie -ID2414=IMAGE_LOAD_CONFIG_DIRECTORY32.SEHandlerCount -ID2415=IMAGE_LOAD_CONFIG_DIRECTORY32.SEHandlerTable -ID2416=IMAGE_LOAD_CONFIG_DIRECTORY32.Size -ID2417=IMAGE_LOAD_CONFIG_DIRECTORY32.TimeDateStamp -ID2418=IMAGE_LOAD_CONFIG_DIRECTORY32.VirtualMemoryThreshold -ID2419=IMAGE_LOAD_CONFIG_DIRECTORY64 +ID2410=GetFileLastAttrChange@string@TDateTime@Boolean +ID2411=GetFileLastWrite@string@Boolean +ID2412=GetFileLastWrite@string@Integer@Boolean +ID2413=GetFileLastWrite@string@TDateTime +ID2414=GetFileLastWrite@string@TDateTime@Boolean +ID2415=GetFileNameIcon@string@Cardinal +ID2416=GetFileSecurity@LPCTSTR@SECURITY_INFORMATION@PSECURITY_DESCRIPTOR@DWORD@DWORD +ID2417=GetFileSecurityA@LPCSTR@SECURITY_INFORMATION@PSECURITY_DESCRIPTOR@DWORD@DWORD +ID2418=GetFileSecurityW@LPCWSTR@SECURITY_INFORMATION@PSECURITY_DESCRIPTOR@DWORD@DWORD +ID2419=GetFileStatus@string@TStatBuf64@Boolean ID242=_IMAGE_FILE_HEADER.TimeDateStamp -ID2420=IMAGE_LOAD_CONFIG_DIRECTORY64.CriticalSectionDefaultTimeout -ID2421=IMAGE_LOAD_CONFIG_DIRECTORY64.CSDVersion -ID2422=IMAGE_LOAD_CONFIG_DIRECTORY64.DeCommitFreeBlockThreshold -ID2423=IMAGE_LOAD_CONFIG_DIRECTORY64.DeCommitTotalFreeThreshold -ID2424=IMAGE_LOAD_CONFIG_DIRECTORY64.EditList -ID2425=IMAGE_LOAD_CONFIG_DIRECTORY64.GlobalFlagsClear -ID2426=IMAGE_LOAD_CONFIG_DIRECTORY64.GlobalFlagsSet -ID2427=IMAGE_LOAD_CONFIG_DIRECTORY64.LockPrefixTable -ID2428=IMAGE_LOAD_CONFIG_DIRECTORY64.MajorVersion -ID2429=IMAGE_LOAD_CONFIG_DIRECTORY64.MaximumAllocationSize +ID2420=GetFileVersion@PWideChar@PWideChar@DWORD@DWORD +ID2421=GetFreeSystemResources +ID2422=GetFreeSystemResources@TFreeSysResKind +ID2423=GetIconFromBitmap +ID2424=GetImageUnusedHeaderBytes@LOADED_IMAGE@DWORD +ID2425=GetImplementorOfInterface@IInterface +ID2426=GetIpAddresses@TStrings +ID2427=GetIpAddresses@TStrings@AnsiString +ID2428=GetISOYearNumberOfDays@Word +ID2429=GetISOYearNumberOfWeeks@Word ID243=_IMAGE_FUNCTION_ENTRY -ID2430=IMAGE_LOAD_CONFIG_DIRECTORY64.MinorVersion -ID2431=IMAGE_LOAD_CONFIG_DIRECTORY64.ProcessAffinityMask -ID2432=IMAGE_LOAD_CONFIG_DIRECTORY64.ProcessHeapFlags -ID2433=IMAGE_LOAD_CONFIG_DIRECTORY64.Reserved1 -ID2434=IMAGE_LOAD_CONFIG_DIRECTORY64.SecurityCookie -ID2435=IMAGE_LOAD_CONFIG_DIRECTORY64.SEHandlerCount -ID2436=IMAGE_LOAD_CONFIG_DIRECTORY64.SEHandlerTable -ID2437=IMAGE_LOAD_CONFIG_DIRECTORY64.Size -ID2438=IMAGE_LOAD_CONFIG_DIRECTORY64.TimeDateStamp -ID2439=IMAGE_LOAD_CONFIG_DIRECTORY64.VirtualMemoryThreshold +ID2430=GetLocalAppData +ID2431=GetLocationInfo@Pointer@TJclLocationInfo +ID2432=GetMainAppWndFromPid@DWORD +ID2433=GetMem@@Longint +ID2434=GetMidiOutputs@TStrings +ID2435=GetMsdosSys +ID2436=GetNaNTag@Extended +ID2437=GetNaNTag@Single +ID2438=GetNativeSystemInfo@TSystemInfo +ID2439=GetOSEnabledFeatures ID244=_IMAGE_FUNCTION_ENTRY.EndingAddress -ID2440=IMAGE_NT_HEADERS -ID2441=IMAGE_NT_HEADERS32 -ID2442=IMAGE_NT_HEADERS64 -ID2443=IMAGE_NT_OPTIONAL_HDR_MAGIC -ID2444=IMAGE_NT_OPTIONAL_HDR32_MAGIC -ID2445=IMAGE_NT_OPTIONAL_HDR64_MAGIC -ID2446=IMAGE_NUMBEROF_DIRECTORY_ENTRIES -ID2447=IMAGE_OPTIONAL_HEADER32 -ID2448=IMAGE_OPTIONAL_HEADER64 -ID2449=IMAGE_ORDINAL@DWORD +ID2440=GetParity@PByte@Integer +ID2441=GetParity@TDynByteArray@Integer +ID2442=GetPCRECalloutCallback +ID2443=GetPCREFreeCallback +ID2444=GetPCREMallocCallback +ID2445=GetPCREStackFreeCallback +ID2446=GetPCREStackMallocCallback +ID2447=GetPending8087Exceptions +ID2448=GetPrinterResolution +ID2449=GetProcessorArchitecture ID245=_IMAGE_FUNCTION_ENTRY.EndOfPrologue -ID2450=IMAGE_ORDINAL_FLAG32 -ID2451=IMAGE_ORDINAL_FLAG64 -ID2452=IMAGE_ORDINAL32@DWORD -ID2453=IMAGE_ORDINAL64@ULONGLONG -ID2454=IMAGE_RESOURCE_DIRECTORY_STRING -ID2455=IMAGE_ROM_HEADERS -ID2456=IMAGE_ROM_OPTIONAL_HDR_MAGIC -ID2457=IMAGE_ROM_OPTIONAL_HEADER -ID2458=IMAGE_SCN_ALIGN_1024BYTES -ID2459=IMAGE_SCN_ALIGN_128BYTES +ID2450=GetProfileFolder +ID2451=GetRealProcAddress@PChar@Pointer +ID2452=GetRequestedRuntimeInfo@PWideChar@PWideChar@PWideChar@DWORD@DWORD@PWideChar@DWORD@DWORD@PWideChar@DWORD@DWORD +ID2453=GetRequestedRuntimeVersion@PWideChar@PWideChar@DWORD@DWORD +ID2454=GetRequestedRuntimeVersionForCLSID@TGuid@PWideChar@DWORD@DWORD@CLSID_RESOLUTION_FLAGS +ID2455=GetServiceStatusByName@string@string +ID2456=GetSevenzipArchiveCompressionProperties@IInterface@IInterface +ID2457=GetShortcutTargetName +ID2458=GetSizeOfFile@string +ID2459=GetSizeOfFile@TSearchRec ID246=_IMAGE_FUNCTION_ENTRY.StartingAddress -ID2460=IMAGE_SCN_ALIGN_16BYTES -ID2461=IMAGE_SCN_ALIGN_1BYTES -ID2462=IMAGE_SCN_ALIGN_2048BYTES -ID2463=IMAGE_SCN_ALIGN_256BYTES -ID2464=IMAGE_SCN_ALIGN_2BYTES -ID2465=IMAGE_SCN_ALIGN_32BYTES -ID2466=IMAGE_SCN_ALIGN_4096BYTES -ID2467=IMAGE_SCN_ALIGN_4BYTES -ID2468=IMAGE_SCN_ALIGN_512BYTES -ID2469=IMAGE_SCN_ALIGN_64BYTES +ID2460=GetStreamFormats +ID2461=GetStringPropList@PTypeInfo@PPropList +ID2462=GetUCS4CharAt@TUCS4Array@SizeInt@UCS4 +ID2463=GetUCS4CharAt@TUTF16String@SizeInt@UCS4@Boolean +ID2464=GetUCS4CharAt@TUTF8String@SizeInt@UCS4 +ID2465=GetUnitVersioning +ID2466=GetVersionEx@POSVERSIONINFOEX +ID2467=GetVersionEx@TOSVersionInfoEx +ID2468=GetVolumeFileSystemFlags@string +ID2469=GetVolumeNameForVolumeMountPoint@LPCSTR@LPSTR@DWORD ID247=_IMAGE_FUNCTION_ENTRY64 -ID2470=IMAGE_SCN_ALIGN_8192BYTES -ID2471=IMAGE_SCN_ALIGN_8BYTES -ID2472=IMAGE_SCN_ALIGN_MASK -ID2473=IMAGE_SCN_CNT_CODE -ID2474=IMAGE_SCN_CNT_INITIALIZED_DATA -ID2475=IMAGE_SCN_CNT_UNINITIALIZED_DATA -ID2476=IMAGE_SCN_GPREL -ID2477=IMAGE_SCN_LNK_COMDAT -ID2478=IMAGE_SCN_LNK_INFO -ID2479=IMAGE_SCN_LNK_NRELOC_OVFL +ID2470=GetWindowCaption@THandle +ID2471=GetWindowsServicePackVersionString +ID2472=GetWMIScheduledJobUTCTime@TDateTime +ID2473=GetWndFromPid@DWORD@string +ID2474=GifToBitmap@string +ID2475=GNLEN +ID2476=GoldenMean +ID2477=GradPerCycle +ID2478=GradPerDeg +ID2479=GradPerRad ID248=_IMAGE_FUNCTION_ENTRY64.EndingAddress -ID2480=IMAGE_SCN_LNK_OTHER -ID2481=IMAGE_SCN_LNK_REMOVE -ID2482=IMAGE_SCN_MEM_16BIT -ID2483=IMAGE_SCN_MEM_DISCARDABLE -ID2484=IMAGE_SCN_MEM_EXECUTE -ID2485=IMAGE_SCN_MEM_FARDATA -ID2486=IMAGE_SCN_MEM_LOCKED -ID2487=IMAGE_SCN_MEM_NOT_CACHED -ID2488=IMAGE_SCN_MEM_NOT_PAGED -ID2489=IMAGE_SCN_MEM_PRELOAD +ID2480=GradToDeg@Extended +ID2481=GradToDeg@Float +ID2482=GradToDeg@Single +ID2483=GradToRad@Extended +ID2484=GradToRad@Float +ID2485=GradToRad@Single +ID2486=Graphics +ID2487=Gray32@Byte@Byte +ID2488=GreenComponent@TColor32 +ID2489=GROUP_INFO_0 ID249=_IMAGE_FUNCTION_ENTRY64.EndOfPrologue -ID2490=IMAGE_SCN_MEM_PURGEABLE -ID2491=IMAGE_SCN_MEM_READ -ID2492=IMAGE_SCN_MEM_SHARED -ID2493=IMAGE_SCN_MEM_WRITE -ID2494=IMAGE_SCN_NO_DEFER_SPEC_EXC -ID2495=IMAGE_SCN_TYPE_NO_PAD -ID2496=IMAGE_SECTION_HEADER -ID2497=IMAGE_SEPARATE_DEBUG_FLAGS_MASK -ID2498=IMAGE_SEPARATE_DEBUG_HEADER -ID2499=IMAGE_SEPARATE_DEBUG_MISMATCH +ID2490=GROUP_INFO_1 +ID2491=GROUP_NAME +ID2492=Guard@Pointer@ISafeGuard +ID2493=Guard@TObject@IMultiSafeGuard +ID2494=Guard@TObject@ISafeGuard +ID2495=GZipFile@string@string@Integer@TJclCompressStreamProgressCallback@Pointer +ID2496=GZipFile@TFileName@TFileName@Integer@TJclCompressStreamProgressCallback@Pointer +ID2497=GZipStream@TStream@TStream@Integer@TJclCompressStreamProgressCallback@Pointer +ID2498=HANGUP_COMPLETE +ID2499=HANGUP_PENDING ID25=!!OVERLOADED_Create_TJclMappedTextReader ID250=_IMAGE_FUNCTION_ENTRY64.StartingAddress -ID2500=IMAGE_SEPARATE_DEBUG_SIGNATURE -ID2501=IMAGE_SEPARATION -ID2502=IMAGE_SIZEOF_ARCHIVE_MEMBER_HDR -ID2503=IMAGE_SIZEOF_FILE_HEADER -ID2504=IMAGE_SIZEOF_LINENUMBER -ID2505=IMAGE_SIZEOF_NT_OPTIONAL_HEADER -ID2506=IMAGE_SIZEOF_NT_OPTIONAL32_HEADER -ID2507=IMAGE_SIZEOF_NT_OPTIONAL64_HEADER -ID2508=IMAGE_SIZEOF_ROM_OPTIONAL_HEADER -ID2509=IMAGE_SIZEOF_SECTION_HEADER +ID2500=Hardlinks.pas +ID2501=HardwareArchitecture +ID2502=HashMul@Integer@Integer +ID2503=HDOMAINENUM +ID2504=HELP_MSG_FILENAME +ID2505=HeronianMean@Float@Float +ID2506=HexPrefix +ID2507=HexPrefixC +ID2508=HexPrefixPascal +ID2509=HexToDouble@string ID251=_IMAGE_FUNCTION_ENTRY64.UnwindInfoAddress -ID2510=IMAGE_SIZEOF_SHORT_NAME -ID2511=IMAGE_SIZEOF_STD_OPTIONAL_HEADER -ID2512=IMAGE_SNAP_BY_ORDINAL@DWORD -ID2513=IMAGE_SNAP_BY_ORDINAL32@DWORD -ID2514=IMAGE_SNAP_BY_ORDINAL64@ULONGLONG -ID2515=IMAGE_SUBSYSTEM_EFI_APPLICATION -ID2516=IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER -ID2517=IMAGE_SUBSYSTEM_EFI_ROM -ID2518=IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER -ID2519=IMAGE_SUBSYSTEM_NATIVE +ID2510=HibernateOS@Boolean@Boolean +ID2511=HighValidNaNTag +ID2512=HKCC +ID2513=HKCCLongName +ID2514=HKCCShortName +ID2515=HKCR +ID2516=HKCRLongName +ID2517=HKCRShortName +ID2518=HKCU +ID2519=HKCULongName ID252=_IMAGE_LINENUMBER -ID2520=IMAGE_SUBSYSTEM_NATIVE_WINDOWS -ID2521=IMAGE_SUBSYSTEM_OS2_CUI -ID2522=IMAGE_SUBSYSTEM_POSIX_CUI -ID2523=IMAGE_SUBSYSTEM_UNKNOWN -ID2524=IMAGE_SUBSYSTEM_WINDOWS_CE_GUI -ID2525=IMAGE_SUBSYSTEM_WINDOWS_CUI -ID2526=IMAGE_SUBSYSTEM_WINDOWS_GUI -ID2527=IMAGE_SUBSYSTEM_XBOX -ID2528=IMAGE_THUNK_DATA32 -ID2529=IMAGE_THUNK_DATA64 +ID2520=HKCUShortName +ID2521=HKDD +ID2522=HKDDLongName +ID2523=HKDDShortName +ID2524=HKEY_CLASSES_ROOT +ID2525=HKEY_CURRENT_CONFIG +ID2526=HKEY_CURRENT_USER +ID2527=HKEY_DYN_DATA +ID2528=HKEY_LOCAL_MACHINE +ID2529=HKEY_PERFORMANCE_DATA ID253=_IMAGE_LINENUMBER.Linenumber -ID2530=IMAGE_TLS_DIRECTORY32 -ID2531=IMAGE_TLS_DIRECTORY64 -ID2532=ImageDirectoryEntryToData@Pointer@ByteBool@USHORT@ULONG -ID2533=IMAGEHLP_LINE -ID2534=ImageRvaToSection@PImageNtHeaders@Pointer@ULONG -ID2535=ImageRvaToVa@PImageNtHeaders@Pointer@ULONG@PPImageSectionHeader -ID2536=ImgDelayDescrV1 -ID2537=ImgDelayDescrV1.dwTimeStamp -ID2538=ImgDelayDescrV1.grAttrs -ID2539=ImgDelayDescrV1.pBoundIAT +ID2530=HKEY_USERS +ID2531=HKLM +ID2532=HKLMLongName +ID2533=HKLMShortName +ID2534=HKPD +ID2535=HKPDLongName +ID2536=HKPDShortName +ID2537=HKUS +ID2538=HKUSLongName +ID2539=HKUSShortName ID254=_IMAGE_LINENUMBER.Type_ -ID2540=ImgDelayDescrV1.phmod -ID2541=ImgDelayDescrV1.pIAT -ID2542=ImgDelayDescrV1.pINT -ID2543=ImgDelayDescrV1.pUnloadIAT -ID2544=ImgDelayDescrV1.szName -ID2545=ImgDelayDescrV2 -ID2546=ImgDelayDescrV2.dwTimeStamp -ID2547=ImgDelayDescrV2.grAttrs -ID2548=ImgDelayDescrV2.rvaBoundIAT -ID2549=ImgDelayDescrV2.rvaDLLName +ID2540=hLn2Pi +ID2541=HLSToRGB@Single@Single@Single@Single@Single@Single +ID2542=HLSToRGB@TColorVector +ID2543=HLSToRGB@THLSValue@THLSValue@THLSValue +ID2544=hNtDll +ID2545=HOOK_DLL_EXCEPTIONS +ID2546=HowAOneLinerCanBiteYou +ID2547=HSLToRGB@Single@Single@Single +ID2548=HSLToRGB@Single@Single@Single@Single@Single@Single +ID2549=HTT_FLAG ID255=_IMAGE_NT_HEADERS -ID2550=ImgDelayDescrV2.rvaHmod -ID2551=ImgDelayDescrV2.rvaIAT -ID2552=ImgDelayDescrV2.rvaINT -ID2553=ImgDelayDescrV2.rvaUnloadIAT -ID2554=IMPORT_OBJECT_HDR_SIG2 -ID2555=IMPORT_OBJECT_HEADER -ID2556=IMPORT_OBJECT_HEADER.Flags -ID2557=IMPORT_OBJECT_HEADER.Machine -ID2558=IMPORT_OBJECT_HEADER.OrdinalOrHint -ID2559=IMPORT_OBJECT_HEADER.Sig1 +ID2550=IAHFLAGS_NAMETYPE +ID2551=IAHFLAGS_RESERVED +ID2552=IAHMASK_MBZ16 +ID2553=IAHMASK_MBZ7 +ID2554=IAHMASK_SHIFT +ID2555=IAHMASK_VALUE +ID2556=IAutoPtr +ID2557=IAutoPtr.AsObject +ID2558=IAutoPtr.AsPointer +ID2559=IAutoPtr.ReleaseObject ID256=_IMAGE_NT_HEADERS.FileHeader -ID2560=IMPORT_OBJECT_HEADER.Sig2 -ID2561=IMPORT_OBJECT_HEADER.SizeOfData -ID2562=IMPORT_OBJECT_HEADER.TimeDateStamp -ID2563=IMPORT_OBJECT_HEADER.Version -ID2564=IMPORT_OBJECT_NAME_TYPE -ID2565=IMPORT_OBJECT_NAME_TYPE.IMPORT_OBJECT_NAME -ID2566=IMPORT_OBJECT_NAME_TYPE.IMPORT_OBJECT_NAME_NO_PREFIX -ID2567=IMPORT_OBJECT_NAME_TYPE.IMPORT_OBJECT_NAME_UNDECORATE -ID2568=IMPORT_OBJECT_NAME_TYPE.IMPORT_OBJECT_ORDINAL -ID2569=IMPORT_OBJECT_TYPE +ID2560=ICHSegmentId +ID2561=icMAX_CATEGORY_DESC_LEN +ID2562=ICTSegmentId +ID2563=Iff@Boolean@Boolean@Boolean +ID2564=Iff@Boolean@Byte@Byte +ID2565=Iff@Boolean@Cardinal@Cardinal +ID2566=Iff@Boolean@Char@Char +ID2567=Iff@Boolean@Float@Float +ID2568=Iff@Boolean@Int64@Int64 +ID2569=Iff@Boolean@Integer@Integer ID257=_IMAGE_NT_HEADERS.OptionalHeader -ID2570=IMPORT_OBJECT_TYPE.IMPORT_OBJECT_CODE -ID2571=IMPORT_OBJECT_TYPE.IMPORT_OBJECT_CONST -ID2572=IMPORT_OBJECT_TYPE.IMPORT_OBJECT_DATA -ID2573=IncLimit@Cardinal@Cardinal@Cardinal -ID2574=IncLimit@Int64@Int64@Int64 -ID2575=IncLimit@Integer@Integer@Integer -ID2576=IncLimit@Shortint@Shortint@Shortint -ID2577=IncLimit@Smallint@Smallint@Smallint -ID2578=IncLimit@Word@Word@Word -ID2579=IncLimitClamp@Cardinal@Cardinal@Cardinal +ID2570=Iff@Boolean@Pointer@Pointer +ID2571=Iff@Boolean@string@string +ID2572=Iff@Boolean@Variant@Variant +ID2573=IJclAbstractIterator +ID2574=IJclAnsiStrAnsiStrMap +ID2575=IJclAnsiStrAnsiStrSortedMap +ID2576=IJclAnsiStrArray +ID2577=IJclAnsiStrBinaryTreeIterator +ID2578=IJclAnsiStrCollection +ID2579=IJclAnsiStrComparer ID258=_IMAGE_NT_HEADERS.Signature -ID2580=IncLimitClamp@Int64@Int64@Int64 -ID2581=IncLimitClamp@Integer@Integer@Integer -ID2582=IncLimitClamp@Shortint@Shortint@Shortint -ID2583=IncLimitClamp@Smallint@Smallint@Smallint -ID2584=IncLimitClamp@Word@Word@Word -ID2585=IndexedDayOfWeek@Integer@Integer@Integer@Integer -ID2586=IndexedWeekDay@Integer@Integer@Integer -ID2587=IndexedWeekendDay@Integer@Integer@Integer -ID2588=InfiniteTime -ID2589=Infinity +ID2580=IJclAnsiStrContainer +ID2581=IJclAnsiStrEqualityComparer +ID2582=IJclAnsiStrFlatContainer +ID2583=IJclAnsiStrHashConverter +ID2584=IJclAnsiStrIntfMap +ID2585=IJclAnsiStrIntfSortedMap +ID2586=IJclAnsiStrIterator +ID2587=IJclAnsiStrList +ID2588=IJclAnsiStrMap +ID2589=IJclAnsiStrQueue ID259=_IMAGE_NT_HEADERS64 -ID2590=IniReadStrings@TCustomIniFile@string@TStrings -ID2591=InitializeLocaleSupport -ID2592=IniWriteStrings@TCustomIniFile@string@TStrings -ID2593=InsertCompositeElementInto@TEDISEFDataObjectGroup@TEDISEFCompositeElement@TEDISEFDataObject -ID2594=InsertCompositeElementInto@TEDISEFDataObjectGroup@TEDISEFDataObject -ID2595=InsertDebugDataIntoExecutableFile@TFileName@TFileName@string@Integer@Integer -ID2596=InsertDebugDataIntoExecutableFile@TFileName@TFileName@string@Integer@Integer@Integer -ID2597=InsertDebugDataIntoExecutableFile@TFileName@TJclBinDebugGenerator@string@Integer@Integer -ID2598=InsertDebugDataIntoExecutableFile@TFileName@TJclBinDebugGenerator@string@Integer@Integer@Integer -ID2599=InsertElementInto@TEDISEFDataObjectGroup@TEDISEFDataObject +ID2590=IJclAnsiStrSet +ID2591=IJclAnsiStrSortedMap +ID2592=IJclAnsiStrSortedSet +ID2593=IJclAnsiStrStack +ID2594=IJclAnsiStrTree +ID2595=IJclAnsiStrTreeIterator +ID2596=IJclArchiveAlgorithm +ID2597=IJclArchiveCompressHeader +ID2598=IJclArchiveCompressionLevel +ID2599=IJclArchiveCompressionMethod ID26=!!OVERLOADED_Create_TJclRational ID260=_IMAGE_NT_HEADERS64.FileHeader -ID2600=InsertElementInto@TEDISEFDataObjectGroup@TEDISEFElement@TEDISEFDataObject -ID2601=InsertLoopInto@TEDISEFDataObjectGroup@TEDISEFDataObject -ID2602=InsertLoopInto@TEDISEFDataObjectGroup@TEDISEFLoop@TEDISEFDataObject -ID2603=InsertRepeatingPatternInto@TEDISEFDataObjectGroup@TEDISEFDataObject -ID2604=InsertRepeatingPatternInto@TEDISEFDataObjectGroup@TEDISEFRepeatingPattern@TEDISEFDataObject -ID2605=InsertSegmentInto@TEDISEFDataObjectGroup@TEDISEFDataObject -ID2606=InsertSegmentInto@TEDISEFDataObjectGroup@TEDISEFSegment@TEDISEFDataObject -ID2607=InsertSubElementInto@TEDISEFDataObjectGroup@TEDISEFDataObject -ID2608=InsertSubElementInto@TEDISEFDataObjectGroup@TEDISEFSubElement@TEDISEFDataObject -ID2609=InsertTableInto@TEDISEFDataObjectGroup@TEDISEFDataObject +ID2600=IJclArchiveDictionarySize +ID2601=IJclArchiveEncryptHeader +ID2602=IJclArchiveEncryptionMethod +ID2603=IJclArchiveNumberOfPasses +ID2604=IJclArchiveNumberOfThreads +ID2605=IJclArchiveRemoveSfxBlock +ID2606=IJclArchiveSaveCreationDateTime +ID2607=IJclArchiveSaveLastAccessDateTime +ID2608=IJclArchiveSaveLastWriteDateTime +ID2609=IJclArchiveSolid ID261=_IMAGE_NT_HEADERS64.OptionalHeader -ID2610=InsertTableInto@TEDISEFDataObjectGroup@TEDISEFTable@TEDISEFDataObject -ID2611=InsertUnitVersioningSection@TFileName@TJclUnitVersioningList -ID2612=INSTALLSTATE -ID2613=InstructionDumpILAllOption -ID2614=Int16 -ID2615=Int32 -ID2616=Int64Mask -ID2617=Int8 -ID2618=IntegerCompare@TObject@TObject -ID2619=IntegerMask +ID2610=IJclArray +ID2611=IJclBinaryTreeIterator +ID2612=IJclCardinalArray +ID2613=IJclCardinalBinaryTreeIterator +ID2614=IJclCardinalCardinalMap +ID2615=IJclCardinalCardinalSortedMap +ID2616=IJclCardinalCollection +ID2617=IJclCardinalComparer +ID2618=IJclCardinalEqualityComparer +ID2619=IJclCardinalHashConverter ID262=_IMAGE_NT_HEADERS64.Signature -ID2620=INTEL_ACPI -ID2621=INTEL_APIC -ID2622=INTEL_BIT_10 -ID2623=INTEL_BIT_20 -ID2624=INTEL_BIT_30 -ID2625=INTEL_CLFLSH -ID2626=INTEL_CMOV -ID2627=INTEL_CX8 -ID2628=INTEL_DE -ID2629=INTEL_DS +ID2620=IJclCardinalIntfMap +ID2621=IJclCardinalIntfSortedMap +ID2622=IJclCardinalIterator +ID2623=IJclCardinalList +ID2624=IJclCardinalMap +ID2625=IJclCardinalQueue +ID2626=IJclCardinalSet +ID2627=IJclCardinalSortedMap +ID2628=IJclCardinalSortedSet +ID2629=IJclCardinalStack ID263=_IMAGE_OPTIONAL_HEADER -ID2630=INTEL_FPU -ID2631=INTEL_FXSR -ID2632=INTEL_HTT -ID2633=INTEL_MCA -ID2634=INTEL_MCE -ID2635=INTEL_MMX -ID2636=INTEL_MSR -ID2637=INTEL_MTRR -ID2638=INTEL_PAE -ID2639=INTEL_PAT +ID2630=IJclCardinalTree +ID2631=IJclCardinalTreeIterator +ID2632=IJclCloneable +ID2633=IJclClrAppDomain +ID2634=IJclClrAssembly +ID2635=IJclClrEvidence +ID2636=IJclClrMethod +ID2637=IJclCollection +ID2638=IJclCommandLineTool +ID2639=IJclCommandLineTool.AddPathOption@string@string ID264=_IMAGE_OPTIONAL_HEADER.AddressOfEntryPoint -ID2640=INTEL_PBE -ID2641=INTEL_PGE -ID2642=INTEL_PSE -ID2643=INTEL_PSE36 -ID2644=INTEL_PSN -ID2645=INTEL_SEP -ID2646=INTEL_SS -ID2647=INTEL_SSE -ID2648=INTEL_SSE2 -ID2649=INTEL_TM +ID2640=IJclCommandLineTool.Execute@string +ID2641=IJclCommandLineTool.ExeName +ID2642=IJclCommandLineTool.GetExeName +ID2643=IJclCommandLineTool.GetOptions +ID2644=IJclCommandLineTool.GetOutput +ID2645=IJclCommandLineTool.GetOutputCallback +ID2646=IJclCommandLineTool.Options +ID2647=IJclCommandLineTool.Output +ID2648=IJclCommandLineTool.OutputCallback +ID2649=IJclCommandLineTool.SetOutputCallback@TTextHandler ID265=_IMAGE_OPTIONAL_HEADER.BaseOfCode -ID2650=INTEL_TSC -ID2651=INTEL_VME -ID2652=IntelCacheDescription -ID2653=Intensity@Single@Single@Single -ID2654=Intensity@TColor32 -ID2655=Internationalisation -ID2656=InternetandE-mail -ID2657=IntfSimpleCompare@IInterface@IInterface -ID2658=IntfSortProc -ID2659=IntToBool +ID2650=IJclComparer +ID2651=IJclContainer +ID2652=IJclDoubleArray +ID2653=IJclDoubleBinaryTreeIterator +ID2654=IJclDoubleCollection +ID2655=IJclDoubleComparer +ID2656=IJclDoubleContainer +ID2657=IJclDoubleDoubleMap +ID2658=IJclDoubleDoubleSortedMap +ID2659=IJclDoubleEqualityComparer ID266=_IMAGE_OPTIONAL_HEADER.BaseOfData -ID2660=Inv@TPolarComplex -ID2661=Inv@TRectComplex -ID2662=inv2Pi -ID2663=IO_COMPLETION_ALL_ACCESS -ID2664=IO_COMPLETION_MODIFY_STATE -ID2665=IO_REPARSE_TAG_DFS -ID2666=IO_REPARSE_TAG_FILTER_MANAGER -ID2667=IOHFLAGS_TYPE -ID2668=IsAccessInstalled -ID2669=IsBackupFileName +ID2660=IJclDoubleHashConverter +ID2661=IJclDoubleIntfMap +ID2662=IJclDoubleIntfSortedMap +ID2663=IJclDoubleIterator +ID2664=IJclDoubleList +ID2665=IJclDoubleMap +ID2666=IJclDoubleQueue +ID2667=IJclDoubleSet +ID2668=IJclDoubleSortedMap +ID2669=IJclDoubleSortedSet ID267=_IMAGE_OPTIONAL_HEADER.CheckSum -ID2670=IsBCBPackage@string -ID2671=IsBCBProject@string -ID2672=IsCompiledWithPackages -ID2673=IsDelphiPackage@string -ID2674=IsDelphiProject@string -ID2675=IsExcelInstalled -ID2676=IsFrontPageInstalled -ID2677=IsIgnoredException@TClass -ID2678=IsInfinite@Extended -ID2679=IsInfinite@Single +ID2670=IJclDoubleStack +ID2671=IJclDoubleTree +ID2672=IJclDoubleTreeIterator +ID2673=IJclEqualityComparer +ID2674=IJclExtendedArray +ID2675=IJclExtendedBinaryTreeIterator +ID2676=IJclExtendedCollection +ID2677=IJclExtendedComparer +ID2678=IJclExtendedContainer +ID2679=IJclExtendedEqualityComparer ID268=_IMAGE_OPTIONAL_HEADER.DataDirectory -ID2680=IsInfinite@TPolarComplex -ID2681=IsInfinite@TRectComplex -ID2682=IsInternetExplorerInstalled -ID2683=IsISOLongYear@TDateTime -ID2684=IsISOLongYear@Word -ID2685=IsLeapYear@TDateTime -ID2686=IsMainAppWindow@THandle -ID2687=IsMediaPresentInDrive@Char -ID2688=IsMSProjectInstalled -ID2689=IsNaN@Extended +ID2680=IJclExtendedExtendedMap +ID2681=IJclExtendedExtendedSortedMap +ID2682=IJclExtendedHashConverter +ID2683=IJclExtendedIntfMap +ID2684=IJclExtendedIntfSortedMap +ID2685=IJclExtendedIterator +ID2686=IJclExtendedList +ID2687=IJclExtendedMap +ID2688=IJclExtendedQueue +ID2689=IJclExtendedSet ID269=_IMAGE_OPTIONAL_HEADER.DllCharacteristics -ID2690=IsNaN@Single -ID2691=ISODayOfWeek@TDateTime -ID2692=ISOLATIONAWARE_MANIFEST_RESOURCE_ID -ID2693=ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID -ID2694=IsOpenOfficeInstalled -ID2695=IsOutlookInstalled -ID2696=ISOWeekNumber@TDateTime@Integer -ID2697=ISOWeekNumber@TDateTime@Integer@Integer -ID2698=IsPCRELoaded -ID2699=IsPowerPointInstalled +ID2690=IJclExtendedSortedMap +ID2691=IJclExtendedSortedSet +ID2692=IJclExtendedStack +ID2693=IJclExtendedTree +ID2694=IJclExtendedTreeIterator +ID2695=IJclFileSearchOptions +ID2696=IJclFloatArray +ID2697=IJclFloatBinaryTreeIterator +ID2698=IJclFloatCollection +ID2699=IJclFloatComparer ID27=!!OVERLOADED_Create_TJclScreenBuffer ID270=_IMAGE_OPTIONAL_HEADER.FileAlignment -ID2700=IsPwrHibernateAllowed -ID2701=IsPwrShutdownAllowed -ID2702=IsPwrSuspendAllowed -ID2703=IsReparseTagHighLatency@ULONG -ID2704=IsReparseTagMicrosoft@ULONG -ID2705=IsReparseTagNameSurrogate@ULONG -ID2706=IsRootDirectory@string -ID2707=IsSystemResourcesMeterPresent -ID2708=IsValidISBN@AnsiString -ID2709=IsWin2003R2 +ID2700=IJclFloatContainer +ID2701=IJclFloatEqualityComparer +ID2702=IJclFloatFloatMap +ID2703=IJclFloatFloatSortedMap +ID2704=IJclFloatHashConverter +ID2705=IJclFloatIntfMap +ID2706=IJclFloatIntfSortedMap +ID2707=IJclFloatIterator +ID2708=IJclFloatList +ID2709=IJclFloatMap ID271=_IMAGE_OPTIONAL_HEADER.ImageBase -ID2710=IsWindows64 -ID2711=IsWinXP64 -ID2712=IsWordInstalled -ID2713=IsZero@TPolarComplex -ID2714=IsZero@TRectComplex -ID2715=ITableCanDumpIL -ID2716=IToString -ID2717=IToString.ToString -ID2718=jcl.inc -ID2719=JCL_GZIP_CM_DEFLATE +ID2710=IJclFloatQueue +ID2711=IJclFloatSet +ID2712=IJclFloatSortedMap +ID2713=IJclFloatSortedSet +ID2714=IJclFloatStack +ID2715=IJclFloatTree +ID2716=IJclFloatTreeIterator +ID2717=IJclGrowable +ID2718=IJclHashConverter +ID2719=IJclInt64Array ID272=_IMAGE_OPTIONAL_HEADER.LoaderFlags -ID2720=JCL_GZIP_EFLAG_FAST -ID2721=JCL_GZIP_EFLAG_MAX -ID2722=JCL_GZIP_FLAG_COMMENT -ID2723=JCL_GZIP_FLAG_CRC -ID2724=JCL_GZIP_FLAG_EXTRA -ID2725=JCL_GZIP_FLAG_NAME -ID2726=JCL_GZIP_FLAG_TEXT -ID2727=JCL_GZIP_ID1 -ID2728=JCL_GZIP_ID2 -ID2729=JCL_GZIP_OS_ACORN +ID2720=IJclInt64BinaryTreeIterator +ID2721=IJclInt64Collection +ID2722=IJclInt64Comparer +ID2723=IJclInt64EqualityComparer +ID2724=IJclInt64HashConverter +ID2725=IJclInt64Int64Map +ID2726=IJclInt64Int64SortedMap +ID2727=IJclInt64IntfMap +ID2728=IJclInt64IntfSortedMap +ID2729=IJclInt64Iterator ID273=_IMAGE_OPTIONAL_HEADER.Magic -ID2730=JCL_GZIP_OS_AMIGA -ID2731=JCL_GZIP_OS_ATARI -ID2732=JCL_GZIP_OS_CPM -ID2733=JCL_GZIP_OS_FAT -ID2734=JCL_GZIP_OS_HPFS -ID2735=JCL_GZIP_OS_MAC -ID2736=JCL_GZIP_OS_NTFS -ID2737=JCL_GZIP_OS_QDOS -ID2738=JCL_GZIP_OS_TOPS -ID2739=JCL_GZIP_OS_UNIX +ID2730=IJclInt64List +ID2731=IJclInt64Map +ID2732=IJclInt64Queue +ID2733=IJclInt64Set +ID2734=IJclInt64SortedMap +ID2735=IJclInt64SortedSet +ID2736=IJclInt64Stack +ID2737=IJclInt64Tree +ID2738=IJclInt64TreeIterator +ID2739=IJclIntegerArray ID274=_IMAGE_OPTIONAL_HEADER.MajorImageVersion -ID2740=JCL_GZIP_OS_UNKNOWN -ID2741=JCL_GZIP_OS_VM -ID2742=JCL_GZIP_OS_VMS -ID2743=JCL_GZIP_OS_Z -ID2744=JCL_GZIP_X_AC1 -ID2745=JCL_GZIP_X_AC2 -ID2746=JCL_GZIP_X_Ap1 -ID2747=JCL_GZIP_X_Ap2 -ID2748=JCL_GZIP_X_cp1 -ID2749=JCL_GZIP_X_cp2 +ID2740=IJclIntegerBinaryTreeIterator +ID2741=IJclIntegerCollection +ID2742=IJclIntegerComparer +ID2743=IJclIntegerEqualityComparer +ID2744=IJclIntegerHashConverter +ID2745=IJclIntegerIntegerMap +ID2746=IJclIntegerIntegerSortedMap +ID2747=IJclIntegerIntfMap +ID2748=IJclIntegerIntfSortedMap +ID2749=IJclIntegerIterator ID275=_IMAGE_OPTIONAL_HEADER.MajorLinkerVersion -ID2750=JCL_GZIP_X_GS1 -ID2751=JCL_GZIP_X_GS2 -ID2752=JCL_GZIP_X_KN1 -ID2753=JCL_GZIP_X_KN2 -ID2754=JCL_GZIP_X_Mc1 -ID2755=JCL_GZIP_X_Mc2 -ID2756=JCL_GZIP_X_RO1 -ID2757=JCL_GZIP_X_RO2 -ID2758=JCL_PCRE_CALLOUT_FAILCONTINUE -ID2759=JCL_PCRE_CALLOUT_NOERROR +ID2750=IJclIntegerList +ID2751=IJclIntegerMap +ID2752=IJclIntegerQueue +ID2753=IJclIntegerSet +ID2754=IJclIntegerSortedMap +ID2755=IJclIntegerSortedSet +ID2756=IJclIntegerStack +ID2757=IJclIntegerTree +ID2758=IJclIntegerTreeIterator +ID2759=IJclIntfAnsiStrMap ID276=_IMAGE_OPTIONAL_HEADER.MajorOperatingSystemVersion -ID2760=JCL_PCRE_ERROR_CALLOUTERROR -ID2761=JCL_PCRE_ERROR_STUDYFAILED -ID2762=Jcl8087.pas -ID2763=JclAbstractContainers.pas -ID2764=JclAddExceptNotifier@TJclExceptNotifyMethod@TJclExceptNotifyPriority -ID2765=JclAddExceptNotifier@TJclExceptNotifyProc@TJclExceptNotifyPriority -ID2766=JclAddExceptNotifier@TJclExceptNotifyProcEx@TJclExceptNotifyPriority -ID2767=JclAlgorithms.pas -ID2768=JclAnsiStrings.pas -ID2769=JclAppInst.pas +ID2760=IJclIntfAnsiStrSortedMap +ID2761=IJclIntfArray +ID2762=IJclIntfBinaryTreeIterator +ID2763=IJclIntfCardinalMap +ID2764=IJclIntfCardinalSortedMap +ID2765=IJclIntfCloneable +ID2766=IJclIntfCollection +ID2767=IJclIntfComparer +ID2768=IJclIntfDoubleMap +ID2769=IJclIntfDoubleSortedMap ID277=_IMAGE_OPTIONAL_HEADER.MajorSubsystemVersion -ID2770=JclAppInstances -ID2771=JclAppInstances@string -ID2772=JclArrayLists.pas -ID2773=JclArraySets.pas -ID2774=JclBase.pas -ID2775=JclBelongsHookedCode@Pointer -ID2776=JclBinaryTrees.pas -ID2777=JclBorDesignerDescription -ID2778=JclBorDesignerFormExtension -ID2779=JclBorlandTools.pas +ID2770=IJclIntfEqualityComparer +ID2771=IJclIntfExtendedMap +ID2772=IJclIntfExtendedSortedMap +ID2773=IJclIntfFloatMap +ID2774=IJclIntfFloatSortedMap +ID2775=IJclIntfHashConverter +ID2776=IJclIntfInt64Map +ID2777=IJclIntfInt64SortedMap +ID2778=IJclIntfIntegerMap +ID2779=IJclIntfIntegerSortedMap ID278=_IMAGE_OPTIONAL_HEADER.MinorImageVersion -ID2780=JclBorPersonalityDescription -ID2781=JclCancelWaitableTimer@THandle -ID2782=JclCheckAndInitializeOpenGL -ID2783=JclCIL.pas -ID2784=JclCLR.pas -ID2785=JclCOM.pas -ID2786=JclComplex.pas -ID2787=JclCompression.pas -ID2788=JclConsole.pas -ID2789=JclContainerIntf.pas +ID2780=IJclIntfIntfMap +ID2781=IJclIntfIntfSortedMap +ID2782=IJclIntfIterator +ID2783=IJclIntfList +ID2784=IJclIntfMap +ID2785=IJclIntfPtrMap +ID2786=IJclIntfPtrSortedMap +ID2787=IJclIntfQueue +ID2788=IJclIntfSet +ID2789=IJclIntfSingleMap ID279=_IMAGE_OPTIONAL_HEADER.MinorLinkerVersion -ID2790=JclCounter.pas -ID2791=JclCreateStackList@Boolean@DWORD@Pointer@Boolean -ID2792=JclCreateStackList@Boolean@DWORD@Pointer@Boolean@Pointer -ID2793=JclCreateStackList@Boolean@DWORD@Pointer@Boolean@Pointer@Pointer -ID2794=JclCreateThreadStackTrace@Boolean@THandle -ID2795=JclCreateThreadStackTraceFromID@Boolean@DWORD -ID2796=JclCreateWaitableTimer@PSecurityAttributes@Boolean@string -ID2797=jclcs1.inc -ID2798=jcld10.inc -ID2799=jcld10.net.inc +ID2790=IJclIntfSingleSortedMap +ID2791=IJclIntfSortedMap +ID2792=IJclIntfSortedSet +ID2793=IJclIntfStack +ID2794=IJclIntfStrMap +ID2795=IJclIntfStrSortedMap +ID2796=IJclIntfTree +ID2797=IJclIntfTreeIterator +ID2798=IJclIntfUnicodeStrMap +ID2799=IJclIntfUnicodeStrSortedMap ID28=!!OVERLOADED_Create_TJclScreenTextAttribute ID280=_IMAGE_OPTIONAL_HEADER.MinorOperatingSystemVersion -ID2800=jcld11.inc -ID2801=jcld5.inc -ID2802=jcld6.inc -ID2803=jcld7.inc -ID2804=jcld8.inc -ID2805=jcld9.inc -ID2806=jcld9.net.inc -ID2807=JclDateTime.pas -ID2808=JclDbgHeaderVersion -ID2809=JclDebug.pas +ID2800=IJclIntfWideStrMap +ID2801=IJclIntfWideStrSortedMap +ID2802=IJclIterator +ID2803=IJclKeyOwner +ID2804=IJclList +ID2805=IJclListener +ID2806=IJclLockable +ID2807=IJclMap +ID2808=IJclMsdosSys +ID2809=IJclMsdosSys.AutoScan ID281=_IMAGE_OPTIONAL_HEADER.MinorSubsystemVersion -ID2810=JclDebugInfoSymbolPaths -ID2811=JclDebugThreadList -ID2812=JclDotNet.pas -ID2813=JclEDI.pas -ID2814=JclEDI_ANSIX12.pas -ID2815=JclEDI_ANSIX12_Ext.pas -ID2816=JclEDI_UNEDIFACT.pas -ID2817=JclEDI_UNEDIFACT_Ext.pas -ID2818=JclEDISEF.pas -ID2819=JclEDITranslators.pas +ID2810=IJclMsdosSys.BootDelay +ID2811=IJclMsdosSys.BootGUI +ID2812=IJclMsdosSys.BootKeys +ID2813=IJclMsdosSys.BootMenu +ID2814=IJclMsdosSys.BootMenuDefault +ID2815=IJclMsdosSys.BootMenuDelay +ID2816=IJclMsdosSys.BootMulti +ID2817=IJclMsdosSys.BootSafe +ID2818=IJclMsdosSys.BootWarn +ID2819=IJclMsdosSys.BootWin ID282=_IMAGE_OPTIONAL_HEADER.NumberOfRvaAndSizes -ID2820=JclEDIXML.pas -ID2821=JclExceptionTrackingActive -ID2822=JclFileUtils.pas -ID2823=JclFont.pas -ID2824=JclGetExceptFrameList@DWORD -ID2825=JclGetExceptStackList@DWORD -ID2826=JclGetExceptStackListToStrings@DWORD@TStrings@Boolean@Boolean@Boolean@Boolean -ID2827=JclGetFileAttributesEx@string@TGetFileExInfoLevels@Pointer -ID2828=JclglGetError -ID2829=JclglGetString@Cardinal +ID2820=IJclMsdosSys.DBLSpace +ID2821=IJclMsdosSys.DoubleBuffer +ID2822=IJclMsdosSys.DRVSpace +ID2823=IJclMsdosSys.GetAutoScan +ID2824=IJclMsdosSys.GetBootDelay +ID2825=IJclMsdosSys.GetBootGUI +ID2826=IJclMsdosSys.GetBootKeys +ID2827=IJclMsdosSys.GetBootMenu +ID2828=IJclMsdosSys.GetBootMenuDefault +ID2829=IJclMsdosSys.GetBootMenuDelay ID283=_IMAGE_OPTIONAL_HEADER.SectionAlignment -ID2830=JclgluErrorString@Cardinal -ID2831=JclGraphics.pas -ID2832=JclGraphUtils.pas -ID2833=JclHashMaps.pas -ID2834=JclHashSets.pas -ID2835=JclHookedExceptModulesList@TJclModuleArray -ID2836=JclHookExcept.pas -ID2837=JclHookExceptionsInModule@HMODULE -ID2838=JclIniFiles.pas -ID2839=JclInitializeCriticalSectionAndSpinCount@TRTLCriticalSection@Cardinal +ID2830=IJclMsdosSys.GetBootMulti +ID2831=IJclMsdosSys.GetBootSafe +ID2832=IJclMsdosSys.GetBootWarn +ID2833=IJclMsdosSys.GetBootWin +ID2834=IJclMsdosSys.GetDBLSpace +ID2835=IJclMsdosSys.GetDoubleBuffer +ID2836=IJclMsdosSys.GetDRVSpace +ID2837=IJclMsdosSys.GetHostWinBootDrv +ID2838=IJclMsdosSys.GetLoadTop +ID2839=IJclMsdosSys.GetLogo ID284=_IMAGE_OPTIONAL_HEADER.SizeOfCode -ID2840=JclInitializeLibrariesHookExcept -ID2841=JclLANMan.pas -ID2842=JclLastExceptStackListToStrings@TStrings@Boolean@Boolean@Boolean@Boolean -ID2843=JclLinkedLists.pas -ID2844=JclLocales.pas -ID2845=JclLocalesInfoList@TStrings@Integer -ID2846=JclLogic.pas -ID2847=JclMapFileExtension -ID2848=JclMapi.pas -ID2849=JclMath.pas +ID2840=IJclMsdosSys.GetNetwork +ID2841=IJclMsdosSys.GetUninstallDir +ID2842=IJclMsdosSys.GetWinBootDir +ID2843=IJclMsdosSys.GetWinDir +ID2844=IJclMsdosSys.GetWinVer +ID2845=IJclMsdosSys.HostWinBootDrv +ID2846=IJclMsdosSys.LoadTop +ID2847=IJclMsdosSys.Logo +ID2848=IJclMsdosSys.Network +ID2849=IJclMsdosSys.SetAutoScan@Boolean ID285=_IMAGE_OPTIONAL_HEADER.SizeOfHeaders -ID2850=JclMetadata.pas -ID2851=JclMIDI.pas -ID2852=JclMime.pas -ID2853=JclMiscel.pas -ID2854=JclMsdosSys.pas -ID2855=JclMultimedia.pas -ID2856=JclNTFS.pas -ID2857=JclOpenWaitableTimer@Cardinal@Boolean@string -ID2858=JclPCRE -ID2859=JclPCRE.pas +ID2850=IJclMsdosSys.SetBool@Boolean@Boolean +ID2851=IJclMsdosSys.SetBootDelay@Cardinal +ID2852=IJclMsdosSys.SetBootGUI@Boolean +ID2853=IJclMsdosSys.SetBootKeys@Boolean +ID2854=IJclMsdosSys.SetBootMenu@Boolean +ID2855=IJclMsdosSys.SetBootMenuDefault@Cardinal +ID2856=IJclMsdosSys.SetBootMenuDelay@Cardinal +ID2857=IJclMsdosSys.SetBootMulti@Boolean +ID2858=IJclMsdosSys.SetBootSafe@Boolean +ID2859=IJclMsdosSys.SetBootWarn@Boolean ID286=_IMAGE_OPTIONAL_HEADER.SizeOfHeapCommit -ID2860=JclPCRE_Intro -ID2861=JclPCRE_Using -ID2862=JclPeImage.pas -ID2863=JclPrint.pas -ID2864=JclQGraphics.pas -ID2865=JclQGraphUtils.pas -ID2866=JclQueues.pas -ID2867=JclRegistry.pas -ID2868=JclRemoveExceptNotifier@TJclExceptNotifyMethod -ID2869=JclRemoveExceptNotifier@TJclExceptNotifyProc +ID2860=IJclMsdosSys.SetBootWin@Boolean +ID2861=IJclMsdosSys.SetDBLSpace@Boolean +ID2862=IJclMsdosSys.SetDoubleBuffer@Boolean +ID2863=IJclMsdosSys.SetDRVSpace@Boolean +ID2864=IJclMsdosSys.SetHostWinBootDrv@Char +ID2865=IJclMsdosSys.SetLoadTop@Boolean +ID2866=IJclMsdosSys.SetLogo@Boolean +ID2867=IJclMsdosSys.SetNetwork@Boolean +ID2868=IJclMsdosSys.SetString@string@string +ID2869=IJclMsdosSys.SetUninstallDir@Char ID287=_IMAGE_OPTIONAL_HEADER.SizeOfHeapReserve -ID2870=JclRemoveExceptNotifier@TJclExceptNotifyProcEx -ID2871=JclReplaceExceptObj@Exception -ID2872=JclResources.pas -ID2873=JclRTTI.pas -ID2874=JclSchedule.pas -ID2875=JclScheduleTaskAllPages -ID2876=JclSecurity.pas -ID2877=JclSetCriticalSectionSpinCount@TRTLCriticalSection@Cardinal -ID2878=JclShell.pas -ID2879=JclSignalObjectAndWait@THandle@THandle@Cardinal@Boolean +ID2870=IJclMsdosSys.SetWinBootDir@string +ID2871=IJclMsdosSys.SetWinDir@string +ID2872=IJclMsdosSys.SetWinVer@string +ID2873=IJclMsdosSys.UninstallDir +ID2874=IJclMsdosSys.WinBootDir +ID2875=IJclMsdosSys.WinDir +ID2876=IJclMsdosSys.WinVer +ID2877=IJclMultiIntfIntfMap +ID2878=IJclNotificationMessage +ID2879=IJclNotifier ID288=_IMAGE_OPTIONAL_HEADER.SizeOfImage -ID2880=JclSimpleSendFax@string@string@string@string@string@Boolean@THandle@string@string -ID2881=JclStacks.pas -ID2882=JclStackTrackingOptions -ID2883=JclStartExceptionTracking -ID2884=JclStatistics.pas -ID2885=JclStopExceptionTracking -ID2886=JclStreams.pas -ID2887=JclStrHashMap.pas -ID2888=JclStrings.pas -ID2889=JclStructStorage.pas +ID2880=IJclObjectOwner +ID2881=IJclPackable +ID2882=IJclPtrArray +ID2883=IJclPtrBinaryTreeIterator +ID2884=IJclPtrCollection +ID2885=IJclPtrComparer +ID2886=IJclPtrEqualityComparer +ID2887=IJclPtrHashConverter +ID2888=IJclPtrIntfMap +ID2889=IJclPtrIntfSortedMap ID289=_IMAGE_OPTIONAL_HEADER.SizeOfInitializedData -ID2890=JclSvcCtrl.pas -ID2891=JclSynch.pas -ID2892=JclSysUtils.pas -ID2893=JclTask.pas -ID2894=JclTD32.pas -ID2895=JclTrackExceptionsFromLibraries -ID2896=JclTryEnterCriticalSection@TRTLCriticalSection -ID2897=JclUnicode.pas -ID2898=JclUnitConv.pas -ID2899=JclUnitVersioning.pas +ID2890=IJclPtrIterator +ID2891=IJclPtrList +ID2892=IJclPtrMap +ID2893=IJclPtrPtrMap +ID2894=IJclPtrPtrSortedMap +ID2895=IJclPtrQueue +ID2896=IJclPtrSet +ID2897=IJclPtrSortedMap +ID2898=IJclPtrSortedSet +ID2899=IJclPtrStack ID29=!!OVERLOADED_Create_TStringBuilder ID290=_IMAGE_OPTIONAL_HEADER.SizeOfStackCommit -ID2900=JclUnitVersioningProviders.pas -ID2901=JclUnkookExceptionsInModule@HMODULE -ID2902=JclValidateModuleAddress@Pointer -ID2903=JclValidation.pas -ID2904=JclVectors.pas -ID2905=JclVersionBuild -ID2906=JclVersionMajor -ID2907=JclVersionMinor -ID2908=JclVersionRelease -ID2909=JclwglCreateContext@HDC +ID2900=IJclPtrTree +ID2901=IJclPtrTreeIterator +ID2902=IJclQueue +ID2903=IJclScreenTextAttribute +ID2904=IJclScreenTextAttribute.BgColor +ID2905=IJclScreenTextAttribute.BgHighlight +ID2906=IJclScreenTextAttribute.Color +ID2907=IJclScreenTextAttribute.GetBgColor +ID2908=IJclScreenTextAttribute.GetBgHighlight +ID2909=IJclScreenTextAttribute.GetColor ID291=_IMAGE_OPTIONAL_HEADER.SizeOfStackReserve -ID2910=JclwglDeleteContext@HGLRC -ID2911=JclwglMakeCurrent@HDC@HGLRC -ID2912=JclWideFormat.pas -ID2913=JclWideStrings.pas -ID2914=JclWin32.pas -ID2915=JclWin32Ex.pas -ID2916=JclWin32ExFunctions -ID2917=JclWinMIDI.pas -ID2918=jedi.inc -ID2919=KelvinAbsoluteZero +ID2910=IJclScreenTextAttribute.GetHighlight +ID2911=IJclScreenTextAttribute.GetStyle +ID2912=IJclScreenTextAttribute.GetTextAttribute +ID2913=IJclScreenTextAttribute.Highlight +ID2914=IJclScreenTextAttribute.SetBgColor@TJclScreenBackColor +ID2915=IJclScreenTextAttribute.SetBgHighlight@Boolean +ID2916=IJclScreenTextAttribute.SetColor@TJclScreenFontColor +ID2917=IJclScreenTextAttribute.SetHighlight@Boolean +ID2918=IJclScreenTextAttribute.SetStyle@TJclScreenFontStyles +ID2919=IJclScreenTextAttribute.SetTextAttribute@Word ID292=_IMAGE_OPTIONAL_HEADER.SizeOfUninitializedData -ID2920=KelvinBoilingPoint -ID2921=KelvinFreezingPoint -ID2922=KelvinTo@TTemperatureType@Float -ID2923=KelvinToRankine@Float -ID2924=KelvinToReaumur@Float -ID2925=KLF_RESET -ID2926=KLF_SHIFTLOCK -ID2927=kylix.inc -ID2928=LANA_ENUM -ID2929=LANGIDFROMLCID@LCID +ID2920=IJclScreenTextAttribute.Style +ID2921=IJclScreenTextAttribute.TextAttribute +ID2922=IJclSet +ID2923=IJclSingleArray +ID2924=IJclSingleBinaryTreeIterator +ID2925=IJclSingleCollection +ID2926=IJclSingleComparer +ID2927=IJclSingleContainer +ID2928=IJclSingleEqualityComparer +ID2929=IJclSingleHashConverter ID293=_IMAGE_OPTIONAL_HEADER.Subsystem -ID2930=Largeint -ID2931=LastDayOfWeek@Integer@Integer@Integer -ID2932=LastWeekDay@Integer@Integer -ID2933=LastWeekDay@Integer@Integer@Integer -ID2934=LastWeekendDay@Integer@Integer -ID2935=LastWeekendDay@Integer@Integer@Integer -ID2936=LibNotLoadedHandler -ID2937=LibrariesProcessesandThreads -ID2938=ListAddItems@string@string@string -ID2939=ListDelItem@string@string@Integer +ID2930=IJclSingleIntfMap +ID2931=IJclSingleIntfSortedMap +ID2932=IJclSingleIterator +ID2933=IJclSingleList +ID2934=IJclSingleMap +ID2935=IJclSingleQueue +ID2936=IJclSingleSet +ID2937=IJclSingleSingleMap +ID2938=IJclSingleSingleSortedMap +ID2939=IJclSingleSortedMap ID294=_IMAGE_OPTIONAL_HEADER.Win32VersionValue -ID2940=LISTEN_OUTSTANDING -ID2941=ListGetItem@string@string@Integer -ID2942=ListIncludeItems@string@string@string -ID2943=ListItemCount@string@string -ID2944=ListItemIndex@string@string@string -ID2945=ListRemoveItems@string@string@string -ID2946=ListSeparator -ID2947=ListSetItem@string@string@Integer@string -ID2948=LM20_CNLEN -ID2949=LM20_DEVLEN +ID2940=IJclSingleSortedSet +ID2941=IJclSingleStack +ID2942=IJclSingleTree +ID2943=IJclSingleTreeIterator +ID2944=IJclSortedMap +ID2945=IJclSortedSet +ID2946=IJclStack +ID2947=IJclStrArray +ID2948=IJclStrBinaryTreeIterator +ID2949=IJclStrCollection ID295=_IMAGE_OPTIONAL_HEADER64 -ID2950=LM20_DNLEN -ID2951=LM20_GNLEN -ID2952=LM20_MAXCOMMENTSZ -ID2953=LM20_NNLEN -ID2954=LM20_PATHLEN -ID2955=LM20_PWLEN -ID2956=LM20_QNLEN -ID2957=LM20_RMLEN -ID2958=LM20_SNLEN -ID2959=LM20_STXTLEN +ID2950=IJclStrComparer +ID2951=IJclStrContainer +ID2952=IJclStrEqualityComparer +ID2953=IJclStrHashConverter +ID2954=IJclStringList +ID2955=IJclStrIntfMap +ID2956=IJclStrIntfSortedMap +ID2957=IJclStrIterator +ID2958=IJclStrList +ID2959=IJclStrMap ID296=_IMAGE_OPTIONAL_HEADER64.AddressOfEntryPoint -ID2960=LM20_UNCLEN -ID2961=LM20_UNLEN -ID2962=LMCSTR -ID2963=LMSTR -ID2964=Ln@TPolarComplex -ID2965=Ln10 -ID2966=Ln2 -ID2967=LnPi -ID2968=LOADED_IMAGE -ID2969=LoadLibraryShim@PWideChar@PWideChar@Pointer@HMODULE +ID2960=IJclStrQueue +ID2961=IJclStrSet +ID2962=IJclStrSortedMap +ID2963=IJclStrSortedSet +ID2964=IJclStrStack +ID2965=IJclStrStrMap +ID2966=IJclStrStrSortedMap +ID2967=IJclStrTree +ID2968=IJclStrTreeIterator +ID2969=IJclTree ID297=_IMAGE_OPTIONAL_HEADER64.BaseOfCode -ID2970=LoadPCRE -ID2971=LOCALE_IDEFAULTEBCDICCODEPAGE -ID2972=LOCALE_IDIGITSUBSTITUTION -ID2973=LOCALE_IPAPERSIZE -ID2974=LOCALE_NOUSEROVERRIDE -ID2975=LOCALE_RETURN_NUMBER -ID2976=LOCALE_SENGCURRNAME -ID2977=LOCALE_SNATIVECURRNAME -ID2978=LOCALE_SSORTNAME -ID2979=LOCALE_SYEARMONTH +ID2970=IJclTreeIterator +ID2971=IJclUnicodeStrArray +ID2972=IJclUnicodeStrBinaryTreeIterator +ID2973=IJclUnicodeStrCollection +ID2974=IJclUnicodeStrComparer +ID2975=IJclUnicodeStrContainer +ID2976=IJclUnicodeStrEqualityComparer +ID2977=IJclUnicodeStrFlatContainer +ID2978=IJclUnicodeStrHashConverter +ID2979=IJclUnicodeStrIntfMap ID298=_IMAGE_OPTIONAL_HEADER64.CheckSum -ID2980=LOCALE_USE_CP_ACP -ID2981=LOCALGROUP_INFO_0 -ID2982=LOCALGROUP_INFO_1 -ID2983=LOCALGROUP_INFO_1002 -ID2984=LOCALGROUP_MEMBERS_INFO_0 -ID2985=LOCALGROUP_MEMBERS_INFO_1 -ID2986=LOCALGROUP_MEMBERS_INFO_2 -ID2987=LOCALGROUP_MEMBERS_INFO_3 -ID2988=LocalSystemAccount -ID2989=LocalSystemSCMDesiredAccess +ID2980=IJclUnicodeStrIntfSortedMap +ID2981=IJclUnicodeStrIterator +ID2982=IJclUnicodeStrList +ID2983=IJclUnicodeStrMap +ID2984=IJclUnicodeStrQueue +ID2985=IJclUnicodeStrSet +ID2986=IJclUnicodeStrSortedMap +ID2987=IJclUnicodeStrSortedSet +ID2988=IJclUnicodeStrStack +ID2989=IJclUnicodeStrTree ID299=_IMAGE_OPTIONAL_HEADER64.DataDirectory -ID2990=LockedCompareExchange@Pointer@Pointer@Pointer -ID2991=Log2 -ID2992=Log3 -ID2993=LogE -ID2994=LogPi -ID2995=LookupAccountBySid@PSID@WideString@WideString -ID2996=LPCSTR -ID2997=LPCTSTR -ID2998=LPCWSTR -ID2999=LPGROUP_INFO_0 +ID2990=IJclUnicodeStrTreeIterator +ID2991=IJclUnicodeStrUnicodeStrMap +ID2992=IJclUnicodeStrUnicodeStrSortedMap +ID2993=IJclValueOwner +ID2994=IJclWideStrArray +ID2995=IJclWideStrBinaryTreeIterator +ID2996=IJclWideStrCollection +ID2997=IJclWideStrComparer +ID2998=IJclWideStrContainer +ID2999=IJclWideStrEqualityComparer ID3=!!FUNCTIONS ID30=!!OVERLOADED_Delete_TEDIObjectList ID300=_IMAGE_OPTIONAL_HEADER64.DllCharacteristics -ID3000=LPGROUP_INFO_1 -ID3001=LPLOCALGROUP_INFO_0 -ID3002=LPLOCALGROUP_INFO_1 -ID3003=LPLOCALGROUP_INFO_1002 -ID3004=LPLOCALGROUP_MEMBERS_INFO_0 -ID3005=LPLOCALGROUP_MEMBERS_INFO_1 -ID3006=LPLOCALGROUP_MEMBERS_INFO_2 -ID3007=LPLOCALGROUP_MEMBERS_INFO_3 -ID3008=LPOSVERSIONINFOEX -ID3009=LPOSVERSIONINFOEXA +ID3000=IJclWideStrFlatContainer +ID3001=IJclWideStrHashConverter +ID3002=IJclWideStrIntfMap +ID3003=IJclWideStrIntfSortedMap +ID3004=IJclWideStrIterator +ID3005=IJclWideStrList +ID3006=IJclWideStrMap +ID3007=IJclWideStrQueue +ID3008=IJclWideStrSet +ID3009=IJclWideStrSortedMap ID301=_IMAGE_OPTIONAL_HEADER64.FileAlignment -ID3010=LPOSVERSIONINFOEXW -ID3011=LPSERVICE_DESCRIPTIONA -ID3012=LPSTR -ID3013=LPUSER_INFO_0 -ID3014=LPUSER_INFO_1 -ID3015=LPUSER_INFO_2 -ID3016=LPWSTR -ID3017=LRot@Integer@TBitRange -ID3018=LRot@Word@TBitRange -ID3019=LSA_HANDLE +ID3010=IJclWideStrSortedSet +ID3011=IJclWideStrStack +ID3012=IJclWideStrTree +ID3013=IJclWideStrTreeIterator +ID3014=IJclWideStrWideStrMap +ID3015=IJclWideStrWideStrSortedMap +ID3016=IJclWinMidiOut +ID3017=IJclWinMidiOut.ChannelVolume +ID3018=IJclWinMidiOut.GetChannelVolume@TStereoChannel +ID3019=IJclWinMidiOut.GetVolume ID302=_IMAGE_OPTIONAL_HEADER64.ImageBase -ID3020=LSA_OBJECT_ATTRIBUTES -ID3021=LSA_STRING -ID3022=LSA_UNICODE_STRING -ID3023=LsaClose@LSA_HANDLE -ID3024=LsaFreeMemory@Pointer -ID3025=LsaFreeReturnBuffer@Pointer -ID3026=LsaNtStatusToWinError@NTSTATUS -ID3027=LsaOpenPolicy@PLSA_UNICODE_STRING@LSA_OBJECT_ATTRIBUTES@ACCESS_MASK@LSA_HANDLE -ID3028=LsaQueryInformationPolicy@LSA_HANDLE@POLICY_INFORMATION_CLASS@Pointer -ID3029=lstat64@PChar@TStatBuf64 +ID3020=IJclWinMidiOut.SetChannelVolume@TStereoChannel@Word +ID3021=IJclWinMidiOut.SetVolume@Word +ID3022=IJclWinMidiOut.Volume +ID3023=IMAGE_ARCHITECTURE_ENTRY +ID3024=IMAGE_ARCHITECTURE_HEADER +ID3025=IMAGE_ARCHIVE_END +ID3026=IMAGE_ARCHIVE_LINKER_MEMBER +ID3027=IMAGE_ARCHIVE_LONGNAMES_MEMBER +ID3028=IMAGE_ARCHIVE_MEMBER_HEADER +ID3029=IMAGE_ARCHIVE_PAD ID303=_IMAGE_OPTIONAL_HEADER64.LoaderFlags -ID3030=MAILSLOT_NO_MESSAGE -ID3031=MAILSLOT_WAIT_FOREVER -ID3032=MAKEINTRESOURCE -ID3033=MAKEINTRESOURCEA -ID3034=MAKEINTRESOURCEW -ID3035=MAKELANGID@USHORT@USHORT -ID3036=MAKELCID@WORD@WORD -ID3037=MakeQuietNaN@Extended@TNaNTag -ID3038=MakeQuietNaN@Single@TNaNTag -ID3039=MakeSignalingNaN@Extended@TNaNTag +ID3030=IMAGE_ARCHIVE_START +ID3031=IMAGE_ARCHIVE_START_SIZE +ID3032=IMAGE_COFF_SYMBOLS_HEADER +ID3033=IMAGE_COR_EATJ_THUNK_SIZE +ID3034=IMAGE_COR_ILMETHOD_FAT +ID3035=IMAGE_COR_ILMETHOD_FAT.CodeSize +ID3036=IMAGE_COR_ILMETHOD_FAT.Flags_Size +ID3037=IMAGE_COR_ILMETHOD_FAT.LocalVarSigTok +ID3038=IMAGE_COR_ILMETHOD_FAT.MaxStack +ID3039=IMAGE_COR_ILMETHOD_SECT_EH ID304=_IMAGE_OPTIONAL_HEADER64.Magic -ID3040=MakeSignalingNaN@Single@TNaNTag -ID3041=MAKESORTLCID@WORD@WORD@WORD -ID3042=MapAndLoad@PChar@PChar@LOADED_IMAGE@BOOL@BOOL -ID3043=MapiAddressTypeFAX -ID3044=MapiAddressTypeSMTP -ID3045=MapiAddressTypeTLX -ID3046=MapWindowRect@THandle@THandle@TRect -ID3047=MarshalInterMachineInterfaceInStream@TIID@IUnknown@IStream -ID3048=MarshalInterMachineInterfaceInVarArray@TIID@IUnknown@OleVariant -ID3049=MarshalInterProcessInterfaceInStream@TIID@IUnknown@IStream +ID3040=IMAGE_COR_ILMETHOD_SECT_EH.Fat +ID3041=IMAGE_COR_ILMETHOD_SECT_EH.Small +ID3042=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT +ID3043=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.ClassToken +ID3044=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.FilterOffset +ID3045=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.Flags +ID3046=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.HandlerLength +ID3047=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.HandlerOffset +ID3048=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.TryLength +ID3049=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.TryOffset ID305=_IMAGE_OPTIONAL_HEADER64.MajorImageVersion -ID3050=MarshalInterProcessInterfaceInVarArray@TIID@IUnknown@OleVariant -ID3051=MarshalInterThreadInterfaceInVarArray@TIID@IUnknown@OleVariant -ID3052=Mask8087Exceptions -ID3053=MathRoutines -ID3054=Max@Cardinal@Cardinal -ID3055=Max@Int64@Int64 -ID3056=Max@Integer@Integer -ID3057=Max@Shortint@Shortint -ID3058=Max@Smallint@Smallint -ID3059=Max@Word@Word +ID3050=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL +ID3051=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.ClassToken +ID3052=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.FilterOffset +ID3053=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.Flags +ID3054=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.HandlerLength +ID3055=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.HandlerOffset +ID3056=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.TryLength +ID3057=IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.TryOffset +ID3058=IMAGE_COR_ILMETHOD_SECT_EH_FAT +ID3059=IMAGE_COR_ILMETHOD_SECT_EH_FAT.Clauses ID306=_IMAGE_OPTIONAL_HEADER64.MajorLinkerVersion -ID3060=MAX_CAPTURE_COUNT -ID3061=MAX_CLASS_NAME -ID3062=MAX_LANMAN_MESSAGE_ID -ID3063=MAX_NATURAL_ALIGNMENT -ID3064=MAX_NERR -ID3065=MAX_NESTING_DEPTH -ID3066=MAX_PACKAGE_NAME -ID3067=MAX_PATTERN_LENGTH -ID3068=MAX_PREFERRED_LENGTH -ID3069=MAX_QUANTIFY_REPEAT +ID3060=IMAGE_COR_ILMETHOD_SECT_EH_FAT.SectFat +ID3061=IMAGE_COR_ILMETHOD_SECT_EH_SMALL +ID3062=IMAGE_COR_ILMETHOD_SECT_EH_SMALL.Clauses +ID3063=IMAGE_COR_ILMETHOD_SECT_EH_SMALL.SectSmall +ID3064=IMAGE_COR_ILMETHOD_SECT_FAT +ID3065=IMAGE_COR_ILMETHOD_SECT_FAT.Kind_DataSize +ID3066=IMAGE_COR_ILMETHOD_SECT_SMALL +ID3067=IMAGE_COR_ILMETHOD_SECT_SMALL.Datasize +ID3068=IMAGE_COR_ILMETHOD_SECT_SMALL.Kind +ID3069=IMAGE_COR_ILMETHOD_SECT_SMALL.Padding ID307=_IMAGE_OPTIONAL_HEADER64.MajorOperatingSystemVersion -ID3070=MaxAngle -ID3071=MAXCOMMENTSZ -ID3072=MAXDEVENTRIES -ID3073=MaxFactorial -ID3074=MaxFloatingPoint -ID3075=MAXIMUM_RESERVED_MANIFEST_RESOURCE_ID -ID3076=MaximumUCS2 -ID3077=MaximumUCS4 -ID3078=MaximumUTF16 -ID3079=MAXLONGLONG +ID3070=IMAGE_COR_ILMETHOD_TINY +ID3071=IMAGE_COR_ILMETHOD_TINY.Flags_CodeSize +ID3072=IMAGE_COR_MIH_BASICBLOCK +ID3073=IMAGE_COR_MIH_EHRVA +ID3074=IMAGE_COR_MIH_METHODRVA +ID3075=IMAGE_COR_VTABLEFIXUP +ID3076=IMAGE_DATA_DIRECTORY +ID3077=IMAGE_DEBUG_MISC +ID3078=IMAGE_DEBUG_MISC_EXENAME +ID3079=IMAGE_DIRECTORY_ENTRY_ARCHITECTURE ID308=_IMAGE_OPTIONAL_HEADER64.MajorSubsystemVersion -ID3080=MaxPrefixCut -ID3081=MaxStackTraceItems -ID3082=MaxTanH -ID3083=MaxTerm -ID3084=MCA_FLAG -ID3085=MCE_FLAG -ID3086=MemoryClassesandObjects -ID3087=MESSAGE_FILENAME -ID3088=METHOD_DIRECT_FROM_HARDWARE -ID3089=METHOD_DIRECT_TO_HARDWARE +ID3080=IMAGE_DIRECTORY_ENTRY_BASERELOC +ID3081=IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT +ID3082=IMAGE_DIRECTORY_ENTRY_DEBUG +ID3083=IMAGE_DIRECTORY_ENTRY_EXCEPTION +ID3084=IMAGE_DIRECTORY_ENTRY_EXPORT +ID3085=IMAGE_DIRECTORY_ENTRY_GLOBALPTR +ID3086=IMAGE_DIRECTORY_ENTRY_IAT +ID3087=IMAGE_DIRECTORY_ENTRY_IMPORT +ID3088=IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG +ID3089=IMAGE_DIRECTORY_ENTRY_RESOURCE ID309=_IMAGE_OPTIONAL_HEADER64.MinorImageVersion -ID3090=MIDICCAllNotesOff -ID3091=MIDICCAllSoundOff -ID3092=MIDICCBalance -ID3093=MIDICCBalanceLSB -ID3094=MIDICCBankSelect -ID3095=MIDICCBankSelectLSB -ID3096=MIDICCBreathControl -ID3097=MIDICCBreathControlLSB -ID3098=MIDICCCelesteDepth -ID3099=MIDICCChannelVolume +ID3090=IMAGE_DIRECTORY_ENTRY_SECURITY +ID3091=IMAGE_DIRECTORY_ENTRY_TLS +ID3092=IMAGE_DLLCHARACTERISTICS_NO_BIND +ID3093=IMAGE_DLLCHARACTERISTICS_NO_ISOLATION +ID3094=IMAGE_DLLCHARACTERISTICS_NO_SEH +ID3095=IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE +ID3096=IMAGE_DLLCHARACTERISTICS_WDM_DRIVER +ID3097=IMAGE_FILE_32BIT_MACHINE +ID3098=IMAGE_FILE_AGGRESIVE_WS_TRIM +ID3099=IMAGE_FILE_BYTES_REVERSED_HI ID31=!!OVERLOADED_DeleteEDIDataObject_TEDIDataObjectGroup ID310=_IMAGE_OPTIONAL_HEADER64.MinorLinkerVersion -ID3100=MIDICCChannelVolumeLSB -ID3101=MIDICCChorusSendLevel -ID3102=MIDICCDataEntry -ID3103=MIDICCDataEntryDec -ID3104=MIDICCDataEntryInc -ID3105=MIDICCDataEntryLSB -ID3106=MIDICCEffectControl -ID3107=MIDICCEffectControl2 -ID3108=MIDICCEffectControl2LSB -ID3109=MIDICCEffectControlLSB +ID3100=IMAGE_FILE_BYTES_REVERSED_LO +ID3101=IMAGE_FILE_DEBUG_STRIPPED +ID3102=IMAGE_FILE_DLL +ID3103=IMAGE_FILE_EXECUTABLE_IMAGE +ID3104=IMAGE_FILE_HEADER +ID3105=IMAGE_FILE_LARGE_ADDRESS_AWARE +ID3106=IMAGE_FILE_LINE_NUMS_STRIPPED +ID3107=IMAGE_FILE_LOCAL_SYMS_STRIPPED +ID3108=IMAGE_FILE_MACHINE_ALPHA +ID3109=IMAGE_FILE_MACHINE_ALPHA64 ID311=_IMAGE_OPTIONAL_HEADER64.MinorOperatingSystemVersion -ID3110=MIDICCEffects2Depth -ID3111=MIDICCEffects4Depth -ID3112=MIDICCEffects5Depth -ID3113=MIDICCExpression -ID3114=MIDICCExpressionLSB -ID3115=MIDICCFootController -ID3116=MIDICCFootControllerLSB -ID3117=MIDICCGeneralPurpose1 -ID3118=MIDICCGeneralPurpose1LSB -ID3119=MIDICCGeneralPurpose2 +ID3110=IMAGE_FILE_MACHINE_AM33 +ID3111=IMAGE_FILE_MACHINE_AMD64 +ID3112=IMAGE_FILE_MACHINE_ARM +ID3113=IMAGE_FILE_MACHINE_AXP64 +ID3114=IMAGE_FILE_MACHINE_CEE +ID3115=IMAGE_FILE_MACHINE_CEF +ID3116=IMAGE_FILE_MACHINE_EBC +ID3117=IMAGE_FILE_MACHINE_I386 +ID3118=IMAGE_FILE_MACHINE_IA64 +ID3119=IMAGE_FILE_MACHINE_M32R ID312=_IMAGE_OPTIONAL_HEADER64.MinorSubsystemVersion -ID3120=MIDICCGeneralPurpose2LSB -ID3121=MIDICCGeneralPurpose3 -ID3122=MIDICCGeneralPurpose3LSB -ID3123=MIDICCGeneralPurpose4 -ID3124=MIDICCGeneralPurpose4LSB -ID3125=MIDICCGeneralPurpose5 -ID3126=MIDICCGeneralPurpose6 -ID3127=MIDICCGeneralPurpose7 -ID3128=MIDICCGeneralPurpose8 -ID3129=MIDICCHold2 +ID3120=IMAGE_FILE_MACHINE_MIPS16 +ID3121=IMAGE_FILE_MACHINE_MIPSFPU +ID3122=IMAGE_FILE_MACHINE_MIPSFPU16 +ID3123=IMAGE_FILE_MACHINE_POWERPC +ID3124=IMAGE_FILE_MACHINE_POWERPCFP +ID3125=IMAGE_FILE_MACHINE_R10000 +ID3126=IMAGE_FILE_MACHINE_R3000 +ID3127=IMAGE_FILE_MACHINE_R4000 +ID3128=IMAGE_FILE_MACHINE_SH3 +ID3129=IMAGE_FILE_MACHINE_SH3DSP ID313=_IMAGE_OPTIONAL_HEADER64.NumberOfRvaAndSizes -ID3130=MIDICCLegato -ID3131=MIDICCLocalControl -ID3132=MIDICCMainVolume -ID3133=MIDICCMainVolumeLSB -ID3134=MIDICCModulationWheel -ID3135=MIDICCModulationWheelLSB -ID3136=MIDICCMonoModeOn -ID3137=MIDICCNonRegParamNumLSB -ID3138=MIDICCNonRegParamNumMSB -ID3139=MIDICCOmniModeOff +ID3130=IMAGE_FILE_MACHINE_SH3E +ID3131=IMAGE_FILE_MACHINE_SH4 +ID3132=IMAGE_FILE_MACHINE_SH5 +ID3133=IMAGE_FILE_MACHINE_THUMB +ID3134=IMAGE_FILE_MACHINE_TRICORE +ID3135=IMAGE_FILE_MACHINE_UNKNOWN +ID3136=IMAGE_FILE_MACHINE_WCEMIPSV2 +ID3137=IMAGE_FILE_NET_RUN_FROM_SWAP +ID3138=IMAGE_FILE_RELOCS_STRIPPED +ID3139=IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP ID314=_IMAGE_OPTIONAL_HEADER64.SectionAlignment -ID3140=MIDICCOmniModeOn -ID3141=MIDICCPan -ID3142=MIDICCPanLSB -ID3143=MIDICCPhaserDepth -ID3144=MIDICCPolyModeOn -ID3145=MIDICCPortamento -ID3146=MIDICCPortamentoControl -ID3147=MIDICCPortamentoTime -ID3148=MIDICCPortamentoTimeLSB -ID3149=MIDICCRegParamNumLSB +ID3140=IMAGE_FILE_SYSTEM +ID3141=IMAGE_FILE_UP_SYSTEM_ONLY +ID3142=IMAGE_FIRST_SECTION@PImageNtHeaders +ID3143=IMAGE_FUNCTION_ENTRY +ID3144=IMAGE_FUNCTION_ENTRY64 +ID3145=IMAGE_LINENUMBER +ID3146=IMAGE_LOAD_CONFIG_DIRECTORY32 +ID3147=IMAGE_LOAD_CONFIG_DIRECTORY32.CriticalSectionDefaultTimeout +ID3148=IMAGE_LOAD_CONFIG_DIRECTORY32.CSDVersion +ID3149=IMAGE_LOAD_CONFIG_DIRECTORY32.DeCommitFreeBlockThreshold ID315=_IMAGE_OPTIONAL_HEADER64.SizeOfCode -ID3150=MIDICCRegParamNumMSB -ID3151=MIDICCResetAllControllers -ID3152=MIDICCReverbSendLevel -ID3153=MIDICCSoftPedal -ID3154=MIDICCSound1 -ID3155=MIDICCSound10 -ID3156=MIDICCSound2 -ID3157=MIDICCSound3 -ID3158=MIDICCSound4 -ID3159=MIDICCSound5 +ID3150=IMAGE_LOAD_CONFIG_DIRECTORY32.DeCommitTotalFreeThreshold +ID3151=IMAGE_LOAD_CONFIG_DIRECTORY32.EditList +ID3152=IMAGE_LOAD_CONFIG_DIRECTORY32.GlobalFlagsClear +ID3153=IMAGE_LOAD_CONFIG_DIRECTORY32.GlobalFlagsSet +ID3154=IMAGE_LOAD_CONFIG_DIRECTORY32.LockPrefixTable +ID3155=IMAGE_LOAD_CONFIG_DIRECTORY32.MajorVersion +ID3156=IMAGE_LOAD_CONFIG_DIRECTORY32.MaximumAllocationSize +ID3157=IMAGE_LOAD_CONFIG_DIRECTORY32.MinorVersion +ID3158=IMAGE_LOAD_CONFIG_DIRECTORY32.ProcessAffinityMask +ID3159=IMAGE_LOAD_CONFIG_DIRECTORY32.ProcessHeapFlags ID316=_IMAGE_OPTIONAL_HEADER64.SizeOfHeaders -ID3160=MIDICCSound6 -ID3161=MIDICCSound7 -ID3162=MIDICCSound8 -ID3163=MIDICCSound9 -ID3164=MIDICCSustain -ID3165=MIDICCSustenuto -ID3166=MIDICCTremoloDepth -ID3167=MIDIChannelMsgMask -ID3168=MIDIDataMask -ID3169=MIDIDataWordMask +ID3160=IMAGE_LOAD_CONFIG_DIRECTORY32.Reserved1 +ID3161=IMAGE_LOAD_CONFIG_DIRECTORY32.SecurityCookie +ID3162=IMAGE_LOAD_CONFIG_DIRECTORY32.SEHandlerCount +ID3163=IMAGE_LOAD_CONFIG_DIRECTORY32.SEHandlerTable +ID3164=IMAGE_LOAD_CONFIG_DIRECTORY32.Size +ID3165=IMAGE_LOAD_CONFIG_DIRECTORY32.TimeDateStamp +ID3166=IMAGE_LOAD_CONFIG_DIRECTORY32.VirtualMemoryThreshold +ID3167=IMAGE_LOAD_CONFIG_DIRECTORY64 +ID3168=IMAGE_LOAD_CONFIG_DIRECTORY64.CriticalSectionDefaultTimeout +ID3169=IMAGE_LOAD_CONFIG_DIRECTORY64.CSDVersion ID317=_IMAGE_OPTIONAL_HEADER64.SizeOfHeapCommit -ID3170=MidiInCheck@MMResult -ID3171=MIDIInvalidStatus -ID3172=MIDIMsgActiveSensing -ID3173=MIDIMsgAftertouch -ID3174=MIDIMsgChannelKeyPressure -ID3175=MIDIMsgContinueSequence -ID3176=MIDIMsgControlChange -ID3177=MIDIMsgEOX -ID3178=MIDIMsgMTCQtrFrame -ID3179=MIDIMsgNoteOff +ID3170=IMAGE_LOAD_CONFIG_DIRECTORY64.DeCommitFreeBlockThreshold +ID3171=IMAGE_LOAD_CONFIG_DIRECTORY64.DeCommitTotalFreeThreshold +ID3172=IMAGE_LOAD_CONFIG_DIRECTORY64.EditList +ID3173=IMAGE_LOAD_CONFIG_DIRECTORY64.GlobalFlagsClear +ID3174=IMAGE_LOAD_CONFIG_DIRECTORY64.GlobalFlagsSet +ID3175=IMAGE_LOAD_CONFIG_DIRECTORY64.LockPrefixTable +ID3176=IMAGE_LOAD_CONFIG_DIRECTORY64.MajorVersion +ID3177=IMAGE_LOAD_CONFIG_DIRECTORY64.MaximumAllocationSize +ID3178=IMAGE_LOAD_CONFIG_DIRECTORY64.MinorVersion +ID3179=IMAGE_LOAD_CONFIG_DIRECTORY64.ProcessAffinityMask ID318=_IMAGE_OPTIONAL_HEADER64.SizeOfHeapReserve -ID3180=MIDIMsgNoteOn -ID3181=MIDIMsgPitchWheelChange -ID3182=MIDIMsgPolyKeyPressure -ID3183=MIDIMsgProgramChange -ID3184=MIDIMsgSongPositionPtr -ID3185=MIDIMsgSongSelect -ID3186=MIDIMsgStartSequence -ID3187=MIDIMsgStopSequence -ID3188=MIDIMsgSysEx -ID3189=MIDIMsgSystemReset +ID3180=IMAGE_LOAD_CONFIG_DIRECTORY64.ProcessHeapFlags +ID3181=IMAGE_LOAD_CONFIG_DIRECTORY64.Reserved1 +ID3182=IMAGE_LOAD_CONFIG_DIRECTORY64.SecurityCookie +ID3183=IMAGE_LOAD_CONFIG_DIRECTORY64.SEHandlerCount +ID3184=IMAGE_LOAD_CONFIG_DIRECTORY64.SEHandlerTable +ID3185=IMAGE_LOAD_CONFIG_DIRECTORY64.Size +ID3186=IMAGE_LOAD_CONFIG_DIRECTORY64.TimeDateStamp +ID3187=IMAGE_LOAD_CONFIG_DIRECTORY64.VirtualMemoryThreshold +ID3188=IMAGE_NT_HEADERS +ID3189=IMAGE_NT_HEADERS32 ID319=_IMAGE_OPTIONAL_HEADER64.SizeOfImage -ID3190=MIDIMsgTimingClock -ID3191=MIDIMsgTuneRequest -ID3192=MIDINoteToStr@TMIDINote -ID3193=MidiOut@Cardinal -ID3194=MIDIOut@Cardinal -ID3195=MidiOutCheck@MMResult -ID3196=MIDIPitchWheelCenter -ID3197=MIDISingleNoteTuningData@TMIDINote@Single -ID3198=MIME -ID3199=MIME_BUFFER_SIZE +ID3190=IMAGE_NT_HEADERS64 +ID3191=IMAGE_NT_OPTIONAL_HDR_MAGIC +ID3192=IMAGE_NT_OPTIONAL_HDR32_MAGIC +ID3193=IMAGE_NT_OPTIONAL_HDR64_MAGIC +ID3194=IMAGE_NUMBEROF_DIRECTORY_ENTRIES +ID3195=IMAGE_OPTIONAL_HEADER32 +ID3196=IMAGE_OPTIONAL_HEADER64 +ID3197=IMAGE_ORDINAL@DWORD +ID3198=IMAGE_ORDINAL_FLAG32 +ID3199=IMAGE_ORDINAL_FLAG64 ID32=!!OVERLOADED_DeleteEDIDataObject_TEDIXMLDataObjectGroup ID320=_IMAGE_OPTIONAL_HEADER64.SizeOfInitializedData -ID3200=MIME_DECODED_LINE_BREAK -ID3201=MIME_ENCODED_LINE_BREAK -ID3202=MimeDecode@TDynByteArray@Cardinal@Cardinal@TDynByteArray@Cardinal -ID3203=MimeDecode@TDynByteArray@Cardinal@TDynByteArray -ID3204=MimeDecodeFile@AnsiString@AnsiString -ID3205=MimeDecodePartial@TDynByteArray@Cardinal@Cardinal@TDynByteArray@Cardinal@Cardinal@Cardinal -ID3206=MimeDecodePartial@TDynByteArray@Cardinal@TDynByteArray@Cardinal@Cardinal -ID3207=MimeDecodePartialEnd@TDynByteArray@Cardinal@Cardinal -ID3208=MimeDecodePartialEnd@TDynByteArray@Cardinal@Cardinal@Cardinal -ID3209=MimeEncode@TDynByteArray@Cardinal@Cardinal@TDynByteArray@Cardinal +ID3200=IMAGE_ORDINAL32@DWORD +ID3201=IMAGE_ORDINAL64@ULONGLONG +ID3202=IMAGE_RESOURCE_DIRECTORY_STRING +ID3203=IMAGE_ROM_HEADERS +ID3204=IMAGE_ROM_OPTIONAL_HDR_MAGIC +ID3205=IMAGE_ROM_OPTIONAL_HEADER +ID3206=IMAGE_SCN_ALIGN_1024BYTES +ID3207=IMAGE_SCN_ALIGN_128BYTES +ID3208=IMAGE_SCN_ALIGN_16BYTES +ID3209=IMAGE_SCN_ALIGN_1BYTES ID321=_IMAGE_OPTIONAL_HEADER64.SizeOfStackCommit -ID3210=MimeEncode@TDynByteArray@Cardinal@TDynByteArray -ID3211=MimeEncodedSizeNoCRLF@Cardinal -ID3212=MimeEncodeFile@AnsiString@AnsiString -ID3213=MimeEncodeFileNoCRLF@AnsiString@AnsiString -ID3214=MimeEncodeFullLines@@Cardinal@ -ID3215=MimeEncodeFullLines@TDynByteArray@Cardinal@Cardinal@TDynByteArray@Cardinal -ID3216=MimeEncodeFullLines@TDynByteArray@Cardinal@TDynByteArray -ID3217=MimeEncodeNoCRLF@@Cardinal@ -ID3218=MimeEncodeNoCRLF@TDynByteArray@Cardinal@Cardinal@TDynByteArray@Cardinal -ID3219=MimeEncodeNoCRLF@TDynByteArray@Cardinal@TDynByteArray +ID3210=IMAGE_SCN_ALIGN_2048BYTES +ID3211=IMAGE_SCN_ALIGN_256BYTES +ID3212=IMAGE_SCN_ALIGN_2BYTES +ID3213=IMAGE_SCN_ALIGN_32BYTES +ID3214=IMAGE_SCN_ALIGN_4096BYTES +ID3215=IMAGE_SCN_ALIGN_4BYTES +ID3216=IMAGE_SCN_ALIGN_512BYTES +ID3217=IMAGE_SCN_ALIGN_64BYTES +ID3218=IMAGE_SCN_ALIGN_8192BYTES +ID3219=IMAGE_SCN_ALIGN_8BYTES ID322=_IMAGE_OPTIONAL_HEADER64.SizeOfStackReserve -ID3220=MimeEncodeStreamNoCRLF@TStream@TStream -ID3221=MimeEncodeStringNoCRLF@AnsiString -ID3222=Min@Cardinal@Cardinal -ID3223=Min@Int64@Int64 -ID3224=Min@Integer@Integer -ID3225=Min@Shortint@Shortint -ID3226=Min@Smallint@Smallint -ID3227=Min@Word@Word -ID3228=MIN_LANMAN_MESSAGE_ID -ID3229=MinedDoubleArray@Integer +ID3220=IMAGE_SCN_ALIGN_MASK +ID3221=IMAGE_SCN_CNT_CODE +ID3222=IMAGE_SCN_CNT_INITIALIZED_DATA +ID3223=IMAGE_SCN_CNT_UNINITIALIZED_DATA +ID3224=IMAGE_SCN_GPREL +ID3225=IMAGE_SCN_LNK_COMDAT +ID3226=IMAGE_SCN_LNK_INFO +ID3227=IMAGE_SCN_LNK_NRELOC_OVFL +ID3228=IMAGE_SCN_LNK_OTHER +ID3229=IMAGE_SCN_LNK_REMOVE ID323=_IMAGE_OPTIONAL_HEADER64.SizeOfUninitializedData -ID3230=MinedSingleArray@Integer -ID3231=MinFloatingPoint -ID3232=MINIMUM_RESERVED_MANIFEST_RESOURCE_ID -ID3233=Miscellaneous -ID3234=MixerLeftRightToArray@Cardinal@Cardinal -ID3235=MMCheck@MCIERROR@string -ID3236=MMX_FLAG -ID3237=MoveArray@TDynIInterfaceArray@Integer@Integer@Integer -ID3238=MoveArray@TDynIntegerArray@Integer@Integer@Integer -ID3239=MoveArray@TDynObjectArray@Integer@Integer@Integer +ID3230=IMAGE_SCN_MEM_16BIT +ID3231=IMAGE_SCN_MEM_DISCARDABLE +ID3232=IMAGE_SCN_MEM_EXECUTE +ID3233=IMAGE_SCN_MEM_FARDATA +ID3234=IMAGE_SCN_MEM_LOCKED +ID3235=IMAGE_SCN_MEM_NOT_CACHED +ID3236=IMAGE_SCN_MEM_NOT_PAGED +ID3237=IMAGE_SCN_MEM_PRELOAD +ID3238=IMAGE_SCN_MEM_PURGEABLE +ID3239=IMAGE_SCN_MEM_READ ID324=_IMAGE_OPTIONAL_HEADER64.Subsystem -ID3240=MoveArray@TDynStringArray@Integer@Integer@Integer -ID3241=MoveChar@string@Integer@string@Integer@Integer -ID3242=MoveWideChar@@@Integer -ID3243=MS_NBF -ID3244=mscoree_dll -ID3245=MSILIB -ID3246=MSR_FLAG -ID3247=MTRR_FLAG -ID3248=MultiMedia -ID3249=MultiSzDup@PMultiSz +ID3240=IMAGE_SCN_MEM_SHARED +ID3241=IMAGE_SCN_MEM_WRITE +ID3242=IMAGE_SCN_NO_DEFER_SPEC_EXC +ID3243=IMAGE_SCN_TYPE_NO_PAD +ID3244=IMAGE_SECTION_HEADER +ID3245=IMAGE_SEPARATE_DEBUG_FLAGS_MASK +ID3246=IMAGE_SEPARATE_DEBUG_HEADER +ID3247=IMAGE_SEPARATE_DEBUG_MISMATCH +ID3248=IMAGE_SEPARATE_DEBUG_SIGNATURE +ID3249=IMAGE_SEPARATION ID325=_IMAGE_OPTIONAL_HEADER64.Win32VersionValue -ID3250=MultiSzLength@PMultiSz -ID3251=MXCSR_DAZ -ID3252=MXCSR_DE -ID3253=MXCSR_DM -ID3254=MXCSR_FZ -ID3255=MXCSR_IE -ID3256=MXCSR_IM -ID3257=MXCSR_OE -ID3258=MXCSR_OM -ID3259=MXCSR_PE +ID3250=IMAGE_SIZEOF_ARCHIVE_MEMBER_HDR +ID3251=IMAGE_SIZEOF_FILE_HEADER +ID3252=IMAGE_SIZEOF_LINENUMBER +ID3253=IMAGE_SIZEOF_NT_OPTIONAL_HEADER +ID3254=IMAGE_SIZEOF_NT_OPTIONAL32_HEADER +ID3255=IMAGE_SIZEOF_NT_OPTIONAL64_HEADER +ID3256=IMAGE_SIZEOF_ROM_OPTIONAL_HEADER +ID3257=IMAGE_SIZEOF_SECTION_HEADER +ID3258=IMAGE_SIZEOF_SHORT_NAME +ID3259=IMAGE_SIZEOF_STD_OPTIONAL_HEADER ID326=_IMAGE_RESOURCE_DIRECTORY_STRING -ID3260=MXCSR_PM -ID3261=MXCSR_RC -ID3262=MXCSR_RC1 -ID3263=MXCSR_RC2 -ID3264=MXCSR_UE -ID3265=MXCSR_UM -ID3266=MXCSR_ZE -ID3267=MXCSR_ZM -ID3268=NA_LoopId -ID3269=NAME_BUFFER +ID3260=IMAGE_SNAP_BY_ORDINAL@DWORD +ID3261=IMAGE_SNAP_BY_ORDINAL32@DWORD +ID3262=IMAGE_SNAP_BY_ORDINAL64@ULONGLONG +ID3263=IMAGE_SUBSYSTEM_EFI_APPLICATION +ID3264=IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER +ID3265=IMAGE_SUBSYSTEM_EFI_ROM +ID3266=IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER +ID3267=IMAGE_SUBSYSTEM_NATIVE +ID3268=IMAGE_SUBSYSTEM_NATIVE_WINDOWS +ID3269=IMAGE_SUBSYSTEM_OS2_CUI ID327=_IMAGE_RESOURCE_DIRECTORY_STRING.Length -ID3270=NAME_FLAGS_MASK -ID3271=NaN -ID3272=NATIVE_TYPE_MAX_CB -ID3273=NCB -ID3274=NCBACTION -ID3275=NCBADDGRNAME -ID3276=NCBADDNAME -ID3277=NCBCALL -ID3278=NCBCANCEL -ID3279=NCBCHAINSEND +ID3270=IMAGE_SUBSYSTEM_POSIX_CUI +ID3271=IMAGE_SUBSYSTEM_UNKNOWN +ID3272=IMAGE_SUBSYSTEM_WINDOWS_CE_GUI +ID3273=IMAGE_SUBSYSTEM_WINDOWS_CUI +ID3274=IMAGE_SUBSYSTEM_WINDOWS_GUI +ID3275=IMAGE_SUBSYSTEM_XBOX +ID3276=IMAGE_THUNK_DATA32 +ID3277=IMAGE_THUNK_DATA64 +ID3278=IMAGE_TLS_DIRECTORY32 +ID3279=IMAGE_TLS_DIRECTORY64 ID328=_IMAGE_RESOURCE_DIRECTORY_STRING.NameString -ID3280=NCBCHAINSENDNA -ID3281=NCBDELNAME -ID3282=NCBDGRECV -ID3283=NCBDGRECVBC -ID3284=NCBDGSEND -ID3285=NCBDGSENDBC -ID3286=NCBFINDNAME -ID3287=NCBHANGUP -ID3288=NCBLANSTALERT -ID3289=NCBLISTEN +ID3280=ImageDirectoryEntryToData@Pointer@ByteBool@USHORT@ULONG +ID3281=IMAGEHLP_LINE +ID3282=ImageRvaToSection@PImageNtHeaders@Pointer@ULONG +ID3283=ImageRvaToVa@PImageNtHeaders@Pointer@ULONG@PPImageSectionHeader +ID3284=ImgDelayDescrV1 +ID3285=ImgDelayDescrV1.dwTimeStamp +ID3286=ImgDelayDescrV1.grAttrs +ID3287=ImgDelayDescrV1.pBoundIAT +ID3288=ImgDelayDescrV1.phmod +ID3289=ImgDelayDescrV1.pIAT ID329=_IMAGE_ROM_HEADERS -ID3290=NCBRECV -ID3291=NCBRECVANY -ID3292=NCBSEND -ID3293=NCBSENDNA -ID3294=NCBSSTAT -ID3295=NCBTRACE -ID3296=NCBUNLINK -ID3297=Neg@TPolarComplex -ID3298=Neg@TRectComplex -ID3299=NegInfinity +ID3290=ImgDelayDescrV1.pINT +ID3291=ImgDelayDescrV1.pUnloadIAT +ID3292=ImgDelayDescrV1.szName +ID3293=ImgDelayDescrV2 +ID3294=ImgDelayDescrV2.dwTimeStamp +ID3295=ImgDelayDescrV2.grAttrs +ID3296=ImgDelayDescrV2.rvaBoundIAT +ID3297=ImgDelayDescrV2.rvaDLLName +ID3298=ImgDelayDescrV2.rvaHmod +ID3299=ImgDelayDescrV2.rvaIAT ID33=!!OVERLOADED_DeleteEDIDataObjects_TEDIDataObjectGroup ID330=_IMAGE_ROM_HEADERS.FileHeader -ID3300=NERR_AccountExpired -ID3301=NERR_AccountLockedOut -ID3302=NERR_AccountUndefined -ID3303=NERR_AcctLimitExceeded -ID3304=NERR_ACFFileIOFail -ID3305=NERR_ACFNoParent -ID3306=NERR_ACFNoRoom -ID3307=NERR_ACFNotFound -ID3308=NERR_ACFNotLoaded -ID3309=NERR_ACFTooManyLists +ID3300=ImgDelayDescrV2.rvaINT +ID3301=ImgDelayDescrV2.rvaUnloadIAT +ID3302=IMPORT_OBJECT_HDR_SIG2 +ID3303=IMPORT_OBJECT_HEADER +ID3304=IMPORT_OBJECT_HEADER.Flags +ID3305=IMPORT_OBJECT_HEADER.Machine +ID3306=IMPORT_OBJECT_HEADER.OrdinalOrHint +ID3307=IMPORT_OBJECT_HEADER.Sig1 +ID3308=IMPORT_OBJECT_HEADER.Sig2 +ID3309=IMPORT_OBJECT_HEADER.SizeOfData ID331=_IMAGE_ROM_HEADERS.OptionalHeader -ID3310=NERR_ActiveConns -ID3311=NERR_AddForwarded -ID3312=NERR_AlertExists -ID3313=NERR_AlreadyExists -ID3314=NERR_AlreadyForwarded -ID3315=NERR_AlreadyLoggedOn -ID3316=NERR_BadAsgType -ID3317=NERR_BadComponent -ID3318=NERR_BadControlRecv -ID3319=NERR_BadDest +ID3310=IMPORT_OBJECT_HEADER.TimeDateStamp +ID3311=IMPORT_OBJECT_HEADER.Version +ID3312=IMPORT_OBJECT_NAME_TYPE +ID3313=IMPORT_OBJECT_NAME_TYPE.IMPORT_OBJECT_NAME +ID3314=IMPORT_OBJECT_NAME_TYPE.IMPORT_OBJECT_NAME_NO_PREFIX +ID3315=IMPORT_OBJECT_NAME_TYPE.IMPORT_OBJECT_NAME_UNDECORATE +ID3316=IMPORT_OBJECT_NAME_TYPE.IMPORT_OBJECT_ORDINAL +ID3317=IMPORT_OBJECT_TYPE +ID3318=IMPORT_OBJECT_TYPE.IMPORT_OBJECT_CODE +ID3319=IMPORT_OBJECT_TYPE.IMPORT_OBJECT_CONST ID332=_IMAGE_ROM_OPTIONAL_HEADER -ID3320=NERR_BadDev -ID3321=NERR_BadDevString -ID3322=NERR_BadDosFunction -ID3323=NERR_BadDosRetCode -ID3324=NERR_BadEventName -ID3325=NERR_BadFileCheckSum -ID3326=NERR_BadPassword -ID3327=NERR_BadPasswordCore -ID3328=NERR_BadQueueDevString -ID3329=NERR_BadQueuePriority +ID3320=IMPORT_OBJECT_TYPE.IMPORT_OBJECT_DATA +ID3321=IncLimit@Cardinal@Cardinal@Cardinal +ID3322=IncLimit@Int64@Int64@Int64 +ID3323=IncLimit@Integer@Integer@Integer +ID3324=IncLimit@Shortint@Shortint@Shortint +ID3325=IncLimit@Smallint@Smallint@Smallint +ID3326=IncLimit@Word@Word@Word +ID3327=IncLimitClamp@Cardinal@Cardinal@Cardinal +ID3328=IncLimitClamp@Int64@Int64@Int64 +ID3329=IncLimitClamp@Integer@Integer@Integer ID333=_IMAGE_ROM_OPTIONAL_HEADER.AddressOfEntryPoint -ID3330=NERR_BadReceive -ID3331=NERR_BadRecipient -ID3332=NERR_BadServiceName -ID3333=NERR_BadServiceProgName -ID3334=NERR_BadSource -ID3335=NERR_BadTransactConfig -ID3336=NERR_BadUasConfig -ID3337=NERR_BadUsername -ID3338=NERR_BASE -ID3339=NERR_BrowserConfiguredToNotRun +ID3330=IncLimitClamp@Shortint@Shortint@Shortint +ID3331=IncLimitClamp@Smallint@Smallint@Smallint +ID3332=IncLimitClamp@Word@Word@Word +ID3333=IncludedFiles +ID3334=IndexedDayOfWeek@Integer@Integer@Integer@Integer +ID3335=IndexedWeekDay@Integer@Integer@Integer +ID3336=IndexedWeekendDay@Integer@Integer@Integer +ID3337=InfiniteTime +ID3338=Infinity +ID3339=InheritsFromByName@TClass@string ID334=_IMAGE_ROM_OPTIONAL_HEADER.BaseOfBss -ID3340=NERR_BrowserNotStarted -ID3341=NERR_BrowserTableIncomplete -ID3342=NERR_BufTooSmall -ID3343=NERR_CallingRplSrvr -ID3344=NERR_CanNotGrowSegment -ID3345=NERR_CanNotGrowUASFile -ID3346=NERR_CantConnectRplSrvr -ID3347=NERR_CantOpenImageFile -ID3348=NERR_CantType -ID3349=NERR_CfgCompNotFound +ID3340=IniReadStrings@TCustomIniFile@string@TStrings +ID3341=InitCrc16@Word@Word@TCrc16Table +ID3342=InitCrc32@Cardinal@Cardinal@TCrc32Table +ID3343=InitializeLocaleSupport +ID3344=InitializeOpenDialogFavorites +ID3345=InitializeOpenDialogHook@TJclOpenDialogHookClass +ID3346=InitSimpleLog@string@Boolean +ID3347=IniWriteStrings@TCustomIniFile@string@TStrings +ID3348=InsertCompositeElementInto@TEDISEFDataObjectGroup@TEDISEFCompositeElement@TEDISEFDataObject +ID3349=InsertCompositeElementInto@TEDISEFDataObjectGroup@TEDISEFDataObject ID335=_IMAGE_ROM_OPTIONAL_HEADER.BaseOfCode -ID3350=NERR_CfgParamNotFound -ID3351=NERR_ClientNameNotFound -ID3352=NERR_CommDevInUse -ID3353=NERR_ComputerAccountNotFound -ID3354=NERR_DatabaseUpToDate -ID3355=NERR_DataTypeInvalid -ID3356=NERR_DCNotFound -ID3357=NERR_DefaultJoinRequired -ID3358=NERR_DelComputerName -ID3359=NERR_DeleteLater +ID3350=InsertDebugDataIntoExecutableFile@TFileName@TFileName@string@Integer@Integer +ID3351=InsertDebugDataIntoExecutableFile@TFileName@TFileName@string@Integer@Integer@Integer +ID3352=InsertDebugDataIntoExecutableFile@TFileName@TJclBinDebugGenerator@string@Integer@Integer +ID3353=InsertDebugDataIntoExecutableFile@TFileName@TJclBinDebugGenerator@string@Integer@Integer@Integer +ID3354=InsertElementInto@TEDISEFDataObjectGroup@TEDISEFDataObject +ID3355=InsertElementInto@TEDISEFDataObjectGroup@TEDISEFElement@TEDISEFDataObject +ID3356=InsertLoopInto@TEDISEFDataObjectGroup@TEDISEFDataObject +ID3357=InsertLoopInto@TEDISEFDataObjectGroup@TEDISEFLoop@TEDISEFDataObject +ID3358=InsertRepeatingPatternInto@TEDISEFDataObjectGroup@TEDISEFDataObject +ID3359=InsertRepeatingPatternInto@TEDISEFDataObjectGroup@TEDISEFRepeatingPattern@TEDISEFDataObject ID336=_IMAGE_ROM_OPTIONAL_HEADER.BaseOfData -ID3360=NERR_DestExists -ID3361=NERR_DestIdle -ID3362=NERR_DestInvalidOp -ID3363=NERR_DestInvalidState -ID3364=NERR_DestNoRoom -ID3365=NERR_DestNotFound -ID3366=NERR_DeviceIsShared -ID3367=NERR_DeviceNotShared -ID3368=NERR_DeviceShareConflict -ID3369=NERR_DevInUse +ID3360=InsertSegmentInto@TEDISEFDataObjectGroup@TEDISEFDataObject +ID3361=InsertSegmentInto@TEDISEFDataObjectGroup@TEDISEFSegment@TEDISEFDataObject +ID3362=InsertSubElementInto@TEDISEFDataObjectGroup@TEDISEFDataObject +ID3363=InsertSubElementInto@TEDISEFDataObjectGroup@TEDISEFSubElement@TEDISEFDataObject +ID3364=InsertTableInto@TEDISEFDataObjectGroup@TEDISEFDataObject +ID3365=InsertTableInto@TEDISEFDataObjectGroup@TEDISEFTable@TEDISEFDataObject +ID3366=InsertUnitVersioningSection@TFileName@TJclUnitVersioningList +ID3367=INSTALLSTATE +ID3368=InstructionDumpILAllOption +ID3369=INT_PTR ID337=_IMAGE_ROM_OPTIONAL_HEADER.CprMask -ID3370=NERR_DevInvalidOpCode -ID3371=NERR_DevNotFound -ID3372=NERR_DevNotOpen -ID3373=NERR_DevNotRedirected -ID3374=NERR_DfsAlreadyShared -ID3375=NERR_DfsBadRenamePath -ID3376=NERR_DfsCantCreateJunctionPoint -ID3377=NERR_DfsCantRemoveDfsRoot -ID3378=NERR_DfsCantRemoveLastServerShare -ID3379=NERR_DfsChildOrParentInDfs +ID3370=Int16 +ID3371=Int32 +ID3372=Int64Mask +ID3373=Int64SimpleCompare@Int64@Int64 +ID3374=Int64SimpleEqualityCompare@Int64@Int64 +ID3375=Int64SimpleHashConvert@Int64 +ID3376=Int64SortProc +ID3377=Int8 +ID3378=IntegerCompare@TObject@TObject +ID3379=IntegerMask ID338=_IMAGE_ROM_OPTIONAL_HEADER.GprMask -ID3380=NERR_DfsCyclicalName -ID3381=NERR_DfsDataIsIdentical -ID3382=NERR_DfsDuplicateService -ID3383=NERR_DfsInconsistent -ID3384=NERR_DfsInternalCorruption -ID3385=NERR_DfsInternalError -ID3386=NERR_DfsLeafVolume -ID3387=NERR_DfsNoSuchServer -ID3388=NERR_DfsNoSuchShare -ID3389=NERR_DfsNoSuchVolume +ID3380=IntegerSimpleCompare@Integer@Integer +ID3381=IntegerSimpleEqualityCompare@Integer@Integer +ID3382=IntegerSimpleHashConvert@Integer +ID3383=IntegerSortProc +ID3384=INTEL_ACPI +ID3385=INTEL_APIC +ID3386=INTEL_BIT_10 +ID3387=INTEL_BIT_20 +ID3388=INTEL_BIT_30 +ID3389=INTEL_CLFLSH ID339=_IMAGE_ROM_OPTIONAL_HEADER.GpValue -ID3390=NERR_DfsNotALeafVolume -ID3391=NERR_DfsNotSupportedInServerDfs -ID3392=NERR_DfsServerNotDfsAware -ID3393=NERR_DfsServerUpgraded -ID3394=NERR_DfsVolumeAlreadyExists -ID3395=NERR_DfsVolumeDataCorrupt -ID3396=NERR_DfsVolumeHasMultipleServers -ID3397=NERR_DfsVolumeIsInterDfs -ID3398=NERR_DfsVolumeIsOffline -ID3399=NERR_DifferentServers +ID3390=INTEL_CMOV +ID3391=INTEL_CX8 +ID3392=INTEL_DE +ID3393=INTEL_DS +ID3394=INTEL_FPU +ID3395=INTEL_FXSR +ID3396=INTEL_HTT +ID3397=INTEL_IA64 +ID3398=INTEL_MCA +ID3399=INTEL_MCE ID34=!!OVERLOADED_DeleteElement_TEDICompositeElement ID340=_IMAGE_ROM_OPTIONAL_HEADER.Magic -ID3400=NERR_DriverNotFound -ID3401=NERR_DuplicateName -ID3402=NERR_DuplicateShare -ID3403=NERR_DupNameReboot -ID3404=NERR_ErrCommRunSrv -ID3405=NERR_ErrorExecingGhost -ID3406=NERR_ExecFailure -ID3407=NERR_FileIdNotFound -ID3408=NERR_GroupExists -ID3409=NERR_GroupNotFound +ID3400=INTEL_MMX +ID3401=INTEL_MSR +ID3402=INTEL_MTRR +ID3403=INTEL_PAE +ID3404=INTEL_PAT +ID3405=INTEL_PBE +ID3406=INTEL_PGE +ID3407=INTEL_PSE +ID3408=INTEL_PSE36 +ID3409=INTEL_PSN ID341=_IMAGE_ROM_OPTIONAL_HEADER.MajorLinkerVersion -ID3410=NERR_GrpMsgProcessor -ID3411=NERR_ImageParamErr -ID3412=NERR_IncompleteDel -ID3413=NERR_InternalError -ID3414=NERR_InUseBySpooler -ID3415=NERR_InvalidAPI -ID3416=NERR_InvalidComputer -ID3417=NERR_InvalidDatabase -ID3418=NERR_InvalidDevice -ID3419=NERR_InvalidLana +ID3410=INTEL_SEP +ID3411=INTEL_SS +ID3412=INTEL_SSE +ID3413=INTEL_SSE2 +ID3414=INTEL_TM +ID3415=INTEL_TSC +ID3416=INTEL_VME +ID3417=IntelCacheDescription +ID3418=Intensity@Single@Single@Single +ID3419=Intensity@TColor32 ID342=_IMAGE_ROM_OPTIONAL_HEADER.MinorLinkerVersion -ID3420=NERR_InvalidLogonHours -ID3421=NERR_InvalidLogSeek -ID3422=NERR_InvalidMaxUsers -ID3423=NERR_InvalidUASOp -ID3424=NERR_InvalidWorkgroupName -ID3425=NERR_InvalidWorkstation -ID3426=NERR_IsDfsShare -ID3427=NERR_ItemNotFound -ID3428=NERR_JobInvalidState -ID3429=NERR_JobNoRoom +ID3420=Internationalisation +ID3421=InternetandE-mail +ID3422=IntfSimpleCompare@IInterface@IInterface +ID3423=IntfSimpleEqualityCompare@IInterface@IInterface +ID3424=IntfSimpleHashConvert@IInterface +ID3425=IntfSortProc +ID3426=IntToBool +ID3427=Inv@TPolarComplex +ID3428=Inv@TRectComplex +ID3429=inv2Pi ID343=_IMAGE_ROM_OPTIONAL_HEADER.SizeOfCode -ID3430=NERR_JobNotFound -ID3431=NERR_LanmanIniError -ID3432=NERR_LastAdmin -ID3433=NERR_LineTooLong -ID3434=NERR_LocalDrive -ID3435=NERR_LocalForward -ID3436=NERR_LogFileChanged -ID3437=NERR_LogFileCorrupt -ID3438=NERR_LogonDomainExists -ID3439=NERR_LogonNoUserPath +ID3430=INVALID_MIXER_HANDLE +ID3431=IO_COMPLETION_ALL_ACCESS +ID3432=IO_COMPLETION_MODIFY_STATE +ID3433=IO_REPARSE_TAG_DFS +ID3434=IO_REPARSE_TAG_FILTER_MANAGER +ID3435=IOHFLAGS_TYPE +ID3436=Is7ZipLoaded +ID3437=IsAccessInstalled +ID3438=IsAccountOperator +ID3439=IsAuthorizationAccess ID344=_IMAGE_ROM_OPTIONAL_HEADER.SizeOfInitializedData -ID3440=NERR_LogonScriptError -ID3441=NERR_LogonServerConflict -ID3442=NERR_LogonServerNotFound -ID3443=NERR_LogonsPaused -ID3444=NERR_LogonTrackingError -ID3445=NERR_LogOverflow -ID3446=NERR_MaxLenExceeded -ID3447=NERR_MsgAlreadyStarted -ID3448=NERR_MsgInitFailed -ID3449=NERR_MsgNotStarted +ID3440=IsAutoAdjustEnabled +ID3441=IsBackupFileName +ID3442=IsBackupOperator +ID3443=IsBCBPackage@string +ID3444=IsBCBProject@string +ID3445=IsBZip2Loaded +ID3446=IsCompiledWithPackages +ID3447=IsDelphiPackage@string +ID3448=IsDelphiProject@string +ID3449=IsElevated ID345=_IMAGE_ROM_OPTIONAL_HEADER.SizeOfUninitializedData -ID3450=NERR_MultipleNets -ID3451=NERR_NameInUse -ID3452=NERR_NameNotForwarded -ID3453=NERR_NameNotFound -ID3454=NERR_NameUsesIncompatibleCodePage -ID3455=NERR_NetlogonNotStarted -ID3456=NERR_NetNameNotFound -ID3457=NERR_NetNotStarted -ID3458=NERR_NetworkError -ID3459=NERR_NoAlternateServers +ID3450=IsExcelInstalled +ID3451=IsFrontPageInstalled +ID3452=IsGroupMember@DWORD +ID3453=IsGuest +ID3454=IsIgnoredException@TClass +ID3455=IsIncomingForestTrustBuilder +ID3456=IsInfinite@Extended +ID3457=IsInfinite@Single +ID3458=IsInfinite@TPolarComplex +ID3459=IsInfinite@TRectComplex ID346=_IMAGE_SECTION_HEADER -ID3460=NERR_NoCommDevs -ID3461=NERR_NoComputerName -ID3462=NERR_NoForwardName -ID3463=NERR_NonDosFloppyUsed -ID3464=NERR_NoNetworkResource -ID3465=NERR_NonValidatedLogon -ID3466=NERR_NoRoom -ID3467=NERR_NoRplBootSystem -ID3468=NERR_NoSuchAlert -ID3469=NERR_NoSuchConnection +ID3460=IsInternetExplorerInstalled +ID3461=IsISOLongYear@TDateTime +ID3462=IsISOLongYear@Word +ID3463=IsLeapYear@TDateTime +ID3464=IsLoggingUser +ID3465=IsMainAppWindow@THandle +ID3466=IsMediaPresentInDrive@Char +ID3467=IsMonitoringUser +ID3468=IsMSProjectInstalled +ID3469=IsNaN@Extended ID347=_IMAGE_SECTION_HEADER.Characteristics -ID3470=NERR_NoSuchServer -ID3471=NERR_NoSuchSession -ID3472=NERR_NotInCache -ID3473=NERR_NotInDispatchTbl -ID3474=NERR_NotLocalDomain -ID3475=NERR_NotLocalName -ID3476=NERR_NotLoggedOn -ID3477=NERR_NotPrimary -ID3478=NERR_OpenFiles -ID3479=NERR_PasswordCantChange +ID3470=IsNaN@Single +ID3471=IsNetworkConfigurationOperator +ID3472=ISODayOfWeek@TDateTime +ID3473=ISOLATIONAWARE_MANIFEST_RESOURCE_ID +ID3474=ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID +ID3475=IsOpenOfficeInstalled +ID3476=IsOutlookInstalled +ID3477=ISOWeekNumber@TDateTime@Integer +ID3478=ISOWeekNumber@TDateTime@Integer@Integer +ID3479=IsPCRELoaded ID348=_IMAGE_SECTION_HEADER.Misc -ID3480=NERR_PasswordExpired -ID3481=NERR_PasswordFilterError -ID3482=NERR_PasswordHistConflict -ID3483=NERR_PasswordMismatch -ID3484=NERR_PasswordMustChange -ID3485=NERR_PasswordNotComplexEnough -ID3486=NERR_PasswordTooLong -ID3487=NERR_PasswordTooRecent -ID3488=NERR_PasswordTooShort -ID3489=NERR_PausedRemote +ID3480=IsPowerPointInstalled +ID3481=IsPowerUser +ID3482=IsPreWin2000CompAccess +ID3483=IsPrintOperator +ID3484=IsPwrHibernateAllowed +ID3485=IsPwrShutdownAllowed +ID3486=IsPwrSuspendAllowed +ID3487=IsRASServer +ID3488=IsRemoteDesktopUser +ID3489=IsReparseTagHighLatency@ULONG ID349=_IMAGE_SECTION_HEADER.Name -ID3490=NERR_PersonalSku -ID3491=NERR_ProcNoRespond -ID3492=NERR_ProcNotFound -ID3493=NERR_ProfileCleanup -ID3494=NERR_ProfileFileTooBig -ID3495=NERR_ProfileLoadErr -ID3496=NERR_ProfileOffset -ID3497=NERR_ProfileSaveErr -ID3498=NERR_ProfileUnknownCmd -ID3499=NERR_ProgNeedsExtraMem +ID3490=IsReparseTagMicrosoft@ULONG +ID3491=IsReparseTagNameSurrogate@ULONG +ID3492=IsReplicator +ID3493=IsRootDirectory@string +ID3494=IsSystemOperator +ID3495=IsSystemResourcesMeterPresent +ID3496=IsTSLicenseServer +ID3497=IsUser +ID3498=IsValidISBN@AnsiString +ID3499=IsValidISBN@string ID35=!!OVERLOADED_DeleteElement_TEDISegment ID350=_IMAGE_SECTION_HEADER.NumberOfLinenumbers -ID3500=NERR_QExists -ID3501=NERR_QInvalidState -ID3502=NERR_QNoRoom -ID3503=NERR_QNotFound -ID3504=NERR_QueueNotFound -ID3505=NERR_RedirectedPath -ID3506=NERR_RemoteBootFailed -ID3507=NERR_RemoteErr -ID3508=NERR_RemoteFull -ID3509=NERR_RemoteOnly +ID3500=IsWin2003R2 +ID3501=IsWindows64 +ID3502=IsWinXP64 +ID3503=IsWordInstalled +ID3504=IsZero@TPolarComplex +ID3505=IsZero@TRectComplex +ID3506=IsZLibLoaded +ID3507=ITableCanDumpIL +ID3508=Iterate@IJclAnsiStrIterator@Integer@TAnsiStrIterateProcedure +ID3509=Iterate@IJclCardinalIterator@Integer@TCardinalIterateProcedure ID351=_IMAGE_SECTION_HEADER.NumberOfRelocations -ID3510=NERR_ResourceExists -ID3511=NERR_ResourceNotFound -ID3512=NERR_RPL_CONNECTED -ID3513=NERR_RplAdapterInfoCorrupted -ID3514=NERR_RplAdapterNameUnavailable -ID3515=NERR_RplAdapterNotFound -ID3516=NERR_RplBackupDatabase -ID3517=NERR_RplBadDatabase -ID3518=NERR_RplBadRegistry -ID3519=NERR_RplBootInfoCorrupted +ID3510=Iterate@IJclDoubleIterator@Integer@TDoubleIterateProcedure +ID3511=Iterate@IJclExtendedIterator@Integer@TExtendedIterateProcedure +ID3512=Iterate@IJclInt64Iterator@Integer@TInt64IterateProcedure +ID3513=Iterate@IJclIntegerIterator@Integer@TIntegerIterateProcedure +ID3514=Iterate@IJclIntfIterator@Integer@TIntfIterateProcedure +ID3515=Iterate@IJclIterator@Integer@TIterateProcedure +ID3516=Iterate@IJclPtrIterator@Integer@TPtrIterateProcedure +ID3517=Iterate@IJclSingleIterator@Integer@TSingleIterateProcedure +ID3518=Iterate@IJclUnicodeStrIterator@Integer@TUnicodeStrIterateProcedure +ID3519=Iterate@IJclWideStrIterator@Integer@TWideStrIterateProcedure ID352=_IMAGE_SECTION_HEADER.PointerToLinenumbers -ID3520=NERR_RplBootInUse -ID3521=NERR_RplBootNameUnavailable -ID3522=NERR_RplBootNotFound -ID3523=NERR_RplBootRestart -ID3524=NERR_RplBootServiceTerm -ID3525=NERR_RplBootStartFailed -ID3526=NERR_RplCannotEnum -ID3527=NERR_RplConfigInfoCorrupted -ID3528=NERR_RplConfigNameUnavailable -ID3529=NERR_RplConfigNotEmpty +ID3520=IToString +ID3521=IToString.ToString +ID3522=jcl.inc +ID3523=JCL_GZIP_CM_DEFLATE +ID3524=JCL_GZIP_EFLAG_FAST +ID3525=JCL_GZIP_EFLAG_MAX +ID3526=JCL_GZIP_FLAG_COMMENT +ID3527=JCL_GZIP_FLAG_CRC +ID3528=JCL_GZIP_FLAG_EXTRA +ID3529=JCL_GZIP_FLAG_NAME ID353=_IMAGE_SECTION_HEADER.PointerToRawData -ID3530=NERR_RplConfigNotFound -ID3531=NERR_RplIncompatibleProfile -ID3532=NERR_RplInternal -ID3533=NERR_RplLoadrDiskErr -ID3534=NERR_RplLoadrNetBiosErr -ID3535=NERR_RplNeedsRPLUSERAcct -ID3536=NERR_RplNoAdaptersStarted -ID3537=NERR_RplNotRplServer -ID3538=NERR_RplProfileInfoCorrupted -ID3539=NERR_RplProfileNameUnavailable +ID3530=JCL_GZIP_FLAG_TEXT +ID3531=JCL_GZIP_ID1 +ID3532=JCL_GZIP_ID2 +ID3533=JCL_GZIP_OS_ACORN +ID3534=JCL_GZIP_OS_AMIGA +ID3535=JCL_GZIP_OS_ATARI +ID3536=JCL_GZIP_OS_CPM +ID3537=JCL_GZIP_OS_FAT +ID3538=JCL_GZIP_OS_HPFS +ID3539=JCL_GZIP_OS_MAC ID354=_IMAGE_SECTION_HEADER.PointerToRelocations -ID3540=NERR_RplProfileNotEmpty -ID3541=NERR_RplProfileNotFound -ID3542=NERR_RplRplfilesShare -ID3543=NERR_RplSrvrCallFailed -ID3544=NERR_RplVendorInfoCorrupted -ID3545=NERR_RplVendorNameUnavailable -ID3546=NERR_RplVendorNotFound -ID3547=NERR_RplWkstaInfoCorrupted -ID3548=NERR_RplWkstaNameUnavailable -ID3549=NERR_RplWkstaNeedsUserAcct +ID3540=JCL_GZIP_OS_NTFS +ID3541=JCL_GZIP_OS_QDOS +ID3542=JCL_GZIP_OS_TOPS +ID3543=JCL_GZIP_OS_UNIX +ID3544=JCL_GZIP_OS_UNKNOWN +ID3545=JCL_GZIP_OS_VM +ID3546=JCL_GZIP_OS_VMS +ID3547=JCL_GZIP_OS_Z +ID3548=JCL_GZIP_X_AC1 +ID3549=JCL_GZIP_X_AC2 ID355=_IMAGE_SECTION_HEADER.SizeOfRawData -ID3550=NERR_RplWkstaNotFound -ID3551=NERR_RunSrvPaused -ID3552=NERR_ServerNotStarted -ID3553=NERR_ServiceCtlBusy -ID3554=NERR_ServiceCtlNotValid -ID3555=NERR_ServiceCtlTimeout -ID3556=NERR_ServiceEntryLocked -ID3557=NERR_ServiceInstalled -ID3558=NERR_ServiceKillProc -ID3559=NERR_ServiceNotCtrl +ID3550=JCL_GZIP_X_Ap1 +ID3551=JCL_GZIP_X_Ap2 +ID3552=JCL_GZIP_X_cp1 +ID3553=JCL_GZIP_X_cp2 +ID3554=JCL_GZIP_X_GS1 +ID3555=JCL_GZIP_X_GS2 +ID3556=JCL_GZIP_X_KN1 +ID3557=JCL_GZIP_X_KN2 +ID3558=JCL_GZIP_X_Mc1 +ID3559=JCL_GZIP_X_Mc2 ID356=_IMAGE_SECTION_HEADER.VirtualAddress -ID3560=NERR_ServiceNotInstalled -ID3561=NERR_ServiceNotStarting -ID3562=NERR_ServiceTableFull -ID3563=NERR_ServiceTableLocked -ID3564=NERR_SetupAlreadyJoined -ID3565=NERR_SetupDomainController -ID3566=NERR_SetupNotJoined -ID3567=NERR_ShareMem -ID3568=NERR_ShareNotFound -ID3569=NERR_SourceIsDir +ID3560=JCL_GZIP_X_RO1 +ID3561=JCL_GZIP_X_RO2 +ID3562=JCL_PCRE_CALLOUT_FAILCONTINUE +ID3563=JCL_PCRE_CALLOUT_NOERROR +ID3564=JCL_PCRE_ERROR_CALLOUTERROR +ID3565=JCL_PCRE_ERROR_STUDYFAILED +ID3566=Jcl8087.pas +ID3567=JclAbstractContainers.pas +ID3568=JclAddExceptNotifier@TJclExceptNotifyMethod@TJclExceptNotifyPriority +ID3569=JclAddExceptNotifier@TJclExceptNotifyProc@TJclExceptNotifyPriority ID357=_IMAGE_SEPARATE_DEBUG_HEADER -ID3570=NERR_SpeGroupOp -ID3571=NERR_SpoolerNotLoaded -ID3572=NERR_SpoolNoMemory -ID3573=NERR_StandaloneLogon -ID3574=NERR_StartingRplBoot -ID3575=NERR_Success -ID3576=NERR_SyncRequired -ID3577=NERR_TimeDiffAtDC -ID3578=NERR_TmpFile -ID3579=NERR_TooManyAlerts +ID3570=JclAddExceptNotifier@TJclExceptNotifyProcEx@TJclExceptNotifyPriority +ID3571=JclAlgorithms.pas +ID3572=JclAnsiStrings.pas +ID3573=JclAppInst.pas +ID3574=JclAppInstances +ID3575=JclAppInstances@string +ID3576=JclArrayLists.pas +ID3577=JclArraySets.pas +ID3578=JclBase.pas +ID3579=JclBelongsHookedCode@Pointer ID358=_IMAGE_SEPARATE_DEBUG_HEADER.Characteristics -ID3580=NERR_TooManyConnections -ID3581=NERR_TooManyEntries -ID3582=NERR_TooManyFiles -ID3583=NERR_TooManyImageParams -ID3584=NERR_TooManyItems -ID3585=NERR_TooManyNames -ID3586=NERR_TooManyServers -ID3587=NERR_TooManySessions -ID3588=NERR_TooMuchData -ID3589=NERR_TruncatedBroadcast +ID3580=JclBinaryTrees.pas +ID3581=JclBorDesignerDescription +ID3582=JclBorDesignerFormExtension +ID3583=JclBorlandTools.pas +ID3584=JclBorPersonalityDescription +ID3585=jclc6.inc +ID3586=JclCancelWaitableTimer@THandle +ID3587=JclCharsetInfos +ID3588=JclCharsets.pas +ID3589=JclCheckAndInitializeOpenGL ID359=_IMAGE_SEPARATE_DEBUG_HEADER.CheckSum -ID3590=NERR_TryDownLevel -ID3591=NERR_UnableToAddName_F -ID3592=NERR_UnableToAddName_W -ID3593=NERR_UnableToDelName_F -ID3594=NERR_UnableToDelName_W -ID3595=NERR_UnknownDevDir -ID3596=NERR_UnknownServer -ID3597=NERR_UPSDriverNotStarted -ID3598=NERR_UPSInvalidCommPort -ID3599=NERR_UPSInvalidConfig +ID3590=JclCIL.pas +ID3591=JclClearGlobalStackData +ID3592=JclCLR.pas +ID3593=JclCOM.pas +ID3594=JclCompilerUtils.pas +ID3595=JclComplex.pas +ID3596=JclCompression.pas +ID3597=JclConsole.pas +ID3598=JclContainerIntf.pas +ID3599=JclCounter.pas ID36=!!OVERLOADED_DeleteElement_TEDIXMLSegment ID360=_IMAGE_SEPARATE_DEBUG_HEADER.DebugDirectorySize -ID3600=NERR_UPSShutdownFailed -ID3601=NERR_UPSSignalAsserted -ID3602=NERR_UseNotFound -ID3603=NERR_UserExists -ID3604=NERR_UserInGroup -ID3605=NERR_UserLogon -ID3606=NERR_UserNotFound -ID3607=NERR_UserNotInGroup -ID3608=NERR_WkstaInconsistentState -ID3609=NERR_WkstaNotStarted +ID3600=JclCreateStackList@Boolean@DWORD@Pointer@Boolean +ID3601=JclCreateStackList@Boolean@DWORD@Pointer@Boolean@Pointer +ID3602=JclCreateStackList@Boolean@DWORD@Pointer@Boolean@Pointer@Pointer +ID3603=JclCreateThreadStackTrace@Boolean@THandle +ID3604=JclCreateThreadStackTraceFromID@Boolean@DWORD +ID3605=JclCreateWaitableTimer@PSecurityAttributes@Boolean@AnsiString +ID3606=JclCreateWaitableTimer@PSecurityAttributes@Boolean@string +ID3607=jclcs1.inc +ID3608=jcld10.inc +ID3609=jcld10.net.inc ID361=_IMAGE_SEPARATE_DEBUG_HEADER.ExportedNamesSize -ID3610=NERR_WriteFault -ID3611=NET_API_STATUS -ID3612=NetApi32 -ID3613=NetApiBufferFree@Pointer -ID3614=Netbios@PNCB -ID3615=NETBIOS_NAME_LEN -ID3616=NetGroupAdd@LPCWSTR@DWORD@PByte@LPDWORD -ID3617=NetGroupAddUser@LPCWSTR@LPCWSTR@LPCWSTR -ID3618=NetGroupDel@LPCWSTR@LPCWSTR -ID3619=NetGroupDelUser@LPCWSTR@LPCWSTR@LPCWSTR +ID3610=jcld11.inc +ID3611=jcld12.inc +ID3612=jcld14.inc +ID3613=jcld15.inc +ID3614=jcld5.inc +ID3615=jcld6.inc +ID3616=jcld7.inc +ID3617=jcld8.inc +ID3618=jcld9.inc +ID3619=jcld9.net.inc ID362=_IMAGE_SEPARATE_DEBUG_HEADER.Flags -ID3620=NetGroupEnum@LPCWSTR@DWORD@PByte@DWORD@DWORD@DWORD@PDWORD_PTR -ID3621=NetGroupGetInfo@LPCWSTR@LPCWSTR@DWORD@PByte -ID3622=NetGroupGetUsers@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD@LPDWORD@LPDWORD@PDWORD_PTR -ID3623=NetGroupSetInfo@LPCWSTR@LPCWSTR@DWORD@PByte@LPDWORD -ID3624=NetGroupSetUsers@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD -ID3625=NetLocalGroupAdd@LPCWSTR@DWORD@PByte@LPDWORD -ID3626=NetLocalGroupAddMember@LPCWSTR@LPCWSTR@PSID -ID3627=NetLocalGroupAddMembers@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD -ID3628=NetLocalGroupDel@LPCWSTR@LPCWSTR -ID3629=NetLocalGroupDelMember@LPCWSTR@LPCWSTR@PSID +ID3620=JclDateTime.pas +ID3621=JclDbgHeaderVersion +ID3622=JclDebug.pas +ID3623=JclDebugInfoSymbolPaths +ID3624=JclDebugSerialization.pas +ID3625=JclDebugThreadList +ID3626=JclDebugXMLDeserializer.pas +ID3627=JclDebugXMLSerializer.pas +ID3628=JclDevToolsResources.pas +ID3629=JclDotNet.pas ID363=_IMAGE_SEPARATE_DEBUG_HEADER.ImageBase -ID3630=NetLocalGroupDelMembers@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD -ID3631=NetLocalGroupEnum@LPCWSTR@DWORD@PByte@DWORD@DWORD@DWORD@PDWORD_PTR -ID3632=NetLocalGroupGetInfo@LPCWSTR@LPCWSTR@DWORD@PByte -ID3633=NetLocalGroupGetMembers@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD@LPDWORD@LPDWORD@PDWORD_PTR -ID3634=NetLocalGroupSetInfo@LPCWSTR@LPCWSTR@DWORD@PByte@LPDWORD -ID3635=NetLocalGroupSetMembers@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD -ID3636=NetUserAdd@LPCWSTR@DWORD@PByte@LPDWORD -ID3637=NetUserChangePassword@LPCWSTR@LPCWSTR@LPCWSTR@LPCWSTR -ID3638=NetUserDel@LPCWSTR@LPCWSTR -ID3639=NetUserEnum@LPCWSTR@DWORD@DWORD@PByte@DWORD@LPDWORD@LPDWORD@LPDWORD +ID3630=JclEDI.pas +ID3631=JclEDI_ANSIX12.pas +ID3632=JclEDI_ANSIX12_Ext.pas +ID3633=JclEDI_UNEDIFACT.pas +ID3634=JclEDI_UNEDIFACT_Ext.pas +ID3635=JclEDISEF.pas +ID3636=JclEDITranslators.pas +ID3637=JclEDIXML.pas +ID3638=JclExceptionTrackingActive +ID3639=JclFileUtils.pas ID364=_IMAGE_SEPARATE_DEBUG_HEADER.Machine -ID3640=NetUserGetGroups@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD@LPDWORD@LPDWORD -ID3641=NetUserGetInfo@LPCWSTR@LPCWSTR@DWORD@PByte -ID3642=NetUserGetLocalGroups@LPCWSTR@LPCWSTR@DWORD@DWORD@PByte@DWORD@LPDWORD@LPDWORD -ID3643=NetUserModalsGet@LPCWSTR@DWORD@PByte -ID3644=NetUserModalsSet@LPCWSTR@DWORD@PByte@LPDWORD -ID3645=NetUserSetGroups@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD -ID3646=NetUserSetInfo@LPCWSTR@LPCWSTR@DWORD@PByte@LPDWORD -ID3647=NibbleMask -ID3648=NibblesPerByte -ID3649=NibblesPerCardinal +ID3640=JclFont.pas +ID3641=jclfpc.inc +ID3642=JclGetExceptFrameList@DWORD +ID3643=JclGetExceptStackList@DWORD +ID3644=JclGetExceptStackListToStrings@DWORD@TStrings@Boolean@Boolean@Boolean@Boolean +ID3645=JclGetFileAttributesEx@string@TGetFileExInfoLevels@Pointer +ID3646=JclglGetError +ID3647=JclglGetString@Cardinal +ID3648=JclgluErrorString@Cardinal +ID3649=JclGraphics.pas ID365=_IMAGE_SEPARATE_DEBUG_HEADER.NumberOfSections -ID3650=NibblesPerInt64 -ID3651=NibblesPerInteger -ID3652=NibblesPerShortint -ID3653=NibblesPerSmallint -ID3654=NibblesPerWord -ID3655=NLS_VALID_LOCALE_MASK -ID3656=NNLEN -ID3657=NON_PAGED_DEBUG_INFO -ID3658=NON_PAGED_DEBUG_SIGNATURE -ID3659=Norm@TPolarComplex +ID3650=JclGraphUtils.pas +ID3651=JclHashMaps.pas +ID3652=JclHashSets.pas +ID3653=JclHelpUtils.pas +ID3654=JclHookedExceptModulesList@TJclModuleArray +ID3655=JclHookExcept.pas +ID3656=JclHookExceptionsInModule@HMODULE +ID3657=JclHookThreads +ID3658=JclIDEUtils.pas +ID3659=JclIniFiles.pas ID366=_IMAGE_SEPARATE_DEBUG_HEADER.Reserved -ID3660=Norm@TRectComplex -ID3661=NRC_ACTSES -ID3662=NRC_BADDR -ID3663=NRC_BRIDGE -ID3664=NRC_BUFLEN -ID3665=NRC_CANCEL -ID3666=NRC_CANOCCR -ID3667=NRC_CMDCAN -ID3668=NRC_CMDTMO -ID3669=NRC_DUPENV +ID3660=JclInitializeCriticalSectionAndSpinCount@TRTLCriticalSection@Cardinal +ID3661=JclInitializeLibrariesHookExcept +ID3662=JclLANMan.pas +ID3663=JclLastExceptStackListToStrings@TStrings@Boolean@Boolean@Boolean@Boolean +ID3664=JclLinkedLists.pas +ID3665=JclLocales.pas +ID3666=JclLocalesInfoList@TStrings@Integer +ID3667=JclLogic.pas +ID3668=JclMapFileExtension +ID3669=JclMapi.pas ID367=_IMAGE_SEPARATE_DEBUG_HEADER.SectionAlignment -ID3670=NRC_DUPNAME -ID3671=NRC_ENVNOTDEF -ID3672=NRC_IFBUSY -ID3673=NRC_ILLCMD -ID3674=NRC_ILLNN -ID3675=NRC_INCOMP -ID3676=NRC_INUSE -ID3677=NRC_INVADDRESS -ID3678=NRC_INVDDID -ID3679=NRC_LOCKFAIL +ID3670=JclMath.pas +ID3671=JclMetadata.pas +ID3672=JclMIDI.pas +ID3673=JclMime.pas +ID3674=JclMiscel.pas +ID3675=JclMsdosSys.pas +ID3676=JclMultimedia.pas +ID3677=JclNotify.pas +ID3678=JclNTFS.pas +ID3679=JclOpenDialogFavorites.pas ID368=_IMAGE_SEPARATE_DEBUG_HEADER.Signature -ID3680=NRC_LOCTFUL -ID3681=NRC_MAXAPPS -ID3682=NRC_NAMCONF -ID3683=NRC_NAMERR -ID3684=NRC_NAMTFUL -ID3685=NRC_NOCALL -ID3686=NRC_NORES -ID3687=NRC_NORESOURCES -ID3688=NRC_NOSAPS -ID3689=NRC_NOWILD +ID3680=JclOpenDialogHooks.pas +ID3681=JclOpenWaitableTimer@Cardinal@Boolean@string +ID3682=JclPCRE +ID3683=JclPCRE.pas +ID3684=JclPCRE_Intro +ID3685=JclPCRE_Using +ID3686=JclPeImage.pas +ID3687=JclPrint.pas +ID3688=JclQGraphics.pas +ID3689=JclQGraphUtils.pas ID369=_IMAGE_SEPARATE_DEBUG_HEADER.SizeOfImage -ID3690=NRC_OPENERR -ID3691=NRC_OSRESNOTAV -ID3692=NRC_PENDING -ID3693=NRC_REMTFUL -ID3694=NRC_SABORT -ID3695=NRC_SCLOSED -ID3696=NRC_SNUMOUT -ID3697=NRC_SYSTEM -ID3698=NRC_TOOMANY -ID3699=NT_TIB32 +ID3690=JclQueues.pas +ID3691=JclRegistry.pas +ID3692=JclRemoveExceptNotifier@TJclExceptNotifyMethod +ID3693=JclRemoveExceptNotifier@TJclExceptNotifyProc +ID3694=JclRemoveExceptNotifier@TJclExceptNotifyProcEx +ID3695=JclReplaceExceptObj@Exception +ID3696=JclResources.pas +ID3697=JclRTTI.pas +ID3698=JclSchedule.pas +ID3699=JclScheduleTaskAllPages ID37=!!OVERLOADED_DeleteElements_TEDICompositeElement ID370=_IMAGE_SEPARATE_DEBUG_HEADER.TimeDateStamp -ID3700=NT_TIB32.ArbitraryUserPointer -ID3701=NT_TIB32.ExceptionList -ID3702=NT_TIB32.FiberData -ID3703=NT_TIB32.Self -ID3704=NT_TIB32.StackBase -ID3705=NT_TIB32.StackLimit -ID3706=NT_TIB32.SubSystemTib -ID3707=NT_TIB32.Version -ID3708=NT_TIB64 -ID3709=NT_TIB64.ArbitraryUserPointer +ID3700=JclSecurity.pas +ID3701=JclSetCriticalSectionSpinCount@TRTLCriticalSection@Cardinal +ID3702=JclShell.pas +ID3703=JclSignalObjectAndWait@THandle@THandle@Cardinal@Boolean +ID3704=JclSimpleSendFax@AnsiString@AnsiString@AnsiString@AnsiString@TFileName@Boolean@THandle@AnsiString@AnsiString +ID3705=JclSimpleSendFax@string@string@string@string@string@Boolean@THandle@string@string +ID3706=JclSimpleXml.pas +ID3707=JclSortedMaps.pas +ID3708=JclStacks.pas +ID3709=JclStackTrackingOptions ID371=_IMAGE_THUNK_DATA32 -ID3710=NT_TIB64.ExceptionList -ID3711=NT_TIB64.FiberData -ID3712=NT_TIB64.Self -ID3713=NT_TIB64.StackBase -ID3714=NT_TIB64.StackLimit -ID3715=NT_TIB64.SubSystemTib -ID3716=NT_TIB64.Version -ID3717=NtfsCreateHardLink -ID3718=NtfsCreateHardLinkA@AnsiString@AnsiString -ID3719=NtfsCreateHardLinkW@WideString@WideString +ID3710=JclStartExceptionTracking +ID3711=JclStatistics.pas +ID3712=JclStopExceptionTracking +ID3713=JclStreams.pas +ID3714=JclStrHashMap.pas +ID3715=JclStringConversions.pas +ID3716=JclStringList +ID3717=JclStringList@array of const +ID3718=JclStringList@string +ID3719=JclStringLists.pas ID372=_IMAGE_THUNK_DATA32.AddressOfData -ID3720=NtfsDeleteHardLinks -ID3721=NtfsFindHardLinks -ID3722=NtfsGetCompression@string@Short -ID3723=NtfsGetHardLinkInfo -ID3724=NtfsOpLockAckClosePending@THandle@TOverlapped -ID3725=NtfsOpLockBreakAckNo2@THandle@TOverlapped -ID3726=NtfsOpLockBreakAcknowledge@THandle@TOverlapped -ID3727=NtfsOpLockBreakNotify@THandle@TOverlapped -ID3728=NtfsRequestOpLock@THandle@TOpLock@TOverlapped -ID3729=NTSTATUS +ID3720=JclStringListStrings@array of string +ID3721=JclStringListStrings@TStrings +ID3722=JclStrings.pas +ID3723=JclStructStorage.pas +ID3724=JclSvcCtrl.pas +ID3725=JclSynch.pas +ID3726=JclSysUtils.pas +ID3727=JclTask.pas +ID3728=JclTD32.pas +ID3729=JclThreadsHooked ID373=_IMAGE_THUNK_DATA32.ForwarderString -ID3730=NULL_USERSETINFO_PASSWD -ID3731=OpenCdMciDevice@TMCI_Open_Parms@Char -ID3732=OpenGLColorToWinColor@Float@Float@Float -ID3733=OrdinalMathandLogic -ID3734=OrdToBinary@Cardinal -ID3735=OrdToBinary@Int64 -ID3736=OrdToBinary@Integer -ID3737=OrdToBinary@ShortInt -ID3738=OrdToBinary@SmallInt -ID3739=OrdToBinary@Word +ID3730=JclTimeZones.pas +ID3731=JclTrackExceptionsFromLibraries +ID3732=JclTrees.pas +ID3733=JclTryEnterCriticalSection@TRTLCriticalSection +ID3734=JclUnhookThreads +ID3735=JclUnicode.pas +ID3736=JclUnitConv.pas +ID3737=JclUnitVersioning.pas +ID3738=JclUnitVersioningProviders.pas +ID3739=JclUnkookExceptionsInModule@HMODULE ID374=_IMAGE_THUNK_DATA32.Function_ -ID3740=OS2MSG_FILENAME -ID3741=OSVERSIONINFOEX -ID3742=OSVERSIONINFOEXA -ID3743=OSVERSIONINFOEXW -ID3744=PACTION_HEADER -ID3745=PActionHeader -ID3746=PADAPTER_STATUS -ID3747=PAE_FLAG -ID3748=PAMD_BIT_10 -ID3749=PAMD_BIT_11 +ID3740=JclUsesUtils.pas +ID3741=JclValidateModuleAddress@Pointer +ID3742=JclValidation.pas +ID3743=JclVclResources.pas +ID3744=JclVectors.pas +ID3745=JclVersion +ID3746=JclVersionBuild +ID3747=JclVersionControl.pas +ID3748=JclVersionCtrlCVSImpl.pas +ID3749=JclVersionCtrlSVNImpl.pas ID375=_IMAGE_THUNK_DATA32.Ordinal -ID3750=PAMD_BIT_12 -ID3751=PAMD_BIT_13 -ID3752=PAMD_BIT_14 -ID3753=PAMD_BIT_15 -ID3754=PAMD_BIT_16 -ID3755=PAMD_BIT_17 -ID3756=PAMD_BIT_18 -ID3757=PAMD_BIT_19 -ID3758=PAMD_BIT_20 -ID3759=PAMD_BIT_21 +ID3750=JclVersionMajor +ID3751=JclVersionMinor +ID3752=JclVersionRelease +ID3753=JclwglCreateContext@HDC +ID3754=JclwglDeleteContext@HGLRC +ID3755=JclwglMakeCurrent@HDC@HGLRC +ID3756=JclWideFormat.pas +ID3757=JclWideStrings.pas +ID3758=JclWin32.pas +ID3759=JclWin32Ex.pas ID376=_IMAGE_THUNK_DATA64 -ID3760=PAMD_BIT_22 -ID3761=PAMD_BIT_23 -ID3762=PAMD_BIT_24 -ID3763=PAMD_BIT_25 -ID3764=PAMD_BIT_26 -ID3765=PAMD_BIT_27 -ID3766=PAMD_BIT_28 -ID3767=PAMD_BIT_29 -ID3768=PAMD_BIT_30 -ID3769=PAMD_BIT_31 +ID3760=JclWin32ExFunctions +ID3761=JclWinMIDI.pas +ID3762=jedi.inc +ID3763=KelvinAbsoluteZero +ID3764=KelvinBoilingPoint +ID3765=KelvinFreezingPoint +ID3766=KelvinTo@TTemperatureType@Float +ID3767=KelvinToRankine@Float +ID3768=KelvinToReaumur@Float +ID3769=KLF_RESET ID377=_IMAGE_THUNK_DATA64.AddressOfData -ID3770=PAMD_BIT_6 -ID3771=PAMD_BIT_7 -ID3772=PAMD_BIT_9 -ID3773=PAMD_FREQUENCYID -ID3774=PAMD_SOFTTHERMCONTROL -ID3775=PAMD_TEMPSENSOR -ID3776=PAMD_THERMALMONITOR -ID3777=PAMD_THERMALTRIP -ID3778=PAMD_TSC_INVARIANT -ID3779=PAMD_VOLTAGEID +ID3770=KLF_SHIFTLOCK +ID3771=KYLIX +ID3772=kylix.inc +ID3773=LANA_ENUM +ID3774=LANGIDFROMLCID@LCID +ID3775=Largeint +ID3776=LastDayOfWeek@Integer@Integer@Integer +ID3777=LastWeekDay@Integer@Integer +ID3778=LastWeekDay@Integer@Integer@Integer +ID3779=LastWeekendDay@Integer@Integer ID378=_IMAGE_THUNK_DATA64.ForwarderString -ID3780=PAnonObjectHeader -ID3781=PAnsiCharOrNil@AnsiString -ID3782=PARM_ERROR_NONE -ID3783=PARM_ERROR_UNKNOWN -ID3784=PARMNUM_ALL -ID3785=PARMNUM_BASE_INFOLEVEL -ID3786=ParseCOMSDataOfCOMSDefinition@string@TEDISEFCompositeElement@TEDISEFDataObjectList -ID3787=ParseCOMSDataOfSEGSDefinition@string@TEDISEFCompositeElement@TEDISEFDataObjectList -ID3788=ParseELMSDataOfCOMSDefinition@string@TEDISEFElement@TEDISEFDataObjectList -ID3789=ParseELMSDataOfELMSDefinition@string@TEDISEFElement +ID3780=LastWeekendDay@Integer@Integer@Integer +ID3781=LibNotLoadedHandler +ID3782=LibrariesProcessesandThreads +ID3783=LibrariesProcessesandThreads.PortableExecutableFileFormat.APIHooking +ID3784=LibrariesProcessesandThreads.PortableExecutableFileFormat.DebugSection +ID3785=LibrariesProcessesandThreads.PortableExecutableFileFormat.DelphiCBuilderSpecific +ID3786=LibrariesProcessesandThreads.PortableExecutableFileFormat.ExportSection +ID3787=LibrariesProcessesandThreads.PortableExecutableFileFormat.Imageaccessunderdebugger +ID3788=LibrariesProcessesandThreads.PortableExecutableFileFormat.ImportSection +ID3789=LibrariesProcessesandThreads.PortableExecutableFileFormat.MappedImageRoutines ID379=_IMAGE_THUNK_DATA64.Function_ -ID3790=ParseELMSDataOfSEGSDefinition@string@TEDISEFElement@TEDISEFDataObjectList -ID3791=ParseLoopDataOfSETSDefinition@string@TEDISEFLoop@TEDISEFFile -ID3792=ParseSEGSDataOfSEGSDefinition@string@TEDISEFSegment@TEDISEFFile -ID3793=ParseSEGSDataOfSETSDefinition@string@TEDISEFSegment@TEDISEFFile -ID3794=ParseSetsDataOfSETSDefinition@string@TEDISEFSet@TEDISEFFile -ID3795=ParseTableDataOfSETSDefinition@string@TEDISEFTable@TEDISEFFile -ID3796=PAT_FLAG -ID3797=PathCanonicalize -ID3798=PathExtractPathDepth -ID3799=PathGetDepth +ID3790=LibrariesProcessesandThreads.PortableExecutableFileFormat.Miscellaneous +ID3791=LibrariesProcessesandThreads.PortableExecutableFileFormat.Nameunmangling +ID3792=LibrariesProcessesandThreads.PortableExecutableFileFormat.RelocationSection +ID3793=LibrariesProcessesandThreads.PortableExecutableFileFormat.ResourceSection +ID3794=LibrariesProcessesandThreads.PortableExecutableFileFormat.SimplePEHelpers +ID3795=LibrariesProcessesandThreads.PortableExecutableFileFormat.SmartNameComparison +ID3796=LibrariesProcessesandThreads.PortableExecutableFileFormat.ThreadedSearch +ID3797=LibrariesProcessesandThreads.PortableExecutableFileFormat.TJclPeImage +ID3798=LibrariesProcessesandThreads.PortableExecutableFileFormat.TJclPeImageBaseList +ID3799=LibrariesProcessesandThreads.PortableExecutableFileFormat.TJclPeImagesCache ID38=!!OVERLOADED_DeleteElements_TEDISegment ID380=_IMAGE_THUNK_DATA64.Ordinal -ID3800=PATHLEN -ID3801=PathListAddItems@string@string -ID3802=PathListDelItem@string@Integer -ID3803=PathListDelItems@string@string -ID3804=PathListGetItem@string@Integer -ID3805=PathListIncludeItems@string@string -ID3806=PathListItemCount@string -ID3807=PathListItemIndex@string@string -ID3808=PathListSetItem@string@Integer@string -ID3809=PBE_FLAG +ID3800=ListAddItems@string@string@string +ID3801=ListDelItem@string@string@Integer +ID3802=LISTEN_OUTSTANDING +ID3803=ListGetItem@string@string@Integer +ID3804=ListIncludeItems@string@string@string +ID3805=ListItemCount@string@string +ID3806=ListItemIndex@string@string@string +ID3807=ListRemoveItems@string@string@string +ID3808=ListSeparator +ID3809=ListSetItem@string@string@Integer@string ID381=_IMAGE_TLS_DIRECTORY32 -ID3810=PBoolean -ID3811=PByte -ID3812=PCardinal -ID3813=PCharVector -ID3814=PCLEANUI -ID3815=PClipCodes -ID3816=PClrMetadataHeader -ID3817=PClrStreamHeader -ID3818=PClrTableStreamHeader -ID3819=PColor32 +ID3810=LM20_CNLEN +ID3811=LM20_DEVLEN +ID3812=LM20_DNLEN +ID3813=LM20_GNLEN +ID3814=LM20_MAXCOMMENTSZ +ID3815=LM20_NNLEN +ID3816=LM20_PATHLEN +ID3817=LM20_PWLEN +ID3818=LM20_QNLEN +ID3819=LM20_RMLEN ID382=_IMAGE_TLS_DIRECTORY32.AddressOfCallBacks -ID3820=PColor32Array -ID3821=pcre -ID3822=pcre.pas -ID3823=PCRE_ANCHORED -ID3824=PCRE_AUTO_CALLOUT -ID3825=pcre_callout_block -ID3826=pcre_callout_block.callout_data -ID3827=pcre_callout_block.callout_number -ID3828=pcre_callout_block.capture_last -ID3829=pcre_callout_block.capture_top +ID3820=LM20_SNLEN +ID3821=LM20_STXTLEN +ID3822=LM20_UNCLEN +ID3823=LM20_UNLEN +ID3824=LMCSTR +ID3825=LMSTR +ID3826=Ln@TPolarComplex +ID3827=Ln10 +ID3828=Ln2 +ID3829=LnPi ID383=_IMAGE_TLS_DIRECTORY32.AddressOfIndex -ID3830=pcre_callout_block.current_position -ID3831=pcre_callout_block.next_item_length -ID3832=pcre_callout_block.offset_vector -ID3833=pcre_callout_block.pattern_position -ID3834=pcre_callout_block.start_match -ID3835=pcre_callout_block.subject -ID3836=pcre_callout_block.subject_length -ID3837=pcre_callout_block.version -ID3838=pcre_callout_callback -ID3839=pcre_callout_func +ID3830=Load7zFileAttribute@IInArchive@Integer@TJclCompressionItem +ID3831=Load7Zip +ID3832=LoadBZip2 +ID3833=LoadCaseMappingData +ID3834=LoadCharacterCategories +ID3835=LoadCombiningClassData +ID3836=LoadCompositionData +ID3837=LoadDecompositionData +ID3838=LOADED_IMAGE +ID3839=LoadLibraryShim@PWideChar@PWideChar@Pointer@HMODULE ID384=_IMAGE_TLS_DIRECTORY32.Characteristics -ID3840=PCRE_CASELESS -ID3841=pcre_compile -ID3842=pcre_compile@PChar@Integer@PPChar@PInteger@PChar -ID3843=pcre_compile_func -ID3844=pcre_compile2 -ID3845=pcre_compile2@PChar@Integer@PInteger@PPChar@PInteger@PChar -ID3846=pcre_compile2_func -ID3847=pcre_config -ID3848=pcre_config@Integer@Pointer -ID3849=pcre_config_func +ID3840=LoadNumberData +ID3841=LoadPCRE +ID3842=LoadSnmp +ID3843=LoadSnmpExtension@string +ID3844=LoadZLib +ID3845=LOCALE_IDEFAULTEBCDICCODEPAGE +ID3846=LOCALE_IDIGITSUBSTITUTION +ID3847=LOCALE_IPAPERSIZE +ID3848=LOCALE_NOUSEROVERRIDE +ID3849=LOCALE_RETURN_NUMBER ID385=_IMAGE_TLS_DIRECTORY32.EndAddressOfRawData -ID3850=PCRE_CONFIG_LINK_SIZE -ID3851=PCRE_CONFIG_MATCH_LIMIT -ID3852=PCRE_CONFIG_MATCH_LIMIT_RECURSION -ID3853=PCRE_CONFIG_NEWLINE -ID3854=PCRE_CONFIG_POSIX_MALLOC_THRESHOLD -ID3855=PCRE_CONFIG_STACKRECURSE -ID3856=PCRE_CONFIG_UNICODE_PROPERTIES -ID3857=PCRE_CONFIG_UTF8 -ID3858=pcre_copy_named_substring -ID3859=pcre_copy_named_substring@PPCRE@PChar@PInteger@Integer@PChar@PChar@Integer +ID3850=LOCALE_SENGCURRNAME +ID3851=LOCALE_SNATIVECURRNAME +ID3852=LOCALE_SSORTNAME +ID3853=LOCALE_SYEARMONTH +ID3854=LOCALE_USE_CP_ACP +ID3855=LOCALGROUP_INFO_0 +ID3856=LOCALGROUP_INFO_1 +ID3857=LOCALGROUP_INFO_1002 +ID3858=LOCALGROUP_MEMBERS_INFO_0 +ID3859=LOCALGROUP_MEMBERS_INFO_1 ID386=_IMAGE_TLS_DIRECTORY32.SizeOfZeroFill -ID3860=pcre_copy_named_substring_func -ID3861=pcre_copy_substring -ID3862=pcre_copy_substring@PChar@PInteger@Integer@Integer@PChar@Integer -ID3863=pcre_copy_substring_func -ID3864=pcre_dfa_exec -ID3865=pcre_dfa_exec@PPCRE@PPCREExtra@PChar@Integer@Integer@Integer@PInteger@Integer@PInteger@Integer -ID3866=pcre_dfa_exec_func -ID3867=PCRE_DFA_RESTART -ID3868=PCRE_DFA_SHORTEST -ID3869=PCRE_DOLLAR_ENDONLY +ID3860=LOCALGROUP_MEMBERS_INFO_2 +ID3861=LOCALGROUP_MEMBERS_INFO_3 +ID3862=LocalSystemAccount +ID3863=LocalSystemSCMDesiredAccess +ID3864=LockedAdd@Integer@Integer +ID3865=LockedCompareExchange@Integer@Integer@Integer +ID3866=LockedCompareExchange@Pointer@Pointer@Pointer +ID3867=LockedCompareExchange@TObject@TObject@TObject +ID3868=LockedDec@Integer +ID3869=LockedExchange@Integer@Integer ID387=_IMAGE_TLS_DIRECTORY32.StartAddressOfRawData -ID3870=PCRE_DOTALL -ID3871=PCRE_DUPNAMES -ID3872=PCRE_ERROR_BADCOUNT -ID3873=PCRE_ERROR_BADMAGIC -ID3874=PCRE_ERROR_BADOPTION -ID3875=PCRE_ERROR_BADPARTIAL -ID3876=PCRE_ERROR_BADUTF8 -ID3877=PCRE_ERROR_BADUTF8_OFFSET -ID3878=PCRE_ERROR_CALLOUT -ID3879=PCRE_ERROR_DFA_RECURSE +ID3870=LockedExchangeAdd@Integer@Integer +ID3871=LockedExchangeDec@Integer +ID3872=LockedExchangeInc@Integer +ID3873=LockedExchangeSub@Integer@Integer +ID3874=LockedInc@Integer +ID3875=LockedSub@Integer@Integer +ID3876=Log2 +ID3877=Log3 +ID3878=LogE +ID3879=LogPi ID388=_IMAGE_TLS_DIRECTORY64 -ID3880=PCRE_ERROR_DFA_UCOND -ID3881=PCRE_ERROR_DFA_UITEM -ID3882=PCRE_ERROR_DFA_UMLIMIT -ID3883=PCRE_ERROR_DFA_WSSIZE -ID3884=PCRE_ERROR_INTERNAL -ID3885=PCRE_ERROR_MATCHLIMIT -ID3886=PCRE_ERROR_NOMATCH -ID3887=PCRE_ERROR_NOMEMORY -ID3888=PCRE_ERROR_NOSUBSTRING -ID3889=PCRE_ERROR_NULL +ID3880=LONG_PTR +ID3881=LookupAccountBySid@PSID@WideString@WideString +ID3882=LookupAccountBySid@PSID@WideString@WideString@Boolean +ID3883=LowValidNaNTag +ID3884=LPCSTR +ID3885=LPCTSTR +ID3886=LPCWSTR +ID3887=LPGROUP_INFO_0 +ID3888=LPGROUP_INFO_1 +ID3889=LPLOCALGROUP_INFO_0 ID389=_IMAGE_TLS_DIRECTORY64.AddressOfCallBacks -ID3890=PCRE_ERROR_PARTIAL -ID3891=PCRE_ERROR_RECURSIONLIMIT -ID3892=PCRE_ERROR_UNKNOWN_NODE -ID3893=pcre_exec -ID3894=pcre_exec@PPCRE@PPCREExtra@PChar@Integer@Integer@Integer@PInteger@Integer -ID3895=pcre_exec_func -ID3896=PCRE_EXTENDED -ID3897=PCRE_EXTRA -ID3898=PCRE_EXTRA_CALLOUT_DATA -ID3899=PCRE_EXTRA_MATCH_LIMIT +ID3890=LPLOCALGROUP_INFO_1 +ID3891=LPLOCALGROUP_INFO_1002 +ID3892=LPLOCALGROUP_MEMBERS_INFO_0 +ID3893=LPLOCALGROUP_MEMBERS_INFO_1 +ID3894=LPLOCALGROUP_MEMBERS_INFO_2 +ID3895=LPLOCALGROUP_MEMBERS_INFO_3 +ID3896=LPOSVERSIONINFOEX +ID3897=LPOSVERSIONINFOEXA +ID3898=LPOSVERSIONINFOEXW +ID3899=LPSERVICE_DESCRIPTIONA ID39=!!OVERLOADED_DeleteElements_TEDIXMLSegment ID390=_IMAGE_TLS_DIRECTORY64.AddressOfIndex -ID3900=PCRE_EXTRA_MATCH_LIMIT_RECURSION -ID3901=PCRE_EXTRA_STUDY_DATA -ID3902=PCRE_EXTRA_TABLES -ID3903=PCRE_FIRSTLINE -ID3904=pcre_free_callback -ID3905=pcre_free_func -ID3906=pcre_free_substring -ID3907=pcre_free_substring@PChar -ID3908=pcre_free_substring_func -ID3909=pcre_free_substring_list +ID3900=LPSTR +ID3901=LPUSER_INFO_0 +ID3902=LPUSER_INFO_1 +ID3903=LPUSER_INFO_2 +ID3904=LPWSTR +ID3905=LRot@Integer@TBitRange +ID3906=LRot@Word@TBitRange +ID3907=LSA_HANDLE +ID3908=LSA_OBJECT_ATTRIBUTES +ID3909=LSA_STRING ID391=_IMAGE_TLS_DIRECTORY64.Characteristics -ID3910=pcre_free_substring_list@PChar -ID3911=pcre_free_substring_list_func -ID3912=pcre_fullinfo -ID3913=pcre_fullinfo@PPCRE@PPCREExtra@Integer@Pointer -ID3914=pcre_fullinfo_func -ID3915=pcre_get_named_substring -ID3916=pcre_get_named_substring@PPCRE@PChar@PInteger@Integer@PChar@PPChar -ID3917=pcre_get_named_substring_func -ID3918=pcre_get_stringnumber -ID3919=pcre_get_stringnumber@PPCRE@PChar +ID3910=LSA_UNICODE_STRING +ID3911=LsaClose@LSA_HANDLE +ID3912=LsaFreeMemory@Pointer +ID3913=LsaFreeReturnBuffer@Pointer +ID3914=LsaNtStatusToWinError@NTSTATUS +ID3915=LsaOpenPolicy@PLSA_UNICODE_STRING@LSA_OBJECT_ATTRIBUTES@ACCESS_MASK@LSA_HANDLE +ID3916=LsaQueryInformationPolicy@LSA_HANDLE@POLICY_INFORMATION_CLASS@Pointer +ID3917=lstat64@PChar@TStatBuf64 +ID3918=MAILSLOT_NO_MESSAGE +ID3919=MAILSLOT_WAIT_FOREVER ID392=_IMAGE_TLS_DIRECTORY64.EndAddressOfRawData -ID3920=pcre_get_stringnumber_func -ID3921=pcre_get_stringtable_entries -ID3922=pcre_get_stringtable_entries@PPCRE@PChar@PPChar@PPChar -ID3923=pcre_get_stringtable_entries_func -ID3924=pcre_get_substring -ID3925=pcre_get_substring@PChar@PInteger@Integer@Integer@PPChar -ID3926=pcre_get_substring_func -ID3927=pcre_get_substring_list -ID3928=pcre_get_substring_list@PChar@PInteger@Integer@PPPChar -ID3929=pcre_get_substring_list_func +ID3920=MakeExeName +ID3921=MAKEINTRESOURCE +ID3922=MAKEINTRESOURCEA +ID3923=MAKEINTRESOURCEW +ID3924=MAKELANGID@USHORT@USHORT +ID3925=MAKELCID@WORD@WORD +ID3926=MakeQuietNaN@Extended@TNaNTag +ID3927=MakeQuietNaN@Single@TNaNTag +ID3928=MakeSignalingNaN@Extended@TNaNTag +ID3929=MakeSignalingNaN@Single@TNaNTag ID393=_IMAGE_TLS_DIRECTORY64.SizeOfZeroFill -ID3930=pcre_info -ID3931=pcre_info@PPCRE@PInteger@PInteger -ID3932=PCRE_INFO_BACKREFMAX -ID3933=PCRE_INFO_CAPTURECOUNT -ID3934=PCRE_INFO_DEFAULT_TABLES -ID3935=PCRE_INFO_FIRSTCHAR -ID3936=PCRE_INFO_FIRSTTABLE -ID3937=pcre_info_func -ID3938=PCRE_INFO_LASTLITERAL -ID3939=PCRE_INFO_NAMECOUNT +ID3930=MAKESORTLCID@WORD@WORD@WORD +ID3931=MapAndLoad@PChar@PChar@LOADED_IMAGE@BOOL@BOOL +ID3932=MapiAddressTypeFAX +ID3933=MapiAddressTypeSMTP +ID3934=MapiAddressTypeTLX +ID3935=MapWindowRect@THandle@THandle@TRect +ID3936=MarshalInterMachineInterfaceInStream@TIID@IUnknown@IStream +ID3937=MarshalInterMachineInterfaceInVarArray@TIID@IUnknown@OleVariant +ID3938=MarshalInterProcessInterfaceInStream@TIID@IUnknown@IStream +ID3939=MarshalInterProcessInterfaceInVarArray@TIID@IUnknown@OleVariant ID394=_IMAGE_TLS_DIRECTORY64.StartAddressOfRawData -ID3940=PCRE_INFO_NAMEENTRYSIZE -ID3941=PCRE_INFO_NAMETABLE -ID3942=PCRE_INFO_OPTIONS -ID3943=PCRE_INFO_SIZE -ID3944=PCRE_INFO_STUDYSIZE -ID3945=pcre_maketables -ID3946=pcre_maketables_func -ID3947=pcre_malloc_callback -ID3948=pcre_malloc_func -ID3949=PCRE_MULTILINE +ID3940=MarshalInterThreadInterfaceInVarArray@TIID@IUnknown@OleVariant +ID3941=Mask8087Exceptions +ID3942=MATH_DOUBLE_PRECISION +ID3943=MATH_EXT_EXTREMEVALUES +ID3944=MATH_EXTENDED_PRECISION +ID3945=MATH_SINGLE_PRECISION +ID3946=MathRoutines +ID3947=Max@Cardinal@Cardinal +ID3948=Max@Int64@Int64 +ID3949=Max@Integer@Integer ID395=_ImageArchitectureEntry -ID3950=PCRE_NEWLINE_ANY -ID3951=PCRE_NEWLINE_CR -ID3952=PCRE_NEWLINE_CRLF -ID3953=PCRE_NEWLINE_LF -ID3954=PCRE_NO_AUTO_CAPTURE -ID3955=PCRE_NO_UTF8_CHECK -ID3956=PCRE_NOTBOL -ID3957=PCRE_NOTEMPTY -ID3958=PCRE_NOTEOL -ID3959=PCRE_PARTIAL +ID3950=Max@Shortint@Shortint +ID3951=Max@Smallint@Smallint +ID3952=Max@Word@Word +ID3953=MAX_CAPTURE_COUNT +ID3954=MAX_CLASS_NAME +ID3955=MAX_LANMAN_MESSAGE_ID +ID3956=MAX_NATURAL_ALIGNMENT +ID3957=MAX_NERR +ID3958=MAX_NESTING_DEPTH +ID3959=MAX_PACKAGE_NAME ID396=_ImageArchitectureEntry.FixupInstRVA -ID3960=pcre_refcount -ID3961=pcre_refcount@PPCRE@Integer -ID3962=pcre_refcount_func -ID3963=pcre_stack_free_callback -ID3964=pcre_stack_free_func -ID3965=pcre_stack_malloc_callback -ID3966=pcre_stack_malloc_func -ID3967=pcre_study -ID3968=pcre_study@PPCRE@Integer@PPChar -ID3969=pcre_study_func +ID3960=MAX_PATTERN_LENGTH +ID3961=MAX_PREFERRED_LENGTH +ID3962=MAX_QUANTIFY_REPEAT +ID3963=MaxAngle +ID3964=MAXCOMMENTSZ +ID3965=MAXDEVENTRIES +ID3966=MaxFactorial +ID3967=MaxFloatingPoint +ID3968=MAXIMUM_RESERVED_MANIFEST_RESOURCE_ID +ID3969=MaximumUCS2 ID397=_ImageArchitectureEntry.NewInst -ID3970=PCRE_UNGREEDY -ID3971=PCRE_UTF8 -ID3972=pcre_version -ID3973=pcre_version_func -ID3974=PData -ID3975=PDelphiSet -ID3976=PDFAState -ID3977=PDirectoryEntry -ID3978=PDirectoryHeader -ID3979=PDIRTYUI +ID3970=MaximumUCS4 +ID3971=MaximumUTF16 +ID3972=MAXLONGLONG +ID3973=MaxPrefixCut +ID3974=MaxStackTraceItems +ID3975=MaxStrCharCount +ID3976=MaxTanH +ID3977=MaxTerm +ID3978=MCA_FLAG +ID3979=MCE_FLAG ID398=_ImageArchitectureHeader -ID3980=PDllVersionInfo -ID3981=PDWORD_PTR -ID3982=PDWORDArray -ID3983=PeBorDependedPackages@TFileName@TStrings@Boolean@Boolean -ID3984=PeBorFormNames@TFileName@TStrings -ID3985=PeBorUnmangleName@string@string -ID3986=PeBorUnmangleName@string@string@TJclBorUmDescription -ID3987=PeBorUnmangleName@string@string@TJclBorUmDescription@Integer -ID3988=PeClearCheckSum@TFileName -ID3989=PeCreateRequiredImportList@TFileName@TStrings +ID3980=MemoryClassesandObjects +ID3981=MESSAGE_FILENAME +ID3982=METHOD_DIRECT_FROM_HARDWARE +ID3983=METHOD_DIRECT_TO_HARDWARE +ID3984=MIDICCAllNotesOff +ID3985=MIDICCAllSoundOff +ID3986=MIDICCBalance +ID3987=MIDICCBalanceLSB +ID3988=MIDICCBankSelect +ID3989=MIDICCBankSelectLSB ID399=_ImageArchitectureHeader.FirstEntryRVA -ID3990=PeDbgImgLibraryName32@THandle@TJclAddr32@string -ID3991=PeDbgImgNtHeaders32@THandle@TJclAddr32@TImageNtHeaders32 -ID3992=PeExportedNames@TFileName@TStrings -ID3993=PeExportedVariables@TFileName@TStrings -ID3994=PeFindMissingImports@TFileName@TStrings -ID3995=PeFindMissingImports@TStrings@TStrings -ID3996=PeGetNtHeaders32@TFileName@TImageNtHeaders32 -ID3997=PeGetNtHeaders64@TFileName@TImageNtHeaders64 -ID3998=PeInsertSection@TFileName@TStream@string -ID3999=PeMapFindResource@HMODULE@PChar@string +ID3990=MIDICCBreathControl +ID3991=MIDICCBreathControlLSB +ID3992=MIDICCCelesteDepth +ID3993=MIDICCChannelVolume +ID3994=MIDICCChannelVolumeLSB +ID3995=MIDICCChorusSendLevel +ID3996=MIDICCDataEntry +ID3997=MIDICCDataEntryDec +ID3998=MIDICCDataEntryInc +ID3999=MIDICCDataEntryLSB ID4=!!INTERFACES ID40=!!OVERLOADED_DeleteInterchange_TEDIFile ID400=_ImageArchitectureHeader.Mask -ID4000=PeMapImgExportedVariables@HMODULE@TStrings -ID4001=PeMapImgFindSection32@PImageNtHeaders32@string -ID4002=PeMapImgFindSection64@PImageNtHeaders64@string -ID4003=PeMapImgFindSectionFromModule@Pointer@string -ID4004=PeMapImgNtHeaders32@Pointer -ID4005=PeMapImgNtHeaders64@Pointer -ID4006=PeMapImgResolvePackageThunk@Pointer -ID4007=PeMapImgSections32@PImageNtHeaders32 -ID4008=PeMapImgSections64@PImageNtHeaders64 -ID4009=PeMapImgSize@Pointer +ID4000=MIDICCEffectControl +ID4001=MIDICCEffectControl2 +ID4002=MIDICCEffectControl2LSB +ID4003=MIDICCEffectControlLSB +ID4004=MIDICCEffects2Depth +ID4005=MIDICCEffects4Depth +ID4006=MIDICCEffects5Depth +ID4007=MIDICCExpression +ID4008=MIDICCExpressionLSB +ID4009=MIDICCFootController ID401=_IMAGEHLP_LINE -ID4010=PeMapImgTarget@Pointer -ID4011=PeReadLinkerTimeStamp@string -ID4012=PeRebaseImage32@TFileName@TJclAddr32@DWORD@DWORD -ID4013=PeRebaseImage64@TFileName@TJclAddr64@DWORD@DWORD -ID4014=PeResourceKindNames@TFileName@TJclPeResourceKind@TStrings -ID4015=Personality32Bit -ID4016=Personality64Bit -ID4017=PersonalityBCB -ID4018=PersonalityBDS -ID4019=PersonalityCSB +ID4010=MIDICCFootControllerLSB +ID4011=MIDICCGeneralPurpose1 +ID4012=MIDICCGeneralPurpose1LSB +ID4013=MIDICCGeneralPurpose2 +ID4014=MIDICCGeneralPurpose2LSB +ID4015=MIDICCGeneralPurpose3 +ID4016=MIDICCGeneralPurpose3LSB +ID4017=MIDICCGeneralPurpose4 +ID4018=MIDICCGeneralPurpose4LSB +ID4019=MIDICCGeneralPurpose5 ID402=_IMAGEHLP_LINE.Address -ID4020=PersonalityDelphi -ID4021=PersonalityDelphiDotNet -ID4022=PersonalityDesign -ID4023=PersonalityUnknown -ID4024=PersonalityVB -ID4025=PeUpdateLinkerTimeStamp@string@TDateTime -ID4026=PFILE_ALLOCATED_RANGE_BUFFER -ID4027=PFILE_ZERO_DATA_INFORMATION -ID4028=PFIND_NAME_BUFFER -ID4029=PFIND_NAME_HEADER +ID4020=MIDICCGeneralPurpose6 +ID4021=MIDICCGeneralPurpose7 +ID4022=MIDICCGeneralPurpose8 +ID4023=MIDICCHold2 +ID4024=MIDICCLegato +ID4025=MIDICCLocalControl +ID4026=MIDICCMainVolume +ID4027=MIDICCMainVolumeLSB +ID4028=MIDICCModulationWheel +ID4029=MIDICCModulationWheelLSB ID403=_IMAGEHLP_LINE.FileName -ID4030=PFindNameBuffer -ID4031=PFindNameHeader -ID4032=PFloat -ID4033=PFloat32 -ID4034=PFloat64 -ID4035=PFloat80 -ID4036=PFPO_DATA -ID4037=PFpoData -ID4038=PGE_FLAG -ID4039=PGlobalTypeInfo +ID4030=MIDICCMonoModeOn +ID4031=MIDICCNonRegParamNumLSB +ID4032=MIDICCNonRegParamNumMSB +ID4033=MIDICCOmniModeOff +ID4034=MIDICCOmniModeOn +ID4035=MIDICCPan +ID4036=MIDICCPanLSB +ID4037=MIDICCPhaserDepth +ID4038=MIDICCPolyModeOn +ID4039=MIDICCPortamento ID404=_IMAGEHLP_LINE.Key -ID4040=PGROUP_INFO_0 -ID4041=PGROUP_INFO_1 -ID4042=PGroupInfo0 -ID4043=PGroupInfo1 -ID4044=PHashArray -ID4045=PHashNode -ID4046=PHMODULE -ID4047=Pi -ID4048=PID_BEHAVIOR -ID4049=PID_CODEPAGE +ID4040=MIDICCPortamentoControl +ID4041=MIDICCPortamentoTime +ID4042=MIDICCPortamentoTimeLSB +ID4043=MIDICCRegParamNumLSB +ID4044=MIDICCRegParamNumMSB +ID4045=MIDICCResetAllControllers +ID4046=MIDICCReverbSendLevel +ID4047=MIDICCSoftPedal +ID4048=MIDICCSound1 +ID4049=MIDICCSound10 ID405=_IMAGEHLP_LINE.LineNumber -ID4050=PID_COMPUTERNAME -ID4051=PID_CONTROLPANEL_CATEGORY -ID4052=PID_DESCRIPTIONID -ID4053=PID_DICTIONARY -ID4054=PID_DISPLACED_DATE -ID4055=PID_DISPLACED_FROM -ID4056=PID_DISPLAY_PROPERTIES -ID4057=PID_FINDDATA -ID4058=PID_FIRST_NAME_DEFAULT -ID4059=PID_FIRST_USABLE +ID4050=MIDICCSound2 +ID4051=MIDICCSound3 +ID4052=MIDICCSound4 +ID4053=MIDICCSound5 +ID4054=MIDICCSound6 +ID4055=MIDICCSound7 +ID4056=MIDICCSound8 +ID4057=MIDICCSound9 +ID4058=MIDICCSustain +ID4059=MIDICCSustenuto ID406=_IMAGEHLP_LINE.SizeOfStruct -ID4060=PID_HTMLINFOTIPFILE -ID4061=PID_ILLEGAL -ID4062=PID_INTROTEXT -ID4063=PID_LINK_TARGET -ID4064=PID_LOCALE -ID4065=PID_MAX_READONLY -ID4066=PID_MIN_READONLY -ID4067=PID_MISC_ACCESSCOUNT -ID4068=PID_MISC_OWNER -ID4069=PID_MISC_PICS +ID4060=MIDICCTremoloDepth +ID4061=MIDIChannelMsgMask +ID4062=MIDIDataMask +ID4063=MIDIDataWordMask +ID4064=MidiInCheck@MMResult +ID4065=MIDIInvalidStatus +ID4066=MIDIMsgActiveSensing +ID4067=MIDIMsgAftertouch +ID4068=MIDIMsgChannelKeyPressure +ID4069=MIDIMsgContinueSequence ID407=_LANA_ENUM -ID4070=PID_MISC_STATUS -ID4071=PID_MODIFY_TIME -ID4072=PID_MSIRESTRICT -ID4073=PID_MSISOURCE -ID4074=PID_MSIVERSION -ID4075=PID_NETRESOURCE -ID4076=PID_NETWORKLOCATION -ID4077=PID_QUERY_RANK -ID4078=PID_SECURITY -ID4079=PID_SHARE_CSC_STATUS +ID4070=MIDIMsgControlChange +ID4071=MIDIMsgEOX +ID4072=MIDIMsgMTCQtrFrame +ID4073=MIDIMsgNoteOff +ID4074=MIDIMsgNoteOn +ID4075=MIDIMsgPitchWheelChange +ID4076=MIDIMsgPolyKeyPressure +ID4077=MIDIMsgProgramChange +ID4078=MIDIMsgSongPositionPtr +ID4079=MIDIMsgSongSelect ID408=_LANA_ENUM.lana -ID4080=PID_SYNC_COPY_IN -ID4081=PID_VOLUME_CAPACITY -ID4082=PID_VOLUME_FILESYSTEM -ID4083=PID_VOLUME_FREE -ID4084=PID_WHICHFOLDER -ID4085=PIDASI_AVG_DATA_RATE -ID4086=PIDASI_CHANNEL_COUNT -ID4087=PIDASI_COMPRESSION -ID4088=PIDASI_FORMAT -ID4089=PIDASI_SAMPLE_RATE +ID4080=MIDIMsgStartSequence +ID4081=MIDIMsgStopSequence +ID4082=MIDIMsgSysEx +ID4083=MIDIMsgSystemReset +ID4084=MIDIMsgTimingClock +ID4085=MIDIMsgTuneRequest +ID4086=MIDINoteToStr@TMIDINote +ID4087=MidiOut@Cardinal +ID4088=MIDIOut@Cardinal +ID4089=MidiOutCheck@MMResult ID409=_LANA_ENUM.length -ID4090=PIDASI_SAMPLE_SIZE -ID4091=PIDASI_STREAM_NAME -ID4092=PIDASI_STREAM_NUMBER -ID4093=PIDASI_TIMELENGTH -ID4094=PIDDI_THUMBNAIL -ID4095=PIDDRSI_DESCRIPTION -ID4096=PIDDRSI_PLAYCOUNT -ID4097=PIDDRSI_PLAYEXPIRES -ID4098=PIDDRSI_PLAYSTARTS -ID4099=PIDDRSI_PROTECTED +ID4090=MIDIPitchWheelCenter +ID4091=MIDISingleNoteTuningData@TMIDINote@Single +ID4092=MIME +ID4093=MIME_BUFFER_SIZE +ID4094=MIME_DECODED_LINE_BREAK +ID4095=MIME_ENCODED_LINE_BREAK +ID4096=MimeDecode@TDynByteArray@Cardinal@Cardinal@TDynByteArray@Cardinal +ID4097=MimeDecode@TDynByteArray@Cardinal@TDynByteArray +ID4098=MimeDecode@TDynByteArray@SizeInt@SizeInt@TDynByteArray@SizeInt +ID4099=MimeDecode@TDynByteArray@SizeInt@TDynByteArray ID41=!!OVERLOADED_DeleteInterchanges_TEDIFile ID410=_LOADED_IMAGE -ID4100=PIDDSI_BYTECOUNT -ID4101=PIDDSI_CATEGORY -ID4102=PIDDSI_COMPANY -ID4103=PIDDSI_DOCPARTS -ID4104=PIDDSI_HEADINGPAIR -ID4105=PIDDSI_HIDDENCOUNT -ID4106=PIDDSI_LINECOUNT -ID4107=PIDDSI_LINKSDIRTY -ID4108=PIDDSI_MANAGER -ID4109=PIDDSI_MMCLIPCOUNT +ID4100=MimeDecodeFile@AnsiString@AnsiString +ID4101=MimeDecodeFile@TFileName@TFileName +ID4102=MimeDecodePartial@TDynByteArray@Cardinal@Cardinal@TDynByteArray@Cardinal@Cardinal@Cardinal +ID4103=MimeDecodePartial@TDynByteArray@Cardinal@TDynByteArray@Cardinal@Cardinal +ID4104=MimeDecodePartial@TDynByteArray@SizeInt@SizeInt@TDynByteArray@SizeInt@Cardinal@Cardinal +ID4105=MimeDecodePartial@TDynByteArray@SizeInt@TDynByteArray@Cardinal@Cardinal +ID4106=MimeDecodePartialEnd@TDynByteArray@Cardinal@Cardinal +ID4107=MimeDecodePartialEnd@TDynByteArray@Cardinal@Cardinal@Cardinal +ID4108=MimeDecodePartialEnd@TDynByteArray@SizeInt@Cardinal@Cardinal +ID4109=MimeEncode@TDynByteArray@Cardinal@Cardinal@TDynByteArray@Cardinal ID411=_LOADED_IMAGE.Characteristics -ID4110=PIDDSI_NOTECOUNT -ID4111=PIDDSI_PARCOUNT -ID4112=PIDDSI_PRESFORMAT -ID4113=PIDDSI_SCALE -ID4114=PIDDSI_SLIDECOUNT -ID4115=PIDMSI_COPYRIGHT -ID4116=PIDMSI_EDITOR -ID4117=PIDMSI_OWNER -ID4118=PIDMSI_PRODUCTION -ID4119=PIDMSI_PROJECT +ID4110=MimeEncode@TDynByteArray@Cardinal@TDynByteArray +ID4111=MimeEncode@TDynByteArray@SizeInt@SizeInt@TDynByteArray@SizeInt +ID4112=MimeEncode@TDynByteArray@SizeInt@TDynByteArray +ID4113=MimeEncodedSizeNoCRLF@Cardinal +ID4114=MimeEncodedSizeNoCRLF@SizeInt +ID4115=MimeEncodeFile@AnsiString@AnsiString +ID4116=MimeEncodeFile@TFileName@TFileName +ID4117=MimeEncodeFileNoCRLF@AnsiString@AnsiString +ID4118=MimeEncodeFileNoCRLF@TFileName@TFileName +ID4119=MimeEncodeFullLines@@Cardinal@ ID412=_LOADED_IMAGE.fDOSImage -ID4120=PIDMSI_RATING -ID4121=PIDMSI_SEQUENCE_NO -ID4122=PIDMSI_SOURCE -ID4123=PIDMSI_STATUS -ID4124=PIDMSI_SUPPLIER -ID4125=PIDSI_ALBUM -ID4126=PIDSI_APPNAME -ID4127=PIDSI_ARTIST -ID4128=PIDSI_AUTHOR -ID4129=PIDSI_CHARCOUNT +ID4120=MimeEncodeFullLines@@SizeInt@ +ID4121=MimeEncodeFullLines@TDynByteArray@Cardinal@Cardinal@TDynByteArray@Cardinal +ID4122=MimeEncodeFullLines@TDynByteArray@Cardinal@TDynByteArray +ID4123=MimeEncodeFullLines@TDynByteArray@SizeInt@SizeInt@TDynByteArray@SizeInt +ID4124=MimeEncodeFullLines@TDynByteArray@SizeInt@TDynByteArray +ID4125=MimeEncodeNoCRLF@@Cardinal@ +ID4126=MimeEncodeNoCRLF@@SizeInt@ +ID4127=MimeEncodeNoCRLF@TDynByteArray@Cardinal@Cardinal@TDynByteArray@Cardinal +ID4128=MimeEncodeNoCRLF@TDynByteArray@Cardinal@TDynByteArray +ID4129=MimeEncodeNoCRLF@TDynByteArray@SizeInt@SizeInt@TDynByteArray@SizeInt ID413=_LOADED_IMAGE.FileHeader -ID4130=PIDSI_COMMENT -ID4131=PIDSI_COMMENTS -ID4132=PIDSI_CREATE_DTM -ID4133=PIDSI_DOC_SECURITY -ID4134=PIDSI_EDITTIME -ID4135=PIDSI_GENRE -ID4136=PIDSI_KEYWORDS -ID4137=PIDSI_LASTAUTHOR -ID4138=PIDSI_LASTPRINTED -ID4139=PIDSI_LASTSAVE_DTM +ID4130=MimeEncodeNoCRLF@TDynByteArray@SizeInt@TDynByteArray +ID4131=MimeEncodeStreamNoCRLF@TStream@TStream +ID4132=MimeEncodeStringNoCRLF@AnsiString +ID4133=Min@Cardinal@Cardinal +ID4134=Min@Int64@Int64 +ID4135=Min@Integer@Integer +ID4136=Min@Shortint@Shortint +ID4137=Min@Smallint@Smallint +ID4138=Min@Word@Word +ID4139=MIN_LANMAN_MESSAGE_ID ID414=_LOADED_IMAGE.fSystemImage -ID4140=PIDSI_LYRICS -ID4141=PIDSI_PAGECOUNT -ID4142=PIDSI_REVNUMBER -ID4143=PIDSI_SONGTITLE -ID4144=PIDSI_SUBJECT -ID4145=PIDSI_TEMPLATE -ID4146=PIDSI_THUMBNAIL -ID4147=PIDSI_TITLE -ID4148=PIDSI_TRACK -ID4149=PIDSI_WORDCOUNT +ID4140=MinedDoubleArray@Integer +ID4141=MinedSingleArray@Integer +ID4142=MinFloatingPoint +ID4143=MINIMUM_RESERVED_MANIFEST_RESOURCE_ID +ID4144=Miscellaneous +ID4145=MixerLeftRightToArray@Cardinal@Cardinal +ID4146=MMCheck@MCIERROR@string +ID4147=MMX_FLAG +ID4148=MoveArray@TDynAnsiStringArray@SizeInt@SizeInt@SizeInt +ID4149=MoveArray@TDynCardinalArray@SizeInt@SizeInt@SizeInt ID415=_LOADED_IMAGE.hFile -ID4150=PIDSI_YEAR -ID4151=PIDVSI_COMPRESSION -ID4152=PIDVSI_DATA_RATE -ID4153=PIDVSI_FRAME_COUNT -ID4154=PIDVSI_FRAME_HEIGHT -ID4155=PIDVSI_FRAME_RATE -ID4156=PIDVSI_FRAME_WIDTH -ID4157=PIDVSI_SAMPLE_SIZE -ID4158=PIDVSI_STREAM_NAME -ID4159=PIDVSI_STREAM_NUMBER +ID4150=MoveArray@TDynDoubleArray@SizeInt@SizeInt@SizeInt +ID4151=MoveArray@TDynExtendedArray@SizeInt@SizeInt@SizeInt +ID4152=MoveArray@TDynFloatArray@SizeInt@SizeInt@SizeInt +ID4153=MoveArray@TDynIInterfaceArray@Integer@Integer@Integer +ID4154=MoveArray@TDynIInterfaceArray@SizeInt@SizeInt@SizeInt +ID4155=MoveArray@TDynInt64Array@SizeInt@SizeInt@SizeInt +ID4156=MoveArray@TDynIntegerArray@Integer@Integer@Integer +ID4157=MoveArray@TDynIntegerArray@SizeInt@SizeInt@SizeInt +ID4158=MoveArray@TDynObjectArray@Integer@Integer@Integer +ID4159=MoveArray@TDynObjectArray@SizeInt@SizeInt@SizeInt ID416=_LOADED_IMAGE.LastRvaSection -ID4160=PIDVSI_TIMELENGTH -ID4161=PiExt -ID4162=PIMAGE_ARCHITECTURE_ENTRY -ID4163=PIMAGE_ARCHITECTURE_HEADER -ID4164=PIMAGE_ARCHIVE_MEMBER_HEADER -ID4165=PIMAGE_BASE_RELOCATION -ID4166=PIMAGE_BOUND_FORWARDER_REF -ID4167=PIMAGE_BOUND_IMPORT_DESCRIPTOR -ID4168=PIMAGE_COFF_SYMBOLS_HEADER -ID4169=PIMAGE_COR20_HEADER +ID4160=MoveArray@TDynPointerArray@SizeInt@SizeInt@SizeInt +ID4161=MoveArray@TDynSingleArray@SizeInt@SizeInt@SizeInt +ID4162=MoveArray@TDynSizeIntArray@SizeInt@SizeInt@SizeInt +ID4163=MoveArray@TDynStringArray@Integer@Integer@Integer +ID4164=MoveArray@TDynStringArray@SizeInt@SizeInt@SizeInt +ID4165=MoveArray@TDynUnicodeStringArray@SizeInt@SizeInt@SizeInt +ID4166=MoveArray@TDynWideStringArray@SizeInt@SizeInt@SizeInt +ID4167=MoveChar@string@Integer@string@Integer@Integer +ID4168=MoveChar@string@SizeInt@string@SizeInt@SizeInt +ID4169=MoveWideChar@@@Integer ID417=_LOADED_IMAGE.Links -ID4170=PIMAGE_DATA_DIRECTORY -ID4171=PIMAGE_DEBUG_MISC -ID4172=PIMAGE_EXPORT_DIRECTORY -ID4173=PIMAGE_FILE_HEADER -ID4174=PIMAGE_FUNCTION_ENTRY -ID4175=PIMAGE_FUNCTION_ENTRY64 -ID4176=PIMAGE_IMPORT_BY_NAME -ID4177=PIMAGE_IMPORT_DESCRIPTOR -ID4178=PIMAGE_LINENUMBER -ID4179=PIMAGE_LOAD_CONFIG_DIRECTORY +ID4170=MoveWideChar@@@SizeInt +ID4171=MS_NBF +ID4172=mscoree_dll +ID4173=mscoree_TLB.pas +ID4174=mscorlib_TLB.pas +ID4175=MSHelpServices_TLB.pas +ID4176=MSILIB +ID4177=MSR_FLAG +ID4178=MSTask.pas +ID4179=MTRR_FLAG ID418=_LOADED_IMAGE.MappedAddress -ID4180=PIMAGE_LOAD_CONFIG_DIRECTORY32 -ID4181=PIMAGE_LOAD_CONFIG_DIRECTORY64 -ID4182=PIMAGE_NT_HEADERS -ID4183=PIMAGE_NT_HEADERS32 -ID4184=PIMAGE_NT_HEADERS64 -ID4185=PIMAGE_OPTIONAL_HEADER32 -ID4186=PIMAGE_OPTIONAL_HEADER64 -ID4187=PIMAGE_RESOURCE_DATA_ENTRY -ID4188=PIMAGE_RESOURCE_DIR_STRING_U -ID4189=PIMAGE_RESOURCE_DIRECTORY +ID4180=MultiMedia +ID4181=MultiSzDup@PAnsiMultiSz +ID4182=MultiSzDup@PMultiSz +ID4183=MultiSzDup@PWideMultiSz +ID4184=MultiSzLength@PAnsiMultiSz +ID4185=MultiSzLength@PMultiSz +ID4186=MultiSzLength@PWideMultiSz +ID4187=MultiSzToStrings@TJclWideStrings@PWideMultiSz +ID4188=MultiSzToStrings@TStrings@PMultiSz +ID4189=MXCSR_DAZ ID419=_LOADED_IMAGE.ModuleName -ID4190=PIMAGE_RESOURCE_DIRECTORY_ENTRY -ID4191=PIMAGE_RESOURCE_DIRECTORY_STRING -ID4192=PIMAGE_ROM_HEADERS -ID4193=PIMAGE_ROM_OPTIONAL_HEADER -ID4194=PIMAGE_SECTION_HEADER -ID4195=PIMAGE_SEPARATE_DEBUG_HEADER -ID4196=PIMAGE_THUNK_DATA -ID4197=PIMAGE_THUNK_DATA32 -ID4198=PIMAGE_THUNK_DATA64 -ID4199=PIMAGE_TLS_CALLBACK +ID4190=MXCSR_DE +ID4191=MXCSR_DM +ID4192=MXCSR_FZ +ID4193=MXCSR_IE +ID4194=MXCSR_IM +ID4195=MXCSR_OE +ID4196=MXCSR_OM +ID4197=MXCSR_PE +ID4198=MXCSR_PM +ID4199=MXCSR_RC ID42=!!OVERLOADED_DeleteMessage_TEDIFunctionalGroup ID420=_LOADED_IMAGE.NumberOfSections -ID4200=PIMAGE_TLS_DIRECTORY -ID4201=PIMAGE_TLS_DIRECTORY32 -ID4202=PIMAGE_TLS_DIRECTORY64 -ID4203=PImageArchitectureEntry -ID4204=PImageArchitectureHeader -ID4205=PImageArchiveMemberHeader -ID4206=PImageCoffSymbolsHeader -ID4207=PImageCorILMethodFat -ID4208=PImageCorILMethodHeader -ID4209=PImageCorILMethodSectEH +ID4200=MXCSR_RC1 +ID4201=MXCSR_RC2 +ID4202=MXCSR_UE +ID4203=MXCSR_UM +ID4204=MXCSR_ZE +ID4205=MXCSR_ZM +ID4206=NA_LoopId +ID4207=NAME_BUFFER +ID4208=NAME_FLAGS_MASK +ID4209=NaN ID421=_LOADED_IMAGE.Sections -ID4210=PImageCorILMethodSectEHClauseFat -ID4211=PImageCorILMethodSectEHClauseSmall -ID4212=PImageCorILMethodSectEHFat -ID4213=PImageCorILMethodSectEHSmall -ID4214=PImageCorILMethodSectFat -ID4215=PImageCorILMethodSectHeader -ID4216=PImageCorILMethodSectSmall -ID4217=PImageCorILMethodTiny -ID4218=PImageCorVTableFixup -ID4219=PImageCorVTableFixupArray +ID4210=NATIVE_TYPE_MAX_CB +ID4211=NativeAck +ID4212=NativeBackslash +ID4213=NativeBackspace +ID4214=NativeBell +ID4215=NativeCan +ID4216=NativeCarriageReturn +ID4217=NativeComma +ID4218=NativeCrLf +ID4219=NativeDc1 ID422=_LOADED_IMAGE.SizeOfImage -ID4220=PImageDataDirectory -ID4221=PImageDebugMisc -ID4222=PImageFileHeader -ID4223=PImageFunctionEntry -ID4224=PImageFunctionEntry64 -ID4225=PIMAGEHLP_LINE -ID4226=PImageHlpLine -ID4227=PImageLineNumber -ID4228=PImageLoadConfigDirectory32 -ID4229=PImageLoadConfigDirectory64 +ID4220=NativeDc2 +ID4221=NativeDc3 +ID4222=NativeDc4 +ID4223=NativeDle +ID4224=NativeDoubleQuote +ID4225=NativeEm +ID4226=NativeEndOfFile +ID4227=NativeEnq +ID4228=NativeEot +ID4229=NativeEscape ID423=_LOCALGROUP_INFO_0 -ID4230=PImageNtHeaders -ID4231=PImageNtHeaders32 -ID4232=PImageNtHeaders64 -ID4233=PImageOptionalHeader32 -ID4234=PImageOptionalHeader64 -ID4235=PImageResourceDirectoryString -ID4236=PImageRomHeaders -ID4237=PImageRomOptionalHeader -ID4238=PImageSectionHeader -ID4239=PImageSeparateDebugHeader +ID4230=NativeEtb +ID4231=NativeEtx +ID4232=NativeFormFeed +ID4233=NativeForwardSlash +ID4234=NativeFs +ID4235=NativeGs +ID4236=NativeLineBreak +ID4237=NativeLineFeed +ID4238=NativeNak +ID4239=NativeNull ID424=_LOCALGROUP_INFO_0.lgrpi0_name -ID4240=PImageThunkData32 -ID4241=PImageThunkData64 -ID4242=PImageTlsDirectory32 -ID4243=PImageTlsDirectory64 -ID4244=PImgDelayDescrV1 -ID4245=PImgDelayDescrV2 -ID4246=PImportObjectHeader -ID4247=PInteger -ID4248=PiOn2 -ID4249=PiOn3 +ID4240=NativeRs +ID4241=NativeSi +ID4242=NativeSingleQuote +ID4243=NativeSo +ID4244=NativeSoh +ID4245=NativeSpace +ID4246=NativeStx +ID4247=NativeSyn +ID4248=NativeTab +ID4249=NativeUs ID425=_LOCALGROUP_INFO_1 -ID4250=PiOn4 -ID4251=PixelsToDialogUnitsX@Word -ID4252=PixelsToDialogUnitsY@Word -ID4253=PJclBinaryNode -ID4254=PJclBucket -ID4255=PJclByteArray -ID4256=PJclClrToken -ID4257=PJclDbgHeader -ID4258=PJclIntfBinaryNode -ID4259=PJclIntfIntfBucket +ID4250=NativeVerticalTab +ID4251=NCB +ID4252=NCBACTION +ID4253=NCBADDGRNAME +ID4254=NCBADDNAME +ID4255=NCBCALL +ID4256=NCBCANCEL +ID4257=NCBCHAINSEND +ID4258=NCBCHAINSENDNA +ID4259=NCBDELNAME ID426=_LOCALGROUP_INFO_1.lgrpi1_comment -ID4260=PJclIntfLinkedListItem -ID4261=PJclLinkedListItem -ID4262=PJclLocationInfo -ID4263=PJclMapAddress -ID4264=PJclMapLineNumber -ID4265=PJclMapProcName -ID4266=PJclMapSegment -ID4267=PJclMapSegmentClass -ID4268=PJclStrBinaryNode -ID4269=PJclStrBucket +ID4260=NCBDGRECV +ID4261=NCBDGRECVBC +ID4262=NCBDGSEND +ID4263=NCBDGSENDBC +ID4264=NCBFINDNAME +ID4265=NCBHANGUP +ID4266=NCBLANSTALERT +ID4267=NCBLISTEN +ID4268=NCBRECV +ID4269=NCBRECVANY ID427=_LOCALGROUP_INFO_1.lgrpi1_name -ID4270=PJclStrIntfBucket -ID4271=PJclStrLinkedListItem -ID4272=PJclStrStrBucket -ID4273=PJclTD32FileSignature -ID4274=PJmpTable -ID4275=PKeyboardState -ID4276=PLANA_ENUM -ID4277=PLangIdRec -ID4278=PLargeInteger -ID4279=PLATFORM_ID_DOS +ID4270=NCBSEND +ID4271=NCBSENDNA +ID4272=NCBSSTAT +ID4273=NCBTRACE +ID4274=NCBUNLINK +ID4275=Neg@TPolarComplex +ID4276=Neg@TRectComplex +ID4277=NegInfinity +ID4278=NERR_AccountExpired +ID4279=NERR_AccountLockedOut ID428=_LOCALGROUP_INFO_1002 -ID4280=PLATFORM_ID_NT -ID4281=PLATFORM_ID_OS2 -ID4282=PLATFORM_ID_OSF -ID4283=PLATFORM_ID_VMS -ID4284=PLineMappingEntry -ID4285=PLMSTR -ID4286=PLOADED_IMAGE -ID4287=PLoadedImage -ID4288=PLOCALGROUP_INFO_0 -ID4289=PLOCALGROUP_INFO_1 +ID4280=NERR_AccountUndefined +ID4281=NERR_AcctLimitExceeded +ID4282=NERR_ACFFileIOFail +ID4283=NERR_ACFNoParent +ID4284=NERR_ACFNoRoom +ID4285=NERR_ACFNotFound +ID4286=NERR_ACFNotLoaded +ID4287=NERR_ACFTooManyLists +ID4288=NERR_ActiveConns +ID4289=NERR_AddForwarded ID429=_LOCALGROUP_INFO_1002.lgrpi1002_comment -ID4290=PLOCALGROUP_INFO_1002 -ID4291=PLOCALGROUP_MEMBERS_INFO_0 -ID4292=PLOCALGROUP_MEMBERS_INFO_1 -ID4293=PLOCALGROUP_MEMBERS_INFO_2 -ID4294=PLOCALGROUP_MEMBERS_INFO_3 -ID4295=PLocalGroupInfo0 -ID4296=PLocalGroupInfo1 -ID4297=PLocalGroupInfo1002 -ID4298=PLocalGroupMembersInfo0 -ID4299=PLocalGroupMembersInfo1 +ID4290=NERR_AlertExists +ID4291=NERR_AlreadyExists +ID4292=NERR_AlreadyForwarded +ID4293=NERR_AlreadyLoggedOn +ID4294=NERR_BadAsgType +ID4295=NERR_BadComponent +ID4296=NERR_BadControlRecv +ID4297=NERR_BadDest +ID4298=NERR_BadDev +ID4299=NERR_BadDevString ID43=!!OVERLOADED_DeleteMessages_TEDIFunctionalGroup ID430=_LOCALGROUP_MEMBERS_INFO_0 -ID4300=PLocalGroupMembersInfo2 -ID4301=PLocalGroupMembersInfo3 -ID4302=PLONGLONG -ID4303=PLongWord -ID4304=PLSA_HANDLE -ID4305=PLSA_OBJECT_ATTRIBUTES -ID4306=PLSA_STRING -ID4307=PLSA_UNICODE_STRING -ID4308=PLsaObjectAttributes -ID4309=PLsaString +ID4300=NERR_BadDosFunction +ID4301=NERR_BadDosRetCode +ID4302=NERR_BadEventName +ID4303=NERR_BadFileCheckSum +ID4304=NERR_BadPassword +ID4305=NERR_BadPasswordCore +ID4306=NERR_BadQueueDevString +ID4307=NERR_BadQueuePriority +ID4308=NERR_BadReceive +ID4309=NERR_BadRecipient ID431=_LOCALGROUP_MEMBERS_INFO_0.lgrmi0_sid -ID4310=PLsaUnicodeString -ID4311=PMeteredSection -ID4312=PMetSectSharedInfo -ID4313=PMultiSz -ID4314=PNAME_BUFFER -ID4315=PNON_PAGED_DEBUG_INFO -ID4316=PNT_TIB32 -ID4317=PNT_TIB64 -ID4318=POffsetPairArray -ID4319=PolarComplex@Float@Float +ID4310=NERR_BadServiceName +ID4311=NERR_BadServiceProgName +ID4312=NERR_BadSource +ID4313=NERR_BadTransactConfig +ID4314=NERR_BadUasConfig +ID4315=NERR_BadUsername +ID4316=NERR_BASE +ID4317=NERR_BrowserConfiguredToNotRun +ID4318=NERR_BrowserNotStarted +ID4319=NERR_BrowserTableIncomplete ID432=_LOCALGROUP_MEMBERS_INFO_1 -ID4320=PolarComplex@TRectComplex -ID4321=POLICY_ACCOUNT_DOMAIN_INFO -ID4322=POLICY_ALL_ACCESS -ID4323=POLICY_AUDIT_LOG_ADMIN -ID4324=POLICY_CREATE_ACCOUNT -ID4325=POLICY_CREATE_PRIVILEGE -ID4326=POLICY_CREATE_SECRET -ID4327=POLICY_EXECUTE -ID4328=POLICY_GET_PRIVATE_INFORMATION -ID4329=POLICY_INFORMATION_CLASS +ID4320=NERR_BufTooSmall +ID4321=NERR_CallingRplSrvr +ID4322=NERR_CanNotGrowSegment +ID4323=NERR_CanNotGrowUASFile +ID4324=NERR_CantConnectRplSrvr +ID4325=NERR_CantOpenImageFile +ID4326=NERR_CantType +ID4327=NERR_CfgCompNotFound +ID4328=NERR_CfgParamNotFound +ID4329=NERR_ClientNameNotFound ID433=_LOCALGROUP_MEMBERS_INFO_1.lgrmi1_name -ID4330=POLICY_LOOKUP_NAMES -ID4331=POLICY_NOTIFICATION -ID4332=POLICY_READ -ID4333=POLICY_SERVER_ADMIN -ID4334=POLICY_SET_AUDIT_REQUIREMENTS -ID4335=POLICY_SET_DEFAULT_QUOTA_LIMITS -ID4336=POLICY_TRUST_ADMIN -ID4337=POLICY_VIEW_AUDIT_INFORMATION -ID4338=POLICY_VIEW_LOCAL_INFORMATION -ID4339=POLICY_WRITE +ID4330=NERR_CommDevInUse +ID4331=NERR_ComputerAccountNotFound +ID4332=NERR_DatabaseUpToDate +ID4333=NERR_DataTypeInvalid +ID4334=NERR_DCNotFound +ID4335=NERR_DefaultJoinRequired +ID4336=NERR_DelComputerName +ID4337=NERR_DeleteLater +ID4338=NERR_DestExists +ID4339=NERR_DestIdle ID434=_LOCALGROUP_MEMBERS_INFO_1.lgrmi1_sid -ID4340=PolygonAS -ID4341=PolygonFS -ID4342=PolygonTS -ID4343=PolyLineAS -ID4344=PolyLineFS -ID4345=PolyLineTS -ID4346=PolyPolygonAS -ID4347=PolyPolygonFS -ID4348=PolyPolygonTS -ID4349=POptexSharedInfo +ID4340=NERR_DestInvalidOp +ID4341=NERR_DestInvalidState +ID4342=NERR_DestNoRoom +ID4343=NERR_DestNotFound +ID4344=NERR_DeviceIsShared +ID4345=NERR_DeviceNotShared +ID4346=NERR_DeviceShareConflict +ID4347=NERR_DevInUse +ID4348=NERR_DevInvalidOpCode +ID4349=NERR_DevNotFound ID435=_LOCALGROUP_MEMBERS_INFO_1.lgrmi1_sidusage -ID4350=POSVERSIONINFOEX -ID4351=POSVERSIONINFOEXA -ID4352=POSVERSIONINFOEXW -ID4353=Power@TPolarComplex@Float -ID4354=Power@TPolarComplex@TRectComplex -ID4355=PowerInt@TPolarComplex@Integer -ID4356=PPalette32 -ID4357=PPChar -ID4358=PPCharArray -ID4359=PPCRE +ID4350=NERR_DevNotOpen +ID4351=NERR_DevNotRedirected +ID4352=NERR_DfsAlreadyShared +ID4353=NERR_DfsBadRenamePath +ID4354=NERR_DfsCantCreateJunctionPoint +ID4355=NERR_DfsCantRemoveDfsRoot +ID4356=NERR_DfsCantRemoveLastServerShare +ID4357=NERR_DfsChildOrParentInDfs +ID4358=NERR_DfsCyclicalName +ID4359=NERR_DfsDataIsIdentical ID436=_LOCALGROUP_MEMBERS_INFO_2 -ID4360=PPCREExtra -ID4361=PPCREIntArray -ID4362=PPHashNode -ID4363=PPointArray -ID4364=PPointer -ID4365=PPointerArray -ID4366=PPOLICY_ACCOUNT_DOMAIN_INFO -ID4367=PPOLICY_INFORMATION_CLASS -ID4368=PPolicyAccountDomainInfo -ID4369=PPolicyInformationClass +ID4360=NERR_DfsDuplicateService +ID4361=NERR_DfsInconsistent +ID4362=NERR_DfsInternalCorruption +ID4363=NERR_DfsInternalError +ID4364=NERR_DfsLeafVolume +ID4365=NERR_DfsNoSuchServer +ID4366=NERR_DfsNoSuchShare +ID4367=NERR_DfsNoSuchVolume +ID4368=NERR_DfsNotALeafVolume +ID4369=NERR_DfsNotSupportedInServerDfs ID437=_LOCALGROUP_MEMBERS_INFO_2.lgrmi2_domainandname -ID4370=PPPChar -ID4371=PRasDialDlg -ID4372=PREFIX_CUT_EQUAL -ID4373=PREFIX_CUT_LOWERCASE -ID4374=PREPARSE_DATA_BUFFER -ID4375=PREPARSE_GUID_DATA_BUFFER -ID4376=PREPARSE_POINT_INFORMATION -ID4377=PRIMARYLANGID@WORD -ID4378=PrintMemo@TMemo@TRect -ID4379=ProcByLevel +ID4370=NERR_DfsServerNotDfsAware +ID4371=NERR_DfsServerUpgraded +ID4372=NERR_DfsVolumeAlreadyExists +ID4373=NERR_DfsVolumeDataCorrupt +ID4374=NERR_DfsVolumeHasMultipleServers +ID4375=NERR_DfsVolumeIsInterDfs +ID4376=NERR_DfsVolumeIsOffline +ID4377=NERR_DifferentServers +ID4378=NERR_DriverNotFound +ID4379=NERR_DuplicateName ID438=_LOCALGROUP_MEMBERS_INFO_2.lgrmi2_sid -ID4380=PROCESSOR_ARCHITECTURE_AMD64 -ID4381=PROCESSOR_ARCHITECTURE_IA32_ON_WIN64 -ID4382=PROCESSOR_ARCHITECTURE_IA64 -ID4383=PROCESSOR_ARCHITECTURE_INTEL -ID4384=Product@TPolarComplex@TPolarComplex -ID4385=Product@TRectComplex@TRectComplex -ID4386=ProgIDExists@string -ID4387=ProjectTypeLibrary -ID4388=ProjectTypePackage -ID4389=ProjectTypeProgram +ID4380=NERR_DuplicateShare +ID4381=NERR_DupNameReboot +ID4382=NERR_ErrCommRunSrv +ID4383=NERR_ErrorExecingGhost +ID4384=NERR_ExecFailure +ID4385=NERR_FileIdNotFound +ID4386=NERR_GroupExists +ID4387=NERR_GroupNotFound +ID4388=NERR_GrpMsgProcessor +ID4389=NERR_ImageParamErr ID439=_LOCALGROUP_MEMBERS_INFO_2.lgrmi2_sidusage -ID4390=PRTL_OSVERSIONINFOEXW -ID4391=PSE_FLAG -ID4392=PSE36_FLAG -ID4393=PSegmentInfo -ID4394=PSegmentInfoArray -ID4395=PServiceDescriptionA -ID4396=PSESSION_BUFFER -ID4397=PSESSION_HEADER -ID4398=PSessionBuffer -ID4399=PSessionHeader +ID4390=NERR_IncompleteDel +ID4391=NERR_InternalError +ID4392=NERR_InUseBySpooler +ID4393=NERR_InvalidAPI +ID4394=NERR_InvalidComputer +ID4395=NERR_InvalidDatabase +ID4396=NERR_InvalidDevice +ID4397=NERR_InvalidLana +ID4398=NERR_InvalidLogonHours +ID4399=NERR_InvalidLogSeek ID44=!!OVERLOADED_DeleteProperty_TJclFilePropertySet ID440=_LOCALGROUP_MEMBERS_INFO_3 -ID4400=PSID_AND_ATTRIBUTES -ID4401=PSID_AND_ATTRIBUTES_ARRAY -ID4402=PSID_IDENTIFIER_AUTHORITY -ID4403=PSID_NAME_USE -ID4404=PSidAndAttributes -ID4405=PSidAndAttributesArray -ID4406=PSidNameUSe -ID4407=PSN_FLAG -ID4408=PSourceFileEntry -ID4409=PSourceModuleInfo +ID4400=NERR_InvalidMaxUsers +ID4401=NERR_InvalidUASOp +ID4402=NERR_InvalidWorkgroupName +ID4403=NERR_InvalidWorkstation +ID4404=NERR_IsDfsShare +ID4405=NERR_ItemNotFound +ID4406=NERR_JobInvalidState +ID4407=NERR_JobNoRoom +ID4408=NERR_JobNotFound +ID4409=NERR_LanmanIniError ID441=_LOCALGROUP_MEMBERS_INFO_3.lgrmi3_domainandname -ID4410=PsPePkgLibrary -ID4411=PStackInfo -ID4412=PSTGOPTIONS -ID4413=PSymbolInfo -ID4414=PSymbolInfos -ID4415=PTOKEN_USER -ID4416=PTokenUser -ID4417=PUcRange -ID4418=PUcState -ID4419=PUcStateList +ID4410=NERR_LastAdmin +ID4411=NERR_LineTooLong +ID4412=NERR_LocalDrive +ID4413=NERR_LocalForward +ID4414=NERR_LogFileChanged +ID4415=NERR_LogFileCorrupt +ID4416=NERR_LogonDomainExists +ID4417=NERR_LogonNoUserPath +ID4418=NERR_LogonScriptError +ID4419=NERR_LogonServerConflict ID442=_LSA_OBJECT_ATTRIBUTES -ID4420=PUcSymbolTableEntry -ID4421=PULargeInteger -ID4422=PULONGLONG -ID4423=PUnitVersionInfo -ID4424=PUREBuffer -ID4425=PUSER_INFO_0 -ID4426=PUSER_INFO_1 -ID4427=PUSER_INFO_2 -ID4428=PUserData -ID4429=PUserInfo0 +ID4420=NERR_LogonServerNotFound +ID4421=NERR_LogonsPaused +ID4422=NERR_LogonTrackingError +ID4423=NERR_LogOverflow +ID4424=NERR_MaxLenExceeded +ID4425=NERR_MsgAlreadyStarted +ID4426=NERR_MsgInitFailed +ID4427=NERR_MsgNotStarted +ID4428=NERR_MultipleNets +ID4429=NERR_NameInUse ID443=_LSA_OBJECT_ATTRIBUTES.Attributes -ID4430=PUserInfo1 -ID4431=PUserInfo2 -ID4432=PUTBMChar -ID4433=PUTBMSkip -ID4434=PWideMultiSz -ID4435=PWLEN -ID4436=PWordArray -ID4437=PWStringItem -ID4438=QNLEN -ID4439=QuickSort@IJclIntfList@Integer@Integer@TIntfCompare +ID4430=NERR_NameNotForwarded +ID4431=NERR_NameNotFound +ID4432=NERR_NameUsesIncompatibleCodePage +ID4433=NERR_NetlogonNotStarted +ID4434=NERR_NetNameNotFound +ID4435=NERR_NetNotStarted +ID4436=NERR_NetworkError +ID4437=NERR_NoAlternateServers +ID4438=NERR_NoCommDevs +ID4439=NERR_NoComputerName ID444=_LSA_OBJECT_ATTRIBUTES.Length -ID4440=QuickSort@IJclList@Integer@Integer@TCompare -ID4441=QuickSort@IJclStrList@Integer@Integer@TStrCompare -ID4442=Quotient@TRectComplex@TRectComplex -ID4443=RadPerCycle -ID4444=RadPerDeg -ID4445=RadPerGrad -ID4446=RadToDeg@Extended -ID4447=RadToDeg@Float -ID4448=RadToDeg@Single -ID4449=RadToGrad@Extended +ID4440=NERR_NoForwardName +ID4441=NERR_NonDosFloppyUsed +ID4442=NERR_NoNetworkResource +ID4443=NERR_NonValidatedLogon +ID4444=NERR_NoRoom +ID4445=NERR_NoRplBootSystem +ID4446=NERR_NoSuchAlert +ID4447=NERR_NoSuchConnection +ID4448=NERR_NoSuchServer +ID4449=NERR_NoSuchSession ID445=_LSA_OBJECT_ATTRIBUTES.ObjectName -ID4450=RadToGrad@Float -ID4451=RadToGrad@Single -ID4452=RankineAbsoluteZero -ID4453=RankineAtFahrenheitZero -ID4454=RankineBoilingPoint -ID4455=RankineFreezingPoint -ID4456=RankineTo@TTemperatureType@Float -ID4457=RankineToCelsius@Float -ID4458=RankineToFahrenheit@Float -ID4459=RankineToKelvin@Float +ID4450=NERR_NotInCache +ID4451=NERR_NotInDispatchTbl +ID4452=NERR_NotLocalDomain +ID4453=NERR_NotLocalName +ID4454=NERR_NotLoggedOn +ID4455=NERR_NotPrimary +ID4456=NERR_OpenFiles +ID4457=NERR_PasswordCantChange +ID4458=NERR_PasswordExpired +ID4459=NERR_PasswordFilterError ID446=_LSA_OBJECT_ATTRIBUTES.RootDirectory -ID4460=RankineToReaumur@Float -ID4461=RASDIALDLG -ID4462=RatioDegToGrad -ID4463=RatioDegToRad -ID4464=RatioGradToDeg -ID4465=RatioGradToRad -ID4466=RatioRadToDeg -ID4467=RatioRadToGrad -ID4468=RDFN_AgencyCodeId -ID4469=RDFN_Description +ID4460=NERR_PasswordHistConflict +ID4461=NERR_PasswordMismatch +ID4462=NERR_PasswordMustChange +ID4463=NERR_PasswordNotComplexEnough +ID4464=NERR_PasswordTooLong +ID4465=NERR_PasswordTooRecent +ID4466=NERR_PasswordTooShort +ID4467=NERR_PausedRemote +ID4468=NERR_PersonalSku +ID4469=NERR_ProcNoRespond ID447=_LSA_OBJECT_ATTRIBUTES.SecurityDescriptor -ID4470=RDFN_FGDescription -ID4471=RDFN_FunctionalGroupId -ID4472=RDFN_ICDescription -ID4473=RDFN_Id -ID4474=RDFN_MaximumLength -ID4475=RDFN_MaximumLoopRepeat -ID4476=RDFN_MaximumUsage -ID4477=RDFN_MinimumLength -ID4478=RDFN_Notes -ID4479=RDFN_OwnerLoopId +ID4470=NERR_ProcNotFound +ID4471=NERR_ProfileCleanup +ID4472=NERR_ProfileFileTooBig +ID4473=NERR_ProfileLoadErr +ID4474=NERR_ProfileOffset +ID4475=NERR_ProfileSaveErr +ID4476=NERR_ProfileUnknownCmd +ID4477=NERR_ProgNeedsExtraMem +ID4478=NERR_QExists +ID4479=NERR_QInvalidState ID448=_LSA_OBJECT_ATTRIBUTES.SecurityQualityOfService -ID4480=RDFN_ParentLoopId -ID4481=RDFN_Position -ID4482=RDFN_RequirementDesignator -ID4483=RDFN_Section -ID4484=RDFN_StandardId -ID4485=RDFN_TransSetDesc -ID4486=RDFN_TransSetId -ID4487=RDFN_Type -ID4488=RDFN_VersionId -ID4489=RDFN_VersionReleaseId +ID4480=NERR_QNoRoom +ID4481=NERR_QNotFound +ID4482=NERR_QueueNotFound +ID4483=NERR_RedirectedPath +ID4484=NERR_RemoteBootFailed +ID4485=NERR_RemoteErr +ID4486=NERR_RemoteFull +ID4487=NERR_RemoteOnly +ID4488=NERR_ResourceExists +ID4489=NERR_ResourceNotFound ID449=_LSA_STRING -ID4490=ReadKey -ID4491=ReadMessageCheck -ID4492=ReadMessageData -ID4493=ReadMessageStrings -ID4494=real_pcre -ID4495=real_pcre_extra -ID4496=real_pcre_extra.callout_data -ID4497=real_pcre_extra.flags -ID4498=real_pcre_extra.match_limit -ID4499=real_pcre_extra.match_limit_recursion +ID4490=NERR_RPL_CONNECTED +ID4491=NERR_RplAdapterInfoCorrupted +ID4492=NERR_RplAdapterNameUnavailable +ID4493=NERR_RplAdapterNotFound +ID4494=NERR_RplBackupDatabase +ID4495=NERR_RplBadDatabase +ID4496=NERR_RplBadRegistry +ID4497=NERR_RplBootInfoCorrupted +ID4498=NERR_RplBootInUse +ID4499=NERR_RplBootNameUnavailable ID45=!!OVERLOADED_DeletePropertySet_TJclFileSummary ID450=_LSA_STRING.Buffer -ID4500=real_pcre_extra.study_data -ID4501=real_pcre_extra.tables -ID4502=ReaumurAbsoluteZero -ID4503=ReaumurBoilingPoint -ID4504=ReaumurFreezingPoint -ID4505=ReaumurTo@TTemperatureType@Float -ID4506=ReaumurToCelsius@Float -ID4507=ReaumurToFahrenheit@Float -ID4508=ReaumurToKelvin@Float -ID4509=ReaumurToRankine@Float +ID4500=NERR_RplBootNotFound +ID4501=NERR_RplBootRestart +ID4502=NERR_RplBootServiceTerm +ID4503=NERR_RplBootStartFailed +ID4504=NERR_RplCannotEnum +ID4505=NERR_RplConfigInfoCorrupted +ID4506=NERR_RplConfigNameUnavailable +ID4507=NERR_RplConfigNotEmpty +ID4508=NERR_RplConfigNotFound +ID4509=NERR_RplIncompatibleProfile ID451=_LSA_STRING.Length -ID4510=ReBaseImage@PAnsiChar@PAnsiChar@BOOL@BOOL@BOOL@ULONG@ULONG@ULONG_PTR@ULONG@ULONG_PTR@ULONG -ID4511=ReBaseImage64@PAnsiChar@PAnsiChar@BOOL@BOOL@BOOL@ULONG@ULONG@TJclAddr64@ULONG@TJclAddr64@ULONG -ID4512=RectComplex@Float@Float -ID4513=RectComplex@TPolarComplex -ID4514=RectFitToScreen@TRect -ID4515=RedComponent@TColor32 -ID4516=REG_BINARY -ID4517=REG_DWORD -ID4518=REG_DWORD_BIG_ENDIAN -ID4519=REG_DWORD_LITTLE_ENDIAN +ID4510=NERR_RplInternal +ID4511=NERR_RplLoadrDiskErr +ID4512=NERR_RplLoadrNetBiosErr +ID4513=NERR_RplNeedsRPLUSERAcct +ID4514=NERR_RplNoAdaptersStarted +ID4515=NERR_RplNotRplServer +ID4516=NERR_RplProfileInfoCorrupted +ID4517=NERR_RplProfileNameUnavailable +ID4518=NERR_RplProfileNotEmpty +ID4519=NERR_RplProfileNotFound ID452=_LSA_STRING.MaximumLength -ID4520=REG_EXPAND_SZ -ID4521=REG_FULL_RESOURCE_DESCRIPTOR -ID4522=REG_LINK -ID4523=REG_MULTI_SZ -ID4524=REG_NONE -ID4525=REG_QWORD -ID4526=REG_QWORD_LITTLE_ENDIAN -ID4527=REG_RESOURCE_LIST -ID4528=REG_RESOURCE_REQUIREMENTS_LIST -ID4529=REG_SZ +ID4520=NERR_RplRplfilesShare +ID4521=NERR_RplSrvrCallFailed +ID4522=NERR_RplVendorInfoCorrupted +ID4523=NERR_RplVendorNameUnavailable +ID4524=NERR_RplVendorNotFound +ID4525=NERR_RplWkstaInfoCorrupted +ID4526=NERR_RplWkstaNameUnavailable +ID4527=NERR_RplWkstaNeedsUserAcct +ID4528=NERR_RplWkstaNotFound +ID4529=NERR_RunSrvPaused ID453=_LSA_UNICODE_STRING -ID4530=RegCreateKey@DelphiHKEY@string@string -ID4531=RegisterCLSIDInCategory@TGUID@TGUID -ID4532=REGISTERED -ID4533=REGISTERING -ID4534=RegisterUnitVersion@THandle@TUnitVersionInfo -ID4535=RegistryandInifiles -ID4536=RegKeyDelimiter -ID4537=RegReadAnsiStringEx@DelphiHKEY@AnsiString@AnsiString@AnsiString@Boolean -ID4538=RegReadBinaryEx@DelphiHKEY@string@string@@Cardinal@Cardinal@Boolean -ID4539=RegReadCardinalEx@DelphiHKEY@string@string@Cardinal@Boolean +ID4530=NERR_ServerNotStarted +ID4531=NERR_ServiceCtlBusy +ID4532=NERR_ServiceCtlNotValid +ID4533=NERR_ServiceCtlTimeout +ID4534=NERR_ServiceEntryLocked +ID4535=NERR_ServiceInstalled +ID4536=NERR_ServiceKillProc +ID4537=NERR_ServiceNotCtrl +ID4538=NERR_ServiceNotInstalled +ID4539=NERR_ServiceNotStarting ID454=_LSA_UNICODE_STRING.Buffer -ID4540=RegReadDouble@DelphiHKEY@string@string -ID4541=RegReadDoubleDef@DelphiHKEY@string@string@Double -ID4542=RegReadDoubleEx@DelphiHKEY@string@string@Double@Boolean -ID4543=RegReadDWORDEx@DelphiHKEY@string@string@DWORD@Boolean -ID4544=RegReadExtended@DelphiHKEY@string@string -ID4545=RegReadExtendedDef@DelphiHKEY@string@string@Extended -ID4546=RegReadExtendedEx@DelphiHKEY@string@string@Extended@Boolean -ID4547=RegReadInt64Ex@DelphiHKEY@string@string@Int64@Boolean -ID4548=RegReadIntegerEx@DelphiHKEY@string@string@Integer@Boolean -ID4549=RegReadMultiSz@DelphiHKEY@string@string +ID4540=NERR_ServiceTableFull +ID4541=NERR_ServiceTableLocked +ID4542=NERR_SetupAlreadyJoined +ID4543=NERR_SetupDomainController +ID4544=NERR_SetupNotJoined +ID4545=NERR_ShareMem +ID4546=NERR_ShareNotFound +ID4547=NERR_SourceIsDir +ID4548=NERR_SpeGroupOp +ID4549=NERR_SpoolerNotLoaded ID455=_LSA_UNICODE_STRING.Length -ID4550=RegReadMultiSz@DelphiHKEY@string@string@TStrings -ID4551=RegReadMultiSzDef@DelphiHKEY@string@string@PMultiSz -ID4552=RegReadMultiSzDef@DelphiHKEY@string@string@TStrings@TStrings -ID4553=RegReadMultiSzEx@DelphiHKEY@string@string@PMultiSz@Boolean -ID4554=RegReadMultiSzEx@DelphiHKEY@string@string@TStrings@Boolean -ID4555=RegReadSingle@DelphiHKEY@string@string -ID4556=RegReadSingleDef@DelphiHKEY@string@string@Single -ID4557=RegReadSingleEx@DelphiHKEY@string@string@Single@Boolean -ID4558=RegReadStringEx@DelphiHKEY@string@string@AnsiString@Boolean -ID4559=RegReadUInt64Ex@DelphiHKEY@string@string@UInt64@Boolean +ID4550=NERR_SpoolNoMemory +ID4551=NERR_StandaloneLogon +ID4552=NERR_StartingRplBoot +ID4553=NERR_Success +ID4554=NERR_SyncRequired +ID4555=NERR_TimeDiffAtDC +ID4556=NERR_TmpFile +ID4557=NERR_TooManyAlerts +ID4558=NERR_TooManyConnections +ID4559=NERR_TooManyEntries ID456=_LSA_UNICODE_STRING.MaximumLength -ID4560=RegReadWideMultiSz@DelphiHKEY@string@string -ID4561=RegReadWideMultiSz@DelphiHKEY@string@string@TWideStrings -ID4562=RegReadWideMultiSzDef@DelphiHKEY@string@string@PWideMultiSz -ID4563=RegReadWideMultiSzDef@DelphiHKEY@string@string@TWideStrings@TWideStrings -ID4564=RegReadWideMultiSzEx@DelphiHKEY@string@string@PWideMultiSz@Boolean -ID4565=RegReadWideMultiSzEx@DelphiHKEY@string@string@TWideStrings@Boolean -ID4566=RegReadWideStringEx@DelphiHKEY@string@string@WideString@Boolean -ID4567=Regular Expressions -ID4568=RegularExpressions -ID4569=RegValueExists@DelphiHKEY@string@string +ID4560=NERR_TooManyFiles +ID4561=NERR_TooManyImageParams +ID4562=NERR_TooManyItems +ID4563=NERR_TooManyNames +ID4564=NERR_TooManyServers +ID4565=NERR_TooManySessions +ID4566=NERR_TooMuchData +ID4567=NERR_TruncatedBroadcast +ID4568=NERR_TryDownLevel +ID4569=NERR_UnableToAddName_F ID457=_NAME_BUFFER -ID4570=RegWriteAnsiString@DelphiHKEY@AnsiString@AnsiString@Cardinal@AnsiString -ID4571=RegWriteBool@DelphiHKEY@string@string@Cardinal@Boolean -ID4572=RegWriteCardinal@DelphiHKEY@string@string@Cardinal@Cardinal -ID4573=RegWriteDouble@DelphiHKEY@string@string@Cardinal@Double -ID4574=RegWriteDouble@DelphiHKEY@string@string@Double -ID4575=RegWriteDWORD@DelphiHKEY@string@string@DWORD -ID4576=RegWriteExtended@DelphiHKEY@string@string@Cardinal@Extended -ID4577=RegWriteExtended@DelphiHKEY@string@string@Extended -ID4578=RegWriteInt64@DelphiHKEY@string@string@Int64 -ID4579=RegWriteInteger@DelphiHKEY@string@string@Integer +ID4570=NERR_UnableToAddName_W +ID4571=NERR_UnableToDelName_F +ID4572=NERR_UnableToDelName_W +ID4573=NERR_UnknownDevDir +ID4574=NERR_UnknownServer +ID4575=NERR_UPSDriverNotStarted +ID4576=NERR_UPSInvalidCommPort +ID4577=NERR_UPSInvalidConfig +ID4578=NERR_UPSShutdownFailed +ID4579=NERR_UPSSignalAsserted ID458=_NAME_BUFFER.name -ID4580=RegWriteMultiSz@DelphiHKEY@string@string@Cardinal@PMultiSz -ID4581=RegWriteMultiSz@DelphiHKEY@string@string@Cardinal@TStrings -ID4582=RegWriteMultiSz@DelphiHKEY@string@string@PMultiSz -ID4583=RegWriteMultiSz@DelphiHKEY@string@string@TStrings -ID4584=RegWriteSingle@DelphiHKEY@string@string@Cardinal@Single -ID4585=RegWriteSingle@DelphiHKEY@string@string@Single -ID4586=RegWriteString@DelphiHKEY@string@string@string -ID4587=RegWriteUInt64@DelphiHKEY@string@string@UInt64 -ID4588=RegWriteWideMultiSz@DelphiHKEY@string@string@Cardinal@PWideMultiSz -ID4589=RegWriteWideMultiSz@DelphiHKEY@string@string@Cardinal@TWideStrings +ID4580=NERR_UseNotFound +ID4581=NERR_UserExists +ID4582=NERR_UserInGroup +ID4583=NERR_UserLogon +ID4584=NERR_UserNotFound +ID4585=NERR_UserNotInGroup +ID4586=NERR_WkstaInconsistentState +ID4587=NERR_WkstaNotStarted +ID4588=NERR_WriteFault +ID4589=NET_API_STATUS ID459=_NAME_BUFFER.name_flags -ID4590=RegWriteWideMultiSz@DelphiHKEY@string@string@PWideMultiSz -ID4591=RegWriteWideMultiSz@DelphiHKEY@string@string@TWideStrings -ID4592=RegWriteWideString@DelphiHKEY@string@string@WideString -ID4593=RemoveIgnoredException@TClass -ID4594=REPARSE_DATA_BUFFER -ID4595=REPARSE_GUID_DATA_BUFFER -ID4596=REPARSE_POINT_INFORMATION -ID4597=ReplacementCharacter -ID4598=ReplacesCorHdrNumericDefines -ID4599=ResetIStreamToStart@IStream +ID4590=NetApi32 +ID4591=NetApiBufferFree@Pointer +ID4592=Netbios@PNCB +ID4593=NETBIOS_NAME_LEN +ID4594=NetGroupAdd@LPCWSTR@DWORD@PByte@LPDWORD +ID4595=NetGroupAddUser@LPCWSTR@LPCWSTR@LPCWSTR +ID4596=NetGroupDel@LPCWSTR@LPCWSTR +ID4597=NetGroupDelUser@LPCWSTR@LPCWSTR@LPCWSTR +ID4598=NetGroupEnum@LPCWSTR@DWORD@PByte@DWORD@DWORD@DWORD@PDWORD_PTR +ID4599=NetGroupGetInfo@LPCWSTR@LPCWSTR@DWORD@PByte ID46=!!OVERLOADED_DeleteSegment_TEDIMessage ID460=_NAME_BUFFER.name_num -ID4600=Reverse@IJclIntfIterator@IJclIntfIterator -ID4601=Reverse@IJclIterator@IJclIterator -ID4602=Reverse@IJclStrIterator@IJclStrIterator -ID4603=ReverseBits@Cardinal -ID4604=ReverseBits@Int64 -ID4605=ReverseBits@Integer -ID4606=ReverseBits@Pointer@Integer -ID4607=ReverseBits@Shortint -ID4608=ReverseBits@Smallint -ID4609=ReverseBits@Word +ID4600=NetGroupGetUsers@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD@LPDWORD@LPDWORD@PDWORD_PTR +ID4601=NetGroupSetInfo@LPCWSTR@LPCWSTR@DWORD@PByte@LPDWORD +ID4602=NetGroupSetUsers@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD +ID4603=NetLocalGroupAdd@LPCWSTR@DWORD@PByte@LPDWORD +ID4604=NetLocalGroupAddMember@LPCWSTR@LPCWSTR@PSID +ID4605=NetLocalGroupAddMembers@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD +ID4606=NetLocalGroupDel@LPCWSTR@LPCWSTR +ID4607=NetLocalGroupDelMember@LPCWSTR@LPCWSTR@PSID +ID4608=NetLocalGroupDelMembers@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD +ID4609=NetLocalGroupEnum@LPCWSTR@DWORD@PByte@DWORD@DWORD@DWORD@PDWORD_PTR ID461=_NCB -ID4610=ReverseBytes@Int64 -ID4611=ReverseBytes@Integer -ID4612=ReverseBytes@Pointer@Integer -ID4613=ReverseBytes@Smallint -ID4614=ReverseBytes@Word -ID4615=RGBAToBGRA@Pointer@Pointer@Byte@Cardinal -ID4616=RGBToBGR@Pointer@Pointer@Byte@Cardinal -ID4617=RGBToBGR@Pointer@Pointer@Pointer@Pointer@Byte@Cardinal -ID4618=RGBToHLS@Single@Single@Single@Single@Single@Single -ID4619=RGBToHLS@TColorRef +ID4610=NetLocalGroupGetInfo@LPCWSTR@LPCWSTR@DWORD@PByte +ID4611=NetLocalGroupGetMembers@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD@LPDWORD@LPDWORD@PDWORD_PTR +ID4612=NetLocalGroupSetInfo@LPCWSTR@LPCWSTR@DWORD@PByte@LPDWORD +ID4613=NetLocalGroupSetMembers@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD +ID4614=NetUserAdd@LPCWSTR@DWORD@PByte@LPDWORD +ID4615=NetUserChangePassword@LPCWSTR@LPCWSTR@LPCWSTR@LPCWSTR +ID4616=NetUserDel@LPCWSTR@LPCWSTR +ID4617=NetUserEnum@LPCWSTR@DWORD@DWORD@PByte@DWORD@LPDWORD@LPDWORD@LPDWORD +ID4618=NetUserGetGroups@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD@LPDWORD@LPDWORD +ID4619=NetUserGetInfo@LPCWSTR@LPCWSTR@DWORD@PByte ID462=_NCB.ncb_buffer -ID4620=RGBToHLS@TColorVector -ID4621=RGBToHSL@Single@Single@Single@Single@Single@Single -ID4622=RGBToHSL@TColor32@Single@Single@Single -ID4623=RMLEN -ID4624=Root@TPolarComplex@Cardinal@Cardinal -ID4625=RoundToAllocGranularity64@Int64@Boolean -ID4626=RRot@Integer@TBitRange -ID4627=RRot@Word@TBitRange -ID4628=RsArchitect -ID4629=RsArgumentIsNull +ID4620=NetUserGetLocalGroups@LPCWSTR@LPCWSTR@DWORD@DWORD@PByte@DWORD@LPDWORD@LPDWORD +ID4621=NetUserModalsGet@LPCWSTR@DWORD@PByte +ID4622=NetUserModalsSet@LPCWSTR@DWORD@PByte@LPDWORD +ID4623=NetUserSetGroups@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD +ID4624=NetUserSetInfo@LPCWSTR@LPCWSTR@DWORD@PByte@LPDWORD +ID4625=NibbleMask +ID4626=NibblesPerByte +ID4627=NibblesPerCardinal +ID4628=NibblesPerInt64 +ID4629=NibblesPerInteger ID463=_NCB.ncb_callname -ID4630=RsArgumentOutOfRange -ID4631=RsAssertUnpairedEndUpdate -ID4632=RsAttrAnyFile -ID4633=RsAttrArchive -ID4634=RsAttrCompressed -ID4635=RsAttrDirectory -ID4636=RsAttrEncrypted -ID4637=RsAttrHidden -ID4638=RsAttrNormal -ID4639=RsAttrOffline +ID4630=NibblesPerShortint +ID4631=NibblesPerSmallint +ID4632=NibblesPerWord +ID4633=NLS_VALID_LOCALE_MASK +ID4634=NNLEN +ID4635=NON_PAGED_DEBUG_INFO +ID4636=NON_PAGED_DEBUG_SIGNATURE +ID4637=Norm@TPolarComplex +ID4638=Norm@TRectComplex +ID4639=NotCrc16HighBit ID464=_NCB.ncb_cmd_cplt -ID4640=RsAttrReadOnly -ID4641=RsAttrReparsePoint -ID4642=RsAttrSparseFile -ID4643=RsAttrSystemFile -ID4644=RsAttrTemporary -ID4645=RsAttrVolumeID -ID4646=RsBCBName -ID4647=RsBDSName -ID4648=RsBitmapExtension -ID4649=RsBitsPerSampleNotSupported +ID4640=NotCrc32HighBit +ID4641=NRC_ACTSES +ID4642=NRC_BADDR +ID4643=NRC_BRIDGE +ID4644=NRC_BUFLEN +ID4645=NRC_CANCEL +ID4646=NRC_CANOCCR +ID4647=NRC_CMDCAN +ID4648=NRC_CMDTMO +ID4649=NRC_DUPENV ID465=_NCB.ncb_command -ID4650=RsBlankSearchString -ID4651=RsBorlandStudioProjects -ID4652=RsCannotCreateDir -ID4653=RsCannotRaiseSignal -ID4654=RsCannotWriteRefStream -ID4655=RsCantConvertAddr64 -ID4656=RsCasedUnicodeChar -ID4657=RsCategoryUnicodeChar -ID4658=RsCDRomDrive -ID4659=RsCILCmdadd +ID4650=NRC_DUPNAME +ID4651=NRC_ENVNOTDEF +ID4652=NRC_IFBUSY +ID4653=NRC_ILLCMD +ID4654=NRC_ILLNN +ID4655=NRC_INCOMP +ID4656=NRC_INUSE +ID4657=NRC_INVADDRESS +ID4658=NRC_INVDDID +ID4659=NRC_LOCKFAIL ID466=_NCB.ncb_event -ID4660=RsCILCmdaddovf -ID4661=RsCILCmdaddovfun -ID4662=RsCILCmdand -ID4663=RsCILCmdarglist -ID4664=RsCILCmdbeq -ID4665=RsCILCmdbeqs -ID4666=RsCILCmdbge -ID4667=RsCILCmdbges -ID4668=RsCILCmdbgeun -ID4669=RsCILCmdbgeuns +ID4660=NRC_LOCTFUL +ID4661=NRC_MAXAPPS +ID4662=NRC_NAMCONF +ID4663=NRC_NAMERR +ID4664=NRC_NAMTFUL +ID4665=NRC_NOCALL +ID4666=NRC_NORES +ID4667=NRC_NORESOURCES +ID4668=NRC_NOSAPS +ID4669=NRC_NOWILD ID467=_NCB.ncb_lana_num -ID4670=RsCILCmdbgt -ID4671=RsCILCmdbgts -ID4672=RsCILCmdbgtun -ID4673=RsCILCmdbgtuns -ID4674=RsCILCmdble -ID4675=RsCILCmdbles -ID4676=RsCILCmdbleun -ID4677=RsCILCmdbleuns -ID4678=RsCILCmdblt -ID4679=RsCILCmdblts +ID4670=NRC_OPENERR +ID4671=NRC_OSRESNOTAV +ID4672=NRC_PENDING +ID4673=NRC_REMTFUL +ID4674=NRC_SABORT +ID4675=NRC_SCLOSED +ID4676=NRC_SNUMOUT +ID4677=NRC_SYSTEM +ID4678=NRC_TOOMANY +ID4679=NT_TIB32 ID468=_NCB.ncb_length -ID4680=RsCILCmdbltun -ID4681=RsCILCmdbltuns -ID4682=RsCILCmdbneun -ID4683=RsCILCmdbneuns -ID4684=RsCILCmdbox -ID4685=RsCILCmdbr -ID4686=RsCILCmdbreak -ID4687=RsCILCmdbrfalse -ID4688=RsCILCmdbrfalses -ID4689=RsCILCmdbrs +ID4680=NT_TIB32.ArbitraryUserPointer +ID4681=NT_TIB32.ExceptionList +ID4682=NT_TIB32.FiberData +ID4683=NT_TIB32.Self +ID4684=NT_TIB32.StackBase +ID4685=NT_TIB32.StackLimit +ID4686=NT_TIB32.SubSystemTib +ID4687=NT_TIB32.Version +ID4688=NT_TIB64 +ID4689=NT_TIB64.ArbitraryUserPointer ID469=_NCB.ncb_lsn -ID4690=RsCILCmdbrtrue -ID4691=RsCILCmdbrtrues -ID4692=RsCILCmdcall -ID4693=RsCILCmdcalli -ID4694=RsCILCmdcallvirt -ID4695=RsCILCmdcastclass -ID4696=RsCILCmdceq -ID4697=RsCILCmdcgt -ID4698=RsCILCmdcgtun -ID4699=RsCILCmdckfinite +ID4690=NT_TIB64.ExceptionList +ID4691=NT_TIB64.FiberData +ID4692=NT_TIB64.Self +ID4693=NT_TIB64.StackBase +ID4694=NT_TIB64.StackLimit +ID4695=NT_TIB64.SubSystemTib +ID4696=NT_TIB64.Version +ID4697=NtfsCreateHardLink +ID4698=NtfsCreateHardLinkA@AnsiString@AnsiString +ID4699=NtfsCreateHardLinkW@WideString@WideString ID47=!!OVERLOADED_DeleteSegment_TEDITransactionSet ID470=_NCB.ncb_name -ID4700=RsCILCmdclt -ID4701=RsCILCmdcltun -ID4702=RsCILCmdconvi -ID4703=RsCILCmdconvi1 -ID4704=RsCILCmdconvi2 -ID4705=RsCILCmdconvi4 -ID4706=RsCILCmdconvi8 -ID4707=RsCILCmdconvovfi -ID4708=RsCILCmdconvovfi1 -ID4709=RsCILCmdconvovfi1un +ID4700=NtfsDeleteHardLinks +ID4701=NtfsFindHardLinks +ID4702=NtfsGetCompression@string@Short +ID4703=NtfsGetCompression@TFileName@Short +ID4704=NtfsGetHardLinkInfo +ID4705=NtfsOpLockAckClosePending@THandle@TOverlapped +ID4706=NtfsOpLockBreakAckNo2@THandle@TOverlapped +ID4707=NtfsOpLockBreakAcknowledge@THandle@TOverlapped +ID4708=NtfsOpLockBreakNotify@THandle@TOverlapped +ID4709=NtfsRequestOpLock@THandle@TOpLock@TOverlapped ID471=_NCB.ncb_num -ID4710=RsCILCmdconvovfi2 -ID4711=RsCILCmdconvovfi2un -ID4712=RsCILCmdconvovfi4 -ID4713=RsCILCmdconvovfi4un -ID4714=RsCILCmdconvovfi8 -ID4715=RsCILCmdconvovfi8un -ID4716=RsCILCmdconvovfiun -ID4717=RsCILCmdconvovfu -ID4718=RsCILCmdconvovfu1 -ID4719=RsCILCmdconvovfu1un +ID4710=NTSTATUS +ID4711=NULL_USERSETINFO_PASSWD +ID4712=NullReferenceException +ID4713=OpenCdMciDevice@TMCI_Open_Parms@Char +ID4714=OpenGLColorToWinColor@Float@Float@Float +ID4715=OrdinalMathandLogic +ID4716=OrdToBinary@Cardinal +ID4717=OrdToBinary@Int64 +ID4718=OrdToBinary@Integer +ID4719=OrdToBinary@ShortInt ID472=_NCB.ncb_post -ID4720=RsCILCmdconvovfu2 -ID4721=RsCILCmdconvovfu2un -ID4722=RsCILCmdconvovfu4 -ID4723=RsCILCmdconvovfu4un -ID4724=RsCILCmdconvovfu8 -ID4725=RsCILCmdconvovfu8un -ID4726=RsCILCmdconvovfuun -ID4727=RsCILCmdconvr4 -ID4728=RsCILCmdconvr8 -ID4729=RsCILCmdconvrun +ID4720=OrdToBinary@SmallInt +ID4721=OrdToBinary@Word +ID4722=OS2MSG_FILENAME +ID4723=OSVERSIONINFOEX +ID4724=OSVERSIONINFOEXA +ID4725=OSVERSIONINFOEXW +ID4726=PACTION_HEADER +ID4727=PActionHeader +ID4728=PADAPTER_STATUS +ID4729=PAE_FLAG ID473=_NCB.ncb_reserve -ID4730=RsCILCmdconvu -ID4731=RsCILCmdconvu1 -ID4732=RsCILCmdconvu2 -ID4733=RsCILCmdconvu4 -ID4734=RsCILCmdconvu8 -ID4735=RsCILCmdcpblk -ID4736=RsCILCmdcpobj -ID4737=RsCILCmddiv -ID4738=RsCILCmddivun -ID4739=RsCILCmddup +ID4730=PAMD_100MHZSTEP +ID4731=PAMD_BIT_10 +ID4732=PAMD_BIT_11 +ID4733=PAMD_BIT_12 +ID4734=PAMD_BIT_13 +ID4735=PAMD_BIT_14 +ID4736=PAMD_BIT_15 +ID4737=PAMD_BIT_16 +ID4738=PAMD_BIT_17 +ID4739=PAMD_BIT_18 ID474=_NCB.ncb_retcode -ID4740=RsCILCmdendfilter -ID4741=RsCILCmdendfinally -ID4742=RsCILCmdinitblk -ID4743=RsCILCmdinitobj -ID4744=RsCILCmdisinst -ID4745=RsCILCmdjmp -ID4746=RsCILCmdldarg -ID4747=RsCILCmdldarg0 -ID4748=RsCILCmdldarg1 -ID4749=RsCILCmdldarg2 +ID4740=PAMD_BIT_19 +ID4741=PAMD_BIT_20 +ID4742=PAMD_BIT_21 +ID4743=PAMD_BIT_22 +ID4744=PAMD_BIT_23 +ID4745=PAMD_BIT_24 +ID4746=PAMD_BIT_25 +ID4747=PAMD_BIT_26 +ID4748=PAMD_BIT_27 +ID4749=PAMD_BIT_28 ID475=_NCB.ncb_rto -ID4750=RsCILCmdldarg3 -ID4751=RsCILCmdldarga -ID4752=RsCILCmdldargas -ID4753=RsCILCmdldargs -ID4754=RsCILCmdldci4 -ID4755=RsCILCmdldci40 -ID4756=RsCILCmdldci41 -ID4757=RsCILCmdldci42 -ID4758=RsCILCmdldci43 -ID4759=RsCILCmdldci44 +ID4750=PAMD_BIT_29 +ID4751=PAMD_BIT_30 +ID4752=PAMD_BIT_31 +ID4753=PAMD_BIT_6 +ID4754=PAMD_BIT_7 +ID4755=PAMD_BIT_9 +ID4756=PAMD_FREQUENCYID +ID4757=PAMD_HWPSTATE +ID4758=PAMD_SOFTTHERMCONTROL +ID4759=PAMD_TEMPSENSOR ID476=_NCB.ncb_sto -ID4760=RsCILCmdldci45 -ID4761=RsCILCmdldci46 -ID4762=RsCILCmdldci47 -ID4763=RsCILCmdldci48 -ID4764=RsCILCmdldci4m1 -ID4765=RsCILCmdldci4s -ID4766=RsCILCmdldci8 -ID4767=RsCILCmdldcr4 -ID4768=RsCILCmdldcr8 -ID4769=RsCILCmdldelema +ID4760=PAMD_THERMALMONITOR +ID4761=PAMD_THERMALTRIP +ID4762=PAMD_TSC_INVARIANT +ID4763=PAMD_VOLTAGEID +ID4764=PAnonObjectHeader +ID4765=PAnsiCharOrNil@AnsiString +ID4766=PAnsiCharVector +ID4767=PAnsiMultiSz +ID4768=ParamName@Integer@string@string@Boolean +ID4769=ParamPos@string@string@Boolean@string ID477=_NON_PAGED_DEBUG_INFO -ID4770=RsCILCmdldelemi -ID4771=RsCILCmdldelemi1 -ID4772=RsCILCmdldelemi2 -ID4773=RsCILCmdldelemi4 -ID4774=RsCILCmdldelemi8 -ID4775=RsCILCmdldelemr4 -ID4776=RsCILCmdldelemr8 -ID4777=RsCILCmdldelemref -ID4778=RsCILCmdldelemu1 -ID4779=RsCILCmdldelemu2 +ID4770=ParamValue@Integer@string@Boolean +ID4771=ParamValue@string@string@Boolean@string@Boolean +ID4772=PARM_ERROR_NONE +ID4773=PARM_ERROR_UNKNOWN +ID4774=PARMNUM_ALL +ID4775=PARMNUM_BASE_INFOLEVEL +ID4776=ParseCOMSDataOfCOMSDefinition@string@TEDISEFCompositeElement@TEDISEFDataObjectList +ID4777=ParseCOMSDataOfSEGSDefinition@string@TEDISEFCompositeElement@TEDISEFDataObjectList +ID4778=ParseELMSDataOfCOMSDefinition@string@TEDISEFElement@TEDISEFDataObjectList +ID4779=ParseELMSDataOfELMSDefinition@string@TEDISEFElement ID478=_NON_PAGED_DEBUG_INFO.Characteristics -ID4780=RsCILCmdldelemu4 -ID4781=RsCILCmdldfld -ID4782=RsCILCmdldflda -ID4783=RsCILCmdldftn -ID4784=RsCILCmdldindi -ID4785=RsCILCmdldindi1 -ID4786=RsCILCmdldindi2 -ID4787=RsCILCmdldindi4 -ID4788=RsCILCmdldindi8 -ID4789=RsCILCmdldindr4 +ID4780=ParseELMSDataOfSEGSDefinition@string@TEDISEFElement@TEDISEFDataObjectList +ID4781=ParseLoopDataOfSETSDefinition@string@TEDISEFLoop@TEDISEFFile +ID4782=ParseSEGSDataOfSEGSDefinition@string@TEDISEFSegment@TEDISEFFile +ID4783=ParseSEGSDataOfSETSDefinition@string@TEDISEFSegment@TEDISEFFile +ID4784=ParseSetsDataOfSETSDefinition@string@TEDISEFSet@TEDISEFFile +ID4785=ParseTableDataOfSETSDefinition@string@TEDISEFTable@TEDISEFFile +ID4786=PAT_FLAG +ID4787=PathCanonicalize +ID4788=PathExtractPathDepth +ID4789=PathGetDepth ID479=_NON_PAGED_DEBUG_INFO.CheckSum -ID4790=RsCILCmdldindr8 -ID4791=RsCILCmdldindref -ID4792=RsCILCmdldindu1 -ID4793=RsCILCmdldindu2 -ID4794=RsCILCmdldindu4 -ID4795=RsCILCmdldlen -ID4796=RsCILCmdldloc -ID4797=RsCILCmdldloc0 -ID4798=RsCILCmdldloc1 -ID4799=RsCILCmdldloc2 +ID4790=PathGetLocalizedPath@string +ID4791=PathGetPhysicalPath@string +ID4792=PATHLEN +ID4793=PathListAddItems@string@string +ID4794=PathListDelItem@string@Integer +ID4795=PathListDelItems@string@string +ID4796=PathListGetItem@string@Integer +ID4797=PathListIncludeItems@string@string +ID4798=PathListItemCount@string +ID4799=PathListItemIndex@string@string ID48=!!OVERLOADED_DeleteSegments_TEDIMessage ID480=_NON_PAGED_DEBUG_INFO.Flags -ID4800=RsCILCmdldloc3 -ID4801=RsCILCmdldloca -ID4802=RsCILCmdldlocas -ID4803=RsCILCmdldlocs -ID4804=RsCILCmdldnull -ID4805=RsCILCmdldobj -ID4806=RsCILCmdldsfld -ID4807=RsCILCmdldsflda -ID4808=RsCILCmdldstr -ID4809=RsCILCmdldtoken +ID4800=PathListSetItem@string@Integer@string +ID4801=PBE_FLAG +ID4802=PBoolean +ID4803=PByte +ID4804=PCardinal +ID4805=PCharVector +ID4806=PCharVectorCount@PCharVector +ID4807=PCharVectorToStrings@TStrings@PCharVector +ID4808=PCLEANUI +ID4809=PClipCodes ID481=_NON_PAGED_DEBUG_INFO.ImageBase -ID4810=RsCILCmdldvirtftn -ID4811=RsCILCmdleave -ID4812=RsCILCmdleaves -ID4813=RsCILCmdlocalloc -ID4814=RsCILCmdmkrefany -ID4815=RsCILCmdmul -ID4816=RsCILCmdmulovf -ID4817=RsCILCmdmulovfun -ID4818=RsCILCmdneg -ID4819=RsCILCmdnewarr +ID4810=PClrMetadataHeader +ID4811=PClrStreamHeader +ID4812=PClrTableStreamHeader +ID4813=PColor32 +ID4814=PColor32Array +ID4815=pcre +ID4816=pcre.pas +ID4817=PCRE_ANCHORED +ID4818=PCRE_AUTO_CALLOUT +ID4819=pcre_callout_block ID482=_NON_PAGED_DEBUG_INFO.Machine -ID4820=RsCILCmdnewobj -ID4821=RsCILCmdnop -ID4822=RsCILCmdnot -ID4823=RsCILCmdor -ID4824=RsCILCmdpop -ID4825=RsCILCmdprefix1 -ID4826=RsCILCmdprefix2 -ID4827=RsCILCmdprefix3 -ID4828=RsCILCmdprefix4 -ID4829=RsCILCmdprefix5 +ID4820=pcre_callout_block.callout_data +ID4821=pcre_callout_block.callout_number +ID4822=pcre_callout_block.capture_last +ID4823=pcre_callout_block.capture_top +ID4824=pcre_callout_block.current_position +ID4825=pcre_callout_block.next_item_length +ID4826=pcre_callout_block.offset_vector +ID4827=pcre_callout_block.pattern_position +ID4828=pcre_callout_block.start_match +ID4829=pcre_callout_block.subject ID483=_NON_PAGED_DEBUG_INFO.Signature -ID4830=RsCILCmdprefix6 -ID4831=RsCILCmdprefix7 -ID4832=RsCILCmdprefixref -ID4833=RsCILCmdrefanytype -ID4834=RsCILCmdrefanyval -ID4835=RsCILCmdrem -ID4836=RsCILCmdremun -ID4837=RsCILCmdret -ID4838=RsCILCmdrethrow -ID4839=RsCILCmdshl +ID4830=pcre_callout_block.subject_length +ID4831=pcre_callout_block.version +ID4832=pcre_callout_callback +ID4833=pcre_callout_func +ID4834=PCRE_CASELESS +ID4835=pcre_compile +ID4836=pcre_compile@PChar@Integer@PPChar@PInteger@PChar +ID4837=pcre_compile_func +ID4838=pcre_compile2 +ID4839=pcre_compile2@PChar@Integer@PInteger@PPChar@PInteger@PChar ID484=_NON_PAGED_DEBUG_INFO.Size -ID4840=RsCILCmdshr -ID4841=RsCILCmdshrun -ID4842=RsCILCmdsizeof -ID4843=RsCILCmdstarg -ID4844=RsCILCmdstargs -ID4845=RsCILCmdstelemi -ID4846=RsCILCmdstelemi1 -ID4847=RsCILCmdstelemi2 -ID4848=RsCILCmdstelemi4 -ID4849=RsCILCmdstelemi8 +ID4840=pcre_compile2_func +ID4841=pcre_config +ID4842=pcre_config@Integer@Pointer +ID4843=pcre_config_func +ID4844=PCRE_CONFIG_LINK_SIZE +ID4845=PCRE_CONFIG_MATCH_LIMIT +ID4846=PCRE_CONFIG_MATCH_LIMIT_RECURSION +ID4847=PCRE_CONFIG_NEWLINE +ID4848=PCRE_CONFIG_POSIX_MALLOC_THRESHOLD +ID4849=PCRE_CONFIG_STACKRECURSE ID485=_NON_PAGED_DEBUG_INFO.SizeOfImage -ID4850=RsCILCmdstelemr4 -ID4851=RsCILCmdstelemr8 -ID4852=RsCILCmdstelemref -ID4853=RsCILCmdstfld -ID4854=RsCILCmdstindi -ID4855=RsCILCmdstindi1 -ID4856=RsCILCmdstindi2 -ID4857=RsCILCmdstindi4 -ID4858=RsCILCmdstindi8 -ID4859=RsCILCmdstindr4 +ID4850=PCRE_CONFIG_UNICODE_PROPERTIES +ID4851=PCRE_CONFIG_UTF8 +ID4852=pcre_copy_named_substring +ID4853=pcre_copy_named_substring@PPCRE@PChar@PInteger@Integer@PChar@PChar@Integer +ID4854=pcre_copy_named_substring_func +ID4855=pcre_copy_substring +ID4856=pcre_copy_substring@PChar@PInteger@Integer@Integer@PChar@Integer +ID4857=pcre_copy_substring_func +ID4858=pcre_dfa_exec +ID4859=pcre_dfa_exec@PPCRE@PPCREExtra@PChar@Integer@Integer@Integer@PInteger@Integer@PInteger@Integer ID486=_NON_PAGED_DEBUG_INFO.TimeDateStamp -ID4860=RsCILCmdstindr8 -ID4861=RsCILCmdstindref -ID4862=RsCILCmdstloc -ID4863=RsCILCmdstloc0 -ID4864=RsCILCmdstloc1 -ID4865=RsCILCmdstloc2 -ID4866=RsCILCmdstloc3 -ID4867=RsCILCmdstlocs -ID4868=RsCILCmdstobj -ID4869=RsCILCmdstsfld +ID4860=pcre_dfa_exec_func +ID4861=PCRE_DFA_RESTART +ID4862=PCRE_DFA_SHORTEST +ID4863=PCRE_DOLLAR_ENDONLY +ID4864=PCRE_DOTALL +ID4865=PCRE_DUPNAMES +ID4866=PCRE_ERROR_BADCOUNT +ID4867=PCRE_ERROR_BADMAGIC +ID4868=PCRE_ERROR_BADOPTION +ID4869=PCRE_ERROR_BADPARTIAL ID487=_OSVERSIONINFOEXA -ID4870=RsCILCmdsub -ID4871=RsCILCmdsubovf -ID4872=RsCILCmdsubovfun -ID4873=RsCILCmdswitch -ID4874=RsCILCmdtail -ID4875=RsCILCmdthrow -ID4876=RsCILCmdunaligned -ID4877=RsCILCmdunbox -ID4878=RsCILCmdunused1 -ID4879=RsCILCmdunused10 +ID4870=PCRE_ERROR_BADUTF8 +ID4871=PCRE_ERROR_BADUTF8_OFFSET +ID4872=PCRE_ERROR_CALLOUT +ID4873=PCRE_ERROR_DFA_RECURSE +ID4874=PCRE_ERROR_DFA_UCOND +ID4875=PCRE_ERROR_DFA_UITEM +ID4876=PCRE_ERROR_DFA_UMLIMIT +ID4877=PCRE_ERROR_DFA_WSSIZE +ID4878=PCRE_ERROR_INTERNAL +ID4879=PCRE_ERROR_MATCHLIMIT ID488=_OSVERSIONINFOEXA.dwBuildNumber -ID4880=RsCILCmdunused11 -ID4881=RsCILCmdunused12 -ID4882=RsCILCmdunused13 -ID4883=RsCILCmdunused14 -ID4884=RsCILCmdunused15 -ID4885=RsCILCmdunused16 -ID4886=RsCILCmdunused17 -ID4887=RsCILCmdunused18 -ID4888=RsCILCmdunused19 -ID4889=RsCILCmdunused2 +ID4880=PCRE_ERROR_NOMATCH +ID4881=PCRE_ERROR_NOMEMORY +ID4882=PCRE_ERROR_NOSUBSTRING +ID4883=PCRE_ERROR_NULL +ID4884=PCRE_ERROR_PARTIAL +ID4885=PCRE_ERROR_RECURSIONLIMIT +ID4886=PCRE_ERROR_UNKNOWN_NODE +ID4887=pcre_exec +ID4888=pcre_exec@PPCRE@PPCREExtra@PChar@Integer@Integer@Integer@PInteger@Integer +ID4889=pcre_exec_func ID489=_OSVERSIONINFOEXA.dwMajorVersion -ID4890=RsCILCmdunused20 -ID4891=RsCILCmdunused21 -ID4892=RsCILCmdunused22 -ID4893=RsCILCmdunused23 -ID4894=RsCILCmdunused24 -ID4895=RsCILCmdunused25 -ID4896=RsCILCmdunused26 -ID4897=RsCILCmdunused27 -ID4898=RsCILCmdunused28 -ID4899=RsCILCmdunused29 +ID4890=PCRE_EXTENDED +ID4891=PCRE_EXTRA +ID4892=PCRE_EXTRA_CALLOUT_DATA +ID4893=PCRE_EXTRA_MATCH_LIMIT +ID4894=PCRE_EXTRA_MATCH_LIMIT_RECURSION +ID4895=PCRE_EXTRA_STUDY_DATA +ID4896=PCRE_EXTRA_TABLES +ID4897=PCRE_FIRSTLINE +ID4898=pcre_free_callback +ID4899=pcre_free_func ID49=!!OVERLOADED_DeleteSegments_TEDITransactionSet ID490=_OSVERSIONINFOEXA.dwMinorVersion -ID4900=RsCILCmdunused3 -ID4901=RsCILCmdunused30 -ID4902=RsCILCmdunused31 -ID4903=RsCILCmdunused32 -ID4904=RsCILCmdunused33 -ID4905=RsCILCmdunused34 -ID4906=RsCILCmdunused35 -ID4907=RsCILCmdunused36 -ID4908=RsCILCmdunused37 -ID4909=RsCILCmdunused38 +ID4900=pcre_free_substring +ID4901=pcre_free_substring@PChar +ID4902=pcre_free_substring_func +ID4903=pcre_free_substring_list +ID4904=pcre_free_substring_list@PChar +ID4905=pcre_free_substring_list_func +ID4906=pcre_fullinfo +ID4907=pcre_fullinfo@PPCRE@PPCREExtra@Integer@Pointer +ID4908=pcre_fullinfo_func +ID4909=pcre_get_named_substring ID491=_OSVERSIONINFOEXA.dwOSVersionInfoSize -ID4910=RsCILCmdunused39 -ID4911=RsCILCmdunused4 -ID4912=RsCILCmdunused40 -ID4913=RsCILCmdunused41 -ID4914=RsCILCmdunused42 -ID4915=RsCILCmdunused43 -ID4916=RsCILCmdunused44 -ID4917=RsCILCmdunused45 -ID4918=RsCILCmdunused46 -ID4919=RsCILCmdunused47 +ID4910=pcre_get_named_substring@PPCRE@PChar@PInteger@Integer@PChar@PPChar +ID4911=pcre_get_named_substring_func +ID4912=pcre_get_stringnumber +ID4913=pcre_get_stringnumber@PPCRE@PChar +ID4914=pcre_get_stringnumber_func +ID4915=pcre_get_stringtable_entries +ID4916=pcre_get_stringtable_entries@PPCRE@PChar@PPChar@PPChar +ID4917=pcre_get_stringtable_entries_func +ID4918=pcre_get_substring +ID4919=pcre_get_substring@PChar@PInteger@Integer@Integer@PPChar ID492=_OSVERSIONINFOEXA.dwPlatformId -ID4920=RsCILCmdunused48 -ID4921=RsCILCmdunused49 -ID4922=RsCILCmdunused5 -ID4923=RsCILCmdunused50 -ID4924=RsCILCmdunused51 -ID4925=RsCILCmdunused52 -ID4926=RsCILCmdunused53 -ID4927=RsCILCmdunused54 -ID4928=RsCILCmdunused55 -ID4929=RsCILCmdunused56 +ID4920=pcre_get_substring_func +ID4921=pcre_get_substring_list +ID4922=pcre_get_substring_list@PChar@PInteger@Integer@PPPChar +ID4923=pcre_get_substring_list_func +ID4924=pcre_info +ID4925=pcre_info@PPCRE@PInteger@PInteger +ID4926=PCRE_INFO_BACKREFMAX +ID4927=PCRE_INFO_CAPTURECOUNT +ID4928=PCRE_INFO_DEFAULT_TABLES +ID4929=PCRE_INFO_FIRSTCHAR ID493=_OSVERSIONINFOEXA.szCSDVersion -ID4930=RsCILCmdunused57 -ID4931=RsCILCmdunused58 -ID4932=RsCILCmdunused59 -ID4933=RsCILCmdunused6 -ID4934=RsCILCmdunused60 -ID4935=RsCILCmdunused61 -ID4936=RsCILCmdunused62 -ID4937=RsCILCmdunused63 -ID4938=RsCILCmdunused64 -ID4939=RsCILCmdunused65 +ID4930=PCRE_INFO_FIRSTTABLE +ID4931=pcre_info_func +ID4932=PCRE_INFO_LASTLITERAL +ID4933=PCRE_INFO_NAMECOUNT +ID4934=PCRE_INFO_NAMEENTRYSIZE +ID4935=PCRE_INFO_NAMETABLE +ID4936=PCRE_INFO_OPTIONS +ID4937=PCRE_INFO_SIZE +ID4938=PCRE_INFO_STUDYSIZE +ID4939=PCRE_LINKDLL ID494=_OSVERSIONINFOEXA.wProductType -ID4940=RsCILCmdunused66 -ID4941=RsCILCmdunused67 -ID4942=RsCILCmdunused68 -ID4943=RsCILCmdunused69 -ID4944=RsCILCmdunused7 -ID4945=RsCILCmdunused70 -ID4946=RsCILCmdunused8 -ID4947=RsCILCmdunused9 -ID4948=RsCILCmdvolatile -ID4949=RsCILCmdxor +ID4940=PCRE_LINKONREQUEST +ID4941=pcre_maketables +ID4942=pcre_maketables_func +ID4943=pcre_malloc_callback +ID4944=pcre_malloc_func +ID4945=PCRE_MULTILINE +ID4946=PCRE_NEWLINE_ANY +ID4947=PCRE_NEWLINE_CR +ID4948=PCRE_NEWLINE_CRLF +ID4949=PCRE_NEWLINE_LF ID495=_OSVERSIONINFOEXA.wReserved -ID4950=RsCILDescradd -ID4951=RsCILDescraddovf -ID4952=RsCILDescraddovfun -ID4953=RsCILDescrand -ID4954=RsCILDescrarglist -ID4955=RsCILDescrbeq -ID4956=RsCILDescrbeqs -ID4957=RsCILDescrbge -ID4958=RsCILDescrbges -ID4959=RsCILDescrbgeun +ID4950=PCRE_NO_AUTO_CAPTURE +ID4951=PCRE_NO_UTF8_CHECK +ID4952=PCRE_NOTBOL +ID4953=PCRE_NOTEMPTY +ID4954=PCRE_NOTEOL +ID4955=PCRE_PARTIAL +ID4956=pcre_refcount +ID4957=pcre_refcount@PPCRE@Integer +ID4958=pcre_refcount_func +ID4959=pcre_stack_free_callback ID496=_OSVERSIONINFOEXA.wServicePackMajor -ID4960=RsCILDescrbgeuns -ID4961=RsCILDescrbgt -ID4962=RsCILDescrbgts -ID4963=RsCILDescrbgtun -ID4964=RsCILDescrbgtuns -ID4965=RsCILDescrble -ID4966=RsCILDescrbles -ID4967=RsCILDescrbleun -ID4968=RsCILDescrbleuns -ID4969=RsCILDescrblt +ID4960=pcre_stack_free_func +ID4961=pcre_stack_malloc_callback +ID4962=pcre_stack_malloc_func +ID4963=PCRE_STATICLINK +ID4964=pcre_study +ID4965=pcre_study@PPCRE@Integer@PPChar +ID4966=pcre_study_func +ID4967=PCRE_UNGREEDY +ID4968=PCRE_UTF8 +ID4969=pcre_version ID497=_OSVERSIONINFOEXA.wServicePackMinor -ID4970=RsCILDescrblts -ID4971=RsCILDescrbltun -ID4972=RsCILDescrbltuns -ID4973=RsCILDescrbneun -ID4974=RsCILDescrbneuns -ID4975=RsCILDescrbox -ID4976=RsCILDescrbr -ID4977=RsCILDescrbreak -ID4978=RsCILDescrbrfalse -ID4979=RsCILDescrbrfalses +ID4970=pcre_version_func +ID4971=PData +ID4972=PDelphiSet +ID4973=PDFAState +ID4974=PDirectoryEntry +ID4975=PDirectoryHeader +ID4976=PDIRTYUI +ID4977=PDllVersionInfo +ID4978=PDWORD_PTR +ID4979=PDWORD_PTRArray ID498=_OSVERSIONINFOEXA.wSuiteMask -ID4980=RsCILDescrbrs -ID4981=RsCILDescrbrtrue -ID4982=RsCILDescrbrtrues -ID4983=RsCILDescrcall -ID4984=RsCILDescrcalli -ID4985=RsCILDescrcallvirt -ID4986=RsCILDescrcastclass -ID4987=RsCILDescrceq -ID4988=RsCILDescrcgt -ID4989=RsCILDescrcgtun +ID4980=PDWORDArray +ID4981=PeBorDependedPackages@TFileName@TStrings@Boolean@Boolean +ID4982=PeBorFormNames@TFileName@TStrings +ID4983=PeBorUnmangleName@string@string +ID4984=PeBorUnmangleName@string@string@TJclBorUmDescription +ID4985=PeBorUnmangleName@string@string@TJclBorUmDescription@Integer +ID4986=PeClearCheckSum@TFileName +ID4987=PeCreateRequiredImportList@TFileName@TStrings +ID4988=PeDbgImgLibraryName32@THandle@TJclAddr32@string +ID4989=PeDbgImgNtHeaders32@THandle@TJclAddr32@TImageNtHeaders32 ID499=_OSVERSIONINFOEXW -ID4990=RsCILDescrckfinite -ID4991=RsCILDescrclt -ID4992=RsCILDescrcltun -ID4993=RsCILDescrconvi -ID4994=RsCILDescrconvi1 -ID4995=RsCILDescrconvi2 -ID4996=RsCILDescrconvi4 -ID4997=RsCILDescrconvi8 -ID4998=RsCILDescrconvovfi -ID4999=RsCILDescrconvovfi1 +ID4990=PeExportedNames@TFileName@TStrings +ID4991=PeExportedVariables@TFileName@TStrings +ID4992=PeFindMissingImports@TFileName@TStrings +ID4993=PeFindMissingImports@TStrings@TStrings +ID4994=PeGetNtHeaders32@TFileName@TImageNtHeaders32 +ID4995=PeGetNtHeaders64@TFileName@TImageNtHeaders64 +ID4996=PeInsertSection@TFileName@TStream@string +ID4997=PeMapFindResource@HMODULE@PChar@string +ID4998=PeMapImgExportedVariables@HMODULE@TStrings +ID4999=PeMapImgFindSection32@PImageNtHeaders32@string ID5=!!OVERLOADED_Add_TEDIObjectList ID50=!!OVERLOADED_Divide_TJclRational ID500=_OSVERSIONINFOEXW.dwBuildNumber -ID5000=RsCILDescrconvovfi1un -ID5001=RsCILDescrconvovfi2 -ID5002=RsCILDescrconvovfi2un -ID5003=RsCILDescrconvovfi4 -ID5004=RsCILDescrconvovfi4un -ID5005=RsCILDescrconvovfi8 -ID5006=RsCILDescrconvovfi8un -ID5007=RsCILDescrconvovfiun -ID5008=RsCILDescrconvovfu -ID5009=RsCILDescrconvovfu1 +ID5000=PeMapImgFindSection64@PImageNtHeaders64@string +ID5001=PeMapImgFindSectionFromModule@Pointer@string +ID5002=PeMapImgNtHeaders32@Pointer +ID5003=PeMapImgNtHeaders64@Pointer +ID5004=PeMapImgResolvePackageThunk@Pointer +ID5005=PeMapImgSections32@PImageNtHeaders32 +ID5006=PeMapImgSections64@PImageNtHeaders64 +ID5007=PeMapImgSize@Pointer +ID5008=PeMapImgTarget@Pointer +ID5009=PeReadLinkerTimeStamp@string ID501=_OSVERSIONINFOEXW.dwMajorVersion -ID5010=RsCILDescrconvovfu1un -ID5011=RsCILDescrconvovfu2 -ID5012=RsCILDescrconvovfu2un -ID5013=RsCILDescrconvovfu4 -ID5014=RsCILDescrconvovfu4un -ID5015=RsCILDescrconvovfu8 -ID5016=RsCILDescrconvovfu8un -ID5017=RsCILDescrconvovfuun -ID5018=RsCILDescrconvr4 -ID5019=RsCILDescrconvr8 +ID5010=PeReadLinkerTimeStamp@TFileName +ID5011=PeRebaseImage32@TFileName@TJclAddr32@DWORD@DWORD +ID5012=PeRebaseImage64@TFileName@TJclAddr64@DWORD@DWORD +ID5013=PeResourceKindNames@TFileName@TJclPeResourceKind@TStrings +ID5014=Personality32Bit +ID5015=Personality64Bit +ID5016=PersonalityBCB +ID5017=PersonalityBDS +ID5018=PersonalityCSB +ID5019=PersonalityDelphi ID502=_OSVERSIONINFOEXW.dwMinorVersion -ID5020=RsCILDescrconvrun -ID5021=RsCILDescrconvu -ID5022=RsCILDescrconvu1 -ID5023=RsCILDescrconvu2 -ID5024=RsCILDescrconvu4 -ID5025=RsCILDescrconvu8 -ID5026=RsCILDescrcpblk -ID5027=RsCILDescrcpobj -ID5028=RsCILDescrdiv -ID5029=RsCILDescrdivun +ID5020=PersonalityDelphiDotNet +ID5021=PersonalityDesign +ID5022=PersonalityUnknown +ID5023=PersonalityVB +ID5024=PeUpdateLinkerTimeStamp@string@TDateTime +ID5025=PeUpdateLinkerTimeStamp@TFileName@TDateTime +ID5026=PFILE_ALLOCATED_RANGE_BUFFER +ID5027=PFILE_ZERO_DATA_INFORMATION +ID5028=PFIND_NAME_BUFFER +ID5029=PFIND_NAME_HEADER ID503=_OSVERSIONINFOEXW.dwOSVersionInfoSize -ID5030=RsCILDescrdup -ID5031=RsCILDescrendfilter -ID5032=RsCILDescrendfinally -ID5033=RsCILDescrinitblk -ID5034=RsCILDescrinitobj -ID5035=RsCILDescrisinst -ID5036=RsCILDescrjmp -ID5037=RsCILDescrldarg -ID5038=RsCILDescrldarg0 -ID5039=RsCILDescrldarg1 +ID5030=PFindNameBuffer +ID5031=PFindNameHeader +ID5032=PFloat +ID5033=PFloat32 +ID5034=PFloat64 +ID5035=PFloat80 +ID5036=PFPO_DATA +ID5037=PFpoData +ID5038=PGE_FLAG +ID5039=PGlobalTypeInfo ID504=_OSVERSIONINFOEXW.dwPlatformId -ID5040=RsCILDescrldarg2 -ID5041=RsCILDescrldarg3 -ID5042=RsCILDescrldarga -ID5043=RsCILDescrldargas -ID5044=RsCILDescrldargs -ID5045=RsCILDescrldci4 -ID5046=RsCILDescrldci40 -ID5047=RsCILDescrldci41 -ID5048=RsCILDescrldci42 -ID5049=RsCILDescrldci43 +ID5040=PGROUP_INFO_0 +ID5041=PGROUP_INFO_1 +ID5042=PGroupInfo0 +ID5043=PGroupInfo1 +ID5044=PHashArray +ID5045=PHashNode +ID5046=PHMODULE +ID5047=Pi +ID5048=PID_BEHAVIOR +ID5049=PID_CODEPAGE ID505=_OSVERSIONINFOEXW.szCSDVersion -ID5050=RsCILDescrldci44 -ID5051=RsCILDescrldci45 -ID5052=RsCILDescrldci46 -ID5053=RsCILDescrldci47 -ID5054=RsCILDescrldci48 -ID5055=RsCILDescrldci4m1 -ID5056=RsCILDescrldci4s -ID5057=RsCILDescrldci8 -ID5058=RsCILDescrldcr4 -ID5059=RsCILDescrldcr8 +ID5050=PID_COMPUTERNAME +ID5051=PID_CONTROLPANEL_CATEGORY +ID5052=PID_DESCRIPTIONID +ID5053=PID_DICTIONARY +ID5054=PID_DISPLACED_DATE +ID5055=PID_DISPLACED_FROM +ID5056=PID_DISPLAY_PROPERTIES +ID5057=PID_FINDDATA +ID5058=PID_FIRST_NAME_DEFAULT +ID5059=PID_FIRST_USABLE ID506=_OSVERSIONINFOEXW.wProductType -ID5060=RsCILDescrldelema -ID5061=RsCILDescrldelemi -ID5062=RsCILDescrldelemi1 -ID5063=RsCILDescrldelemi2 -ID5064=RsCILDescrldelemi4 -ID5065=RsCILDescrldelemi8 -ID5066=RsCILDescrldelemr4 -ID5067=RsCILDescrldelemr8 -ID5068=RsCILDescrldelemref -ID5069=RsCILDescrldelemu1 +ID5060=PID_HTMLINFOTIPFILE +ID5061=PID_ILLEGAL +ID5062=PID_INTROTEXT +ID5063=PID_LINK_TARGET +ID5064=PID_LOCALE +ID5065=PID_MAX_READONLY +ID5066=PID_MIN_READONLY +ID5067=PID_MISC_ACCESSCOUNT +ID5068=PID_MISC_OWNER +ID5069=PID_MISC_PICS ID507=_OSVERSIONINFOEXW.wReserved -ID5070=RsCILDescrldelemu2 -ID5071=RsCILDescrldelemu4 -ID5072=RsCILDescrldfld -ID5073=RsCILDescrldflda -ID5074=RsCILDescrldftn -ID5075=RsCILDescrldindi -ID5076=RsCILDescrldindi1 -ID5077=RsCILDescrldindi2 -ID5078=RsCILDescrldindi4 -ID5079=RsCILDescrldindi8 +ID5070=PID_MISC_STATUS +ID5071=PID_MODIFY_TIME +ID5072=PID_MSIRESTRICT +ID5073=PID_MSISOURCE +ID5074=PID_MSIVERSION +ID5075=PID_NETRESOURCE +ID5076=PID_NETWORKLOCATION +ID5077=PID_QUERY_RANK +ID5078=PID_SECURITY +ID5079=PID_SHARE_CSC_STATUS ID508=_OSVERSIONINFOEXW.wServicePackMajor -ID5080=RsCILDescrldindr4 -ID5081=RsCILDescrldindr8 -ID5082=RsCILDescrldindref -ID5083=RsCILDescrldindu1 -ID5084=RsCILDescrldindu2 -ID5085=RsCILDescrldindu4 -ID5086=RsCILDescrldlen -ID5087=RsCILDescrldloc -ID5088=RsCILDescrldloc0 -ID5089=RsCILDescrldloc1 +ID5080=PID_SYNC_COPY_IN +ID5081=PID_VOLUME_CAPACITY +ID5082=PID_VOLUME_FILESYSTEM +ID5083=PID_VOLUME_FREE +ID5084=PID_WHICHFOLDER +ID5085=PIDASI_AVG_DATA_RATE +ID5086=PIDASI_CHANNEL_COUNT +ID5087=PIDASI_COMPRESSION +ID5088=PIDASI_FORMAT +ID5089=PIDASI_SAMPLE_RATE ID509=_OSVERSIONINFOEXW.wServicePackMinor -ID5090=RsCILDescrldloc2 -ID5091=RsCILDescrldloc3 -ID5092=RsCILDescrldloca -ID5093=RsCILDescrldlocas -ID5094=RsCILDescrldlocs -ID5095=RsCILDescrldnull -ID5096=RsCILDescrldobj -ID5097=RsCILDescrldsfld -ID5098=RsCILDescrldsflda -ID5099=RsCILDescrldstr +ID5090=PIDASI_SAMPLE_SIZE +ID5091=PIDASI_STREAM_NAME +ID5092=PIDASI_STREAM_NUMBER +ID5093=PIDASI_TIMELENGTH +ID5094=PIDDI_THUMBNAIL +ID5095=PIDDRSI_DESCRIPTION +ID5096=PIDDRSI_PLAYCOUNT +ID5097=PIDDRSI_PLAYEXPIRES +ID5098=PIDDRSI_PLAYSTARTS +ID5099=PIDDRSI_PROTECTED ID51=!!OVERLOADED_DoResize_TJclScreenBuffer ID510=_OSVERSIONINFOEXW.wSuiteMask -ID5100=RsCILDescrldtoken -ID5101=RsCILDescrldvirtftn -ID5102=RsCILDescrleave -ID5103=RsCILDescrleaves -ID5104=RsCILDescrlocalloc -ID5105=RsCILDescrmkrefany -ID5106=RsCILDescrmul -ID5107=RsCILDescrmulovf -ID5108=RsCILDescrmulovfun -ID5109=RsCILDescrneg +ID5100=PIDDSI_BYTECOUNT +ID5101=PIDDSI_CATEGORY +ID5102=PIDDSI_COMPANY +ID5103=PIDDSI_DOCPARTS +ID5104=PIDDSI_HEADINGPAIR +ID5105=PIDDSI_HIDDENCOUNT +ID5106=PIDDSI_LINECOUNT +ID5107=PIDDSI_LINKSDIRTY +ID5108=PIDDSI_MANAGER +ID5109=PIDDSI_MMCLIPCOUNT ID511=_POLICY_ACCOUNT_DOMAIN_INFO -ID5110=RsCILDescrnewarr -ID5111=RsCILDescrnewobj -ID5112=RsCILDescrnop -ID5113=RsCILDescrnot -ID5114=RsCILDescror -ID5115=RsCILDescrpop -ID5116=RsCILDescrprefix1 -ID5117=RsCILDescrprefix2 -ID5118=RsCILDescrprefix3 -ID5119=RsCILDescrprefix4 +ID5110=PIDDSI_NOTECOUNT +ID5111=PIDDSI_PARCOUNT +ID5112=PIDDSI_PRESFORMAT +ID5113=PIDDSI_SCALE +ID5114=PIDDSI_SLIDECOUNT +ID5115=PIDMSI_COPYRIGHT +ID5116=PIDMSI_EDITOR +ID5117=PIDMSI_OWNER +ID5118=PIDMSI_PRODUCTION +ID5119=PIDMSI_PROJECT ID512=_POLICY_ACCOUNT_DOMAIN_INFO.DomainName -ID5120=RsCILDescrprefix5 -ID5121=RsCILDescrprefix6 -ID5122=RsCILDescrprefix7 -ID5123=RsCILDescrprefixref -ID5124=RsCILDescrrefanytype -ID5125=RsCILDescrrefanyval -ID5126=RsCILDescrrem -ID5127=RsCILDescrremun -ID5128=RsCILDescrret -ID5129=RsCILDescrrethrow +ID5120=PIDMSI_RATING +ID5121=PIDMSI_SEQUENCE_NO +ID5122=PIDMSI_SOURCE +ID5123=PIDMSI_STATUS +ID5124=PIDMSI_SUPPLIER +ID5125=PIDSI_ALBUM +ID5126=PIDSI_APPNAME +ID5127=PIDSI_ARTIST +ID5128=PIDSI_AUTHOR +ID5129=PIDSI_CHARCOUNT ID513=_POLICY_ACCOUNT_DOMAIN_INFO.DomainSid -ID5130=RsCILDescrshl -ID5131=RsCILDescrshr -ID5132=RsCILDescrshrun -ID5133=RsCILDescrsizeof -ID5134=RsCILDescrstarg -ID5135=RsCILDescrstargs -ID5136=RsCILDescrstelemi -ID5137=RsCILDescrstelemi1 -ID5138=RsCILDescrstelemi2 -ID5139=RsCILDescrstelemi4 +ID5130=PIDSI_COMMENT +ID5131=PIDSI_COMMENTS +ID5132=PIDSI_CREATE_DTM +ID5133=PIDSI_DOC_SECURITY +ID5134=PIDSI_EDITTIME +ID5135=PIDSI_GENRE +ID5136=PIDSI_KEYWORDS +ID5137=PIDSI_LASTAUTHOR +ID5138=PIDSI_LASTPRINTED +ID5139=PIDSI_LASTSAVE_DTM ID514=_POLICY_INFORMATION_CLASS -ID5140=RsCILDescrstelemi8 -ID5141=RsCILDescrstelemr4 -ID5142=RsCILDescrstelemr8 -ID5143=RsCILDescrstelemref -ID5144=RsCILDescrstfld -ID5145=RsCILDescrstindi -ID5146=RsCILDescrstindi1 -ID5147=RsCILDescrstindi2 -ID5148=RsCILDescrstindi4 -ID5149=RsCILDescrstindi8 +ID5140=PIDSI_LYRICS +ID5141=PIDSI_PAGECOUNT +ID5142=PIDSI_REVNUMBER +ID5143=PIDSI_SONGTITLE +ID5144=PIDSI_SUBJECT +ID5145=PIDSI_TEMPLATE +ID5146=PIDSI_THUMBNAIL +ID5147=PIDSI_TITLE +ID5148=PIDSI_TRACK +ID5149=PIDSI_WORDCOUNT ID515=_POLICY_INFORMATION_CLASS.picFill0 -ID5150=RsCILDescrstindr4 -ID5151=RsCILDescrstindr8 -ID5152=RsCILDescrstindref -ID5153=RsCILDescrstloc -ID5154=RsCILDescrstloc0 -ID5155=RsCILDescrstloc1 -ID5156=RsCILDescrstloc2 -ID5157=RsCILDescrstloc3 -ID5158=RsCILDescrstlocs -ID5159=RsCILDescrstobj +ID5150=PIDSI_YEAR +ID5151=PIDVSI_COMPRESSION +ID5152=PIDVSI_DATA_RATE +ID5153=PIDVSI_FRAME_COUNT +ID5154=PIDVSI_FRAME_HEIGHT +ID5155=PIDVSI_FRAME_RATE +ID5156=PIDVSI_FRAME_WIDTH +ID5157=PIDVSI_SAMPLE_SIZE +ID5158=PIDVSI_STREAM_NAME +ID5159=PIDVSI_STREAM_NUMBER ID516=_POLICY_INFORMATION_CLASS.PolicyAccountDomainInformation -ID5160=RsCILDescrstsfld -ID5161=RsCILDescrsub -ID5162=RsCILDescrsubovf -ID5163=RsCILDescrsubovfun -ID5164=RsCILDescrswitch -ID5165=RsCILDescrtail -ID5166=RsCILDescrthrow -ID5167=RsCILDescrunaligned -ID5168=RsCILDescrunbox -ID5169=RsCILDescrunused1 +ID5160=PIDVSI_TIMELENGTH +ID5161=PiExt +ID5162=PIMAGE_ARCHITECTURE_ENTRY +ID5163=PIMAGE_ARCHITECTURE_HEADER +ID5164=PIMAGE_ARCHIVE_MEMBER_HEADER +ID5165=PIMAGE_BASE_RELOCATION +ID5166=PIMAGE_BOUND_FORWARDER_REF +ID5167=PIMAGE_BOUND_IMPORT_DESCRIPTOR +ID5168=PIMAGE_COFF_SYMBOLS_HEADER +ID5169=PIMAGE_COR20_HEADER ID517=_POLICY_INFORMATION_CLASS.PolicyAuditEventsInformation -ID5170=RsCILDescrunused10 -ID5171=RsCILDescrunused11 -ID5172=RsCILDescrunused12 -ID5173=RsCILDescrunused13 -ID5174=RsCILDescrunused14 -ID5175=RsCILDescrunused15 -ID5176=RsCILDescrunused16 -ID5177=RsCILDescrunused17 -ID5178=RsCILDescrunused18 -ID5179=RsCILDescrunused19 +ID5170=PIMAGE_DATA_DIRECTORY +ID5171=PIMAGE_DEBUG_MISC +ID5172=PIMAGE_EXPORT_DIRECTORY +ID5173=PIMAGE_FILE_HEADER +ID5174=PIMAGE_FUNCTION_ENTRY +ID5175=PIMAGE_FUNCTION_ENTRY64 +ID5176=PIMAGE_IMPORT_BY_NAME +ID5177=PIMAGE_IMPORT_DESCRIPTOR +ID5178=PIMAGE_LINENUMBER +ID5179=PIMAGE_LOAD_CONFIG_DIRECTORY ID518=_POLICY_INFORMATION_CLASS.PolicyAuditFullQueryInformation -ID5180=RsCILDescrunused2 -ID5181=RsCILDescrunused20 -ID5182=RsCILDescrunused21 -ID5183=RsCILDescrunused22 -ID5184=RsCILDescrunused23 -ID5185=RsCILDescrunused24 -ID5186=RsCILDescrunused25 -ID5187=RsCILDescrunused26 -ID5188=RsCILDescrunused27 -ID5189=RsCILDescrunused28 +ID5180=PIMAGE_LOAD_CONFIG_DIRECTORY32 +ID5181=PIMAGE_LOAD_CONFIG_DIRECTORY64 +ID5182=PIMAGE_NT_HEADERS +ID5183=PIMAGE_NT_HEADERS32 +ID5184=PIMAGE_NT_HEADERS64 +ID5185=PIMAGE_OPTIONAL_HEADER32 +ID5186=PIMAGE_OPTIONAL_HEADER64 +ID5187=PIMAGE_RESOURCE_DATA_ENTRY +ID5188=PIMAGE_RESOURCE_DIR_STRING_U +ID5189=PIMAGE_RESOURCE_DIRECTORY ID519=_POLICY_INFORMATION_CLASS.PolicyAuditFullSetInformation -ID5190=RsCILDescrunused29 -ID5191=RsCILDescrunused3 -ID5192=RsCILDescrunused30 -ID5193=RsCILDescrunused31 -ID5194=RsCILDescrunused32 -ID5195=RsCILDescrunused33 -ID5196=RsCILDescrunused34 -ID5197=RsCILDescrunused35 -ID5198=RsCILDescrunused36 -ID5199=RsCILDescrunused37 +ID5190=PIMAGE_RESOURCE_DIRECTORY_ENTRY +ID5191=PIMAGE_RESOURCE_DIRECTORY_STRING +ID5192=PIMAGE_ROM_HEADERS +ID5193=PIMAGE_ROM_OPTIONAL_HEADER +ID5194=PIMAGE_SECTION_HEADER +ID5195=PIMAGE_SEPARATE_DEBUG_HEADER +ID5196=PIMAGE_THUNK_DATA +ID5197=PIMAGE_THUNK_DATA32 +ID5198=PIMAGE_THUNK_DATA64 +ID5199=PIMAGE_TLS_CALLBACK ID52=!!OVERLOADED_Equals_TWStrings ID520=_POLICY_INFORMATION_CLASS.PolicyAuditLogInformation -ID5200=RsCILDescrunused38 -ID5201=RsCILDescrunused39 -ID5202=RsCILDescrunused4 -ID5203=RsCILDescrunused40 -ID5204=RsCILDescrunused41 -ID5205=RsCILDescrunused42 -ID5206=RsCILDescrunused43 -ID5207=RsCILDescrunused44 -ID5208=RsCILDescrunused45 -ID5209=RsCILDescrunused46 +ID5200=PIMAGE_TLS_DIRECTORY +ID5201=PIMAGE_TLS_DIRECTORY32 +ID5202=PIMAGE_TLS_DIRECTORY64 +ID5203=PImageArchitectureEntry +ID5204=PImageArchitectureHeader +ID5205=PImageArchiveMemberHeader +ID5206=PImageCoffSymbolsHeader +ID5207=PImageCorILMethodFat +ID5208=PImageCorILMethodHeader +ID5209=PImageCorILMethodSectEH ID521=_POLICY_INFORMATION_CLASS.PolicyDefaultQuotaInformation -ID5210=RsCILDescrunused47 -ID5211=RsCILDescrunused48 -ID5212=RsCILDescrunused49 -ID5213=RsCILDescrunused5 -ID5214=RsCILDescrunused50 -ID5215=RsCILDescrunused51 -ID5216=RsCILDescrunused52 -ID5217=RsCILDescrunused53 -ID5218=RsCILDescrunused54 -ID5219=RsCILDescrunused55 +ID5210=PImageCorILMethodSectEHClauseFat +ID5211=PImageCorILMethodSectEHClauseSmall +ID5212=PImageCorILMethodSectEHFat +ID5213=PImageCorILMethodSectEHSmall +ID5214=PImageCorILMethodSectFat +ID5215=PImageCorILMethodSectHeader +ID5216=PImageCorILMethodSectSmall +ID5217=PImageCorILMethodTiny +ID5218=PImageCorVTableFixup +ID5219=PImageCorVTableFixupArray ID522=_POLICY_INFORMATION_CLASS.PolicyDnsDomainInformation -ID5220=RsCILDescrunused56 -ID5221=RsCILDescrunused57 -ID5222=RsCILDescrunused58 -ID5223=RsCILDescrunused59 -ID5224=RsCILDescrunused6 -ID5225=RsCILDescrunused60 -ID5226=RsCILDescrunused61 -ID5227=RsCILDescrunused62 -ID5228=RsCILDescrunused63 -ID5229=RsCILDescrunused64 +ID5220=PImageDataDirectory +ID5221=PImageDebugMisc +ID5222=PImageFileHeader +ID5223=PImageFunctionEntry +ID5224=PImageFunctionEntry64 +ID5225=PIMAGEHLP_LINE +ID5226=PImageHlpLine +ID5227=PImageLineNumber +ID5228=PImageLoadConfigDirectory32 +ID5229=PImageLoadConfigDirectory64 ID523=_POLICY_INFORMATION_CLASS.PolicyDnsDomainInformationInt -ID5230=RsCILDescrunused65 -ID5231=RsCILDescrunused66 -ID5232=RsCILDescrunused67 -ID5233=RsCILDescrunused68 -ID5234=RsCILDescrunused69 -ID5235=RsCILDescrunused7 -ID5236=RsCILDescrunused70 -ID5237=RsCILDescrunused8 -ID5238=RsCILDescrunused9 -ID5239=RsCILDescrvolatile +ID5230=PImageNtHeaders +ID5231=PImageNtHeaders32 +ID5232=PImageNtHeaders64 +ID5233=PImageOptionalHeader32 +ID5234=PImageOptionalHeader64 +ID5235=PImageResourceDirectoryString +ID5236=PImageRomHeaders +ID5237=PImageRomOptionalHeader +ID5238=PImageSectionHeader +ID5239=PImageSeparateDebugHeader ID524=_POLICY_INFORMATION_CLASS.PolicyLsaServerRoleInformation -ID5240=RsCILDescrxor -ID5241=RsCleaningFailed -ID5242=RsCleaningOk -ID5243=RsCleaningPackageCache -ID5244=RsClientServer -ID5245=RsClrCopyright -ID5246=RsCombiningClassUnicodeChar -ID5247=RsComFailedStreamRead -ID5248=RsComFailedStreamWrite -ID5249=RsComInvalidParam +ID5240=PImageThunkData32 +ID5241=PImageThunkData64 +ID5242=PImageTlsDirectory32 +ID5243=PImageTlsDirectory64 +ID5244=PImgDelayDescrV1 +ID5245=PImgDelayDescrV2 +ID5246=PImportObjectHeader +ID5247=PInt64 +ID5248=PInteger +ID5249=PINTEL_ARAT ID525=_POLICY_INFORMATION_CLASS.PolicyModificationInformation -ID5250=RsCommandLineToolMissing -ID5251=RsCompilationFailed -ID5252=RsCompilationOk -ID5253=RsCompilingPackage -ID5254=RsCompilingProject -ID5255=RsComplexInvalidString -ID5256=RsCompressionBZIP2ConfigError -ID5257=RsCompressionBZIP2DataError -ID5258=RsCompressionBZIP2EOFError -ID5259=RsCompressionBZIP2Error +ID5250=PINTEL_BIT_10 +ID5251=PINTEL_BIT_11 +ID5252=PINTEL_BIT_12 +ID5253=PINTEL_BIT_13 +ID5254=PINTEL_BIT_14 +ID5255=PINTEL_BIT_15 +ID5256=PINTEL_BIT_16 +ID5257=PINTEL_BIT_17 +ID5258=PINTEL_BIT_18 +ID5259=PINTEL_BIT_19 ID526=_POLICY_INFORMATION_CLASS.PolicyPdAccountInformation -ID5260=RsCompressionBZIP2HeaderError -ID5261=RsCompressionBZIP2IOError -ID5262=RsCompressionBZIP2MemoryError -ID5263=RsCompressionBZIP2OutBuffError -ID5264=RsCompressionBZIP2ParameterError -ID5265=RsCompressionBZIP2SequenceError -ID5266=RsCompressionGZIPBadString -ID5267=RsCompressionGZIPDataCRCFailed -ID5268=RsCompressionGZIPDataTruncated -ID5269=RsCompressionGZIPDecompressing +ID5260=PINTEL_BIT_20 +ID5261=PINTEL_BIT_21 +ID5262=PINTEL_BIT_22 +ID5263=PINTEL_BIT_23 +ID5264=PINTEL_BIT_24 +ID5265=PINTEL_BIT_25 +ID5266=PINTEL_BIT_26 +ID5267=PINTEL_BIT_27 +ID5268=PINTEL_BIT_28 +ID5269=PINTEL_BIT_29 ID527=_POLICY_INFORMATION_CLASS.PolicyPrimaryDomainInformation -ID5270=RsCompressionGZIPExtraFieldTooLong -ID5271=RsCompressionGZIPHeaderCRC -ID5272=RsCompressionGZIPInternalError -ID5273=RsCompressionGZIPInvalidID -ID5274=RsCompressionGZIPNotDecompressed -ID5275=RsCompressionGZIPUnsupportedCM -ID5276=RsCompressionOperationNotSupported -ID5277=RsCompressionReadNotSupported -ID5278=RsCompressionResetNotSupported -ID5279=RsCompressionSeekNotSupported +ID5270=PINTEL_BIT_3 +ID5271=PINTEL_BIT_30 +ID5272=PINTEL_BIT_31 +ID5273=PINTEL_BIT_7 +ID5274=PINTEL_BIT_8 +ID5275=PINTEL_BIT_9 +ID5276=PINTEL_ECMD +ID5277=PINTEL_PLN +ID5278=PINTEL_PTM +ID5279=PINTEL_TEMPSENSOR ID528=_POLICY_INFORMATION_CLASS.PolicyReplicaSourceInformation -ID5280=RsCompressionWriteNotSupported -ID5281=RsCompressionZLibError -ID5282=RsCompressionZLibZBufError -ID5283=RsCompressionZLibZDataError -ID5284=RsCompressionZLibZErrNo -ID5285=RsCompressionZLibZMemError -ID5286=RsCompressionZLibZStreamError -ID5287=RsCompressionZLibZVersionError -ID5288=RsConvTempBelowAbsoluteZero -ID5289=RsCreateCompatibleDc +ID5280=PINTEL_TURBOBOOST +ID5281=PiOn2 +ID5282=PiOn3 +ID5283=PiOn4 +ID5284=PixelsToDialogUnitsX@Word +ID5285=PixelsToDialogUnitsY@Word +ID5286=PJclAddr +ID5287=PJclBinaryNode +ID5288=PJclBucket +ID5289=PJclByteArray ID529=_SESSION_BUFFER -ID5290=RsCreateFileMapping -ID5291=RsCreateFileMappingView -ID5292=RsCreateProcAccessDenied -ID5293=RsCreateProcBuild1057Error -ID5294=RsCreateProcCommandNotFound -ID5295=RsCreateProcFailed -ID5296=RsCreateProcLogonFailed -ID5297=RsCreateProcLogonUserError -ID5298=RsCreateProcNTRequiredError -ID5299=RsCreateProcOSVersionError +ID5290=PJclClrToken +ID5291=PJclDbgHeader +ID5292=PJclHashElem +ID5293=PJclHashList +ID5294=PJclHashRecord +ID5295=PJclIntfBinaryNode +ID5296=PJclIntfIntfBucket +ID5297=PJclIntfLinkedListItem +ID5298=PJclLinkedListItem +ID5299=PJclLocationInfo ID53=!!OVERLOADED_Execute_TJclClrAppDomain ID530=_SESSION_BUFFER.local_name -ID5300=RsCreateProcPrivilegeMissing -ID5301=RsCreateProcPrivilegesMissing -ID5302=RsCreateProcSetDesktopSecurityError -ID5303=RsCreateProcSetStationSecurityError -ID5304=RsCreatingJdbg -ID5305=RsCSharpName -ID5306=RsDateConversion -ID5307=RsDebugAssertValidPointer -ID5308=RsDebugAssertValidString -ID5309=RsDebugNoProcessInfo +ID5300=PJclMapAddress +ID5301=PJclMapLineNumber +ID5302=PJclMapProcName +ID5303=PJclMapSegment +ID5304=PJclMapSegmentClass +ID5305=PJclStrBinaryNode +ID5306=PJclStrBucket +ID5307=PJclStrIntfBucket +ID5308=PJclStrLinkedListItem +ID5309=PJclStrStrBucket ID531=_SESSION_BUFFER.lsn -ID5310=RsDebugSnapshot -ID5311=RsDeclarationFormat -ID5312=RsDecomposedUnicodeChar -ID5313=RsDefaultFileTypeName -ID5314=RsDeletingFile -ID5315=RsDelphiName -ID5316=RsDelphiNetName -ID5317=RsDelTreePathIsEmpty -ID5318=RsDestinationBitmapEmpty -ID5319=RsDeviceMode +ID5310=PJclTD32FileSignature +ID5311=PJclTimeZoneRegInfo +ID5312=PJclULargeInteger +ID5313=PJmpTable +ID5314=PKeyboardState +ID5315=PLANA_ENUM +ID5316=PLangIdRec +ID5317=PLargeInteger +ID5318=PLATFORM_ID_DOS +ID5319=PLATFORM_ID_NT ID532=_SESSION_BUFFER.rcvs_outstanding -ID5320=RsDibHandleAllocation -ID5321=RsDivByZero -ID5322=RsDotNetFormatArgumentNotSupported -ID5323=RsDotNetFormatNullFormat -ID5324=RsDynArrayError -ID5325=RsECannotInstallRunOnly -ID5326=RsECmdLineToolOutputInvalid -ID5327=RsEDIError001 -ID5328=RsEDIError002 -ID5329=RsEDIError003 +ID5320=PLATFORM_ID_OS2 +ID5321=PLATFORM_ID_OSF +ID5322=PLATFORM_ID_VMS +ID5323=PLineMappingEntry +ID5324=PLMSTR +ID5325=PLOADED_IMAGE +ID5326=PLoadedImage +ID5327=PLOCALGROUP_INFO_0 +ID5328=PLOCALGROUP_INFO_1 +ID5329=PLOCALGROUP_INFO_1002 ID533=_SESSION_BUFFER.remote_name -ID5330=RsEDIError004 -ID5331=RsEDIError005 -ID5332=RsEDIError006 -ID5333=RsEDIError007 -ID5334=RsEDIError008 -ID5335=RsEDIError009 -ID5336=RsEDIError010 -ID5337=RsEDIError011 -ID5338=RsEDIError012 -ID5339=RsEDIError013 +ID5330=PLOCALGROUP_MEMBERS_INFO_0 +ID5331=PLOCALGROUP_MEMBERS_INFO_1 +ID5332=PLOCALGROUP_MEMBERS_INFO_2 +ID5333=PLOCALGROUP_MEMBERS_INFO_3 +ID5334=PLocalGroupInfo0 +ID5335=PLocalGroupInfo1 +ID5336=PLocalGroupInfo1002 +ID5337=PLocalGroupMembersInfo0 +ID5338=PLocalGroupMembersInfo1 +ID5339=PLocalGroupMembersInfo2 ID534=_SESSION_BUFFER.sends_outstanding -ID5340=RsEDIError014 -ID5341=RsEDIError015 -ID5342=RsEDIError016 -ID5343=RsEDIError017 -ID5344=RsEDIError018 -ID5345=RsEDIError019 -ID5346=RsEDIError020 -ID5347=RsEDIError021 -ID5348=RsEDIError022 -ID5349=RsEDIError023 +ID5340=PLocalGroupMembersInfo3 +ID5341=PLONGLONG +ID5342=PLongWord +ID5343=PLSA_HANDLE +ID5344=PLSA_OBJECT_ATTRIBUTES +ID5345=PLSA_STRING +ID5346=PLSA_UNICODE_STRING +ID5347=PLsaObjectAttributes +ID5348=PLsaString +ID5349=PLsaUnicodeString ID535=_SESSION_BUFFER.state -ID5350=RsEDIError024 -ID5351=RsEDIError025 -ID5352=RsEDIError026 -ID5353=RsEDIError027 -ID5354=RsEDIError028 -ID5355=RsEDIError029 -ID5356=RsEDIError030 -ID5357=RsEDIError031 -ID5358=RsEDIError032 -ID5359=RsEDIError033 +ID5350=PMeteredSection +ID5351=PMetSectSharedInfo +ID5352=PMultiSz +ID5353=PNAME_BUFFER +ID5354=PngToBitmap@string +ID5355=PNON_PAGED_DEBUG_INFO +ID5356=PNT_TIB32 +ID5357=PNT_TIB64 +ID5358=POffsetPairArray +ID5359=PolarComplex@Float@Float ID536=_SESSION_HEADER -ID5360=RsEDIError034 -ID5361=RsEDIError035 -ID5362=RsEDIError036 -ID5363=RsEDIError037 -ID5364=RsEDIError038 -ID5365=RsEDIError039 -ID5366=RsEDIError040 -ID5367=RsEDIError041 -ID5368=RsEDIError042 -ID5369=RsEDIError043 +ID5360=PolarComplex@TRectComplex +ID5361=POLICY_ACCOUNT_DOMAIN_INFO +ID5362=POLICY_ALL_ACCESS +ID5363=POLICY_AUDIT_LOG_ADMIN +ID5364=POLICY_CREATE_ACCOUNT +ID5365=POLICY_CREATE_PRIVILEGE +ID5366=POLICY_CREATE_SECRET +ID5367=POLICY_EXECUTE +ID5368=POLICY_GET_PRIVATE_INFORMATION +ID5369=POLICY_INFORMATION_CLASS ID537=_SESSION_HEADER.num_sess -ID5370=RsEDIError044 -ID5371=RsEDIError045 -ID5372=RsEDIError046 -ID5373=RsEDIError047 -ID5374=RsEDIError048 -ID5375=RsEDIError049 -ID5376=RsEDIError050 -ID5377=RsEDIError051 -ID5378=RsEDIError052 -ID5379=RsEDIError053 +ID5370=POLICY_LOOKUP_NAMES +ID5371=POLICY_NOTIFICATION +ID5372=POLICY_READ +ID5373=POLICY_SERVER_ADMIN +ID5374=POLICY_SET_AUDIT_REQUIREMENTS +ID5375=POLICY_SET_DEFAULT_QUOTA_LIMITS +ID5376=POLICY_TRUST_ADMIN +ID5377=POLICY_VIEW_AUDIT_INFORMATION +ID5378=POLICY_VIEW_LOCAL_INFORMATION +ID5379=POLICY_WRITE ID538=_SESSION_HEADER.rcv_any_outstanding -ID5380=RsEDIError054 -ID5381=RsEDIError055 -ID5382=RsEDIError056 -ID5383=RsEDIError057 -ID5384=RsEDIError058 -ID5385=RsEDualPackageNotSupported -ID5386=RsEFunctionNotFound -ID5387=RsEGetBytesExFmt -ID5388=RsEIllegalQueueCapacity -ID5389=RsEIncomatibleDataFormat +ID5380=PolygonAS +ID5381=PolygonFS +ID5382=PolygonTS +ID5383=PolyLineAS +ID5384=PolyLineFS +ID5385=PolyLineTS +ID5386=PolyPolygonAS +ID5387=PolyPolygonFS +ID5388=PolyPolygonTS +ID5389=POptexSharedInfo ID539=_SESSION_HEADER.rcv_dg_outstanding -ID5390=RsEIndexOufOfRange -ID5391=RsEInvalidCDATAExpectedsButFounds -ID5392=RsEInvalidCDATAUnexpectedEndOfData -ID5393=RsEInvalidCommentExpectedsButFounds -ID5394=RsEInvalidCommentNotAllowedInsideComme -ID5395=RsEInvalidCommentUnexpectedEndOfData -ID5396=RsEInvalidDocumentUnexpectedTextInFile -ID5397=RsEInvalidHeaderExpectedsButFounds -ID5398=RsEInvalidStylesheetExpectedsButFounds -ID5399=RsEInvalidStylesheetUnexpectedEndOfDat +ID5390=POSVERSIONINFOEX +ID5391=POSVERSIONINFOEXA +ID5392=POSVERSIONINFOEXW +ID5393=Power@TPolarComplex@Float +ID5394=Power@TPolarComplex@TRectComplex +ID5395=PowerInt@TPolarComplex@Integer +ID5396=PPalette32 +ID5397=PPAnsiChar +ID5398=PPAnsiCharArray +ID5399=PPChar ID54=!!OVERLOADED_Extract_TEDIObjectList ID540=_SESSION_HEADER.sess_name -ID5400=RsEInvalidXMLElementErroneousEndOfTagE -ID5401=RsEInvalidXMLElementExpectedBeginningO -ID5402=RsEInvalidXMLElementExpectedEndOfTagBu -ID5403=RsEInvalidXMLElementMalformedTagFoundn -ID5404=RsEInvalidXMLElementUnexpectedCharacte -ID5405=RsEInvalidXMLElementUnexpectedCharacte_ -ID5406=RsELibraryNotFound -ID5407=RsEmptyArray -ID5408=RsENoCollection -ID5409=RsENoOpenHelp +ID5400=PPCharArray +ID5401=PPCRE +ID5402=PPCREExtra +ID5403=PPCREIntArray +ID5404=PPHashNode +ID5405=PPInt64 +ID5406=PPointArray +ID5407=PPointer +ID5408=PPointerArray +ID5409=PPOLICY_ACCOUNT_DOMAIN_INFO ID541=_SID -ID5410=RsENoSupportedPersonality -ID5411=RsENotABcbPackage -ID5412=RsENotABcbProject -ID5413=RsENotADelphiPackage -ID5414=RsENotADelphiProject -ID5415=RsENotFound -ID5416=RsEnterprise -ID5417=RsEOpenGLInfo -ID5418=RsEOperationNotSupported -ID5419=RsEOutOfBounds +ID5410=PPOLICY_INFORMATION_CLASS +ID5411=PPolicyAccountDomainInfo +ID5412=PPolicyInformationClass +ID5413=PPPAnsiChar +ID5414=PPPChar +ID5415=PPWideChar +ID5416=PPWideCharArray +ID5417=PRasDialDlg +ID5418=PREFIX_CUT_EQUAL +ID5419=PREFIX_CUT_LOWERCASE ID542=_SID.IdentifierAuthority -ID5420=RsErrBadCount -ID5421=RsErrBadMagic -ID5422=RsErrBadOption -ID5423=RsErrBadPartial -ID5424=RsErrBadUTF8 -ID5425=RsErrBadUTF8Offset -ID5426=RsErrCallout -ID5427=RsErrCalloutError -ID5428=RsErrDfaRecurse -ID5429=RsErrDfaUCond +ID5420=PREPARSE_DATA_BUFFER +ID5421=PREPARSE_GUID_DATA_BUFFER +ID5422=PREPARSE_POINT_INFORMATION +ID5423=PRIMARYLANGID@WORD +ID5424=PrintMemo@TMemo@TRect +ID5425=ProcByLevel +ID5426=PROCESSOR_ARCHITECTURE_AMD64 +ID5427=PROCESSOR_ARCHITECTURE_IA32_ON_WIN64 +ID5428=PROCESSOR_ARCHITECTURE_IA64 +ID5429=PROCESSOR_ARCHITECTURE_INTEL ID543=_SID.Revision -ID5430=RsErrDfaUItem -ID5431=RsErrDfaUMLimit -ID5432=RsErrDfaWSSize -ID5433=RsErrInternal -ID5434=RsErrLibNotLoaded -ID5435=RsErrMatchLimit -ID5436=RsErrMemFuncNotSet -ID5437=RsErrNoMatch -ID5438=RsErrNoMemory -ID5439=RsErrNoSubString +ID5430=Product@array of TPolarComplex +ID5431=Product@TPolarComplex@TPolarComplex +ID5432=Product@TRectComplex@TRectComplex +ID5433=ProgIDExists@string +ID5434=ProjectTypeLibrary +ID5435=ProjectTypePackage +ID5436=ProjectTypeProgram +ID5437=PRTL_OSVERSIONINFOEXW +ID5438=PSE_FLAG +ID5439=PSE36_FLAG ID544=_SID.SubAuthority -ID5440=RsErrNull -ID5441=RsErrPartial -ID5442=RsErrRecursionLimit -ID5443=RsErrStudyFailed -ID5444=RsErrUnknownError -ID5445=RsErrUnknownNode -ID5446=RsESetBytesExFmt -ID5447=RsEUnableToCreatePropertyStorage -ID5448=RsEUnexpectedValueForLPos -ID5449=RsEUnknownCLRVersion +ID5440=PSegmentInfo +ID5441=PSegmentInfoArray +ID5442=PServiceDescriptionA +ID5443=PSESSION_BUFFER +ID5444=PSESSION_HEADER +ID5445=PSessionBuffer +ID5446=PSessionHeader +ID5447=PSID_AND_ATTRIBUTES +ID5448=PSID_AND_ATTRIBUTES_ARRAY +ID5449=PSID_IDENTIFIER_AUTHORITY ID545=_SID.SubAuthorityCount -ID5450=RsEUnknownIdePackageExtension -ID5451=RsEUnknownPackageExtension -ID5452=RsEUnknownProjectExtension -ID5453=RsEValueNotFound -ID5454=RsEx64PlatformNotValid -ID5455=RsExpertInstallationFinished -ID5456=RsExpertInstallationStarted -ID5457=RsExpertUninstallationFinished -ID5458=RsExpertUninstallationStarted -ID5459=RsExprEvalEndArgs +ID5450=PSID_NAME_USE +ID5451=PSidAndAttributes +ID5452=PSidAndAttributesArray +ID5453=PSidNameUSe +ID5454=PSizeInt +ID5455=PSN_FLAG +ID5456=PSourceFileEntry +ID5457=PSourceModuleInfo +ID5458=PsPePkgLibrary +ID5459=PStackInfo ID546=_SID_AND_ATTRIBUTES -ID5460=RsExprEvalExprNotFound -ID5461=RsExprEvalExprPtrNotFound -ID5462=RsExprEvalExprRefCountAssertion -ID5463=RsExprEvalFactorExpected -ID5464=RsExprEvalFirstArg -ID5465=RsExprEvalNextArg -ID5466=RsExprEvalRParenExpected -ID5467=RsExprEvalUnknownSymbol -ID5468=RsFailedToObtainSize -ID5469=RsFileDeletionFailed +ID5460=PSTGOPTIONS +ID5461=PSymbolInfo +ID5462=PSymbolInfos +ID5463=PTOKEN_USER +ID5464=PTokenUser +ID5465=PtrSimpleCompare@Pointer@Pointer +ID5466=PtrSimpleEqualityCompare@Pointer@Pointer +ID5467=PtrSimpleHashConvert@Pointer +ID5468=PtrSortProc +ID5469=PUcRange ID547=_SID_AND_ATTRIBUTES.Attributes -ID5470=RsFileDeletionOk -ID5471=RsFileIndexOutOfRange -ID5472=RsFileMappingInvalidHandle -ID5473=RsFileMappingOpenFile -ID5474=RsFileSearchAttrInconsistency -ID5475=RsFileStreamCreate -ID5476=RsFileUtilsAttrUnavailable -ID5477=RsFileUtilsLanguageIndex -ID5478=RsFileUtilsNoVersionInfo -ID5479=RsFormatBadArgumentType +ID5470=PUCS2 +ID5471=PUCS4 +ID5472=PUcState +ID5473=PUcStateList +ID5474=PUcSymbolTableEntry +ID5475=PULARGE_INTEGER +ID5476=PULargeInteger +ID5477=PULONGLONG +ID5478=PUnicodeBlockData +ID5479=PUnitVersionInfo ID548=_SID_AND_ATTRIBUTES.Sid -ID5480=RsFormatBadArgumentTypeEx -ID5481=RsFormatException -ID5482=RsFormatNoArgument -ID5483=RsFormatNoArgumentEx -ID5484=RsFormatSyntaxError -ID5485=RsHardDisk -ID5486=RsHasNotTD32Info -ID5487=RsHKCCLong -ID5488=RsHKCCShort -ID5489=RsHKCRLong +ID5480=PUREBuffer +ID5481=PUSER_INFO_0 +ID5482=PUSER_INFO_1 +ID5483=PUSER_INFO_2 +ID5484=PUserData +ID5485=PUserInfo0 +ID5486=PUserInfo1 +ID5487=PUserInfo2 +ID5488=PUTBMChar +ID5489=PUTBMSkip ID549=_SID_IDENTIFIER_AUTHORITY -ID5490=RsHKCRShort -ID5491=RsHKCULong -ID5492=RsHKCUShort -ID5493=RsHKDDLong -ID5494=RsHKDDShort -ID5495=RsHKLMLong -ID5496=RsHKLMShort -ID5497=RsHKPDLong -ID5498=RsHKPDShort -ID5499=RsHKUSLong +ID5490=PUTF16 +ID5491=PUTF32 +ID5492=PUTF7 +ID5493=PUTF8 +ID5494=PWideChar +ID5495=PWideMultiSz +ID5496=PWLEN +ID5497=PWordArray +ID5498=PWStringItem +ID5499=QNLEN ID55=!!OVERLOADED_Find_TEDIObjectList ID550=_SID_IDENTIFIER_AUTHORITY.Value -ID5500=RsHKUSShort -ID5501=RsIdePackageInstallationFinished -ID5502=RsIdePackageInstallationStarted -ID5503=RsIdePackageUninstallationFinished -ID5504=RsIdePackageUninstallationStarted -ID5505=RsInconsistentPath -ID5506=RsIndexOutOfRange -ID5507=RsIndexOutOfRangePaper -ID5508=RsInsertingJdbg -ID5509=RsInstructionStreamInvalid +ID5500=QuickSort@IJclAnsiStrList@Integer@Integer@TAnsiStrCompare +ID5501=QuickSort@IJclCardinalList@Integer@Integer@TCardinalCompare +ID5502=QuickSort@IJclDoubleList@Integer@Integer@TDoubleCompare +ID5503=QuickSort@IJclExtendedList@Integer@Integer@TExtendedCompare +ID5504=QuickSort@IJclInt64List@Integer@Integer@TInt64Compare +ID5505=QuickSort@IJclIntegerList@Integer@Integer@TIntegerCompare +ID5506=QuickSort@IJclIntfList@Integer@Integer@TIntfCompare +ID5507=QuickSort@IJclList@Integer@Integer@TCompare +ID5508=QuickSort@IJclPtrList@Integer@Integer@TPtrCompare +ID5509=QuickSort@IJclSingleList@Integer@Integer@TSingleCompare ID551=_SID_NAME_USE -ID5510=RsIntelCacheDescr00 -ID5511=RsIntelCacheDescr01 -ID5512=RsIntelCacheDescr02 -ID5513=RsIntelCacheDescr03 -ID5514=RsIntelCacheDescr04 -ID5515=RsIntelCacheDescr05 -ID5516=RsIntelCacheDescr06 -ID5517=RsIntelCacheDescr08 -ID5518=RsIntelCacheDescr0A -ID5519=RsIntelCacheDescr0B +ID5510=QuickSort@IJclStrList@Integer@Integer@TStrCompare +ID5511=QuickSort@IJclUnicodeStrList@Integer@Integer@TUnicodeStrCompare +ID5512=QuickSort@IJclWideStrList@Integer@Integer@TWideStrCompare +ID5513=Quotient@TPolarComplex@TPolarComplex +ID5514=Quotient@TRectComplex@TRectComplex +ID5515=RadPerCycle +ID5516=RadPerDeg +ID5517=RadPerGrad +ID5518=RadToDeg@Extended +ID5519=RadToDeg@Float ID552=_TOKEN_USER -ID5520=RsIntelCacheDescr0C -ID5521=RsIntelCacheDescr22 -ID5522=RsIntelCacheDescr23 -ID5523=RsIntelCacheDescr25 -ID5524=RsIntelCacheDescr29 -ID5525=RsIntelCacheDescr2C -ID5526=RsIntelCacheDescr30 -ID5527=RsIntelCacheDescr40 -ID5528=RsIntelCacheDescr41 -ID5529=RsIntelCacheDescr42 +ID5520=RadToDeg@Single +ID5521=RadToGrad@Extended +ID5522=RadToGrad@Float +ID5523=RadToGrad@Single +ID5524=RankineAbsoluteZero +ID5525=RankineAtFahrenheitZero +ID5526=RankineBoilingPoint +ID5527=RankineFreezingPoint +ID5528=RankineTo@TTemperatureType@Float +ID5529=RankineToCelsius@Float ID553=_TOKEN_USER.User -ID5530=RsIntelCacheDescr43 -ID5531=RsIntelCacheDescr44 -ID5532=RsIntelCacheDescr45 -ID5533=RsIntelCacheDescr46 -ID5534=RsIntelCacheDescr47 -ID5535=RsIntelCacheDescr49 -ID5536=RsIntelCacheDescr50 -ID5537=RsIntelCacheDescr51 -ID5538=RsIntelCacheDescr52 -ID5539=RsIntelCacheDescr56 +ID5530=RankineToFahrenheit@Float +ID5531=RankineToKelvin@Float +ID5532=RankineToReaumur@Float +ID5533=RASDIALDLG +ID5534=RatioDegToGrad +ID5535=RatioDegToRad +ID5536=RatioGradToDeg +ID5537=RatioGradToRad +ID5538=RatioRadToDeg +ID5539=RatioRadToGrad ID554=_USER_INFO_0 -ID5540=RsIntelCacheDescr57 -ID5541=RsIntelCacheDescr5B -ID5542=RsIntelCacheDescr5C -ID5543=RsIntelCacheDescr5D -ID5544=RsIntelCacheDescr60 -ID5545=RsIntelCacheDescr66 -ID5546=RsIntelCacheDescr67 -ID5547=RsIntelCacheDescr68 -ID5548=RsIntelCacheDescr70 -ID5549=RsIntelCacheDescr71 +ID5540=RDFN_AgencyCodeId +ID5541=RDFN_Description +ID5542=RDFN_FGDescription +ID5543=RDFN_FunctionalGroupId +ID5544=RDFN_ICDescription +ID5545=RDFN_Id +ID5546=RDFN_MaximumLength +ID5547=RDFN_MaximumLoopRepeat +ID5548=RDFN_MaximumUsage +ID5549=RDFN_MinimumLength ID555=_USER_INFO_0.usri0_name -ID5550=RsIntelCacheDescr72 -ID5551=RsIntelCacheDescr78 -ID5552=RsIntelCacheDescr79 -ID5553=RsIntelCacheDescr7A -ID5554=RsIntelCacheDescr7B -ID5555=RsIntelCacheDescr7C -ID5556=RsIntelCacheDescr7D -ID5557=RsIntelCacheDescr7F -ID5558=RsIntelCacheDescr82 -ID5559=RsIntelCacheDescr83 +ID5550=RDFN_Notes +ID5551=RDFN_OwnerLoopId +ID5552=RDFN_ParentLoopId +ID5553=RDFN_Position +ID5554=RDFN_RequirementDesignator +ID5555=RDFN_Section +ID5556=RDFN_StandardId +ID5557=RDFN_TransSetDesc +ID5558=RDFN_TransSetId +ID5559=RDFN_Type ID556=_USER_INFO_1 -ID5560=RsIntelCacheDescr84 -ID5561=RsIntelCacheDescr85 -ID5562=RsIntelCacheDescr86 -ID5563=RsIntelCacheDescr87 -ID5564=RsIntelCacheDescrB0 -ID5565=RsIntelCacheDescrB3 -ID5566=RsIntelCacheDescrB4 -ID5567=RsIntelCacheDescrF0 -ID5568=RsIntelCacheDescrF1 -ID5569=RsIntelUnknownCache +ID5560=RDFN_VersionId +ID5561=RDFN_VersionReleaseId +ID5562=ReadKey +ID5563=ReadMessageCheck +ID5564=ReadMessageData +ID5565=ReadMessageStrings +ID5566=real_pcre +ID5567=real_pcre_extra +ID5568=real_pcre_extra.callout_data +ID5569=real_pcre_extra.flags ID557=_USER_INFO_1.usri1_comment -ID5570=RsInvalidArgument -ID5571=RsInvalidDigit -ID5572=RsInvalidDigitValue -ID5573=RsInvalidEmptyStringItem -ID5574=RsInvalidGUIDString -ID5575=RsInvalidHandleForRegion -ID5576=RsInvalidMMFEmpty -ID5577=RsInvalidMMFName -ID5578=RsInvalidPrinter -ID5579=RsInvalidProcessID +ID5570=real_pcre_extra.match_limit +ID5571=real_pcre_extra.match_limit_recursion +ID5572=real_pcre_extra.study_data +ID5573=real_pcre_extra.tables +ID5574=ReaumurAbsoluteZero +ID5575=ReaumurBoilingPoint +ID5576=ReaumurFreezingPoint +ID5577=ReaumurTo@TTemperatureType@Float +ID5578=ReaumurToCelsius@Float +ID5579=ReaumurToFahrenheit@Float ID558=_USER_INFO_1.usri1_flags -ID5580=RsInvalidRational -ID5581=RsInvalidRegion -ID5582=RsInvalidRegionInfo -ID5583=RsInvalidSampleSize -ID5584=RsInvalidSID -ID5585=RsInvalidSignatureData -ID5586=RsIStreamNil -ID5587=RsJdbgInfo -ID5588=RsJdbgInfoFailed -ID5589=RsJdbgInfoOk +ID5580=ReaumurToKelvin@Float +ID5581=ReaumurToRankine@Float +ID5582=ReBaseImage@PAnsiChar@PAnsiChar@BOOL@BOOL@BOOL@ULONG@ULONG@ULONG_PTR@ULONG@ULONG_PTR@ULONG +ID5583=ReBaseImage64@PAnsiChar@PAnsiChar@BOOL@BOOL@BOOL@ULONG@ULONG@TJclAddr64@ULONG@TJclAddr64@ULONG +ID5584=RectComplex@Float@Float +ID5585=RectComplex@TPolarComplex +ID5586=RectFitToScreen@TRect +ID5587=RedComponent@TColor32 +ID5588=RefUnique +ID5589=REG_BINARY ID559=_USER_INFO_1.usri1_home_dir -ID5590=RsJpegExtension -ID5591=RsKylixName -ID5592=RsKylixVersionName -ID5593=RsLoadFromStreamSize -ID5594=RsLocalVarSigOutOfRange -ID5595=RsLsaError -ID5596=RsMakeUTCTime -ID5597=RsMapiErrACCESS_DENIED -ID5598=RsMapiErrAMBIGUOUS_RECIPIENT -ID5599=RsMapiErrATTACHMENT_NOT_FOUND +ID5590=REG_DWORD +ID5591=REG_DWORD_BIG_ENDIAN +ID5592=REG_DWORD_LITTLE_ENDIAN +ID5593=REG_EXPAND_SZ +ID5594=REG_FULL_RESOURCE_DESCRIPTOR +ID5595=REG_LINK +ID5596=REG_MULTI_SZ +ID5597=REG_NONE +ID5598=REG_QWORD +ID5599=REG_QWORD_LITTLE_ENDIAN ID56=!!OVERLOADED_FindAppDomain_TJclClrHost ID560=_USER_INFO_1.usri1_name -ID5600=RsMapiErrATTACHMENT_OPEN_FAILURE -ID5601=RsMapiErrATTACHMENT_WRITE_FAILURE -ID5602=RsMapiErrBAD_RECIPTYPE -ID5603=RsMapiErrDISK_FULL -ID5604=RsMapiErrFAILURE -ID5605=RsMapiErrINSUFFICIENT_MEMORY -ID5606=RsMapiErrINVALID_EDITFIELDS -ID5607=RsMapiErrINVALID_MESSAGE -ID5608=RsMapiErrINVALID_RECIPS -ID5609=RsMapiErrINVALID_SESSION +ID5600=REG_RESOURCE_LIST +ID5601=REG_RESOURCE_REQUIREMENTS_LIST +ID5602=REG_SZ +ID5603=RegAutoExecEnabled@TExecKind@string@string +ID5604=RegCreateKey@DelphiHKEY@string@string +ID5605=RegGetValueNamesAndValues@HKEY@string@TStrings +ID5606=RegGetWOW64AccessMode +ID5607=RegisterCLSIDInCategory@TGUID@TGUID +ID5608=REGISTERED +ID5609=REGISTERING ID561=_USER_INFO_1.usri1_password -ID5610=RsMapiErrLOGIN_FAILURE -ID5611=RsMapiErrMESSAGE_IN_USE -ID5612=RsMapiErrNETWORK_FAILURE -ID5613=RsMapiErrNO_MESSAGES -ID5614=RsMapiErrNOT_SUPPORTED -ID5615=RsMapiError -ID5616=RsMapiErrTEXT_TOO_LARGE -ID5617=RsMapiErrTOO_MANY_FILES -ID5618=RsMapiErrTOO_MANY_RECIPIENTS -ID5619=RsMapiErrTOO_MANY_SESSIONS +ID5610=RegisterUnitVersion@THandle@TUnitVersionInfo +ID5611=RegisterVersionControlPluginClass@TJclVersionControlPluginClass +ID5612=RegistryandInifiles +ID5613=RegKeyDelimiter +ID5614=RegReadAnsiMultiSz@DelphiHKEY@string@string +ID5615=RegReadAnsiMultiSz@DelphiHKEY@string@string@TAnsiStrings +ID5616=RegReadAnsiMultiSzDef@DelphiHKEY@string@string@PAnsiMultiSz +ID5617=RegReadAnsiMultiSzDef@DelphiHKEY@string@string@TAnsiStrings@TAnsiStrings +ID5618=RegReadAnsiMultiSzEx@DelphiHKEY@string@string@PAnsiMultiSz@Boolean +ID5619=RegReadAnsiMultiSzEx@DelphiHKEY@string@string@TAnsiStrings@Boolean ID562=_USER_INFO_1.usri1_password_age -ID5620=RsMapiErrTYPE_NOT_SUPPORTED -ID5621=RsMapiErrUNKNOWN_RECIPIENT -ID5622=RsMapiErrUSER_ABORT -ID5623=RsMapiInvalidIndex -ID5624=RsMapiMailBCC -ID5625=RsMapiMailBody -ID5626=RsMapiMailCC -ID5627=RsMapiMailNoClient -ID5628=RsMapiMailORIG -ID5629=RsMapiMailSubject +ID5620=RegReadAnsiStringEx@DelphiHKEY@AnsiString@AnsiString@AnsiString@Boolean +ID5621=RegReadAnsiStringEx@DelphiHKEY@string@string@AnsiString@Boolean +ID5622=RegReadBinaryEx@DelphiHKEY@string@string@@Cardinal@Cardinal@Boolean +ID5623=RegReadCardinalEx@DelphiHKEY@string@string@Cardinal@Boolean +ID5624=RegReadDouble@DelphiHKEY@string@string +ID5625=RegReadDoubleDef@DelphiHKEY@string@string@Double +ID5626=RegReadDoubleEx@DelphiHKEY@string@string@Double@Boolean +ID5627=RegReadDWORDEx@DelphiHKEY@string@string@DWORD@Boolean +ID5628=RegReadExtended@DelphiHKEY@string@string +ID5629=RegReadExtendedDef@DelphiHKEY@string@string@Extended ID563=_USER_INFO_1.usri1_priv -ID5630=RsMapiMailTO -ID5631=RsMapiMissingExport -ID5632=RsMapSizeFmt -ID5633=RsMathDomainError -ID5634=RsMetSectInitialize -ID5635=RsMetSectInvalidParameter -ID5636=RsMetSectNameEmpty -ID5637=RsMidiInUnknownError -ID5638=RsMidiInvalidChannelNum -ID5639=RsMidiNotImplemented +ID5630=RegReadExtendedEx@DelphiHKEY@string@string@Extended@Boolean +ID5631=RegReadInt64Ex@DelphiHKEY@string@string@Int64@Boolean +ID5632=RegReadIntegerEx@DelphiHKEY@string@string@Integer@Boolean +ID5633=RegReadMultiSz@DelphiHKEY@string@string +ID5634=RegReadMultiSz@DelphiHKEY@string@string@TStrings +ID5635=RegReadMultiSzDef@DelphiHKEY@string@string@PMultiSz +ID5636=RegReadMultiSzDef@DelphiHKEY@string@string@TStrings@TStrings +ID5637=RegReadMultiSzEx@DelphiHKEY@string@string@PMultiSz@Boolean +ID5638=RegReadMultiSzEx@DelphiHKEY@string@string@TStrings@Boolean +ID5639=RegReadSingle@DelphiHKEY@string@string ID564=_USER_INFO_1.usri1_script_path -ID5640=RsMidiOutUnknownError -ID5641=RsMMCdTimeFormat -ID5642=RsMmCdTrackNo -ID5643=RsMmInconsistentId -ID5644=RsMmMciErrorPrefix -ID5645=RsMmMixerAnalog -ID5646=RsMmMixerAuxiliary -ID5647=RsMmMixerCompactDisc -ID5648=RsMmMixerCtlNotFound -ID5649=RsMmMixerDestination +ID5640=RegReadSingleDef@DelphiHKEY@string@string@Single +ID5641=RegReadSingleEx@DelphiHKEY@string@string@Single@Boolean +ID5642=RegReadStringEx@DelphiHKEY@string@string@AnsiString@Boolean +ID5643=RegReadStringEx@DelphiHKEY@string@string@string@Boolean +ID5644=RegReadUInt64Ex@DelphiHKEY@string@string@UInt64@Boolean +ID5645=RegReadWideMultiSz@DelphiHKEY@string@string +ID5646=RegReadWideMultiSz@DelphiHKEY@string@string@TWideStrings +ID5647=RegReadWideMultiSzDef@DelphiHKEY@string@string@PWideMultiSz +ID5648=RegReadWideMultiSzDef@DelphiHKEY@string@string@TWideStrings@TWideStrings +ID5649=RegReadWideMultiSzEx@DelphiHKEY@string@string@PWideMultiSz@Boolean ID565=_USER_INFO_2 -ID5650=RsMmMixerDigital -ID5651=RsMmMixerHeadphones -ID5652=RsMmMixerLine -ID5653=RsMmMixerMicrophone -ID5654=RsMmMixerMonitor -ID5655=RsMmMixerNoDevices -ID5656=RsMmMixerPcSpeaker -ID5657=RsMmMixerSource -ID5658=RsMmMixerSpeakers -ID5659=RsMmMixerSynthesizer +ID5650=RegReadWideMultiSzEx@DelphiHKEY@string@string@TWideStrings@Boolean +ID5651=RegReadWideStringEx@DelphiHKEY@string@string@WideString@Boolean +ID5652=RegSetWOW64AccessMode@TJclRegWOW64Access +ID5653=Regular Expressions +ID5654=RegularExpressions +ID5655=RegValueExists@DelphiHKEY@string@string +ID5656=RegWriteAnsiMultiSz@DelphiHKEY@string@string@Cardinal@PAnsiMultiSz +ID5657=RegWriteAnsiMultiSz@DelphiHKEY@string@string@Cardinal@TAnsiStrings +ID5658=RegWriteAnsiMultiSz@DelphiHKEY@string@string@PAnsiMultiSz +ID5659=RegWriteAnsiMultiSz@DelphiHKEY@string@string@TAnsiStrings ID566=_USER_INFO_2.usri2_acct_expires -ID5660=RsMmMixerTelephone -ID5661=RsMmMixerUndefined -ID5662=RsMmMixerVoiceIn -ID5663=RsMmMixerWaveIn -ID5664=RsMmMixerWaveOut -ID5665=RsMmNoCdAudio -ID5666=RsMmSetEvent -ID5667=RsMmTimerActive -ID5668=RsMmTimerBeginPeriod -ID5669=RsMmTimerGetCaps +ID5660=RegWriteAnsiString@DelphiHKEY@AnsiString@AnsiString@Cardinal@AnsiString +ID5661=RegWriteAnsiString@DelphiHKEY@string@string@Cardinal@AnsiString +ID5662=RegWriteBool@DelphiHKEY@string@string@Cardinal@Boolean +ID5663=RegWriteCardinal@DelphiHKEY@string@string@Cardinal@Cardinal +ID5664=RegWriteDouble@DelphiHKEY@string@string@Cardinal@Double +ID5665=RegWriteDouble@DelphiHKEY@string@string@Double +ID5666=RegWriteDWORD@DelphiHKEY@string@string@DWORD +ID5667=RegWriteExtended@DelphiHKEY@string@string@Cardinal@Extended +ID5668=RegWriteExtended@DelphiHKEY@string@string@Extended +ID5669=RegWriteInt64@DelphiHKEY@string@string@Int64 ID567=_USER_INFO_2.usri2_auth_flags -ID5670=RsMMTrackAudio -ID5671=RsMMTrackOther -ID5672=RsMmUnknownError -ID5673=RsMsBuildNotSupported -ID5674=RsNAEndDocument -ID5675=RsNAEndPage -ID5676=RsNaNSignal -ID5677=RsNaNTagError -ID5678=RsNASendData -ID5679=RsNAStartDocument +ID5670=RegWriteInteger@DelphiHKEY@string@string@Integer +ID5671=RegWriteMultiSz@DelphiHKEY@string@string@Cardinal@PMultiSz +ID5672=RegWriteMultiSz@DelphiHKEY@string@string@Cardinal@TStrings +ID5673=RegWriteMultiSz@DelphiHKEY@string@string@PMultiSz +ID5674=RegWriteMultiSz@DelphiHKEY@string@string@TStrings +ID5675=RegWriteSingle@DelphiHKEY@string@string@Cardinal@Single +ID5676=RegWriteSingle@DelphiHKEY@string@string@Single +ID5677=RegWriteString@DelphiHKEY@string@string@string +ID5678=RegWriteUInt64@DelphiHKEY@string@string@UInt64 +ID5679=RegWriteWideMultiSz@DelphiHKEY@string@string@Cardinal@PWideMultiSz ID568=_USER_INFO_2.usri2_bad_pw_count -ID5680=RsNAStartPage -ID5681=RsNATransmission -ID5682=RsNeedUpdate -ID5683=RsNoBitmapForRegion -ID5684=RsNoCounter -ID5685=RsNoDeviceContextForWindow -ID5686=RsNoLocalVarSig -ID5687=RsNoNaN -ID5688=RsNonPositiveArray -ID5689=RsNtfsUnableToDeleteSymbolicLink +ID5680=RegWriteWideMultiSz@DelphiHKEY@string@string@Cardinal@TWideStrings +ID5681=RegWriteWideMultiSz@DelphiHKEY@string@string@PWideMultiSz +ID5682=RegWriteWideMultiSz@DelphiHKEY@string@string@TWideStrings +ID5683=RegWriteWideString@DelphiHKEY@string@string@WideString +ID5684=RemoveIgnoredException@TClass +ID5685=RemoveIgnoredExceptionByName@string +ID5686=REPARSE_DATA_BUFFER +ID5687=REPARSE_GUID_DATA_BUFFER +ID5688=REPARSE_POINT_INFORMATION +ID5689=ReplacementCharacter ID569=_USER_INFO_2.usri2_code_page -ID5690=RsNumericConstantTooLarge -ID5691=RsOctaveA -ID5692=RsOctaveASharp -ID5693=RsOctaveB -ID5694=RsOctaveC -ID5695=RsOctaveCSharp -ID5696=RsOctaveD -ID5697=RsOctaveDSharp -ID5698=RsOctaveE -ID5699=RsOctaveF +ID5690=ReplacesCorHdrNumericDefines +ID5691=ResetIStreamToStart@IStream +ID5692=ResetMemory@@Longint +ID5693=Reverse@IJclAnsiStrIterator@IJclAnsiStrIterator +ID5694=Reverse@IJclCardinalIterator@IJclCardinalIterator +ID5695=Reverse@IJclDoubleIterator@IJclDoubleIterator +ID5696=Reverse@IJclExtendedIterator@IJclExtendedIterator +ID5697=Reverse@IJclInt64Iterator@IJclInt64Iterator +ID5698=Reverse@IJclIntegerIterator@IJclIntegerIterator +ID5699=Reverse@IJclIntfIterator@IJclIntfIterator ID57=!!OVERLOADED_FindSegment_TEDIMessageLoop ID570=_USER_INFO_2.usri2_comment -ID5700=RsOctaveFSharp -ID5701=RsOctaveG -ID5702=RsOctaveGSharp -ID5703=RsOpenEdition -ID5704=RsOpenGLInfoError -ID5705=RsOSVersionWin2000 -ID5706=RsOSVersionWin2003 -ID5707=RsOSVersionWin2003R2 -ID5708=RsOSVersionWin95 -ID5709=RsOSVersionWin95OSR2 +ID5700=Reverse@IJclIterator@IJclIterator +ID5701=Reverse@IJclPtrIterator@IJclPtrIterator +ID5702=Reverse@IJclSingleIterator@IJclSingleIterator +ID5703=Reverse@IJclStrIterator@IJclStrIterator +ID5704=Reverse@IJclUnicodeStrIterator@IJclUnicodeStrIterator +ID5705=Reverse@IJclWideStrIterator@IJclWideStrIterator +ID5706=ReverseBits@Cardinal +ID5707=ReverseBits@Int64 +ID5708=ReverseBits@Integer +ID5709=ReverseBits@Pointer@Integer ID571=_USER_INFO_2.usri2_country_code -ID5710=RsOSVersionWin98 -ID5711=RsOSVersionWin98SE -ID5712=RsOSVersionWinME -ID5713=RsOSVersionWinNT3 -ID5714=RsOSVersionWinNT4 -ID5715=RsOSVersionWinServer2008 -ID5716=RsOSVersionWinVista -ID5717=RsOSVersionWinXP -ID5718=RsOSVersionWinXP64 -ID5719=RsPackageInstallationFinished +ID5710=ReverseBits@Shortint +ID5711=ReverseBits@Smallint +ID5712=ReverseBits@Word +ID5713=ReverseBytes@Int64 +ID5714=ReverseBytes@Integer +ID5715=ReverseBytes@Pointer@Integer +ID5716=ReverseBytes@Smallint +ID5717=ReverseBytes@Word +ID5718=RGBAToBGRA@Pointer@Pointer@Byte@Cardinal +ID5719=RGBToBGR@Pointer@Pointer@Byte@Cardinal ID572=_USER_INFO_2.usri2_flags -ID5720=RsPackageInstallationStarted -ID5721=RsPackageUninstallationFinished -ID5722=RsPackageUninstallationStarted -ID5723=RsPathInvalidDrive -ID5724=RsPeAddressOfEntryPoint -ID5725=RsPeBaseOfCode -ID5726=RsPeBaseOfData -ID5727=RsPeCantOpen -ID5728=RsPeCharacteristics -ID5729=RsPeCheckSum +ID5720=RGBToBGR@Pointer@Pointer@Pointer@Pointer@Byte@Cardinal +ID5721=RGBToHLS@Single@Single@Single@Single@Single@Single +ID5722=RGBToHLS@TColorRef +ID5723=RGBToHLS@TColorVector +ID5724=RGBToHSL@Single@Single@Single@Single@Single@Single +ID5725=RGBToHSL@TColor32@Single@Single@Single +ID5726=RMLEN +ID5727=Root@TPolarComplex@Cardinal@Cardinal +ID5728=RootKeys +ID5729=RoundToAllocGranularity64@Int64@Boolean ID573=_USER_INFO_2.usri2_full_name -ID5730=RsPeCriticalSectionDefaultTimeout -ID5731=RsPeCSDVersion -ID5732=RsPeDEBUG_BORLAND -ID5733=RsPeDEBUG_CODEVIEW -ID5734=RsPeDEBUG_COFF -ID5735=RsPeDEBUG_EXCEPTION -ID5736=RsPeDEBUG_FIXUP -ID5737=RsPeDEBUG_FPO -ID5738=RsPeDEBUG_MISC -ID5739=RsPeDEBUG_OMAP_FROM_SRC +ID5730=RRot@Integer@TBitRange +ID5731=RRot@Word@TBitRange +ID5732=RsArchitect +ID5733=RsArg_NullReferenceException +ID5734=RsArgumentIsNull +ID5735=RsArgumentOutOfRange +ID5736=RsAssertUnpairedEndUpdate +ID5737=RsAttrAnyFile +ID5738=RsAttrArchive +ID5739=RsAttrCompressed ID574=_USER_INFO_2.usri2_home_dir -ID5740=RsPeDEBUG_OMAP_TO_SRC -ID5741=RsPeDEBUG_UNKNOWN -ID5742=RsPeDeCommitFreeBlockThreshold -ID5743=RsPeDeCommitTotalFreeThreshold -ID5744=RsPeDllCharacteristics -ID5745=RsPeEditList -ID5746=RsPeFileAlignment -ID5747=RsPeGlobalFlagsClear -ID5748=RsPeGlobalFlagsSet -ID5749=RsPeImageBase +ID5740=RsAttrDirectory +ID5741=RsAttrEncrypted +ID5742=RsAttrHidden +ID5743=RsAttrNormal +ID5744=RsAttrOffline +ID5745=RsAttrReadOnly +ID5746=RsAttrReparsePoint +ID5747=RsAttrSparseFile +ID5748=RsAttrSystemFile +ID5749=RsAttrTemporary ID575=_USER_INFO_2.usri2_last_logoff -ID5750=RsPeImageVersion -ID5751=RsPeImg_00 -ID5752=RsPeImg_01 -ID5753=RsPeImg_02 -ID5754=RsPeImg_03 -ID5755=RsPeImg_04 -ID5756=RsPeImg_05 -ID5757=RsPeImg_06 -ID5758=RsPeImg_07 -ID5759=RsPeImg_08 +ID5750=RsAttrVolumeID +ID5751=RsBCBName +ID5752=RsBDSName +ID5753=RsBitmapExtension +ID5754=RsBitsPerSampleNotSupported +ID5755=RsBlankSearchString +ID5756=RsBorlandStudioProjects +ID5757=RsCannotCreateDir +ID5758=RsCannotRaiseSignal +ID5759=RsCannotWriteRefStream ID576=_USER_INFO_2.usri2_last_logon -ID5760=RsPeImg_09 -ID5761=RsPeImg_10 -ID5762=RsPeImg_11 -ID5763=RsPeImg_12 -ID5764=RsPeImg_13 -ID5765=RsPeImg_14 -ID5766=RsPeLinkerVersion -ID5767=RsPeLoaderFlags -ID5768=RsPeLockPrefixTable -ID5769=RsPeMachine +ID5760=RsCantConvertAddr64 +ID5761=RsCasedUnicodeChar +ID5762=RsCategoryUnicodeChar +ID5763=RsCDRomDrive +ID5764=RsCILCmdadd +ID5765=RsCILCmdaddovf +ID5766=RsCILCmdaddovfun +ID5767=RsCILCmdand +ID5768=RsCILCmdarglist +ID5769=RsCILCmdbeq ID577=_USER_INFO_2.usri2_logon_hours -ID5770=RsPeMACHINE_ALPHA -ID5771=RsPeMACHINE_AM33 -ID5772=RsPeMACHINE_AMD64 -ID5773=RsPeMACHINE_AMPHA64 -ID5774=RsPeMACHINE_ARM -ID5775=RsPeMACHINE_CEE -ID5776=RsPeMACHINE_CEF -ID5777=RsPeMACHINE_EBC -ID5778=RsPeMACHINE_I386 -ID5779=RsPeMACHINE_IA64 +ID5770=RsCILCmdbeqs +ID5771=RsCILCmdbge +ID5772=RsCILCmdbges +ID5773=RsCILCmdbgeun +ID5774=RsCILCmdbgeuns +ID5775=RsCILCmdbgt +ID5776=RsCILCmdbgts +ID5777=RsCILCmdbgtun +ID5778=RsCILCmdbgtuns +ID5779=RsCILCmdble ID578=_USER_INFO_2.usri2_logon_server -ID5780=RsPeMACHINE_M32R -ID5781=RsPeMACHINE_MIPS16 -ID5782=RsPeMACHINE_MIPSFPU -ID5783=RsPeMACHINE_MIPSFPU16 -ID5784=RsPeMACHINE_POWERPC -ID5785=RsPeMACHINE_POWERPCFP -ID5786=RsPeMACHINE_R10000 -ID5787=RsPeMACHINE_R3000 -ID5788=RsPeMACHINE_R4000 -ID5789=RsPeMACHINE_SH3 +ID5780=RsCILCmdbles +ID5781=RsCILCmdbleun +ID5782=RsCILCmdbleuns +ID5783=RsCILCmdblt +ID5784=RsCILCmdblts +ID5785=RsCILCmdbltun +ID5786=RsCILCmdbltuns +ID5787=RsCILCmdbneun +ID5788=RsCILCmdbneuns +ID5789=RsCILCmdbox ID579=_USER_INFO_2.usri2_max_storage -ID5790=RsPeMACHINE_SH3DSP -ID5791=RsPeMACHINE_SH3E -ID5792=RsPeMACHINE_SH4 -ID5793=RsPeMACHINE_SH5 -ID5794=RsPeMACHINE_THUMB -ID5795=RsPeMACHINE_TRICORE -ID5796=RsPeMACHINE_UNKNOWN -ID5797=RsPeMACHINE_WCEMIPSV2 -ID5798=RsPeMagic -ID5799=RsPeMaximumAllocationSize +ID5790=RsCILCmdbr +ID5791=RsCILCmdbreak +ID5792=RsCILCmdbrfalse +ID5793=RsCILCmdbrfalses +ID5794=RsCILCmdbrs +ID5795=RsCILCmdbrtrue +ID5796=RsCILCmdbrtrues +ID5797=RsCILCmdcall +ID5798=RsCILCmdcalli +ID5799=RsCILCmdcallvirt ID58=!!OVERLOADED_FindSegment_TEDITransactionSetLoop ID580=_USER_INFO_2.usri2_name -ID5800=RsPeNotAvailableForAttached -ID5801=RsPeNotPE -ID5802=RsPeNotResDir -ID5803=RsPeNumberOfRvaAndSizes -ID5804=RsPeNumberOfSections -ID5805=RsPeNumberOfSymbols -ID5806=RsPeOperatingSystemVersion -ID5807=RsPePkgBCB4Produced -ID5808=RsPePkgDelphi4Produced -ID5809=RsPePkgDesignOnly +ID5800=RsCILCmdcastclass +ID5801=RsCILCmdceq +ID5802=RsCILCmdcgt +ID5803=RsCILCmdcgtun +ID5804=RsCILCmdckfinite +ID5805=RsCILCmdclt +ID5806=RsCILCmdcltun +ID5807=RsCILCmdconvi +ID5808=RsCILCmdconvi1 +ID5809=RsCILCmdconvi2 ID581=_USER_INFO_2.usri2_num_logons -ID5810=RsPePkgExecutable -ID5811=RsPePkgIgnoreDupUnits -ID5812=RsPePkgImplicit -ID5813=RsPePkgMain -ID5814=RsPePkgNeverBuild -ID5815=RsPePkgOrgWeak -ID5816=RsPePkgPackage -ID5817=RsPePkgProducerUndefined -ID5818=RsPePkgRunOnly -ID5819=RsPePkgV3Produced +ID5810=RsCILCmdconvi4 +ID5811=RsCILCmdconvi8 +ID5812=RsCILCmdconvovfi +ID5813=RsCILCmdconvovfi1 +ID5814=RsCILCmdconvovfi1un +ID5815=RsCILCmdconvovfi2 +ID5816=RsCILCmdconvovfi2un +ID5817=RsCILCmdconvovfi4 +ID5818=RsCILCmdconvovfi4un +ID5819=RsCILCmdconvovfi8 ID582=_USER_INFO_2.usri2_parms -ID5820=RsPePkgWeak -ID5821=RsPePointerToSymbolTable -ID5822=RsPeProcessAffinityMask -ID5823=RsPeProcessHeapFlags -ID5824=RsPeReadOnlyStream -ID5825=RsPeReserved -ID5826=RsPersonal -ID5827=RsPeSectionAlignment -ID5828=RsPeSectionNotFound -ID5829=RsPeSignature +ID5820=RsCILCmdconvovfi8un +ID5821=RsCILCmdconvovfiun +ID5822=RsCILCmdconvovfu +ID5823=RsCILCmdconvovfu1 +ID5824=RsCILCmdconvovfu1un +ID5825=RsCILCmdconvovfu2 +ID5826=RsCILCmdconvovfu2un +ID5827=RsCILCmdconvovfu4 +ID5828=RsCILCmdconvovfu4un +ID5829=RsCILCmdconvovfu8 ID583=_USER_INFO_2.usri2_password -ID5830=RsPeSizeOfCode -ID5831=RsPeSizeOfHeaders -ID5832=RsPeSizeOfHeapCommit -ID5833=RsPeSizeOfHeapReserve -ID5834=RsPeSizeOfImage -ID5835=RsPeSizeOfInitializedData -ID5836=RsPeSizeOfOptionalHeader -ID5837=RsPeSizeOfStackCommit -ID5838=RsPeSizeOfStackReserve -ID5839=RsPeSizeOfUninitializedData +ID5830=RsCILCmdconvovfu8un +ID5831=RsCILCmdconvovfuun +ID5832=RsCILCmdconvr4 +ID5833=RsCILCmdconvr8 +ID5834=RsCILCmdconvrun +ID5835=RsCILCmdconvu +ID5836=RsCILCmdconvu1 +ID5837=RsCILCmdconvu2 +ID5838=RsCILCmdconvu4 +ID5839=RsCILCmdconvu8 ID584=_USER_INFO_2.usri2_password_age -ID5840=RsPeSubsystem -ID5841=RsPeSUBSYSTEM_NATIVE -ID5842=RsPeSUBSYSTEM_OS2_CUI -ID5843=RsPeSUBSYSTEM_POSIX_CUI -ID5844=RsPeSUBSYSTEM_RESERVED8 -ID5845=RsPeSUBSYSTEM_UNKNOWN -ID5846=RsPeSUBSYSTEM_WINDOWS_CUI -ID5847=RsPeSUBSYSTEM_WINDOWS_GUI -ID5848=RsPeSubsystemVersion -ID5849=RsPeTimeDateStamp +ID5840=RsCILCmdcpblk +ID5841=RsCILCmdcpobj +ID5842=RsCILCmddiv +ID5843=RsCILCmddivun +ID5844=RsCILCmddup +ID5845=RsCILCmdendfilter +ID5846=RsCILCmdendfinally +ID5847=RsCILCmdinitblk +ID5848=RsCILCmdinitobj +ID5849=RsCILCmdisinst ID585=_USER_INFO_2.usri2_priv -ID5850=RsPeUnknownTarget -ID5851=RsPeVersion -ID5852=RsPeVirtualMemoryThreshold -ID5853=RsPeWin32VersionValue -ID5854=RsPowerComplex -ID5855=RsPowerInfinite -ID5856=RsProductTypeAdvancedServer -ID5857=RsProductTypeDatacenterServer -ID5858=RsProductTypeEnterprise -ID5859=RsProductTypePersonal +ID5850=RsCILCmdjmp +ID5851=RsCILCmdldarg +ID5852=RsCILCmdldarg0 +ID5853=RsCILCmdldarg1 +ID5854=RsCILCmdldarg2 +ID5855=RsCILCmdldarg3 +ID5856=RsCILCmdldarga +ID5857=RsCILCmdldargas +ID5858=RsCILCmdldargs +ID5859=RsCILCmdldci4 ID586=_USER_INFO_2.usri2_script_path -ID5860=RsProductTypeProfessional -ID5861=RsProductTypeServer -ID5862=RsProductTypeWebEdition -ID5863=RsProductTypeWorkStation -ID5864=RsProfessional -ID5865=RsPS10X14 -ID5866=RsPS11X17 -ID5867=RsPSA3 -ID5868=RsPSA4 -ID5869=RsPSA4Small +ID5860=RsCILCmdldci40 +ID5861=RsCILCmdldci41 +ID5862=RsCILCmdldci42 +ID5863=RsCILCmdldci43 +ID5864=RsCILCmdldci44 +ID5865=RsCILCmdldci45 +ID5866=RsCILCmdldci46 +ID5867=RsCILCmdldci47 +ID5868=RsCILCmdldci48 +ID5869=RsCILCmdldci4m1 ID587=_USER_INFO_2.usri2_units_per_week -ID5870=RsPSA5 -ID5871=RsPSB4 -ID5872=RsPSB5 -ID5873=RsPSCSheet -ID5874=RsPSDSheet -ID5875=RsPSEnv10 -ID5876=RsPSEnv11 -ID5877=RsPSEnv12 -ID5878=RsPSEnv14 -ID5879=RsPSEnv9 +ID5870=RsCILCmdldci4s +ID5871=RsCILCmdldci8 +ID5872=RsCILCmdldcr4 +ID5873=RsCILCmdldcr8 +ID5874=RsCILCmdldelema +ID5875=RsCILCmdldelemi +ID5876=RsCILCmdldelemi1 +ID5877=RsCILCmdldelemi2 +ID5878=RsCILCmdldelemi4 +ID5879=RsCILCmdldelemi8 ID588=_USER_INFO_2.usri2_usr_comment -ID5880=RsPSESheet -ID5881=RsPSExecutive -ID5882=RsPSFolio -ID5883=RsPSLedger -ID5884=RsPSLegal -ID5885=RsPSLetter -ID5886=RsPSLetterSmall -ID5887=RsPSNote -ID5888=RsPSQuarto -ID5889=RsPSStatement +ID5880=RsCILCmdldelemr4 +ID5881=RsCILCmdldelemr8 +ID5882=RsCILCmdldelemref +ID5883=RsCILCmdldelemu1 +ID5884=RsCILCmdldelemu2 +ID5885=RsCILCmdldelemu4 +ID5886=RsCILCmdldfld +ID5887=RsCILCmdldflda +ID5888=RsCILCmdldftn +ID5889=RsCILCmdldindi ID589=_USER_INFO_2.usri2_workstations -ID5890=RsPSTabloid -ID5891=RsPSUnknown -ID5892=RsPSUser -ID5893=RsRamDisk -ID5894=RsRangeError -ID5895=RsRationalDivByZero -ID5896=RsReadKeyError -ID5897=RsRegionCouldNotCreated -ID5898=RsRegionDataOutOfBound -ID5899=RsRegisteringExpert +ID5890=RsCILCmdldindi1 +ID5891=RsCILCmdldindi2 +ID5892=RsCILCmdldindi4 +ID5893=RsCILCmdldindi8 +ID5894=RsCILCmdldindr4 +ID5895=RsCILCmdldindr8 +ID5896=RsCILCmdldindref +ID5897=RsCILCmdldindu1 +ID5898=RsCILCmdldindu2 +ID5899=RsCILCmdldindu4 ID59=!!OVERLOADED_FindStream_TJclPeMetadata -ID590=ABORT_EXIT_CODE -ID5900=RsRegisteringIdePackage -ID5901=RsRegisteringPackage -ID5902=RsRegistrationFailed -ID5903=RsRegistrationOk -ID5904=RsRemoteDrive -ID5905=RsRemovableDrive -ID5906=RsRetrievingPaperSource -ID5907=RsRetrievingSource -ID5908=RsRSName -ID5909=RsRTTIArrayOf -ID591=AbortShutDown -ID5910=RsRTTIBasedOn -ID5911=RsRTTIBits -ID5912=RsRTTIClassName -ID5913=RsRTTIConst -ID5914=RsRTTIDefault -ID5915=RsRTTIElNeedCleanup -ID5916=RsRTTIElSize -ID5917=RsRTTIElType -ID5918=RsRTTIFalse -ID5919=RsRTTIField -ID592=AbortShutDown@string -ID5920=RsRTTIFlags -ID5921=RsRTTIFloatType -ID5922=RsRTTIGUID -ID5923=RsRTTIIndex -ID5924=RsRTTIInvalidBaseType -ID5925=RsRTTIMaxLen -ID5926=RsRTTIMaxValue -ID5927=RsRTTIMethodKind -ID5928=RsRTTIMinValue -ID5929=RsRTTIName -ID593=AbsSqr@TPolarComplex -ID5930=RsRTTINameList -ID5931=RsRTTIOrdinal -ID5932=RsRTTIOrdinalType -ID5933=RsRTTIOut -ID5934=RsRTTIParamCount -ID5935=RsRTTIParent -ID5936=RsRTTIPropCount -ID5937=RsRTTIPropRead -ID5938=RsRTTIPropStored -ID5939=RsRTTIPropWrite -ID594=AbsSqr@TRectComplex -ID5940=RsRTTIReturnType -ID5941=RsRTTIStaticMethod -ID5942=RsRTTITrue -ID5943=RsRTTIType -ID5944=RsRTTITypeError -ID5945=RsRTTITypeInfoAt -ID5946=RsRTTITypeKind -ID5947=RsRTTIUnitName -ID5948=RsRTTIUnknownIdentifier -ID5949=RsRTTIValueOutOfRange -ID595=Ackermann@Integer@Integer -ID5950=RsRTTIVar -ID5951=RsRTTIVarType -ID5952=RsRTTIVirtualMethod -ID5953=RsScheduleDayInRange -ID5954=RsScheduleDayNotSupported -ID5955=RsScheduleEndBeforeStart -ID5956=RsScheduleIndexValueSup -ID5957=RsScheduleIndexValueZero -ID5958=RsScheduleIntervalZero -ID5959=RsScheduleInvalidTime -ID596=ACPI_FLAG -ID5960=RsScheduleMonthInRange -ID5961=RsScheduleNoDaySpecified -ID5962=RsSelectObjectInDc -ID5963=RsServerDeveloper -ID5964=RsSIDBufferTooSmall -ID5965=RsSourceBitmapEmpty -ID5966=RsSourceBitmapInvalid -ID5967=RsSPInfo -ID5968=RsSpoolerDocName -ID5969=RsStandard -ID597=ACTION_HEADER -ID5970=RsStreamsCRCError -ID5971=RsStreamsCreateError -ID5972=RsStreamsOpenError -ID5973=RsStreamsSetSizeError -ID5974=RsStringHashMapDuplicate -ID5975=RsStringHashMapInvalidNode -ID5976=RsStringHashMapMustBeEmpty -ID5977=RsStringHashMapNoTraits -ID5978=RsStringToBoolean -ID5979=RsSynchAttachDispatcher -ID598=ADAPTER_STATUS -ID5980=RsSynchAttachWin32Handle -ID5981=RsSynchCreateEvent -ID5982=RsSynchCreateMutex -ID5983=RsSynchCreateSemaphore -ID5984=RsSynchCreateWaitableTimer -ID5985=RsSynchDuplicateWin32Handle -ID5986=RsSynchInitCriticalSection -ID5987=RsSynchOpenEvent -ID5988=RsSynchOpenMutex -ID5989=RsSynchOpenSemaphore -ID599=AddCompositeElementTo@TEDISEFDataObjectGroup -ID5990=RsSynchOpenWaitableTimer -ID5991=RsSysErrorMessageFmt -ID5992=RsSystemIdleProcess -ID5993=RsSystemProcess -ID5994=RsTempConvTypeError -ID5995=RsUnableToAccessValue -ID5996=RsUnableToOpenKeyRead -ID5997=RsUnableToOpenKeyWrite -ID5998=RsUnexpectedDataType -ID5999=RsUnexpectedValue +ID590=64-bit support +ID5900=RsCILCmdldlen +ID5901=RsCILCmdldloc +ID5902=RsCILCmdldloc0 +ID5903=RsCILCmdldloc1 +ID5904=RsCILCmdldloc2 +ID5905=RsCILCmdldloc3 +ID5906=RsCILCmdldloca +ID5907=RsCILCmdldlocas +ID5908=RsCILCmdldlocs +ID5909=RsCILCmdldnull +ID591=7ZIP_LINKDLL +ID5910=RsCILCmdldobj +ID5911=RsCILCmdldsfld +ID5912=RsCILCmdldsflda +ID5913=RsCILCmdldstr +ID5914=RsCILCmdldtoken +ID5915=RsCILCmdldvirtftn +ID5916=RsCILCmdleave +ID5917=RsCILCmdleaves +ID5918=RsCILCmdlocalloc +ID5919=RsCILCmdmkrefany +ID592=7ZIP_LINKONREQUEST +ID5920=RsCILCmdmul +ID5921=RsCILCmdmulovf +ID5922=RsCILCmdmulovfun +ID5923=RsCILCmdneg +ID5924=RsCILCmdnewarr +ID5925=RsCILCmdnewobj +ID5926=RsCILCmdnop +ID5927=RsCILCmdnot +ID5928=RsCILCmdor +ID5929=RsCILCmdpop +ID593=7ZIP_STATICLINK +ID5930=RsCILCmdprefix1 +ID5931=RsCILCmdprefix2 +ID5932=RsCILCmdprefix3 +ID5933=RsCILCmdprefix4 +ID5934=RsCILCmdprefix5 +ID5935=RsCILCmdprefix6 +ID5936=RsCILCmdprefix7 +ID5937=RsCILCmdprefixref +ID5938=RsCILCmdrefanytype +ID5939=RsCILCmdrefanyval +ID594=ABORT_EXIT_CODE +ID5940=RsCILCmdrem +ID5941=RsCILCmdremun +ID5942=RsCILCmdret +ID5943=RsCILCmdrethrow +ID5944=RsCILCmdshl +ID5945=RsCILCmdshr +ID5946=RsCILCmdshrun +ID5947=RsCILCmdsizeof +ID5948=RsCILCmdstarg +ID5949=RsCILCmdstargs +ID595=AbortShutDown +ID5950=RsCILCmdstelemi +ID5951=RsCILCmdstelemi1 +ID5952=RsCILCmdstelemi2 +ID5953=RsCILCmdstelemi4 +ID5954=RsCILCmdstelemi8 +ID5955=RsCILCmdstelemr4 +ID5956=RsCILCmdstelemr8 +ID5957=RsCILCmdstelemref +ID5958=RsCILCmdstfld +ID5959=RsCILCmdstindi +ID596=AbortShutDown@string +ID5960=RsCILCmdstindi1 +ID5961=RsCILCmdstindi2 +ID5962=RsCILCmdstindi4 +ID5963=RsCILCmdstindi8 +ID5964=RsCILCmdstindr4 +ID5965=RsCILCmdstindr8 +ID5966=RsCILCmdstindref +ID5967=RsCILCmdstloc +ID5968=RsCILCmdstloc0 +ID5969=RsCILCmdstloc1 +ID597=AbsSqr@TPolarComplex +ID5970=RsCILCmdstloc2 +ID5971=RsCILCmdstloc3 +ID5972=RsCILCmdstlocs +ID5973=RsCILCmdstobj +ID5974=RsCILCmdstsfld +ID5975=RsCILCmdsub +ID5976=RsCILCmdsubovf +ID5977=RsCILCmdsubovfun +ID5978=RsCILCmdswitch +ID5979=RsCILCmdtail +ID598=AbsSqr@TRectComplex +ID5980=RsCILCmdthrow +ID5981=RsCILCmdunaligned +ID5982=RsCILCmdunbox +ID5983=RsCILCmdunused1 +ID5984=RsCILCmdunused10 +ID5985=RsCILCmdunused11 +ID5986=RsCILCmdunused12 +ID5987=RsCILCmdunused13 +ID5988=RsCILCmdunused14 +ID5989=RsCILCmdunused15 +ID599=Ackermann@Integer@Integer +ID5990=RsCILCmdunused16 +ID5991=RsCILCmdunused17 +ID5992=RsCILCmdunused18 +ID5993=RsCILCmdunused19 +ID5994=RsCILCmdunused2 +ID5995=RsCILCmdunused20 +ID5996=RsCILCmdunused21 +ID5997=RsCILCmdunused22 +ID5998=RsCILCmdunused23 +ID5999=RsCILCmdunused24 ID6=!!OVERLOADED_Add_TJclRational ID60=!!OVERLOADED_GetBinSourceList_TJclPrintSet -ID600=AddElementTo@TEDISEFDataObjectGroup -ID6000=RsUnknownAMDModel -ID6001=RsUnknownAttribute -ID6002=RsUnknownClassLayout -ID6003=RsUnknownDrive -ID6004=RsUnknownFunctionAt -ID6005=RsUnknownManifestResource -ID6006=RsUnknownProjectType -ID6007=RsUnknownStringFormatting -ID6008=RsUnknownTable -ID6009=RsUnknownTableFmt -ID601=AddIgnoredException@TClass -ID6010=RsUnregisteringExpert -ID6011=RsUnregisteringIdePackage -ID6012=RsUnregisteringPackage -ID6013=RsUnregistrationFailed -ID6014=RsUnregistrationOk -ID6015=RsUpdatePackName -ID6016=RsUpdatingPrinter -ID6017=RsUREBaseString -ID6018=RsURECharacterClassOpen -ID6019=RsUREErrorFmt -ID602=AddLoopTo@TEDISEFDataObjectGroup -ID6020=RsUREExpressionEmpty -ID6021=RsUREInvalidCharProperty -ID6022=RsUREInvalidRepeatRange -ID6023=RsURERepeatRangeOpen -ID6024=RsUREUnbalancedGroup -ID6025=RsUREUnexpectedEOS -ID6026=RsVclIncludeDir -ID6027=RsVft2DrvCOMM -ID6028=RsVft2DrvDISPLAY -ID6029=RsVft2DrvINSTALLABLE -ID603=Addr32ToAddr64@TJclAddr32 -ID6030=RsVft2DrvKEYBOARD -ID6031=RsVft2DrvLANGUAGE -ID6032=RsVft2DrvMOUSE -ID6033=RsVft2DrvNETWORK -ID6034=RsVft2DrvPRINTER -ID6035=RsVft2DrvSOUND -ID6036=RsVft2DrvSYSTEM -ID6037=RsVft2FontRASTER -ID6038=RsVft2FontTRUETYPE -ID6039=RsVft2FontVECTOR -ID604=Addr64ToAddr32@TJclAddr64 -ID6040=RsVftApp -ID6041=RsVftDll -ID6042=RsVftDrv -ID6043=RsVftFont -ID6044=RsVftStaticLib -ID6045=RsVftUnknown -ID6046=RsVftVxd -ID6047=RsViewNeedsMapping -ID6048=RsVMTMemoryWriteError -ID6049=RsVosDesignedFor -ID605=AddRepeatingPatternTo@TEDISEFDataObjectGroup -ID6050=RsVosDos -ID6051=RsVosDosWindows16 -ID6052=RsVosDosWindows32 -ID6053=RsVosNT -ID6054=RsVosNTWindows32 -ID6055=RsVosOS216 -ID6056=RsVosOS216PM16 -ID6057=RsVosOS232 -ID6058=RsVosOS232PM32 -ID6059=RsVosPM16 -ID606=AddSegmentTo@TEDISEFDataObjectGroup -ID6060=RsVosPM32 -ID6061=RsVosUnknown -ID6062=RsVosWindows16 -ID6063=RsVosWindows32 -ID6064=RsWin32Prefix -ID6065=RsWrongDataType -ID6066=RT_ACCELERATOR -ID6067=RT_ANICURSOR -ID6068=RT_ANIICON -ID6069=RT_BITMAP -ID607=AddStringToStrings@AnsiString@TStrings@Boolean -ID6070=RT_CURSOR -ID6071=RT_DIALOG -ID6072=RT_DLGINCLUDE -ID6073=RT_FONT -ID6074=RT_FONTDIR -ID6075=RT_GROUP_CURSOR -ID6076=RT_GROUP_ICON -ID6077=RT_ICON -ID6078=RT_MENU -ID6079=RT_MESSAGETABLE -ID608=AddStringToStrings@string@TStrings@Boolean -ID6080=RT_PLUGPLAY -ID6081=RT_RCDATA -ID6082=RT_STRING -ID6083=RT_VERSION -ID6084=RT_VXD -ID6085=RtdlDeleteVolumeMountPoint -ID6086=RtdlEnumCalendarInfoExA -ID6087=RtdlGetCalendarInfoA -ID6088=RtdlGetCalendarInfoW -ID6089=RtdlGetVolumeNameForVolumeMountPoint -ID609=AddSubElementTo@TEDISEFDataObjectGroup -ID6090=RtdlMsiGetComponentPath -ID6091=RtdlMsiGetShortcutTarget -ID6092=RtdlMsiLibHandle -ID6093=RtdlNetApiBufferFree -ID6094=RtdlNetBios -ID6095=RtdlNetGroupAdd -ID6096=RtdlNetGroupDel -ID6097=RtdlNetGroupEnum -ID6098=RtdlNetLocalGroupAdd -ID6099=RtdlNetLocalGroupAddMembers +ID600=ACPI_FLAG +ID6000=RsCILCmdunused25 +ID6001=RsCILCmdunused26 +ID6002=RsCILCmdunused27 +ID6003=RsCILCmdunused28 +ID6004=RsCILCmdunused29 +ID6005=RsCILCmdunused3 +ID6006=RsCILCmdunused30 +ID6007=RsCILCmdunused31 +ID6008=RsCILCmdunused32 +ID6009=RsCILCmdunused33 +ID601=ACTION_HEADER +ID6010=RsCILCmdunused34 +ID6011=RsCILCmdunused35 +ID6012=RsCILCmdunused36 +ID6013=RsCILCmdunused37 +ID6014=RsCILCmdunused38 +ID6015=RsCILCmdunused39 +ID6016=RsCILCmdunused4 +ID6017=RsCILCmdunused40 +ID6018=RsCILCmdunused41 +ID6019=RsCILCmdunused42 +ID602=ADAPTER_STATUS +ID6020=RsCILCmdunused43 +ID6021=RsCILCmdunused44 +ID6022=RsCILCmdunused45 +ID6023=RsCILCmdunused46 +ID6024=RsCILCmdunused47 +ID6025=RsCILCmdunused48 +ID6026=RsCILCmdunused49 +ID6027=RsCILCmdunused5 +ID6028=RsCILCmdunused50 +ID6029=RsCILCmdunused51 +ID603=AddCompositeElementTo@TEDISEFDataObjectGroup +ID6030=RsCILCmdunused52 +ID6031=RsCILCmdunused53 +ID6032=RsCILCmdunused54 +ID6033=RsCILCmdunused55 +ID6034=RsCILCmdunused56 +ID6035=RsCILCmdunused57 +ID6036=RsCILCmdunused58 +ID6037=RsCILCmdunused59 +ID6038=RsCILCmdunused6 +ID6039=RsCILCmdunused60 +ID604=AddElementTo@TEDISEFDataObjectGroup +ID6040=RsCILCmdunused61 +ID6041=RsCILCmdunused62 +ID6042=RsCILCmdunused63 +ID6043=RsCILCmdunused64 +ID6044=RsCILCmdunused65 +ID6045=RsCILCmdunused66 +ID6046=RsCILCmdunused67 +ID6047=RsCILCmdunused68 +ID6048=RsCILCmdunused69 +ID6049=RsCILCmdunused7 +ID605=AddIgnoredException@TClass +ID6050=RsCILCmdunused70 +ID6051=RsCILCmdunused8 +ID6052=RsCILCmdunused9 +ID6053=RsCILCmdvolatile +ID6054=RsCILCmdxor +ID6055=RsCILDescradd +ID6056=RsCILDescraddovf +ID6057=RsCILDescraddovfun +ID6058=RsCILDescrand +ID6059=RsCILDescrarglist +ID606=AddIgnoredExceptionByName@string +ID6060=RsCILDescrbeq +ID6061=RsCILDescrbeqs +ID6062=RsCILDescrbge +ID6063=RsCILDescrbges +ID6064=RsCILDescrbgeun +ID6065=RsCILDescrbgeuns +ID6066=RsCILDescrbgt +ID6067=RsCILDescrbgts +ID6068=RsCILDescrbgtun +ID6069=RsCILDescrbgtuns +ID607=AddLoopTo@TEDISEFDataObjectGroup +ID6070=RsCILDescrble +ID6071=RsCILDescrbles +ID6072=RsCILDescrbleun +ID6073=RsCILDescrbleuns +ID6074=RsCILDescrblt +ID6075=RsCILDescrblts +ID6076=RsCILDescrbltun +ID6077=RsCILDescrbltuns +ID6078=RsCILDescrbneun +ID6079=RsCILDescrbneuns +ID608=AddModule@string +ID6080=RsCILDescrbox +ID6081=RsCILDescrbr +ID6082=RsCILDescrbreak +ID6083=RsCILDescrbrfalse +ID6084=RsCILDescrbrfalses +ID6085=RsCILDescrbrs +ID6086=RsCILDescrbrtrue +ID6087=RsCILDescrbrtrues +ID6088=RsCILDescrcall +ID6089=RsCILDescrcalli +ID609=Addr32ToAddr64@TJclAddr32 +ID6090=RsCILDescrcallvirt +ID6091=RsCILDescrcastclass +ID6092=RsCILDescrceq +ID6093=RsCILDescrcgt +ID6094=RsCILDescrcgtun +ID6095=RsCILDescrckfinite +ID6096=RsCILDescrclt +ID6097=RsCILDescrcltun +ID6098=RsCILDescrconvi +ID6099=RsCILDescrconvi1 ID61=!!OVERLOADED_GetClrVersions_TJclClrHost -ID610=AddTableTo@TEDISEFDataObjectGroup -ID6100=RtdlNetLocalGroupDel -ID6101=RtdlNetLocalGroupEnum -ID6102=RtdlNetUserAdd -ID6103=RtdlNetUserDel -ID6104=RtdlSetNamedSecurityInfoW -ID6105=RtdlSetVolumeMountPoint -ID6106=RtdlSetWaitableTimer -ID6107=RTL_OSVERSIONINFOEXW -ID6108=RunDll32ShimW@THandle@HMODULE@PWideChar@Integer -ID6109=RUNTIME_INFO_DONT_RETURN_DIRECTORY -ID611=AdjustTokenPrivileges@THandle@BOOL@TTokenPrivileges@DWORD@TTokenPrivileges@DWORD PreviousState: PTokenPrivileges@PDWORD -ID6110=RUNTIME_INFO_DONT_RETURN_VERSION -ID6111=RUNTIME_INFO_DONT_SHOW_ERROR_DIALOG -ID6112=RUNTIME_INFO_REQUEST_AMD64 -ID6113=RUNTIME_INFO_REQUEST_IA64 -ID6114=RUNTIME_INFO_REQUEST_X86 -ID6115=RUNTIME_INFO_UPGRADE_VERSION -ID6116=RuntimeTypeInformation -ID6117=RVA -ID6118=SamePath@string@string -ID6119=Sar@Shortint@TBitRange -ID612=AdministratorsSCMDesiredAccess -ID6120=Sar@Smallint@TBitRange -ID6121=SCHED_E_ACCOUNT_DBASE_CORRUPT -ID6122=SCHED_E_ACCOUNT_INFORMATION_NOT_SET -ID6123=SCHED_E_ACCOUNT_NAME_NOT_FOUND -ID6124=SCHED_E_CANNOT_OPEN_TASK -ID6125=SCHED_E_INVALID_TASK -ID6126=SCHED_E_NO_SECURITY_SERVICES -ID6127=SCHED_E_SERVICE_NOT_INSTALLED -ID6128=SCHED_E_SERVICE_NOT_RUNNING -ID6129=SCHED_E_TASK_NOT_READY -ID613=AI_INSTANCECREATED -ID6130=SCHED_E_TASK_NOT_RUNNING -ID6131=SCHED_E_TRIGGER_NOT_FOUND -ID6132=SCHED_E_UNKNOWN_OBJECT_VERSION -ID6133=SCHED_E_UNSUPPORTED_ACCOUNT_OPTION -ID6134=SCHED_S_EVENT_TRIGGER -ID6135=SCHED_S_TASK_DISABLED -ID6136=SCHED_S_TASK_HAS_NOT_RUN -ID6137=SCHED_S_TASK_NO_MORE_RUNS -ID6138=SCHED_S_TASK_NO_VALID_TRIGGERS -ID6139=SCHED_S_TASK_NOT_SCHEDULED -ID614=AI_INSTANCEDESTROYED -ID6140=SCHED_S_TASK_READY -ID6141=SCHED_S_TASK_RUNNING -ID6142=SCHED_S_TASK_TERMINATED -ID6143=ScreenShot@TBitmap@Boolean -ID6144=ScreenShot@TBitmap@Integer@Integer@Integer@Integer@THandle -ID6145=SE_CREATE_GLOBAL_NAME -ID6146=SE_IMPERSONATE_NAME -ID6147=SE_MANAGE_VOLUME_NAME -ID6148=SearchDynArray@Pointer@Cardinal@TDynArraySortCompare@Pointer@Boolean -ID6149=SearchSortedList@TList@TListSortCompare@Pointer@Boolean -ID615=AI_USERMSG -ID6150=SearchSortedUntyped@Pointer@Integer@TUntypedSearchCompare@@Boolean -ID6151=Sec@TRectComplex -ID6152=SecH@TRectComplex -ID6153=SectionTag_ -ID6154=SectionTag_CODES -ID6155=SectionTag_COMS -ID6156=SectionTag_ELMS -ID6157=SectionTag_INI -ID6158=SectionTag_JCL_COMSEXT -ID6159=SectionTag_JCL_ELMSEXT -ID616=ALERTSZ -ID6160=SectionTag_JCL_SEGSEXT -ID6161=SectionTag_JCL_SETSEXT -ID6162=SectionTag_OBJVARS -ID6163=SectionTag_PRIVATE -ID6164=SectionTag_PUBLIC -ID6165=SectionTag_SEGS -ID6166=SectionTag_SEMREFS -ID6167=SectionTag_SETS -ID6168=SectionTag_STD -ID6169=SectionTag_TEXT -ID617=Algorithms -ID6170=SectionTag_TEXTSETS -ID6171=SectionTag_VALLISTS -ID6172=SectionTag_VER -ID6173=SECURITY_LOCAL_SERVICE_RID -ID6174=SECURITY_MAX_ALWAYS_FILTERED -ID6175=SECURITY_MAX_SID_SIZE -ID6176=SECURITY_MIN_NEVER_FILTERED -ID6177=SECURITY_NETWORK_SERVICE_RID -ID6178=SECURITY_NT_NON_UNIQUE_SUB_AUTH_COUNT -ID6179=SECURITY_OTHER_ORGANIZATION_RID -ID618=ALL_TRANSPORTS -ID6180=SECURITY_PACKAGE_BASE_RID -ID6181=SECURITY_PACKAGE_DIGEST_RID -ID6182=SECURITY_PACKAGE_NTLM_RID -ID6183=SECURITY_PACKAGE_RID_COUNT -ID6184=SECURITY_PACKAGE_SCHANNEL_RID -ID6185=SECURITY_REMOTE_LOGON_RID -ID6186=SECURITY_RESOURCE_MANAGER_AUTHORITY -ID6187=SECURITY_THIS_ORGANIZATION_RID -ID6188=SEFTextCR -ID6189=SEFTextCRLF -ID619=All8087Exceptions -ID6190=SEFTextLF -ID6191=SEFTextSetsCode_Elm0 -ID6192=SEFTextSetsCode_Elm0_Desc -ID6193=SEFTextSetsCode_Elm1 -ID6194=SEFTextSetsCode_Elm1_Desc -ID6195=SEFTextSetsCode_Elm2 -ID6196=SEFTextSetsCode_Elm2_Desc -ID6197=SEFTextSetsCode_Elm4 -ID6198=SEFTextSetsCode_Elm4_Desc -ID6199=SEFTextSetsCode_Seg0 +ID610=Addr64ToAddr32@TJclAddr64 +ID6100=RsCILDescrconvi2 +ID6101=RsCILDescrconvi4 +ID6102=RsCILDescrconvi8 +ID6103=RsCILDescrconvovfi +ID6104=RsCILDescrconvovfi1 +ID6105=RsCILDescrconvovfi1un +ID6106=RsCILDescrconvovfi2 +ID6107=RsCILDescrconvovfi2un +ID6108=RsCILDescrconvovfi4 +ID6109=RsCILDescrconvovfi4un +ID611=AddRepeatingPatternTo@TEDISEFDataObjectGroup +ID6110=RsCILDescrconvovfi8 +ID6111=RsCILDescrconvovfi8un +ID6112=RsCILDescrconvovfiun +ID6113=RsCILDescrconvovfu +ID6114=RsCILDescrconvovfu1 +ID6115=RsCILDescrconvovfu1un +ID6116=RsCILDescrconvovfu2 +ID6117=RsCILDescrconvovfu2un +ID6118=RsCILDescrconvovfu4 +ID6119=RsCILDescrconvovfu4un +ID612=AddSegmentTo@TEDISEFDataObjectGroup +ID6120=RsCILDescrconvovfu8 +ID6121=RsCILDescrconvovfu8un +ID6122=RsCILDescrconvovfuun +ID6123=RsCILDescrconvr4 +ID6124=RsCILDescrconvr8 +ID6125=RsCILDescrconvrun +ID6126=RsCILDescrconvu +ID6127=RsCILDescrconvu1 +ID6128=RsCILDescrconvu2 +ID6129=RsCILDescrconvu4 +ID613=AddStringToStrings@AnsiString@TJclAnsiStrings@Boolean +ID6130=RsCILDescrconvu8 +ID6131=RsCILDescrcpblk +ID6132=RsCILDescrcpobj +ID6133=RsCILDescrdiv +ID6134=RsCILDescrdivun +ID6135=RsCILDescrdup +ID6136=RsCILDescrendfilter +ID6137=RsCILDescrendfinally +ID6138=RsCILDescrinitblk +ID6139=RsCILDescrinitobj +ID614=AddStringToStrings@AnsiString@TStrings@Boolean +ID6140=RsCILDescrisinst +ID6141=RsCILDescrjmp +ID6142=RsCILDescrldarg +ID6143=RsCILDescrldarg0 +ID6144=RsCILDescrldarg1 +ID6145=RsCILDescrldarg2 +ID6146=RsCILDescrldarg3 +ID6147=RsCILDescrldarga +ID6148=RsCILDescrldargas +ID6149=RsCILDescrldargs +ID615=AddStringToStrings@string@TStrings@Boolean +ID6150=RsCILDescrldci4 +ID6151=RsCILDescrldci40 +ID6152=RsCILDescrldci41 +ID6153=RsCILDescrldci42 +ID6154=RsCILDescrldci43 +ID6155=RsCILDescrldci44 +ID6156=RsCILDescrldci45 +ID6157=RsCILDescrldci46 +ID6158=RsCILDescrldci47 +ID6159=RsCILDescrldci48 +ID616=AddSubElementTo@TEDISEFDataObjectGroup +ID6160=RsCILDescrldci4m1 +ID6161=RsCILDescrldci4s +ID6162=RsCILDescrldci8 +ID6163=RsCILDescrldcr4 +ID6164=RsCILDescrldcr8 +ID6165=RsCILDescrldelema +ID6166=RsCILDescrldelemi +ID6167=RsCILDescrldelemi1 +ID6168=RsCILDescrldelemi2 +ID6169=RsCILDescrldelemi4 +ID617=AddTableTo@TEDISEFDataObjectGroup +ID6170=RsCILDescrldelemi8 +ID6171=RsCILDescrldelemr4 +ID6172=RsCILDescrldelemr8 +ID6173=RsCILDescrldelemref +ID6174=RsCILDescrldelemu1 +ID6175=RsCILDescrldelemu2 +ID6176=RsCILDescrldelemu4 +ID6177=RsCILDescrldfld +ID6178=RsCILDescrldflda +ID6179=RsCILDescrldftn +ID618=AdjustTokenPrivileges@THandle@BOOL@TTokenPrivileges@DWORD@TTokenPrivileges@DWORD PreviousState: PTokenPrivileges@PDWORD +ID6180=RsCILDescrldindi +ID6181=RsCILDescrldindi1 +ID6182=RsCILDescrldindi2 +ID6183=RsCILDescrldindi4 +ID6184=RsCILDescrldindi8 +ID6185=RsCILDescrldindr4 +ID6186=RsCILDescrldindr8 +ID6187=RsCILDescrldindref +ID6188=RsCILDescrldindu1 +ID6189=RsCILDescrldindu2 +ID619=AdministratorsSCMDesiredAccess +ID6190=RsCILDescrldindu4 +ID6191=RsCILDescrldlen +ID6192=RsCILDescrldloc +ID6193=RsCILDescrldloc0 +ID6194=RsCILDescrldloc1 +ID6195=RsCILDescrldloc2 +ID6196=RsCILDescrldloc3 +ID6197=RsCILDescrldloca +ID6198=RsCILDescrldlocas +ID6199=RsCILDescrldlocs ID62=!!OVERLOADED_GetEvents_TJclInputBuffer -ID620=AllocateMultiSz@PMultiSz@Integer -ID6200=SEFTextSetsCode_Seg0_Desc -ID6201=SEFTextSetsCode_Seg1 -ID6202=SEFTextSetsCode_Seg1_Desc -ID6203=SEFTextSetsCode_Seg2 -ID6204=SEFTextSetsCode_Seg2_Desc -ID6205=SEFTextSetsCode_Seg3 -ID6206=SEFTextSetsCode_Seg3_Desc -ID6207=SEFTextSetsCode_Seg4 -ID6208=SEFTextSetsCode_Seg4_Desc -ID6209=SEFTextSetsCode_Seg5 -ID621=AllocateWideMultiSz@PWideMultiSz@Integer -ID6210=SEFTextSetsCode_Seg5_Desc -ID6211=SEFTextSetsCode_Seg6 -ID6212=SEFTextSetsCode_Seg6_Desc -ID6213=SEFTextSetsCode_Seg7 -ID6214=SEFTextSetsCode_Seg7_Desc -ID6215=SEFTextSetsCode_Set0 -ID6216=SEFTextSetsCode_Set0_Desc -ID6217=SEFTextSetsCode_Set1 -ID6218=SEFTextSetsCode_Set1_Desc -ID6219=SEFTextSetsCode_Set2 -ID622=AlphaComponent@TColor32 -ID6220=SEFTextSetsCode_Set2_Desc -ID6221=SEFTextSetsCode_Set3 -ID6222=SEFTextSetsCode_Set3_Desc -ID6223=SEFTextSetsCode_Set4 -ID6224=SEFTextSetsCode_Set4_Desc -ID6225=SEFTextSetsCode_Set5 -ID6226=SEFTextSetsCode_Set5_Desc -ID6227=SEP_FLAG -ID6228=SERVICE_CONFIG_DESCRIPTION -ID6229=SERVICE_CONFIG_FAILURE_ACTIONS -ID623=AMD_APIC -ID6230=SERVICE_DESCRIPTIONA -ID6231=SERVICE_DESCRIPTIONA.lpDescription -ID6232=SESSION_ABORTED -ID6233=SESSION_BUFFER -ID6234=SESSION_CRYPT_KLEN -ID6235=SESSION_ESTABLISHED -ID6236=SESSION_HEADER -ID6237=SESSION_PWLEN -ID6238=Set8087ControlWord -ID6239=Set8087Infinity -ID624=AMD_ASSOC_DIRECT -ID6240=Set8087Precision -ID6241=Set8087Rounding -ID6242=SetAlpha@TColor32@Integer -ID6243=SetBit@Cardinal@TBitRange -ID6244=SetBit@Int64@TBitRange -ID6245=SetBit@Integer@TBitRange -ID6246=SetBit@Shortint@TBitRange -ID6247=SetBit@Smallint@TBitRange -ID6248=SetBit@Word@TBitRange -ID6249=SetBitBuffer@@Cardinal -ID625=AMD_ASSOC_FULLY -ID6250=SetBitmapColors@TBitmap@array of TColor@Integer -ID6251=SetBytesEx@@TBytes -ID6252=SetFileSecurity@LPCTSTR@SECURITY_INFORMATION@PSECURITY_DESCRIPTOR -ID6253=SetFileSecurityA@LPCSTR@SECURITY_INFORMATION@PSECURITY_DESCRIPTOR -ID6254=SetFileSecurityW@LPCWSTR@SECURITY_INFORMATION@PSECURITY_DESCRIPTOR -ID6255=SetGlobalEnvironmentVariable@string@string -ID6256=SetIntegerSet@TIntegerSet@UInt32 -ID6257=SetMasked8087Exceptions -ID6258=SetNamedSecurityInfoW@LPWSTR@SE_OBJECT_TYPE@SECURITY_INFORMATION@PSID@PSID@PACL@PACL -ID6259=SetObjectFontToSystemFont@TObject@TFontType -ID626=AMD_ASSOC_RESERVED -ID6260=SetPCRECalloutCallback@pcre_callout_callback -ID6261=SetPCREFreeCallback@pcre_free_callback -ID6262=SetPCREMallocCallback@pcre_malloc_callback -ID6263=SetPCREStackFreeCallback@pcre_stack_free_callback -ID6264=SetPCREStackMallocCallback@pcre_stack_malloc_callback -ID6265=SetPrinterPixelsPerInch -ID6266=SetSuspendState@BOOL@BOOL@BOOL -ID6267=SetVolumeMountPoint@LPCSTR@LPCSTR -ID6268=SetWaitableTimer@THandle@TLargeInteger@Longint@TFNTimerAPCRoutine@Pointer@BOOL -ID6269=sfUnicodeLSB -ID627=AMD_BIT_10 -ID6270=sfUnicodeMSB -ID6271=SharedAllocMem@string@Cardinal@Cardinal -ID6272=SharedCloseMem@ -ID6273=SharedFreeMem@ -ID6274=SharedGetMem@@string@Cardinal@Cardinal -ID6275=SharedOpenMem@@string@Cardinal -ID6276=SharedOpenMem@string@Cardinal -ID6277=SHCopy@THandle@string@string@TSHCopyOptions -ID6278=ShellExecEx@string@string@string@Integer -ID6279=ShellLinkIcon@string -ID628=AMD_BIT_18 -ID6280=ShellLinkIcon@TShellLink -ID6281=ShellLinkResolve@string@TShellLink@Cardinal -ID6282=SHEnumSpecialFolderFirst@DWORD@TEnumFolderFlags@TEnumFolderRec -ID6283=SHMove@THandle@string@string@TSHMoveOptions -ID6284=ShortenString@HDC@WideString@Integer@Boolean@Integer -ID6285=ShortintMask -ID6286=SHPWLEN -ID6287=SHTDN_REASON_FLAG_CLEAN_UI -ID6288=SHTDN_REASON_FLAG_COMMENT_REQUIRED -ID6289=SHTDN_REASON_FLAG_DIRTY_PROBLEM_ID_REQUIRED -ID629=AMD_BIT_20 -ID6290=SHTDN_REASON_FLAG_DIRTY_UI -ID6291=SHTDN_REASON_FLAG_PLANNED -ID6292=SHTDN_REASON_FLAG_USER_DEFINED -ID6293=SHTDN_REASON_LEGACY_API -ID6294=SHTDN_REASON_MAJOR_APPLICATION -ID6295=SHTDN_REASON_MAJOR_HARDWARE -ID6296=SHTDN_REASON_MAJOR_LEGACY_API -ID6297=SHTDN_REASON_MAJOR_NONE -ID6298=SHTDN_REASON_MAJOR_OPERATINGSYSTEM -ID6299=SHTDN_REASON_MAJOR_OTHER +ID620=AI_INSTANCECREATED +ID6200=RsCILDescrldnull +ID6201=RsCILDescrldobj +ID6202=RsCILDescrldsfld +ID6203=RsCILDescrldsflda +ID6204=RsCILDescrldstr +ID6205=RsCILDescrldtoken +ID6206=RsCILDescrldvirtftn +ID6207=RsCILDescrleave +ID6208=RsCILDescrleaves +ID6209=RsCILDescrlocalloc +ID621=AI_INSTANCEDESTROYED +ID6210=RsCILDescrmkrefany +ID6211=RsCILDescrmul +ID6212=RsCILDescrmulovf +ID6213=RsCILDescrmulovfun +ID6214=RsCILDescrneg +ID6215=RsCILDescrnewarr +ID6216=RsCILDescrnewobj +ID6217=RsCILDescrnop +ID6218=RsCILDescrnot +ID6219=RsCILDescror +ID622=AI_USERMSG +ID6220=RsCILDescrpop +ID6221=RsCILDescrprefix1 +ID6222=RsCILDescrprefix2 +ID6223=RsCILDescrprefix3 +ID6224=RsCILDescrprefix4 +ID6225=RsCILDescrprefix5 +ID6226=RsCILDescrprefix6 +ID6227=RsCILDescrprefix7 +ID6228=RsCILDescrprefixref +ID6229=RsCILDescrrefanytype +ID623=ALERTSZ +ID6230=RsCILDescrrefanyval +ID6231=RsCILDescrrem +ID6232=RsCILDescrremun +ID6233=RsCILDescrret +ID6234=RsCILDescrrethrow +ID6235=RsCILDescrshl +ID6236=RsCILDescrshr +ID6237=RsCILDescrshrun +ID6238=RsCILDescrsizeof +ID6239=RsCILDescrstarg +ID624=Algorithms +ID6240=RsCILDescrstargs +ID6241=RsCILDescrstelemi +ID6242=RsCILDescrstelemi1 +ID6243=RsCILDescrstelemi2 +ID6244=RsCILDescrstelemi4 +ID6245=RsCILDescrstelemi8 +ID6246=RsCILDescrstelemr4 +ID6247=RsCILDescrstelemr8 +ID6248=RsCILDescrstelemref +ID6249=RsCILDescrstfld +ID625=ALL_TRANSPORTS +ID6250=RsCILDescrstindi +ID6251=RsCILDescrstindi1 +ID6252=RsCILDescrstindi2 +ID6253=RsCILDescrstindi4 +ID6254=RsCILDescrstindi8 +ID6255=RsCILDescrstindr4 +ID6256=RsCILDescrstindr8 +ID6257=RsCILDescrstindref +ID6258=RsCILDescrstloc +ID6259=RsCILDescrstloc0 +ID626=All8087Exceptions +ID6260=RsCILDescrstloc1 +ID6261=RsCILDescrstloc2 +ID6262=RsCILDescrstloc3 +ID6263=RsCILDescrstlocs +ID6264=RsCILDescrstobj +ID6265=RsCILDescrstsfld +ID6266=RsCILDescrsub +ID6267=RsCILDescrsubovf +ID6268=RsCILDescrsubovfun +ID6269=RsCILDescrswitch +ID627=AllocateAnsiMultiSz@PAnsiMultiSz@SizeInt +ID6270=RsCILDescrtail +ID6271=RsCILDescrthrow +ID6272=RsCILDescrunaligned +ID6273=RsCILDescrunbox +ID6274=RsCILDescrunused1 +ID6275=RsCILDescrunused10 +ID6276=RsCILDescrunused11 +ID6277=RsCILDescrunused12 +ID6278=RsCILDescrunused13 +ID6279=RsCILDescrunused14 +ID628=AllocateMultiSz@PAnsiMultiSz@SizeInt +ID6280=RsCILDescrunused15 +ID6281=RsCILDescrunused16 +ID6282=RsCILDescrunused17 +ID6283=RsCILDescrunused18 +ID6284=RsCILDescrunused19 +ID6285=RsCILDescrunused2 +ID6286=RsCILDescrunused20 +ID6287=RsCILDescrunused21 +ID6288=RsCILDescrunused22 +ID6289=RsCILDescrunused23 +ID629=AllocateMultiSz@PMultiSz@Integer +ID6290=RsCILDescrunused24 +ID6291=RsCILDescrunused25 +ID6292=RsCILDescrunused26 +ID6293=RsCILDescrunused27 +ID6294=RsCILDescrunused28 +ID6295=RsCILDescrunused29 +ID6296=RsCILDescrunused3 +ID6297=RsCILDescrunused30 +ID6298=RsCILDescrunused31 +ID6299=RsCILDescrunused32 ID63=!!OVERLOADED_GetPaperList_TJclPrintSet -ID630=AMD_BIT_21 -ID6300=SHTDN_REASON_MAJOR_POWER -ID6301=SHTDN_REASON_MAJOR_SOFTWARE -ID6302=SHTDN_REASON_MAJOR_SYSTEM -ID6303=SHTDN_REASON_MINOR_BLUESCREEN -ID6304=SHTDN_REASON_MINOR_CORDUNPLUGGED -ID6305=SHTDN_REASON_MINOR_DC_DEMOTION -ID6306=SHTDN_REASON_MINOR_DC_PROMOTION -ID6307=SHTDN_REASON_MINOR_DISK -ID6308=SHTDN_REASON_MINOR_ENVIRONMENT -ID6309=SHTDN_REASON_MINOR_HARDWARE_DRIVER -ID631=AMD_BIT_22 -ID6310=SHTDN_REASON_MINOR_HOTFIX -ID6311=SHTDN_REASON_MINOR_HOTFIX_UNINSTALL -ID6312=SHTDN_REASON_MINOR_HUNG -ID6313=SHTDN_REASON_MINOR_INSTALLATION -ID6314=SHTDN_REASON_MINOR_MAINTENANCE -ID6315=SHTDN_REASON_MINOR_MMC -ID6316=SHTDN_REASON_MINOR_NETWORK_CONNECTIVITY -ID6317=SHTDN_REASON_MINOR_NETWORKCARD -ID6318=SHTDN_REASON_MINOR_NONE -ID6319=SHTDN_REASON_MINOR_OTHER -ID632=AMD_BIT_27 -ID6320=SHTDN_REASON_MINOR_OTHERDRIVER -ID6321=SHTDN_REASON_MINOR_POWER_SUPPLY -ID6322=SHTDN_REASON_MINOR_PROCESSOR -ID6323=SHTDN_REASON_MINOR_RECONFIG -ID6324=SHTDN_REASON_MINOR_SECURITY -ID6325=SHTDN_REASON_MINOR_SECURITYFIX -ID6326=SHTDN_REASON_MINOR_SECURITYFIX_UNINSTALL -ID6327=SHTDN_REASON_MINOR_SERVICEPACK -ID6328=SHTDN_REASON_MINOR_SERVICEPACK_UNINSTALL -ID6329=SHTDN_REASON_MINOR_TERMSRV -ID633=AMD_BIT_29 -ID6330=SHTDN_REASON_MINOR_UNSTABLE -ID6331=SHTDN_REASON_MINOR_UPGRADE -ID6332=SHTDN_REASON_MINOR_WMI -ID6333=SHTDN_REASON_UNKNOWN -ID6334=SHTDN_REASON_VALID_BIT_MASK -ID6335=ShutDownDialog@string@DWORD@Boolean@Boolean -ID6336=ShutDownDialog@string@string@DWORD@Boolean@Boolean -ID6337=SID -ID6338=SID_AND_ATTRIBUTES -ID6339=SID_AND_ATTRIBUTES_ARRAY -ID634=AMD_BIT_30 -ID6340=SID_IDENTIFIER_AUTHORITY -ID6341=SID_MAX_SUB_AUTHORITIES -ID6342=SID_RECOMMENDED_SUB_AUTHORITIES -ID6343=SID_REVISION -ID6344=SIDToString@PSID -ID6345=SidTypeAlias -ID6346=SidTypeComputer -ID6347=SidTypeDeletedAccount -ID6348=SidTypeDomain -ID6349=SidTypeGroup -ID635=AMD_BIT_31 -ID6350=SidTypeInvalid -ID6351=SidTypeUnknown -ID6352=SidTypeUser -ID6353=SidTypeWellKnownGroup -ID6354=SimpleCompare@TObject@TObject -ID6355=Sin@TRectComplex -ID6356=SinH@TRectComplex -ID6357=sivFirst -ID6358=sivFourth -ID6359=sivLast -ID636=AMD_CLFLSH -ID6360=sivSecond -ID6361=sivThird -ID6362=SIZEOF_RFPO_DATA -ID6363=SizeOfIStreamContents@IStream -ID6364=sLineBreak -ID6365=SmallintMask -ID6366=SNLEN -ID6367=Sort@IJclIntfList@Integer@Integer@TIntfCompare -ID6368=Sort@IJclList@Integer@Integer@TCompare -ID6369=Sort@IJclStrList@Integer@Integer@TStrCompare -ID637=AMD_CMOV -ID6370=SortDynArray@Pointer@Cardinal@TDynArraySortCompare -ID6371=SORTIDFROMLCID@LCID -ID6372=SortProc -ID6373=SORTVERSIONFROMLCID@LCID -ID6374=Source files -ID6375=SourceDescriptionCPP -ID6376=SourceDescriptionPAS -ID6377=SourceExtensionBCBPackage -ID6378=SourceExtensionBCBProject -ID6379=SourceExtensionBDSProject -ID638=AMD_CX8 -ID6380=SourceExtensionCPP -ID6381=SourceExtensionDelphiPackage -ID6382=SourceExtensionDelphiProject -ID6383=SourceExtensionDFM -ID6384=SourceExtensionDProject -ID6385=SourceExtensionH -ID6386=SourceExtensionPAS -ID6387=SourceExtensionXFM -ID6388=SourceFiles -ID6389=Sqrt10 -ID639=AMD_DE -ID6390=Sqrt2 -ID6391=Sqrt2Pi -ID6392=Sqrt3 -ID6393=Sqrt5 -ID6394=SqrtPi -ID6395=SS_FLAG -ID6396=SSE_FLAG -ID6397=SSE2_FLAG -ID6398=ssPendingStates -ID6399=stAllTypeService +ID630=AllocateMultiSz@PMultiSz@SizeInt +ID6300=RsCILDescrunused33 +ID6301=RsCILDescrunused34 +ID6302=RsCILDescrunused35 +ID6303=RsCILDescrunused36 +ID6304=RsCILDescrunused37 +ID6305=RsCILDescrunused38 +ID6306=RsCILDescrunused39 +ID6307=RsCILDescrunused4 +ID6308=RsCILDescrunused40 +ID6309=RsCILDescrunused41 +ID631=AllocateMultiSz@PWideMultiSz@SizeInt +ID6310=RsCILDescrunused42 +ID6311=RsCILDescrunused43 +ID6312=RsCILDescrunused44 +ID6313=RsCILDescrunused45 +ID6314=RsCILDescrunused46 +ID6315=RsCILDescrunused47 +ID6316=RsCILDescrunused48 +ID6317=RsCILDescrunused49 +ID6318=RsCILDescrunused5 +ID6319=RsCILDescrunused50 +ID632=AllocateWideMultiSz@PWideMultiSz@Integer +ID6320=RsCILDescrunused51 +ID6321=RsCILDescrunused52 +ID6322=RsCILDescrunused53 +ID6323=RsCILDescrunused54 +ID6324=RsCILDescrunused55 +ID6325=RsCILDescrunused56 +ID6326=RsCILDescrunused57 +ID6327=RsCILDescrunused58 +ID6328=RsCILDescrunused59 +ID6329=RsCILDescrunused6 +ID633=AllocateWideMultiSz@PWideMultiSz@SizeInt +ID6330=RsCILDescrunused60 +ID6331=RsCILDescrunused61 +ID6332=RsCILDescrunused62 +ID6333=RsCILDescrunused63 +ID6334=RsCILDescrunused64 +ID6335=RsCILDescrunused65 +ID6336=RsCILDescrunused66 +ID6337=RsCILDescrunused67 +ID6338=RsCILDescrunused68 +ID6339=RsCILDescrunused69 +ID634=AlphaComponent@TColor32 +ID6340=RsCILDescrunused7 +ID6341=RsCILDescrunused70 +ID6342=RsCILDescrunused8 +ID6343=RsCILDescrunused9 +ID6344=RsCILDescrvolatile +ID6345=RsCILDescrxor +ID6346=RsCILNameadd +ID6347=RsCILNameaddovf +ID6348=RsCILNameaddovfun +ID6349=RsCILNameand +ID635=AMD_APIC +ID6350=RsCILNamearglist +ID6351=RsCILNamebeq +ID6352=RsCILNamebeqs +ID6353=RsCILNamebge +ID6354=RsCILNamebges +ID6355=RsCILNamebgeun +ID6356=RsCILNamebgeuns +ID6357=RsCILNamebgt +ID6358=RsCILNamebgts +ID6359=RsCILNamebgtun +ID636=AMD_ASSOC_DIRECT +ID6360=RsCILNamebgtuns +ID6361=RsCILNameble +ID6362=RsCILNamebles +ID6363=RsCILNamebleun +ID6364=RsCILNamebleuns +ID6365=RsCILNameblt +ID6366=RsCILNameblts +ID6367=RsCILNamebltun +ID6368=RsCILNamebltuns +ID6369=RsCILNamebneun +ID637=AMD_ASSOC_FULLY +ID6370=RsCILNamebneuns +ID6371=RsCILNamebox +ID6372=RsCILNamebr +ID6373=RsCILNamebreak +ID6374=RsCILNamebrfalse +ID6375=RsCILNamebrfalses +ID6376=RsCILNamebrs +ID6377=RsCILNamebrtrue +ID6378=RsCILNamebrtrues +ID6379=RsCILNamecall +ID638=AMD_ASSOC_RESERVED +ID6380=RsCILNamecalli +ID6381=RsCILNamecallvirt +ID6382=RsCILNamecastclass +ID6383=RsCILNameceq +ID6384=RsCILNamecgt +ID6385=RsCILNamecgtun +ID6386=RsCILNameckfinite +ID6387=RsCILNameclt +ID6388=RsCILNamecltun +ID6389=RsCILNameconvi +ID639=AMD_BIT_10 +ID6390=RsCILNameconvi1 +ID6391=RsCILNameconvi2 +ID6392=RsCILNameconvi4 +ID6393=RsCILNameconvi8 +ID6394=RsCILNameconvovfi +ID6395=RsCILNameconvovfi1 +ID6396=RsCILNameconvovfi1un +ID6397=RsCILNameconvovfi2 +ID6398=RsCILNameconvovfi2un +ID6399=RsCILNameconvovfi4 ID64=!!OVERLOADED_GetProperty_TJclFilePropertySet -ID640=AMD_FPU -ID6400=StartServiceByName@String@String -ID6401=STARTUP_CONCURRENT_GC -ID6402=STARTUP_LOADER_OPTIMIZATION_MASK -ID6403=STARTUP_LOADER_OPTIMIZATION_MULTI_DOMAIN -ID6404=STARTUP_LOADER_OPTIMIZATION_MULTI_DOMAIN_HOST -ID6405=STARTUP_LOADER_OPTIMIZATION_SINGLE_DOMAIN -ID6406=STARTUP_LOADER_SAFEMODE -ID6407=STARTUP_LOADER_SETPREFERENCE -ID6408=stat64@PChar@TStatBuf64 -ID6409=StdError@Float@Integer -ID641=AMD_FXSR -ID6410=StdError@TDynFloatArray -ID6411=stDriverService -ID6412=StgCreateStorageEx@PWideChar@DWORD@DWORD@DWORD@PSTGOPTIONS@Pointer@PGUID@IInterface -ID6413=STGFMT_ANY -ID6414=STGFMT_DOCFILE -ID6415=STGFMT_DOCUMENT -ID6416=STGFMT_FILE -ID6417=STGFMT_NATIVE -ID6418=STGFMT_STORAGE -ID6419=StgOpenStorageEx@PWideChar@DWORD@DWORD@DWORD@PSTGOPTIONS@Pointer@PGUID@IInterface -ID642=AMD_HTT -ID6420=STGOPTIONS -ID6421=StopServiceByName@String@String -ID6422=StrAddRef@string -ID6423=StrAfter@string@string -ID6424=StrAllocSize@string -ID6425=StrAnsiToOem@string -ID6426=STRANSMETA_BIT_10 -ID6427=STRANSMETA_BIT_11 -ID6428=STRANSMETA_BIT_12 -ID6429=STRANSMETA_BIT_13 -ID643=AMD_L2_ASSOC_16WAY -ID6430=STRANSMETA_BIT_14 -ID6431=STRANSMETA_BIT_15 -ID6432=STRANSMETA_BIT_16 -ID6433=STRANSMETA_BIT_17 -ID6434=STRANSMETA_BIT_18 -ID6435=STRANSMETA_BIT_19 -ID6436=STRANSMETA_BIT_2 -ID6437=STRANSMETA_BIT_20 -ID6438=STRANSMETA_BIT_21 -ID6439=STRANSMETA_BIT_22 -ID644=AMD_L2_ASSOC_2WAY -ID6440=STRANSMETA_BIT_23 -ID6441=STRANSMETA_BIT_24 -ID6442=STRANSMETA_BIT_25 -ID6443=STRANSMETA_BIT_26 -ID6444=STRANSMETA_BIT_27 -ID6445=STRANSMETA_BIT_28 -ID6446=STRANSMETA_BIT_29 -ID6447=STRANSMETA_BIT_30 -ID6448=STRANSMETA_BIT_31 -ID6449=STRANSMETA_BIT_4 -ID645=AMD_L2_ASSOC_4WAY -ID6450=STRANSMETA_BIT_5 -ID6451=STRANSMETA_BIT_6 -ID6452=STRANSMETA_BIT_9 -ID6453=STRANSMETA_LONGRUN -ID6454=STRANSMETA_LRTI -ID6455=STRANSMETA_PTTI1 -ID6456=STRANSMETA_PTTI2 -ID6457=STRANSMETA_RECOVERY -ID6458=StrBefore@string@string -ID6459=StrBetween@string@Char@Char -ID646=AMD_L2_ASSOC_8WAY -ID6460=StrCenter@string@Integer@Char -ID6461=StrCharCount@string@Char -ID6462=StrCharPosLower@string@Integer -ID6463=StrCharPosUpper@string@Integer -ID6464=StrCharsCount@string@TSysCharSet -ID6465=StrChopRight@string@Integer -ID6466=StrCompare@string@string -ID6467=StrCompareRange@string@string@Integer@Integer -ID6468=StrConsistsOfNumberChars@string -ID6469=StrContainsChars@string@TSysCharSet@Boolean -ID647=AMD_L2_ASSOC_DIRECT -ID6470=StrDecRef@string -ID6471=StrDisposeAndNilW@PWideChar -ID6472=StrDoubleQuote@string -ID6473=Streams -ID6474=StreamSeek@TStream@Int64@TSeekOrigin -ID6475=StreamToVariantArray@IStream -ID6476=StreamToVariantArray@TStream -ID6477=StrEnsureNoPrefix@string@string -ID6478=StrEnsureNoSuffix@string@string -ID6479=StrEnsurePrefix@string@string -ID648=AMD_L2_ASSOC_DISABLED -ID6480=StrEnsureSuffix@string@string -ID6481=StrEscapedToString@string -ID6482=StrFillChar@Char@Integer -ID6483=StrFind@string@string@Integer -ID6484=StrHasPrefix@string@array of string -ID6485=StrILastPos@string@string -ID6486=StrIndex@string@array of string -ID6487=StringManipulation -ID6488=StringRemove@string@string@TReplaceFlags -ID6489=StringReplace@string@string@string@TReplaceFlags -ID649=AMD_L2_ASSOC_FULLY -ID6490=StringsToStr@TStrings@string@Boolean -ID6491=StringToByteArray@string -ID6492=StringToFile@string@AnsiString -ID6493=StringToSID@String@PSID@DWORD -ID6494=StrIPos@string@string -ID6495=StrIsAlpha@string -ID6496=StrIsAlphaNum@string -ID6497=StrIsAlphaNumUnderscore@string -ID6498=StrIsDigit@string -ID6499=StrIsOneOf@string@array of string +ID640=AMD_BIT_18 +ID6400=RsCILNameconvovfi4un +ID6401=RsCILNameconvovfi8 +ID6402=RsCILNameconvovfi8un +ID6403=RsCILNameconvovfiun +ID6404=RsCILNameconvovfu +ID6405=RsCILNameconvovfu1 +ID6406=RsCILNameconvovfu1un +ID6407=RsCILNameconvovfu2 +ID6408=RsCILNameconvovfu2un +ID6409=RsCILNameconvovfu4 +ID641=AMD_BIT_20 +ID6410=RsCILNameconvovfu4un +ID6411=RsCILNameconvovfu8 +ID6412=RsCILNameconvovfu8un +ID6413=RsCILNameconvovfuun +ID6414=RsCILNameconvr4 +ID6415=RsCILNameconvr8 +ID6416=RsCILNameconvrun +ID6417=RsCILNameconvu +ID6418=RsCILNameconvu1 +ID6419=RsCILNameconvu2 +ID642=AMD_BIT_21 +ID6420=RsCILNameconvu4 +ID6421=RsCILNameconvu8 +ID6422=RsCILNamecpblk +ID6423=RsCILNamecpobj +ID6424=RsCILNamediv +ID6425=RsCILNamedivun +ID6426=RsCILNamedup +ID6427=RsCILNameendfilter +ID6428=RsCILNameendfinally +ID6429=RsCILNameinitblk +ID643=AMD_BIT_22 +ID6430=RsCILNameinitobj +ID6431=RsCILNameisinst +ID6432=RsCILNamejmp +ID6433=RsCILNameldarg +ID6434=RsCILNameldarg0 +ID6435=RsCILNameldarg1 +ID6436=RsCILNameldarg2 +ID6437=RsCILNameldarg3 +ID6438=RsCILNameldarga +ID6439=RsCILNameldargas +ID644=AMD_BIT_27 +ID6440=RsCILNameldargs +ID6441=RsCILNameldci4 +ID6442=RsCILNameldci40 +ID6443=RsCILNameldci41 +ID6444=RsCILNameldci42 +ID6445=RsCILNameldci43 +ID6446=RsCILNameldci44 +ID6447=RsCILNameldci45 +ID6448=RsCILNameldci46 +ID6449=RsCILNameldci47 +ID645=AMD_BIT_29 +ID6450=RsCILNameldci48 +ID6451=RsCILNameldci4m1 +ID6452=RsCILNameldci4s +ID6453=RsCILNameldci8 +ID6454=RsCILNameldcr4 +ID6455=RsCILNameldcr8 +ID6456=RsCILNameldelema +ID6457=RsCILNameldelemi +ID6458=RsCILNameldelemi1 +ID6459=RsCILNameldelemi2 +ID646=AMD_BIT_30 +ID6460=RsCILNameldelemi4 +ID6461=RsCILNameldelemi8 +ID6462=RsCILNameldelemr4 +ID6463=RsCILNameldelemr8 +ID6464=RsCILNameldelemref +ID6465=RsCILNameldelemu1 +ID6466=RsCILNameldelemu2 +ID6467=RsCILNameldelemu4 +ID6468=RsCILNameldfld +ID6469=RsCILNameldflda +ID647=AMD_BIT_31 +ID6470=RsCILNameldftn +ID6471=RsCILNameldindi +ID6472=RsCILNameldindi1 +ID6473=RsCILNameldindi2 +ID6474=RsCILNameldindi4 +ID6475=RsCILNameldindi8 +ID6476=RsCILNameldindr4 +ID6477=RsCILNameldindr8 +ID6478=RsCILNameldindref +ID6479=RsCILNameldindu1 +ID648=AMD_CLFLSH +ID6480=RsCILNameldindu2 +ID6481=RsCILNameldindu4 +ID6482=RsCILNameldlen +ID6483=RsCILNameldloc +ID6484=RsCILNameldloc0 +ID6485=RsCILNameldloc1 +ID6486=RsCILNameldloc2 +ID6487=RsCILNameldloc3 +ID6488=RsCILNameldloca +ID6489=RsCILNameldlocas +ID649=AMD_CMOV +ID6490=RsCILNameldlocs +ID6491=RsCILNameldnull +ID6492=RsCILNameldobj +ID6493=RsCILNameldsfld +ID6494=RsCILNameldsflda +ID6495=RsCILNameldstr +ID6496=RsCILNameldtoken +ID6497=RsCILNameldvirtftn +ID6498=RsCILNameleave +ID6499=RsCILNameleaves ID65=!!OVERLOADED_GetPropertySet_TJclFileSummary -ID650=AMD_MCA -ID6500=StrIsSubset@string@TSysCharSet -ID6501=StrIToStrings@AnsiString@AnsiString@TStrings@Boolean -ID6502=StrIToStrings@string@string@TStrings@Boolean -ID6503=StrKeepChars@string@TSysCharSet -ID6504=StrLastPos@string@string -ID6505=StrLeft@string@Integer -ID6506=StrLen@PChar -ID6507=StrLength@string -ID6508=StrLICompW2@PWideChar@PWideChar@Cardinal -ID6509=StrLower@string -ID651=AMD_MCE -ID6510=StrLowerBuff@PChar -ID6511=StrLowerInPlace@string -ID6512=StrMatch@string@string@Integer -ID6513=StrMatches@string@string@Integer -ID6514=StrMid@string@Integer@Integer -ID6515=StrMove@string@string@Integer@Integer@Integer -ID6516=StrNewW@WideString -ID6517=StrNIPos@string@string@Integer -ID6518=StrNPos@string@string@Integer -ID6519=StrOemToAnsi@string -ID652=AMD_MMX -ID6520=StrPadLeft@string@Integer@Char -ID6521=StrPadRight@string@Integer@Char -ID6522=StrPCopyWW@PWideChar@WideString -ID6523=StrPLCopyWW@PWideChar@WideString@Cardinal -ID6524=StrPrefixIndex@string@array of string -ID6525=StrProper@string -ID6526=StrProperBuff@PChar -ID6527=StrQuote@string@Char -ID6528=StrRefCount@string -ID6529=StrRemoveChars@string@TSysCharSet -ID653=AMD_MSR -ID6530=StrRepeat@string@Integer -ID6531=StrRepeatLength@string@Integer -ID6532=StrReplace@string@string@string@TReplaceFlags -ID6533=StrReplaceButChars@string@TSysCharSet@Char -ID6534=StrReplaceChar@string@Char@Char -ID6535=StrReplaceChars@string@TSysCharSet@Char -ID6536=StrReplaceRegEx@AnsiString@AnsiString@array of const -ID6537=StrResetLength@string -ID6538=StrResetLength@StringBuilder -ID6539=StrRestOf@string@Integer -ID654=AMD_MTRR -ID6540=StrReverse@string -ID6541=StrReverseInPlace@string -ID6542=StrRight@string@Integer -ID6543=StrSame@string@string -ID6544=StrScanW@PWideChar@WideChar@Cardinal -ID6545=StrSearch@string@string@Integer -ID6546=StrSimpleCompare@string@string -ID6547=StrSingleQuote@string -ID6548=StrSmartCase@string@TSysCharSet -ID6549=StrSortProc -ID655=AMD_PAE -ID6550=StrStrCount@string@string -ID6551=StrStringToEscaped@string -ID6552=StrStripNonNumberChars@string -ID6553=StrToBoolean -ID6554=StrToFloatSafe@AnsiString -ID6555=StrToFloatSafe@string -ID6556=StrToHex@string -ID6557=StrToIntSafe@AnsiString -ID6558=StrToIntSafe@string -ID6559=StrToken@string@Char -ID656=AMD_PAT -ID6560=StrTokens@string@TStrings -ID6561=StrTokenToStrings@string@Char@TStrings -ID6562=StrToStrings@string@string@TStrings@Boolean -ID6563=StrTrimCharLeft@string@Char -ID6564=StrTrimCharRight@string@Char -ID6565=StrTrimCharsLeft@string@TSysCharSet -ID6566=StrTrimCharsRight@string@TSysCharSet -ID6567=StrTrimQuotes@string -ID6568=StrUpper@string -ID6569=StrUpperBuff@PChar -ID657=AMD_PGE -ID6570=StrUpperInPlace@string -ID6571=StrWord@PChar@string -ID6572=StrWord@string@Integer@string -ID6573=stTraceEAbort -ID6574=stWin32Service -ID6575=STXTLEN -ID6576=SUBLANGID@WORD -ID6577=SUBSECTION_TYPE_ALIGN_SYMBOLS -ID6578=SUBSECTION_TYPE_GLOBAL_SYMBOLS -ID6579=SUBSECTION_TYPE_GLOBAL_TYPES -ID658=AMD_PSE -ID6580=SUBSECTION_TYPE_MODULE -ID6581=SUBSECTION_TYPE_NAMES -ID6582=SUBSECTION_TYPE_SOURCE_MODULE -ID6583=SUBSECTION_TYPE_SYMBOLS -ID6584=SUBSECTION_TYPE_TYPES -ID6585=Sum@array of TRectComplex -ID6586=Sum@TRectComplex@TRectComplex -ID6587=SumOfSquares@TDynFloatArray -ID6588=SupportedBCBVersions -ID6589=SupportedBDSVersions -ID659=AMD_PSE32 -ID6590=SupportedDelphiVersions -ID6591=SurrogateHighEnd -ID6592=SurrogateHighStart -ID6593=SurrogateLowEnd -ID6594=SurrogateLowStart -ID6595=SuspendOS@Boolean@Boolean -ID6596=SwapOrd@Cardinal@Cardinal -ID6597=SwapOrd@Int64@Int64 -ID6598=SwapOrd@Integer@Integer -ID6599=SwapOrd@Shortint@Shortint +ID650=AMD_CX8 +ID6500=RsCILNamelocalloc +ID6501=RsCILNamemkrefany +ID6502=RsCILNamemul +ID6503=RsCILNamemulovf +ID6504=RsCILNamemulovfun +ID6505=RsCILNameneg +ID6506=RsCILNamenewarr +ID6507=RsCILNamenewobj +ID6508=RsCILNamenop +ID6509=RsCILNamenot +ID651=AMD_DE +ID6510=RsCILNameor +ID6511=RsCILNamepop +ID6512=RsCILNameprefix1 +ID6513=RsCILNameprefix2 +ID6514=RsCILNameprefix3 +ID6515=RsCILNameprefix4 +ID6516=RsCILNameprefix5 +ID6517=RsCILNameprefix6 +ID6518=RsCILNameprefix7 +ID6519=RsCILNameprefixref +ID652=AMD_FPU +ID6520=RsCILNamerefanytype +ID6521=RsCILNamerefanyval +ID6522=RsCILNamerem +ID6523=RsCILNameremun +ID6524=RsCILNameret +ID6525=RsCILNamerethrow +ID6526=RsCILNameshl +ID6527=RsCILNameshr +ID6528=RsCILNameshrun +ID6529=RsCILNamesizeof +ID653=AMD_FXSR +ID6530=RsCILNamestarg +ID6531=RsCILNamestargs +ID6532=RsCILNamestelemi +ID6533=RsCILNamestelemi1 +ID6534=RsCILNamestelemi2 +ID6535=RsCILNamestelemi4 +ID6536=RsCILNamestelemi8 +ID6537=RsCILNamestelemr4 +ID6538=RsCILNamestelemr8 +ID6539=RsCILNamestelemref +ID654=AMD_HTT +ID6540=RsCILNamestfld +ID6541=RsCILNamestindi +ID6542=RsCILNamestindi1 +ID6543=RsCILNamestindi2 +ID6544=RsCILNamestindi4 +ID6545=RsCILNamestindi8 +ID6546=RsCILNamestindr4 +ID6547=RsCILNamestindr8 +ID6548=RsCILNamestindref +ID6549=RsCILNamestloc +ID655=AMD_L2_ASSOC_16WAY +ID6550=RsCILNamestloc0 +ID6551=RsCILNamestloc1 +ID6552=RsCILNamestloc2 +ID6553=RsCILNamestloc3 +ID6554=RsCILNamestlocs +ID6555=RsCILNamestobj +ID6556=RsCILNamestsfld +ID6557=RsCILNamesub +ID6558=RsCILNamesubovf +ID6559=RsCILNamesubovfun +ID656=AMD_L2_ASSOC_2WAY +ID6560=RsCILNameswitch +ID6561=RsCILNametail +ID6562=RsCILNamethrow +ID6563=RsCILNameunaligned +ID6564=RsCILNameunbox +ID6565=RsCILNameunused1 +ID6566=RsCILNameunused10 +ID6567=RsCILNameunused11 +ID6568=RsCILNameunused12 +ID6569=RsCILNameunused13 +ID657=AMD_L2_ASSOC_4WAY +ID6570=RsCILNameunused14 +ID6571=RsCILNameunused15 +ID6572=RsCILNameunused16 +ID6573=RsCILNameunused17 +ID6574=RsCILNameunused18 +ID6575=RsCILNameunused19 +ID6576=RsCILNameunused2 +ID6577=RsCILNameunused20 +ID6578=RsCILNameunused21 +ID6579=RsCILNameunused22 +ID658=AMD_L2_ASSOC_8WAY +ID6580=RsCILNameunused23 +ID6581=RsCILNameunused24 +ID6582=RsCILNameunused25 +ID6583=RsCILNameunused26 +ID6584=RsCILNameunused27 +ID6585=RsCILNameunused28 +ID6586=RsCILNameunused29 +ID6587=RsCILNameunused3 +ID6588=RsCILNameunused30 +ID6589=RsCILNameunused31 +ID659=AMD_L2_ASSOC_DIRECT +ID6590=RsCILNameunused32 +ID6591=RsCILNameunused33 +ID6592=RsCILNameunused34 +ID6593=RsCILNameunused35 +ID6594=RsCILNameunused36 +ID6595=RsCILNameunused37 +ID6596=RsCILNameunused38 +ID6597=RsCILNameunused39 +ID6598=RsCILNameunused4 +ID6599=RsCILNameunused40 ID66=!!OVERLOADED_Implicit_TRectComplex -ID660=AMD_SEP_BIT -ID6600=SwapOrd@Smallint@Smallint -ID6601=SwapOrd@Word@Word -ID6602=SYMBOL_TYPE_BLOCK16 -ID6603=SYMBOL_TYPE_BLOCK32 -ID6604=SYMBOL_TYPE_BPREL16 -ID6605=SYMBOL_TYPE_BPREL32 -ID6606=SYMBOL_TYPE_CEXMODEL16 -ID6607=SYMBOL_TYPE_CEXMODEL32 -ID6608=SYMBOL_TYPE_COMPILE -ID6609=SYMBOL_TYPE_CONST -ID661=AMD_SSE -ID6610=SYMBOL_TYPE_CVRESERVE -ID6611=SYMBOL_TYPE_END -ID6612=SYMBOL_TYPE_GDATA16 -ID6613=SYMBOL_TYPE_GDATA32 -ID6614=SYMBOL_TYPE_GPROC16 -ID6615=SYMBOL_TYPE_GPROC32 -ID6616=SYMBOL_TYPE_LABEL16 -ID6617=SYMBOL_TYPE_LABEL32 -ID6618=SYMBOL_TYPE_LDATA16 -ID6619=SYMBOL_TYPE_LDATA32 -ID662=AMD_SSE2 -ID6620=SYMBOL_TYPE_LPROC16 -ID6621=SYMBOL_TYPE_LPROC32 -ID6622=SYMBOL_TYPE_OBJNAME -ID6623=SYMBOL_TYPE_PUB16 -ID6624=SYMBOL_TYPE_PUB32 -ID6625=SYMBOL_TYPE_REGISTER -ID6626=SYMBOL_TYPE_SKIP -ID6627=SYMBOL_TYPE_SSEARCH -ID6628=SYMBOL_TYPE_THUNK16 -ID6629=SYMBOL_TYPE_THUNK32 -ID663=AMD_TSC -ID6630=SYMBOL_TYPE_UDT -ID6631=SYMBOL_TYPE_VFTPATH16 -ID6632=SYMBOL_TYPE_VFTPATH32 -ID6633=SYMBOL_TYPE_WITH16 -ID6634=SYMBOL_TYPE_WITH32 -ID6635=SYMOPT_ALLOW_ABSOLUTE_SYMBOLS -ID6636=SYMOPT_AUTO_PUBLICS -ID6637=SYMOPT_DEBUG -ID6638=SYMOPT_EXACT_SYMBOLS -ID6639=SYMOPT_FAIL_CRITICAL_ERRORS -ID664=AMD_VME -ID6640=SYMOPT_IGNORE_CVREC -ID6641=SYMOPT_IGNORE_NT_SYMPATH -ID6642=SYMOPT_INCLUDE_32BIT_MODULES -ID6643=SYMOPT_LOAD_ANYTHING -ID6644=SYMOPT_LOAD_LINES -ID6645=SYMOPT_NO_IMAGE_SEARCH -ID6646=SYMOPT_NO_PROMPTS -ID6647=SYMOPT_NO_PUBLICS -ID6648=SYMOPT_NO_UNQUALIFIED_LOADS -ID6649=SYMOPT_OMAP_FIND_NEAREST -ID665=AMD2_BIT_1 -ID6650=SYMOPT_PUBLICS_ONLY -ID6651=SYMOPT_SECURE -ID6652=SystemInformationRoutines -ID6653=SystemTimeToFileTime@TSystemTime@TFileTime -ID6654=SystemTObjectInstance -ID6655=T8087Exception -ID6656=T8087Exception.emDenormalizedOperand -ID6657=T8087Exception.emInvalidOp -ID6658=T8087Exception.emOverflow -ID6659=T8087Exception.emPrecision -ID666=AMD2_BIT_10 -ID6660=T8087Exception.emUnderflow -ID6661=T8087Exception.emZeroDivide -ID6662=TA1SegmentId -ID6663=TActionHeader -ID6664=tagRASDIALDLG -ID6665=tagRASDIALDLG.dwError -ID6666=tagRASDIALDLG.dwFlags -ID6667=tagRASDIALDLG.dwSize -ID6668=tagRASDIALDLG.dwSubEntry -ID6669=tagRASDIALDLG.hwndOwner -ID667=AMD2_BIT_11 -ID6670=tagRASDIALDLG.reserved -ID6671=tagRASDIALDLG.reserved2 -ID6672=tagRASDIALDLG.xDlg -ID6673=tagRASDIALDLG.yDlg -ID6674=tagSTGOPTIONS -ID6675=tagSTGOPTIONS.pwcsTemplateFile -ID6676=tagSTGOPTIONS.reserved -ID6677=tagSTGOPTIONS.ulSectorSize -ID6678=tagSTGOPTIONS.usVersion -ID6679=Tan@TRectComplex -ID668=AMD2_BIT_12 -ID6680=TanH@TRectComplex -ID6681=TAnonObjectHeader -ID6682=TAnsiPath -ID6683=TAPMBatteryFlags -ID6684=TApplyFunction -ID6685=TArrayCatID -ID6686=TArrayOfColor32 -ID6687=TBinary32Func -ID6688=TBinary64Func -ID6689=TBinary80Func -ID669=AMD2_BIT_14 -ID6690=TBitRange -ID6691=TBlendLine -ID6692=TBlendLineEx -ID6693=TBlendMem -ID6694=TBlendMemEx -ID6695=TBlendReg -ID6696=TBlendRegEx -ID6697=TBooleanArray -ID6698=TCacheFamily -ID6699=TCacheFamily.cfDataTLB +ID660=AMD_L2_ASSOC_DISABLED +ID6600=RsCILNameunused41 +ID6601=RsCILNameunused42 +ID6602=RsCILNameunused43 +ID6603=RsCILNameunused44 +ID6604=RsCILNameunused45 +ID6605=RsCILNameunused46 +ID6606=RsCILNameunused47 +ID6607=RsCILNameunused48 +ID6608=RsCILNameunused49 +ID6609=RsCILNameunused5 +ID661=AMD_L2_ASSOC_FULLY +ID6610=RsCILNameunused50 +ID6611=RsCILNameunused51 +ID6612=RsCILNameunused52 +ID6613=RsCILNameunused53 +ID6614=RsCILNameunused54 +ID6615=RsCILNameunused55 +ID6616=RsCILNameunused56 +ID6617=RsCILNameunused57 +ID6618=RsCILNameunused58 +ID6619=RsCILNameunused59 +ID662=AMD_MCA +ID6620=RsCILNameunused6 +ID6621=RsCILNameunused60 +ID6622=RsCILNameunused61 +ID6623=RsCILNameunused62 +ID6624=RsCILNameunused63 +ID6625=RsCILNameunused64 +ID6626=RsCILNameunused65 +ID6627=RsCILNameunused66 +ID6628=RsCILNameunused67 +ID6629=RsCILNameunused68 +ID663=AMD_MCE +ID6630=RsCILNameunused69 +ID6631=RsCILNameunused7 +ID6632=RsCILNameunused70 +ID6633=RsCILNameunused8 +ID6634=RsCILNameunused9 +ID6635=RsCILNamevolatile +ID6636=RsCILNamexor +ID6637=RsCleaningFailed +ID6638=RsCleaningOk +ID6639=RsCleaningPackageCache +ID664=AMD_MMX +ID6640=RsClientServer +ID6641=RsClrCopyright +ID6642=RsCombiningClassUnicodeChar +ID6643=RsComFailedStreamRead +ID6644=RsComFailedStreamWrite +ID6645=RsComInvalidParam +ID6646=RsCommandLineToolMissing +ID6647=RsCompilationFailed +ID6648=RsCompilationOk +ID6649=RsCompilingPackage +ID665=AMD_MSR +ID6650=RsCompilingProject +ID6651=RsComplexInvalidString +ID6652=RsCompression7zExtensions +ID6653=RsCompression7zInArchiveError +ID6654=RsCompression7zLoadError +ID6655=RsCompression7zName +ID6656=RsCompression7zOnlyCurrentFile +ID6657=RsCompression7zOutArchiveError +ID6658=RsCompression7zReturnError +ID6659=RsCompression7zUnix +ID666=AMD_MTRR +ID6660=RsCompression7zUnknownValueType +ID6661=RsCompression7zWindows +ID6662=RsCompressionApmExtensions +ID6663=RsCompressionApmName +ID6664=RsCompressionArjExtensions +ID6665=RsCompressionArjName +ID6666=RsCompressionBZIP2ConfigError +ID6667=RsCompressionBZIP2DataError +ID6668=RsCompressionBZIP2EOFError +ID6669=RsCompressionBZIP2Error +ID667=AMD_PAE +ID6670=RsCompressionBZip2Extensions +ID6671=RsCompressionBZIP2HeaderError +ID6672=RsCompressionBZIP2IOError +ID6673=RsCompressionBZIP2MemoryError +ID6674=RsCompressionBZip2Name +ID6675=RsCompressionBZIP2OutBuffError +ID6676=RsCompressionBZIP2ParameterError +ID6677=RsCompressionBZIP2SequenceError +ID6678=RsCompressionCabExtensions +ID6679=RsCompressionCabName +ID668=AMD_PAT +ID6680=RsCompressionChmExtensions +ID6681=RsCompressionChmName +ID6682=RsCompressionCompoundExtensions +ID6683=RsCompressionCompoundName +ID6684=RsCompressionCompressingError +ID6685=RsCompressionCpioExtensions +ID6686=RsCompressionCpioName +ID6687=RsCompressionCRCError +ID6688=RsCompressionDataError +ID6689=RsCompressionDebExtensions +ID669=AMD_PGE +ID6690=RsCompressionDebName +ID6691=RsCompressionDecompressingError +ID6692=RsCompressionDmgExtensions +ID6693=RsCompressionDmgName +ID6694=RsCompressionDuplicate +ID6695=RsCompressionElfExtensions +ID6696=RsCompressionElfName +ID6697=RsCompressionFatExtensions +ID6698=RsCompressionFatName +ID6699=RsCompressionFlvExtensions ID67=!!OVERLOADED_IndexOf_TEDIObjectList -ID670=AMD2_BIT_15 -ID6700=TCacheFamily.cfInstructionTLB -ID6701=TCacheFamily.cfL1DataCache -ID6702=TCacheFamily.cfL1InstructionCache -ID6703=TCacheFamily.cfL2Cache -ID6704=TCacheFamily.cfL3Cache -ID6705=TCacheFamily.cfOther -ID6706=TCacheFamily.cfTrace -ID6707=TCacheInformation -ID6708=TCacheInformation.ciAssociativity -ID6709=TCacheInformation.ciLineSize -ID671=AMD2_BIT_16 -ID6710=TCacheInformation.ciLinesPerTag -ID6711=TCacheInformation.ciSize -ID6712=TCalInfoEnumProcExA -ID6713=TCharDynArray -ID6714=TClipCode -ID6715=TClipCode.ccAbove -ID6716=TClipCode.ccBelow -ID6717=TClipCode.ccLeft -ID6718=TClipCode.ccRight -ID6719=TClipCodes -ID672=AMD2_BIT_17 -ID6720=TClrMetadataHeader -ID6721=TClrMetadataHeader.Length -ID6722=TClrMetadataHeader.MajorVersion -ID6723=TClrMetadataHeader.MinorVersion -ID6724=TClrMetadataHeader.Reserved -ID6725=TClrMetadataHeader.Signature -ID6726=TClrMetadataHeader.Version -ID6727=TClrStreamHeader -ID6728=TClrStreamHeader.Name -ID6729=TClrStreamHeader.Offset -ID673=AMD2_BIT_18 -ID6730=TClrStreamHeader.Size -ID6731=TClrTableStreamHeader -ID6732=TClrTableStreamHeader.HeapSizes -ID6733=TClrTableStreamHeader.MajorVersion -ID6734=TClrTableStreamHeader.MinorVersion -ID6735=TClrTableStreamHeader.Reserved -ID6736=TClrTableStreamHeader.Reserved2 -ID6737=TClrTableStreamHeader.Rows -ID6738=TClrTableStreamHeader.Sorted -ID6739=TClrTableStreamHeader.Valid -ID674=AMD2_BIT_19 -ID6740=TColorChannel -ID6741=TColorChannel.ccAlpha -ID6742=TColorChannel.ccBlue -ID6743=TColorChannel.ccGreen -ID6744=TColorChannel.ccRed -ID6745=TColorRec -ID6746=TColorRec.B -ID6747=TColorRec.Blue -ID6748=TColorRec.Flag -ID6749=TColorRec.G -ID675=AMD2_BIT_2 -ID6750=TColorRec.Green -ID6751=TColorRec.Index -ID6752=TColorRec.R -ID6753=TColorRec.Red -ID6754=TColorRec.Value -ID6755=TColorVector -ID6756=TColorVector.B -ID6757=TColorVector.Coord -ID6758=TColorVector.G -ID6759=TColorVector.H -ID676=AMD2_BIT_20 -ID6760=TColorVector.L -ID6761=TColorVector.R -ID6762=TColorVector.S -ID6763=TCombineMem -ID6764=TCombineReg -ID6765=TCommandLineTool -ID6766=TCommandLineTool.clAsm -ID6767=TCommandLineTool.clBcc32 -ID6768=TCommandLineTool.clDcc32 -ID6769=TCommandLineTool.clDccIL -ID677=AMD2_BIT_21 -ID6770=TCommandLineTool.clMake -ID6771=TCommandLineTool.clProj2Mak -ID6772=TCommandLineTools -ID6773=TCompactPath -ID6774=TCompactPath.cpCenter -ID6775=TCompactPath.cpEnd -ID6776=TCompare -ID6777=TCompareFunc -ID6778=TComplex_VERSION -ID6779=TConfirmConversionEvent -ID678=AMD2_BIT_22 -ID6780=TCoords -ID6781=TCoords.R -ID6782=TCoords.Theta -ID6783=TCoords.X -ID6784=TCoords.Y -ID6785=TCustomData -ID6786=TCustomUnitVersioningProvider -ID6787=TCustomUnitVersioningProvider.Create -ID6788=TCustomUnitVersioningProvider.LoadModuleUnitVersioningInfo@THandle -ID6789=TCustomUnitVersioningProvider.ReleaseModuleUnitVersioningInfo@THandle -ID679=AMD2_BIT_23 -ID6790=TDateTimeArray -ID6791=TDelphiSet -ID6792=TDFA -ID6793=TDFA.Flags -ID6794=TDFA.StateList -ID6795=TDFA.SymbolTable -ID6796=TDFA.TransitionList -ID6797=TDFAState -ID6798=TDFAState.Accepting -ID6799=TDFAState.NumberTransitions +ID670=AMD_PSE +ID6700=RsCompressionFlvName +ID6701=RsCompressionGZIPBadString +ID6702=RsCompressionGZIPDataCRCFailed +ID6703=RsCompressionGZIPDataTruncated +ID6704=RsCompressionGZIPDecompressing +ID6705=RsCompressionGZipExtensions +ID6706=RsCompressionGZIPExtraFieldTooLong +ID6707=RsCompressionGZIPHeaderCRC +ID6708=RsCompressionGZIPInternalError +ID6709=RsCompressionGZIPInvalidID +ID671=AMD_PSE32 +ID6710=RsCompressionGZipName +ID6711=RsCompressionGZIPNotDecompressed +ID6712=RsCompressionGZIPUnsupportedCM +ID6713=RsCompressionHfsExtensions +ID6714=RsCompressionHfsName +ID6715=RsCompressionIsoExtensions +ID6716=RsCompressionIsoName +ID6717=RsCompressionLzhExtensions +ID6718=RsCompressionLzhName +ID6719=RsCompressionLzma86Extensions +ID672=AMD_SEP_BIT +ID6720=RsCompressionLzma86Name +ID6721=RsCompressionLzmaExtensions +ID6722=RsCompressionLzmaName +ID6723=RsCompressionMachoExtensions +ID6724=RsCompressionMachoName +ID6725=RsCompressionMbrExtensions +ID6726=RsCompressionMbrName +ID6727=RsCompressionMsLZExtensions +ID6728=RsCompressionMsLZName +ID6729=RsCompressionMubExtensions +ID673=AMD_SSE +ID6730=RsCompressionMubName +ID6731=RsCompressionNoFileName +ID6732=RsCompressionNsisExtensions +ID6733=RsCompressionNsisName +ID6734=RsCompressionNtfsExtensions +ID6735=RsCompressionNtfsName +ID6736=RsCompressionOperationNotSupported +ID6737=RsCompressionPeExtensions +ID6738=RsCompressionPeName +ID6739=RsCompressionPpmdExtensions +ID674=AMD_SSE2 +ID6740=RsCompressionPpmdName +ID6741=RsCompressionRarExtensions +ID6742=RsCompressionRarName +ID6743=RsCompressionReadNotSupported +ID6744=RsCompressionReplaceError +ID6745=RsCompressionResetNotSupported +ID6746=RsCompressionRpmExtensions +ID6747=RsCompressionRpmName +ID6748=RsCompressionSeekNotSupported +ID6749=RsCompressionSplitExtensions +ID675=AMD_TSC +ID6750=RsCompressionSplitName +ID6751=RsCompressionSwfcExtensions +ID6752=RsCompressionSwfcName +ID6753=RsCompressionSwfExtensions +ID6754=RsCompressionSwfName +ID6755=RsCompressionTarExtensions +ID6756=RsCompressionTarName +ID6757=RsCompressionUdfExtensions +ID6758=RsCompressionUdfName +ID6759=RsCompressionUnavailableProperty +ID676=AMD_VME +ID6760=RsCompressionUnknownError +ID6761=RsCompressionUnsupportedMethod +ID6762=RsCompressionVhdExtensions +ID6763=RsCompressionVhdName +ID6764=RsCompressionWimExtensions +ID6765=RsCompressionWimName +ID6766=RsCompressionWriteNotSupported +ID6767=RsCompressionXarExtensions +ID6768=RsCompressionXarName +ID6769=RsCompressionXzExtensions +ID677=AMD2_BIT_1 +ID6770=RsCompressionXzName +ID6771=RsCompressionZExtensions +ID6772=RsCompressionZipExtensions +ID6773=RsCompressionZipName +ID6774=RsCompressionZLibError +ID6775=RsCompressionZLibZBufError +ID6776=RsCompressionZLibZDataError +ID6777=RsCompressionZLibZErrNo +ID6778=RsCompressionZLibZMemError +ID6779=RsCompressionZLibZStreamError +ID678=AMD2_BIT_10 +ID6780=RsCompressionZLibZVersionError +ID6781=RsCompressionZName +ID6782=RsConvTempBelowAbsoluteZero +ID6783=RsCreateCompatibleDc +ID6784=RsCreateFileMapping +ID6785=RsCreateFileMappingView +ID6786=RsCreateProcAccessDenied +ID6787=RsCreateProcBuild1057Error +ID6788=RsCreateProcCommandNotFound +ID6789=RsCreateProcFailed +ID679=AMD2_BIT_11 +ID6790=RsCreateProcLogonFailed +ID6791=RsCreateProcLogonUserError +ID6792=RsCreateProcNTRequiredError +ID6793=RsCreateProcOSVersionError +ID6794=RsCreateProcPrivilegeMissing +ID6795=RsCreateProcPrivilegesMissing +ID6796=RsCreateProcSetDesktopSecurityError +ID6797=RsCreateProcSetStationSecurityError +ID6798=RsCreatingJdbg +ID6799=RsCSharpName ID68=!!OVERLOADED_Insert_TEDIObjectList -ID680=AMD2_BIT_24 -ID6800=TDFAState.StartTransition -ID6801=TDFAStates -ID6802=TDFAStates.States -ID6803=TDFAStates.StatesUsed -ID6804=TDigitCount -ID6805=TDigitValue -ID6806=TDirectoryEntry -ID6807=TDirectoryEntry.ModuleIndex -ID6808=TDirectoryEntry.Offset -ID6809=TDirectoryEntry.Size -ID681=AMD2_BIT_25 -ID6810=TDirectoryEntry.SubsectionType -ID6811=TDirectoryHeader -ID6812=TDirectoryHeader.DirEntries -ID6813=TDirectoryHeader.DirEntryCount -ID6814=TDirectoryHeader.DirEntrySize -ID6815=TDirectoryHeader.Flags -ID6816=TDirectoryHeader.lfoNextDir -ID6817=TDirectoryHeader.Size -ID6818=TDllVersionInfo -ID6819=TDosDateTime -ID682=AMD2_BIT_26 -ID6820=TDWORDArray -ID6821=TDynArraySortCompare -ID6822=TDynByteArray -ID6823=TDynCardinalArray -ID6824=TDynDoubleArray -ID6825=TDynExtendedArray -ID6826=TDynFloatArray -ID6827=TDynIInterfaceArray -ID6828=TDynInt64Array -ID6829=TDynIntegerArray -ID683=AMD2_BIT_27 -ID6830=TDynLongIntArray -ID6831=TDynObjectArray -ID6832=TDynPointerArray -ID6833=TDynShortIntArray -ID6834=TDynSingleArray -ID6835=TDynSmallIntArray -ID6836=TDynStringArray -ID6837=TDynWideCharArray -ID6838=TDynWordArray -ID6839=TEDI_ANSIX12_Document -ID684=AMD2_BIT_28 -ID6840=TEDI_ANSIX12_Document.AddLoopToDoc@TEDILoopStackRecord@string@string@string@TEDIObject -ID6841=TEDI_ANSIX12_Document.AdvanceSegSpecIndex@Integer@Integer@Integer -ID6842=TEDI_ANSIX12_Document.Create@TEDIDataObject@TEDITransactionSet@TEDISEFSet -ID6843=TEDI_ANSIX12_Document.Destroy -ID6844=TEDI_ANSIX12_Document.EDITSDOptions -ID6845=TEDI_ANSIX12_Document.ErrorOccured -ID6846=TEDI_ANSIX12_Document.FEDILoopStack -ID6847=TEDI_ANSIX12_Document.FEDISEFSet -ID6848=TEDI_ANSIX12_Document.FEDITransactionSet -ID6849=TEDI_ANSIX12_Document.FEDITransactionSetSpec -ID685=AMD2_BIT_29 -ID6850=TEDI_ANSIX12_Document.FEDITSDOptions -ID6851=TEDI_ANSIX12_Document.FErrorOccured -ID6852=TEDI_ANSIX12_Document.FormatDocument -ID6853=TEDI_ANSIX12_Document.SetSpecificationPointers@TEDISegment@TEDISEFSegment -ID6854=TEDI_ANSIX12_Document.ValidateData@TEDI_ANSIX12_Document@TEDILoopStack@TEDISegment@TEDISEFSegment@Integer@Integer@Boolean -ID6855=TEDI_ANSIX12_Document.ValidateSegSpecIndex@string@Integer -ID6856=TEDI_UNEDIFACT_Document -ID6857=TEDI_UNEDIFACT_Document.AddLoopToDoc@TEDILoopStackRecord@string@string@string@TEDIObject -ID6858=TEDI_UNEDIFACT_Document.AdvanceSegSpecIndex@Integer@Integer@Integer -ID6859=TEDI_UNEDIFACT_Document.Create@TEDIDataObject@TEDIMessage@TEDISEFSet -ID686=AMD2_BIT_3 -ID6860=TEDI_UNEDIFACT_Document.Destroy -ID6861=TEDI_UNEDIFACT_Document.EDITSDOptions -ID6862=TEDI_UNEDIFACT_Document.ErrorOccured -ID6863=TEDI_UNEDIFACT_Document.FEDILoopStack -ID6864=TEDI_UNEDIFACT_Document.FEDIMessage -ID6865=TEDI_UNEDIFACT_Document.FEDIMessageSpec -ID6866=TEDI_UNEDIFACT_Document.FEDISEFSet -ID6867=TEDI_UNEDIFACT_Document.FEDITSDOptions -ID6868=TEDI_UNEDIFACT_Document.FErrorOccured -ID6869=TEDI_UNEDIFACT_Document.FormatDocument -ID687=AMD2_BIT_30 -ID6870=TEDI_UNEDIFACT_Document.SetSpecificationPointers@TEDISegment@TEDISEFSegment -ID6871=TEDI_UNEDIFACT_Document.ValidateData@TEDI_UNEDIFACT_Document@TEDILoopStack@TEDISegment@TEDISEFSegment@Integer@Integer@Boolean -ID6872=TEDI_UNEDIFACT_Document.ValidateSegSpecIndex@string@Integer -ID6873=TEDICompositeElement -ID6874=TEDICompositeElement.AddElement -ID6875=TEDICompositeElement.AddElements@Integer -ID6876=TEDICompositeElement.AppendElement@TEDIElement -ID6877=TEDICompositeElement.AppendElements@TEDIElementArray -ID6878=TEDICompositeElement.Assemble -ID6879=TEDICompositeElement.Create@TEDIDataObject@Integer -ID688=AMD2_BIT_4 -ID6880=TEDICompositeElement.DeleteElement@Integer -ID6881=TEDICompositeElement.DeleteElement@TEDIElement -ID6882=TEDICompositeElement.DeleteElements -ID6883=TEDICompositeElement.DeleteElements@Integer@Integer -ID6884=TEDICompositeElement.Destroy -ID6885=TEDICompositeElement.Disassemble -ID6886=TEDICompositeElement.Element -ID6887=TEDICompositeElement.Elements -ID6888=TEDICompositeElement.GetElement@Integer -ID6889=TEDICompositeElement.InsertElement@Integer -ID689=AMD2_BIT_5 -ID6890=TEDICompositeElement.InsertElement@Integer@TEDIElement -ID6891=TEDICompositeElement.InsertElements@Integer@Integer -ID6892=TEDICompositeElement.InsertElements@Integer@TEDIElementArray -ID6893=TEDICompositeElement.InternalAssignDelimiters -ID6894=TEDICompositeElement.InternalCreateEDIDataObject -ID6895=TEDICompositeElement.InternalCreateElement -ID6896=TEDICompositeElement.SetElement@Integer@TEDIElement -ID6897=TEDICompositeElementArray -ID6898=TEDIDataObject -ID6899=TEDIDataObject.Assemble +ID680=AMD2_BIT_12 +ID6800=RsDateConversion +ID6801=RsDebugAssertValidPointer +ID6802=RsDebugAssertValidString +ID6803=RsDebugNoProcessInfo +ID6804=RsDebugSnapshot +ID6805=RsDeclarationFormat +ID6806=RsDecomposedUnicodeChar +ID6807=RsDefaultFileTypeName +ID6808=RsDeletingFile +ID6809=RsDelphiName +ID681=AMD2_BIT_14 +ID6810=RsDelphiNetName +ID6811=RsDelTreePathIsEmpty +ID6812=RsDestinationBitmapEmpty +ID6813=RsDeviceMode +ID6814=RsDibHandleAllocation +ID6815=RsDivByZero +ID6816=RsDotNetFormatArgumentNotSupported +ID6817=RsDotNetFormatNullFormat +ID6818=RsDynArrayError +ID6819=RsEAssignError +ID682=AMD2_BIT_15 +ID6820=RsEAutoAdjustNotEnabled +ID6821=RsECannotInstallRunOnly +ID6822=RsECmdLineToolOutputInvalid +ID6823=RsEDaylightSavingsNotSupported +ID6824=RsEDIError001 +ID6825=RsEDIError002 +ID6826=RsEDIError003 +ID6827=RsEDIError004 +ID6828=RsEDIError005 +ID6829=RsEDIError006 +ID683=AMD2_BIT_16 +ID6830=RsEDIError007 +ID6831=RsEDIError008 +ID6832=RsEDIError009 +ID6833=RsEDIError010 +ID6834=RsEDIError011 +ID6835=RsEDIError012 +ID6836=RsEDIError013 +ID6837=RsEDIError014 +ID6838=RsEDIError015 +ID6839=RsEDIError016 +ID684=AMD2_BIT_17 +ID6840=RsEDIError017 +ID6841=RsEDIError018 +ID6842=RsEDIError019 +ID6843=RsEDIError020 +ID6844=RsEDIError021 +ID6845=RsEDIError022 +ID6846=RsEDIError023 +ID6847=RsEDIError024 +ID6848=RsEDIError025 +ID6849=RsEDIError026 +ID685=AMD2_BIT_18 +ID6850=RsEDIError027 +ID6851=RsEDIError028 +ID6852=RsEDIError029 +ID6853=RsEDIError030 +ID6854=RsEDIError031 +ID6855=RsEDIError032 +ID6856=RsEDIError033 +ID6857=RsEDIError034 +ID6858=RsEDIError035 +ID6859=RsEDIError036 +ID686=AMD2_BIT_19 +ID6860=RsEDIError037 +ID6861=RsEDIError038 +ID6862=RsEDIError039 +ID6863=RsEDIError040 +ID6864=RsEDIError041 +ID6865=RsEDIError042 +ID6866=RsEDIError043 +ID6867=RsEDIError044 +ID6868=RsEDIError045 +ID6869=RsEDIError046 +ID687=AMD2_BIT_2 +ID6870=RsEDIError047 +ID6871=RsEDIError048 +ID6872=RsEDIError049 +ID6873=RsEDIError050 +ID6874=RsEDIError051 +ID6875=RsEDIError052 +ID6876=RsEDIError053 +ID6877=RsEDIError054 +ID6878=RsEDIError055 +ID6879=RsEDIError056 +ID688=AMD2_BIT_20 +ID6880=RsEDIError057 +ID6881=RsEDIError058 +ID6882=RsEditionWin7Enterprise +ID6883=RsEditionWin7HomeBasic +ID6884=RsEditionWin7HomePremium +ID6885=RsEditionWin7Professional +ID6886=RsEditionWin7Starter +ID6887=RsEditionWin7Ultimate +ID6888=RsEditionWinVistaBusiness +ID6889=RsEditionWinVistaBusinessN +ID689=AMD2_BIT_21 +ID6890=RsEditionWinVistaEnterprise +ID6891=RsEditionWinVistaHomeBasic +ID6892=RsEditionWinVistaHomeBasicN +ID6893=RsEditionWinVistaHomePremium +ID6894=RsEditionWinVistaStarter +ID6895=RsEditionWinVistaUltimate +ID6896=RsEditionWinXPHome +ID6897=RsEditionWinXPHomeK +ID6898=RsEditionWinXPHomeKN +ID6899=RsEditionWinXPHomeN ID69=!!OVERLOADED_Insert_TStringBuilder -ID690=AMD2_BIT_6 -ID6900=TEDIDataObject.Create@TEDIDataObject -ID6901=TEDIDataObject.CustomData1 -ID6902=TEDIDataObject.CustomData2 -ID6903=TEDIDataObject.Data -ID6904=TEDIDataObject.DataLength -ID6905=TEDIDataObject.Delimiters -ID6906=TEDIDataObject.Destroy -ID6907=TEDIDataObject.Disassemble -ID6908=TEDIDataObject.FCustomData1 -ID6909=TEDIDataObject.FCustomData2 -ID691=AMD2_BIT_7 -ID6910=TEDIDataObject.FData -ID6911=TEDIDataObject.FDelimiters -ID6912=TEDIDataObject.FEDIDOT -ID6913=TEDIDataObject.FErrorLog -ID6914=TEDIDataObject.FLength -ID6915=TEDIDataObject.FParent -ID6916=TEDIDataObject.FSpecPointer -ID6917=TEDIDataObject.FState -ID6918=TEDIDataObject.GetData -ID6919=TEDIDataObject.Parent -ID692=AMD2_BIT_8 -ID6920=TEDIDataObject.SetData@string -ID6921=TEDIDataObject.SetDelimiters@TEDIDelimiters -ID6922=TEDIDataObject.SpecPointer -ID6923=TEDIDataObject.State -ID6924=TEDIDataObjectArray -ID6925=TEDIDataObjectDataState -ID6926=TEDIDataObjectDataState.ediAssembled -ID6927=TEDIDataObjectDataState.ediCreated -ID6928=TEDIDataObjectDataState.ediDisassembled -ID6929=TEDIDataObjectGroup -ID693=AMD2_BIT_9 -ID6930=TEDIDataObjectGroup.AddEDIDataObject -ID6931=TEDIDataObjectGroup.AddEDIDataObjects@Integer -ID6932=TEDIDataObjectGroup.AppendEDIDataObject@TEDIDataObject -ID6933=TEDIDataObjectGroup.AppendEDIDataObjects@TEDIDataObjectArray -ID6934=TEDIDataObjectGroup.Create@TEDIDataObject@Integer -ID6935=TEDIDataObjectGroup.CreateObjectType -ID6936=TEDIDataObjectGroup.DeleteEDIDataObject@Integer -ID6937=TEDIDataObjectGroup.DeleteEDIDataObject@TEDIDataObject -ID6938=TEDIDataObjectGroup.DeleteEDIDataObjects -ID6939=TEDIDataObjectGroup.DeleteEDIDataObjects@Integer@Integer -ID694=AMD2_CMPXCHG16B -ID6940=TEDIDataObjectGroup.Destroy -ID6941=TEDIDataObjectGroup.EDIDataObject -ID6942=TEDIDataObjectGroup.EDIDataObjectCount -ID6943=TEDIDataObjectGroup.EDIDataObjects -ID6944=TEDIDataObjectGroup.FCreateObjectType -ID6945=TEDIDataObjectGroup.FEDIDataObjects -ID6946=TEDIDataObjectGroup.FGroupIsParent -ID6947=TEDIDataObjectGroup.GetCount -ID6948=TEDIDataObjectGroup.GetEDIDataObject@Integer -ID6949=TEDIDataObjectGroup.GetIndexPositionFromParent -ID695=AMD2_RAZ -ID6950=TEDIDataObjectGroup.IndexIsValid@Integer -ID6951=TEDIDataObjectGroup.InsertEDIDataObject@Integer -ID6952=TEDIDataObjectGroup.InsertEDIDataObject@Integer@TEDIDataObject -ID6953=TEDIDataObjectGroup.InsertEDIDataObjects@Integer@Integer -ID6954=TEDIDataObjectGroup.InsertEDIDataObjects@Integer@TEDIDataObjectArray -ID6955=TEDIDataObjectGroup.InternalAssignDelimiters -ID6956=TEDIDataObjectGroup.InternalCreateEDIDataObject -ID6957=TEDIDataObjectGroup.SetEDIDataObject@Integer@TEDIDataObject -ID6958=TEDIDataObjectGroupArray -ID6959=TEDIDataObjectList -ID696=AMD2_SSE3 -ID6960=TEDIDataObjectList.CreateListItem@TEDIObjectListItem@TEDIObject -ID6961=TEDIDataObjectList.EDIDataObject -ID6962=TEDIDataObjectList.GetEDIDataObject@Integer -ID6963=TEDIDataObjectList.SetEDIDataObject@Integer@TEDIDataObject -ID6964=TEDIDataObjectListItem -ID6965=TEDIDataObjectListItem.EDIDataObject -ID6966=TEDIDataObjectListItem.GetEDIDataObject -ID6967=TEDIDataObjectListItem.SetEDIDataObject@TEDIDataObject -ID6968=TEDIDataObjectListOptions -ID6969=TEDIDataObjectType -ID697=AnsiAck -ID6970=TEDIDataObjectType.ediCompositeElement -ID6971=TEDIDataObjectType.ediCustom -ID6972=TEDIDataObjectType.ediElement -ID6973=TEDIDataObjectType.ediFile -ID6974=TEDIDataObjectType.ediFunctionalGroup -ID6975=TEDIDataObjectType.ediInterchangeControl -ID6976=TEDIDataObjectType.ediLoop -ID6977=TEDIDataObjectType.ediMessage -ID6978=TEDIDataObjectType.ediSegment -ID6979=TEDIDataObjectType.ediTransactionSet -ID698=AnsiBackslash -ID6980=TEDIDataObjectType.ediUnknown -ID6981=TEDIDelimiters -ID6982=TEDIDelimiters.Create -ID6983=TEDIDelimiters.Create@string@string@string -ID6984=TEDIDelimiters.ED -ID6985=TEDIDelimiters.EDLen -ID6986=TEDIDelimiters.FElementDelimiter -ID6987=TEDIDelimiters.FElementDelimiterLength -ID6988=TEDIDelimiters.FSegmentDelimiter -ID6989=TEDIDelimiters.FSegmentDelimiterLength -ID699=AnsiBackspace -ID6990=TEDIDelimiters.FSubElementSeperator -ID6991=TEDIDelimiters.FSubelementSeperatorLength -ID6992=TEDIDelimiters.SD -ID6993=TEDIDelimiters.SDLen -ID6994=TEDIDelimiters.SetED@string -ID6995=TEDIDelimiters.SetSD@string -ID6996=TEDIDelimiters.SetSS@string -ID6997=TEDIDelimiters.SS -ID6998=TEDIDelimiters.SSLen -ID6999=TEDIElement +ID690=AMD2_BIT_22 +ID6900=RsEditionWinXPMediaCenter +ID6901=RsEditionWinXPPro +ID6902=RsEditionWinXPProK +ID6903=RsEditionWinXPProKN +ID6904=RsEditionWinXPProN +ID6905=RsEditionWinXPStarter +ID6906=RsEditionWinXPTablet +ID6907=RsEDualPackageNotSupported +ID6908=RsEDuplicateElement +ID6909=RsEDuplicateUnit +ID691=AMD2_BIT_23 +ID6910=RsEEmptyFileName +ID6911=RsEFunctionNotFound +ID6912=RsEGetBytesExFmt +ID6913=RsEIllegalQueueCapacity +ID6914=RsEIllegalStateOperation +ID6915=RsEIncomatibleDataFormat +ID6916=RsEIndexOufOfRange +ID6917=RsEInvalidCDATAExpectedsButFounds +ID6918=RsEInvalidCDATAUnexpectedEndOfData +ID6919=RsEInvalidCommentExpectedsButFounds +ID692=AMD2_BIT_24 +ID6920=RsEInvalidCommentNotAllowedInsideComme +ID6921=RsEInvalidCommentUnexpectedEndOfData +ID6922=RsEInvalidDocumentUnexpectedTextInFile +ID6923=RsEInvalidHeaderExpectedsButFounds +ID6924=RsEInvalidLibrary +ID6925=RsEInvalidMSOExpectedsButFounds +ID6926=RsEInvalidMSOUnexpectedEndOfDat +ID6927=RsEInvalidProgram +ID6928=RsEInvalidStylesheetExpectedsButFounds +ID6929=RsEInvalidStylesheetUnexpectedEndOfDat +ID693=AMD2_BIT_25 +ID6930=RsEInvalidUnit +ID6931=RsEInvalidUses +ID6932=RsEInvalidXMLElementErroneousEndOfTagE +ID6933=RsEInvalidXMLElementExpectedBeginningO +ID6934=RsEInvalidXMLElementExpectedEndOfTagBu +ID6935=RsEInvalidXMLElementMalformedTagFoundn +ID6936=RsEInvalidXMLElementUnexpectedCharacte +ID6937=RsEInvalidXMLElementUnexpectedCharacte_ +ID6938=RsELibraryNotFound +ID6939=RsEModuleNotValid +ID694=AMD2_BIT_26 +ID6940=RsEmptyArray +ID6941=RsENoCallbackFunc +ID6942=RsENoCharset +ID6943=RsENoCollection +ID6944=RsENoComparer +ID6945=RsENoEqualityComparer +ID6946=RsENoHashConverter +ID6947=RsENoOpenHelp +ID6948=RsENoSupportedPersonality +ID6949=RsENotABcbPackage +ID695=AMD2_BIT_27 +ID6950=RsENotABcbProject +ID6951=RsENotADelphiPackage +ID6952=RsENotADelphiProject +ID6953=RsENotFound +ID6954=RSENoTortoiseCVS +ID6955=RSENoTortoiseSVN +ID6956=RsEnterprise +ID6957=RsEOpenDialogHookExists +ID6958=RsEOpenGLInfo +ID6959=RsEOperationNotSupported +ID696=AMD2_BIT_28 +ID6960=RsEOutOfBounds +ID6961=RsEProcessNotValid +ID6962=RsEReadOnlyError +ID6963=RsEReplacementChar +ID6964=RsErrBadCount +ID6965=RsErrBadMagic +ID6966=RsErrBadNewLine +ID6967=RsErrBadOption +ID6968=RsErrBadPartial +ID6969=RsErrBadUTF8 +ID697=AMD2_BIT_29 +ID6970=RsErrBadUTF8Offset +ID6971=RsErrCallout +ID6972=RsErrCalloutError +ID6973=RsErrDfaRecurse +ID6974=RsErrDfaUCond +ID6975=RsErrDfaUItem +ID6976=RsErrDfaUMLimit +ID6977=RsErrDfaWSSize +ID6978=RsErrInternal +ID6979=RsErrLibNotLoaded +ID698=AMD2_BIT_3 +ID6980=RsErrMatchLimit +ID6981=RsErrMemFuncNotSet +ID6982=RsErrNoMatch +ID6983=RsErrNoMemory +ID6984=RsErrNoSubString +ID6985=RsErrNoUTF8Support +ID6986=RsErrNull +ID6987=RsErrNullWsLimit +ID6988=RsErrPartial +ID6989=RsErrRecursionLimit +ID699=AMD2_BIT_30 +ID6990=RsErrStudyFailed +ID6991=RsErrUnknownError +ID6992=RsErrUnknownNode +ID6993=RsESetBytesExFmt +ID6994=RsEUnableToCreatePropertyStorage +ID6995=RsEUnexpectedEOSeq +ID6996=RsEUnexpectedValueForLPos +ID6997=RsEUnknownCLRVersion +ID6998=RsEUnknownIdePackageExtension +ID6999=RsEUnknownPackageExtension ID7=!!OVERLOADED_Add_TJclTaskTriggers ID70=!!OVERLOADED_InsertCompositeElement_TEDISEFSegment -ID700=AnsiBell -ID7000=TEDIElement.Assemble -ID7001=TEDIElement.Create@TEDIDataObject -ID7002=TEDIElement.Disassemble -ID7003=TEDIElement.GetIndexPositionFromParent -ID7004=TEDIElementArray -ID7005=TEDIElementSpec -ID7006=TEDIElementSpec.Assemble -ID7007=TEDIElementSpec.Create@TEDIDataObject -ID7008=TEDIElementSpec.Description -ID7009=TEDIElementSpec.Destroy -ID701=AnsiCan -ID7010=TEDIElementSpec.Disassemble -ID7011=TEDIElementSpec.ElementId -ID7012=TEDIElementSpec.ElementType -ID7013=TEDIElementSpec.FDescription -ID7014=TEDIElementSpec.FElementId -ID7015=TEDIElementSpec.FMaximumLength -ID7016=TEDIElementSpec.FMinimumLength -ID7017=TEDIElementSpec.FNotes -ID7018=TEDIElementSpec.FPosition -ID7019=TEDIElementSpec.FRequirementDesignator -ID702=AnsiCarriageReturn -ID7020=TEDIElementSpec.FReservedData -ID7021=TEDIElementSpec.FType -ID7022=TEDIElementSpec.GetReservedData -ID7023=TEDIElementSpec.Id -ID7024=TEDIElementSpec.MaximumLength -ID7025=TEDIElementSpec.MinimumLength -ID7026=TEDIElementSpec.Notes -ID7027=TEDIElementSpec.Position -ID7028=TEDIElementSpec.RequirementDesignator -ID7029=TEDIElementSpec.ReservedData -ID703=AnsiComma -ID7030=TEDIFile -ID7031=TEDIFile.AddInterchange -ID7032=TEDIFile.AddInterchanges@Integer -ID7033=TEDIFile.AppendInterchange@TEDIInterchangeControl -ID7034=TEDIFile.AppendInterchanges@TEDIInterchangeControlArray -ID7035=TEDIFile.Assemble -ID7036=TEDIFile.Create@TEDIDataObject@Integer -ID7037=TEDIFile.DeleteInterchange@Integer -ID7038=TEDIFile.DeleteInterchange@TEDIInterchangeControl -ID7039=TEDIFile.DeleteInterchanges -ID704=AnsiCrLf -ID7040=TEDIFile.DeleteInterchanges@Integer@Integer -ID7041=TEDIFile.Destroy -ID7042=TEDIFile.Disassemble -ID7043=TEDIFile.FEDIFileOptions -ID7044=TEDIFile.FFileID -ID7045=TEDIFile.FFileName -ID7046=TEDIFile.FileID -ID7047=TEDIFile.FileName -ID7048=TEDIFile.GetInterchangeControl@Integer -ID7049=TEDIFile.InsertInterchange@Integer -ID705=AnsiDc1 -ID7050=TEDIFile.InsertInterchange@Integer@TEDIInterchangeControl -ID7051=TEDIFile.InsertInterchanges@Integer@Integer -ID7052=TEDIFile.InsertInterchanges@Integer@TEDIInterchangeControlArray -ID7053=TEDIFile.Interchange -ID7054=TEDIFile.InterchangeControlCount -ID7055=TEDIFile.Interchanges -ID7056=TEDIFile.InternalAlternateDelimitersDetection@Integer -ID7057=TEDIFile.InternalAssignDelimiters -ID7058=TEDIFile.InternalCreateEDIDataObject -ID7059=TEDIFile.InternalCreateInterchangeControl -ID706=AnsiDc2 -ID7060=TEDIFile.InternalDelimitersDetection@Integer -ID7061=TEDIFile.InternalLoadFromFile -ID7062=TEDIFile.LoadFromFile@string -ID7063=TEDIFile.Options -ID7064=TEDIFile.ReLoadFromFile -ID7065=TEDIFile.SaveAsToFile@string -ID7066=TEDIFile.SaveToFile -ID7067=TEDIFile.SetInterchangeControl@Integer@TEDIInterchangeControl -ID7068=TEDIFileArray -ID7069=TEDIFileOptions -ID707=AnsiDc3 -ID7070=TEDIFileSpec -ID7071=TEDIFileSpec.Create@TEDIDataObject@Integer -ID7072=TEDIFileSpec.FindFunctionalGroupSpec@string@string@string@string@string -ID7073=TEDIFileSpec.FindInterchangeControlSpec@string@string -ID7074=TEDIFileSpec.FindTransactionSetSpec@string@string@string@string@string@string -ID7075=TEDIFileSpec.InternalCreateInterchangeControl -ID7076=TEDIFileSpec.InternalDelimitersDetection@Integer -ID7077=TEDIFunctionalGroup -ID7078=TEDIFunctionalGroup.AddMessage -ID7079=TEDIFunctionalGroup.AddMessages@Integer -ID708=AnsiDc4 -ID7080=TEDIFunctionalGroup.AppendMessage@TEDIMessage -ID7081=TEDIFunctionalGroup.AppendMessages@TEDIMessageArray -ID7082=TEDIFunctionalGroup.Assemble -ID7083=TEDIFunctionalGroup.Create@TEDIDataObject@Integer -ID7084=TEDIFunctionalGroup.DeleteMessage@Integer -ID7085=TEDIFunctionalGroup.DeleteMessage@TEDIMessage -ID7086=TEDIFunctionalGroup.DeleteMessages -ID7087=TEDIFunctionalGroup.DeleteMessages@Integer@Integer -ID7088=TEDIFunctionalGroup.Destroy -ID7089=TEDIFunctionalGroup.Disassemble -ID709=AnsiDecDigits -ID7090=TEDIFunctionalGroup.FUNESegment -ID7091=TEDIFunctionalGroup.FUNGSegment -ID7092=TEDIFunctionalGroup.GetMessage@Integer -ID7093=TEDIFunctionalGroup.InsertMessage@Integer -ID7094=TEDIFunctionalGroup.InsertMessage@Integer@TEDIMessage -ID7095=TEDIFunctionalGroup.InsertMessages@Integer@Integer -ID7096=TEDIFunctionalGroup.InsertMessages@Integer@TEDIMessageArray -ID7097=TEDIFunctionalGroup.InternalAssignDelimiters -ID7098=TEDIFunctionalGroup.InternalCreateEDIDataObject -ID7099=TEDIFunctionalGroup.InternalCreateHeaderTrailerSegments +ID700=AMD2_BIT_4 +ID7000=RsEUnknownProjectExtension +ID7001=RsEValueNotFound +ID7002=RsEWindowNotValid +ID7003=RsEWindowsVersionNotSupported +ID7004=RsEx64PlatformNotValid +ID7005=RsExpertInstallationFinished +ID7006=RsExpertInstallationStarted +ID7007=RsExpertUninstallationFinished +ID7008=RsExpertUninstallationStarted +ID7009=RsExprEvalEndArgs +ID701=AMD2_BIT_5 +ID7010=RsExprEvalExprNotFound +ID7011=RsExprEvalExprPtrNotFound +ID7012=RsExprEvalExprRefCountAssertion +ID7013=RsExprEvalFactorExpected +ID7014=RsExprEvalFirstArg +ID7015=RsExprEvalNextArg +ID7016=RsExprEvalRParenExpected +ID7017=RsExprEvalUnknownSymbol +ID7018=RsFailedToObtainSize +ID7019=RsFileDeletionFailed +ID702=AMD2_BIT_6 +ID7020=RsFileDeletionOk +ID7021=RsFileIndexOutOfRange +ID7022=RsFileMappingInvalidHandle +ID7023=RsFileMappingOpenFile +ID7024=RsFileSearchAttrInconsistency +ID7025=RsFileStreamCreate +ID7026=RsFileUtilsAttrUnavailable +ID7027=RsFileUtilsEmptyValue +ID7028=RsFileUtilsFileDoesNotExist +ID7029=RsFileUtilsLanguageIndex +ID703=AMD2_BIT_7 +ID7030=RsFileUtilsNoVersionInfo +ID7031=RsFileUtilsValueNotFound +ID7032=RsFormatBadArgumentType +ID7033=RsFormatBadArgumentTypeEx +ID7034=RsFormatException +ID7035=RsFormatNoArgument +ID7036=RsFormatNoArgumentEx +ID7037=RsFormatSyntaxError +ID7038=RsGifExtension +ID7039=RsHardDisk +ID704=AMD2_BIT_8 +ID7040=RsHasNotTD32Info +ID7041=RsHKCCLong +ID7042=RsHKCCShort +ID7043=RsHKCRLong +ID7044=RsHKCRShort +ID7045=RsHKCULong +ID7046=RsHKCUShort +ID7047=RsHKDDLong +ID7048=RsHKDDShort +ID7049=RsHKLMLong +ID705=AMD2_BIT_9 +ID7050=RsHKLMShort +ID7051=RsHKPDLong +ID7052=RsHKPDShort +ID7053=RsHKUSLong +ID7054=RsHKUSShort +ID7055=RsIdePackageInstallationFinished +ID7056=RsIdePackageInstallationStarted +ID7057=RsIdePackageUninstallationFinished +ID7058=RsIdePackageUninstallationStarted +ID7059=RsInconsistentPath +ID706=AMD2_CMPXCHG16B +ID7060=RsIndexOutOfRange +ID7061=RsIndexOutOfRangePaper +ID7062=RsInsertingJdbg +ID7063=RsInstructionStreamInvalid +ID7064=RsIntelCacheDescr00 +ID7065=RsIntelCacheDescr01 +ID7066=RsIntelCacheDescr02 +ID7067=RsIntelCacheDescr03 +ID7068=RsIntelCacheDescr04 +ID7069=RsIntelCacheDescr05 +ID707=AMD2_MONITOR +ID7070=RsIntelCacheDescr06 +ID7071=RsIntelCacheDescr08 +ID7072=RsIntelCacheDescr09 +ID7073=RsIntelCacheDescr0A +ID7074=RsIntelCacheDescr0B +ID7075=RsIntelCacheDescr0C +ID7076=RsIntelCacheDescr0D +ID7077=RsIntelCacheDescr0E +ID7078=RsIntelCacheDescr21 +ID7079=RsIntelCacheDescr22 +ID708=AMD2_POPCNT +ID7080=RsIntelCacheDescr23 +ID7081=RsIntelCacheDescr25 +ID7082=RsIntelCacheDescr29 +ID7083=RsIntelCacheDescr2C +ID7084=RsIntelCacheDescr30 +ID7085=RsIntelCacheDescr39 +ID7086=RsIntelCacheDescr3A +ID7087=RsIntelCacheDescr3B +ID7088=RsIntelCacheDescr3C +ID7089=RsIntelCacheDescr3D +ID709=AMD2_RAZ +ID7090=RsIntelCacheDescr3E +ID7091=RsIntelCacheDescr40 +ID7092=RsIntelCacheDescr41 +ID7093=RsIntelCacheDescr42 +ID7094=RsIntelCacheDescr43 +ID7095=RsIntelCacheDescr44 +ID7096=RsIntelCacheDescr45 +ID7097=RsIntelCacheDescr46 +ID7098=RsIntelCacheDescr47 +ID7099=RsIntelCacheDescr48 ID71=!!OVERLOADED_InsertCompositeElement_TEDISegment -ID710=AnsiDle -ID7100=TEDIFunctionalGroup.InternalCreateMessage -ID7101=TEDIFunctionalGroup.Message -ID7102=TEDIFunctionalGroup.MessageCount -ID7103=TEDIFunctionalGroup.Messages -ID7104=TEDIFunctionalGroup.SegmentUNE -ID7105=TEDIFunctionalGroup.SegmentUNG -ID7106=TEDIFunctionalGroup.SetMessage@Integer@TEDIMessage -ID7107=TEDIFunctionalGroup.SetUNESegment@TEDIFunctionalGroupSegment -ID7108=TEDIFunctionalGroup.SetUNGSegment@TEDIFunctionalGroupSegment -ID7109=TEDIFunctionalGroupArray -ID711=AnsiDoubleQuote -ID7110=TEDIFunctionalGroupSegment -ID7111=TEDIFunctionalGroupSegment.Create@TEDIDataObject@Integer -ID7112=TEDIFunctionalGroupSegment.InternalAssignDelimiters -ID7113=TEDIFunctionalGroupSegmentGSSpec -ID7114=TEDIFunctionalGroupSegmentGSSpec.AssembleReservedData@TStrings -ID7115=TEDIFunctionalGroupSegmentGSSpec.Create@TEDIDataObject@Integer -ID7116=TEDIFunctionalGroupSegmentGSSpec.DisassembleReservedData@TStrings -ID7117=TEDIFunctionalGroupSegmentSpec -ID7118=TEDIFunctionalGroupSegmentSpec.Create@TEDIDataObject@Integer -ID7119=TEDIFunctionalGroupSegmentSpec.InternalAssignDelimiters -ID712=AnsiEm -ID7120=TEDIFunctionalGroupSpec -ID7121=TEDIFunctionalGroupSpec.AgencyCodeId -ID7122=TEDIFunctionalGroupSpec.FAgencyCodeId -ID7123=TEDIFunctionalGroupSpec.FFGDescription -ID7124=TEDIFunctionalGroupSpec.FFunctionalGroupId -ID7125=TEDIFunctionalGroupSpec.FGDescription -ID7126=TEDIFunctionalGroupSpec.FindTransactionSetSpec@string -ID7127=TEDIFunctionalGroupSpec.FunctionalGroupId -ID7128=TEDIFunctionalGroupSpec.FVersionReleaseId -ID7129=TEDIFunctionalGroupSpec.Id -ID713=AnsiEndOfFile -ID7130=TEDIFunctionalGroupSpec.InternalCreateHeaderTrailerSegments -ID7131=TEDIFunctionalGroupSpec.InternalCreateTransactionSet -ID7132=TEDIFunctionalGroupSpec.VersionReleaseId -ID7133=TEDIInterchangeControl -ID7134=TEDIInterchangeControl.AddFunctionalGroup -ID7135=TEDIInterchangeControl.AddFunctionalGroups@Integer -ID7136=TEDIInterchangeControl.AddMessage -ID7137=TEDIInterchangeControl.AddMessages@Integer -ID7138=TEDIInterchangeControl.AppendFunctionalGroup@TEDIFunctionalGroup -ID7139=TEDIInterchangeControl.AppendFunctionalGroups@TEDIFunctionalGroupArray -ID714=AnsiEnq -ID7140=TEDIInterchangeControl.AppendMessage@TEDIMessage -ID7141=TEDIInterchangeControl.AppendMessages@TEDIMessageArray -ID7142=TEDIInterchangeControl.Assemble -ID7143=TEDIInterchangeControl.Create@TEDIDataObject@Integer -ID7144=TEDIInterchangeControl.Destroy -ID7145=TEDIInterchangeControl.Disassemble -ID7146=TEDIInterchangeControl.FCreateObjectType -ID7147=TEDIInterchangeControl.FUNASegment -ID7148=TEDIInterchangeControl.FUNBSegment -ID7149=TEDIInterchangeControl.FUNZSegment -ID715=AnsiEot -ID7150=TEDIInterchangeControl.InsertFunctionalGroup@Integer -ID7151=TEDIInterchangeControl.InsertFunctionalGroup@Integer@TEDIFunctionalGroup -ID7152=TEDIInterchangeControl.InsertFunctionalGroups@Integer@Integer -ID7153=TEDIInterchangeControl.InsertFunctionalGroups@Integer@TEDIFunctionalGroupArray -ID7154=TEDIInterchangeControl.InsertMessage@Integer -ID7155=TEDIInterchangeControl.InsertMessage@Integer@TEDIMessage -ID7156=TEDIInterchangeControl.InsertMessages@Integer@Integer -ID7157=TEDIInterchangeControl.InsertMessages@Integer@TEDIMessageArray -ID7158=TEDIInterchangeControl.InternalAssignDelimiters -ID7159=TEDIInterchangeControl.InternalCreateEDIDataObject -ID716=AnsiEscape -ID7160=TEDIInterchangeControl.InternalCreateFunctionalGroup -ID7161=TEDIInterchangeControl.InternalCreateHeaderTrailerSegments -ID7162=TEDIInterchangeControl.InternalCreateMessage -ID7163=TEDIInterchangeControl.SegmentUNA -ID7164=TEDIInterchangeControl.SegmentUNB -ID7165=TEDIInterchangeControl.SegmentUNZ -ID7166=TEDIInterchangeControl.SetUNBSegment@TEDIInterchangeControlSegment -ID7167=TEDIInterchangeControl.SetUNZSegment@TEDIInterchangeControlSegment -ID7168=TEDIInterchangeControlArray -ID7169=TEDIInterchangeControlSegment -ID717=AnsiEtb -ID7170=TEDIInterchangeControlSegment.Create@TEDIDataObject@Integer -ID7171=TEDIInterchangeControlSegment.InternalAssignDelimiters -ID7172=TEDIInterchangeControlSegmentISASpec -ID7173=TEDIInterchangeControlSegmentISASpec.Assemble -ID7174=TEDIInterchangeControlSegmentISASpec.AssembleReservedData@TStrings -ID7175=TEDIInterchangeControlSegmentISASpec.Create@TEDIDataObject@Integer -ID7176=TEDIInterchangeControlSegmentISASpec.Disassemble -ID7177=TEDIInterchangeControlSegmentISASpec.DisassembleReservedData@TStrings -ID7178=TEDIInterchangeControlSegmentSpec -ID7179=TEDIInterchangeControlSegmentSpec.Create@TEDIDataObject@Integer -ID718=AnsiEtx -ID7180=TEDIInterchangeControlSegmentSpec.InternalAssignDelimiters -ID7181=TEDIInterchangeControlSpec -ID7182=TEDIInterchangeControlSpec.FICDescription -ID7183=TEDIInterchangeControlSpec.FindFunctionalGroupSpec@string@string@string -ID7184=TEDIInterchangeControlSpec.FindTransactionSetSpec@string@string@string@string -ID7185=TEDIInterchangeControlSpec.FStandardId -ID7186=TEDIInterchangeControlSpec.FVersionId -ID7187=TEDIInterchangeControlSpec.ICDescription -ID7188=TEDIInterchangeControlSpec.InternalCreateFunctionalGroup -ID7189=TEDIInterchangeControlSpec.InternalCreateHeaderTrailerSegments -ID719=AnsiFormFeed -ID7190=TEDIInterchangeControlSpec.StandardId -ID7191=TEDIInterchangeControlSpec.VersionId -ID7192=TEDILoopStack -ID7193=TEDILoopStack.Create -ID7194=TEDILoopStack.Debug -ID7195=TEDILoopStack.Destroy -ID7196=TEDILoopStack.DoAddLoop@TEDILoopStackRecord@string@string@string@TEDIObject -ID7197=TEDILoopStack.FCheckAssignedEDIObject -ID7198=TEDILoopStack.FFlags -ID7199=TEDILoopStack.Flags +ID710=AMD2_SSE3 +ID7100=RsIntelCacheDescr49 +ID7101=RsIntelCacheDescr4A +ID7102=RsIntelCacheDescr4B +ID7103=RsIntelCacheDescr4C +ID7104=RsIntelCacheDescr4D +ID7105=RsIntelCacheDescr4E +ID7106=RsIntelCacheDescr4F +ID7107=RsIntelCacheDescr50 +ID7108=RsIntelCacheDescr51 +ID7109=RsIntelCacheDescr52 +ID711=AMD2_SSE41 +ID7110=RsIntelCacheDescr55 +ID7111=RsIntelCacheDescr56 +ID7112=RsIntelCacheDescr57 +ID7113=RsIntelCacheDescr59 +ID7114=RsIntelCacheDescr5A +ID7115=RsIntelCacheDescr5B +ID7116=RsIntelCacheDescr5C +ID7117=RsIntelCacheDescr5D +ID7118=RsIntelCacheDescr60 +ID7119=RsIntelCacheDescr66 +ID712=AMD2_SSSE3 +ID7120=RsIntelCacheDescr67 +ID7121=RsIntelCacheDescr68 +ID7122=RsIntelCacheDescr70 +ID7123=RsIntelCacheDescr71 +ID7124=RsIntelCacheDescr72 +ID7125=RsIntelCacheDescr73 +ID7126=RsIntelCacheDescr78 +ID7127=RsIntelCacheDescr79 +ID7128=RsIntelCacheDescr7A +ID7129=RsIntelCacheDescr7B +ID713=AnsiAck +ID7130=RsIntelCacheDescr7C +ID7131=RsIntelCacheDescr7D +ID7132=RsIntelCacheDescr7F +ID7133=RsIntelCacheDescr80 +ID7134=RsIntelCacheDescr82 +ID7135=RsIntelCacheDescr83 +ID7136=RsIntelCacheDescr84 +ID7137=RsIntelCacheDescr85 +ID7138=RsIntelCacheDescr86 +ID7139=RsIntelCacheDescr87 +ID714=AnsiBackslash +ID7140=RsIntelCacheDescrB0 +ID7141=RsIntelCacheDescrB1 +ID7142=RsIntelCacheDescrB2 +ID7143=RsIntelCacheDescrB3 +ID7144=RsIntelCacheDescrB4 +ID7145=RsIntelCacheDescrBA +ID7146=RsIntelCacheDescrC0 +ID7147=RsIntelCacheDescrCA +ID7148=RsIntelCacheDescrD0 +ID7149=RsIntelCacheDescrD1 +ID715=AnsiBackspace +ID7150=RsIntelCacheDescrD2 +ID7151=RsIntelCacheDescrD6 +ID7152=RsIntelCacheDescrD7 +ID7153=RsIntelCacheDescrD8 +ID7154=RsIntelCacheDescrDC +ID7155=RsIntelCacheDescrDD +ID7156=RsIntelCacheDescrDE +ID7157=RsIntelCacheDescrE2 +ID7158=RsIntelCacheDescrE3 +ID7159=RsIntelCacheDescrE4 +ID716=AnsiBell +ID7160=RsIntelCacheDescrEA +ID7161=RsIntelCacheDescrEB +ID7162=RsIntelCacheDescrEC +ID7163=RsIntelCacheDescrF0 +ID7164=RsIntelCacheDescrF1 +ID7165=RsIntelCacheDescrFF +ID7166=RsIntelUnknownCache +ID7167=RsInvalidArgument +ID7168=RsInvalidDigit +ID7169=RsInvalidDigitValue +ID717=AnsiByteArrayStringLen@TBytes +ID7170=RsInvalidEmptyStringItem +ID7171=RsInvalidGUIDString +ID7172=RsInvalidHandleForRegion +ID7173=RsInvalidMMFEmpty +ID7174=RsInvalidMMFName +ID7175=RsInvalidPrinter +ID7176=RsInvalidProcessID +ID7177=RsInvalidRational +ID7178=RsInvalidRegion +ID7179=RsInvalidRegionInfo +ID718=AnsiByteArrayToString@TBytes@SizeInt +ID7180=RsInvalidSampleSize +ID7181=RsInvalidSID +ID7182=RsInvalidSignatureData +ID7183=RsIStreamNil +ID7184=RsJdbgInfo +ID7185=RsJdbgInfoFailed +ID7186=RsJdbgInfoOk +ID7187=RsJpegExtension +ID7188=RsKylixName +ID7189=RsKylixVersionName +ID719=AnsiCan +ID7190=RsLoadFromStreamSize +ID7191=RsLocalVarSigOutOfRange +ID7192=RsLsaError +ID7193=RsMakeUTCTime +ID7194=RsMapiErrACCESS_DENIED +ID7195=RsMapiErrAMBIGUOUS_RECIPIENT +ID7196=RsMapiErrATTACHMENT_NOT_FOUND +ID7197=RsMapiErrATTACHMENT_OPEN_FAILURE +ID7198=RsMapiErrATTACHMENT_WRITE_FAILURE +ID7199=RsMapiErrBAD_RECIPTYPE ID72=!!OVERLOADED_InsertCompositeElements_TEDISegment -ID720=AnsiForwardSlash -ID7200=TEDILoopStack.FOnAddLoop -ID7201=TEDILoopStack.FStack -ID7202=TEDILoopStack.GetSafeStackIndex@Integer -ID7203=TEDILoopStack.GetSize -ID7204=TEDILoopStack.OnAddLoop -ID7205=TEDILoopStack.Peek -ID7206=TEDILoopStack.Peek@Integer -ID7207=TEDILoopStack.Pop@Integer -ID7208=TEDILoopStack.Push@string@string@string@Integer@TEDIObject -ID7209=TEDILoopStack.SetStackPointer@string@string -ID721=AnsiFs -ID7210=TEDILoopStack.Size -ID7211=TEDILoopStack.Stack -ID7212=TEDILoopStack.UpdateStackData@string@string@string@Integer@TEDIObject -ID7213=TEDILoopStack.UpdateStackObject@TEDIObject -ID7214=TEDILoopStack.ValidateLoopStack@string@string@string@Integer@TEDIObject -ID7215=TEDILoopStackArray -ID7216=TEDILoopStackFlags -ID7217=TEDILoopStackFlags.ediAltStackPointer -ID7218=TEDILoopStackFlags.ediLoopRepeated -ID7219=TEDILoopStackFlags.ediStackResized -ID722=AnsiGs -ID7220=TEDILoopStackFlagSet -ID7221=TEDILoopStackOnAddLoopEvent -ID7222=TEDILoopStackRecord -ID7223=TEDILoopStackRecord.EDIObject -ID7224=TEDILoopStackRecord.EDISpecObject -ID7225=TEDILoopStackRecord.OwnerLoopId -ID7226=TEDILoopStackRecord.ParentLoopId -ID7227=TEDILoopStackRecord.SegmentId -ID7228=TEDILoopStackRecord.SpecStartIndex -ID7229=TEDIMessage -ID723=AnsiHexDigits -ID7230=TEDIMessage.AddSegment -ID7231=TEDIMessage.AddSegments@Integer -ID7232=TEDIMessage.AppendSegment@TEDISegment -ID7233=TEDIMessage.AppendSegments@TEDISegmentArray -ID7234=TEDIMessage.Assemble -ID7235=TEDIMessage.Create@TEDIDataObject@Integer -ID7236=TEDIMessage.DeleteSegment@Integer -ID7237=TEDIMessage.DeleteSegment@TEDISegment -ID7238=TEDIMessage.DeleteSegments -ID7239=TEDIMessage.DeleteSegments@Integer@Integer -ID724=AnsiHexPrefix -ID7240=TEDIMessage.Destroy -ID7241=TEDIMessage.Disassemble -ID7242=TEDIMessage.FUNHSegment -ID7243=TEDIMessage.FUNTSegment -ID7244=TEDIMessage.GetSegment@Integer -ID7245=TEDIMessage.InsertSegment@Integer -ID7246=TEDIMessage.InsertSegment@Integer@TEDISegment -ID7247=TEDIMessage.InsertSegments@Integer@Integer -ID7248=TEDIMessage.InsertSegments@Integer@TEDISegmentArray -ID7249=TEDIMessage.InternalAssignDelimiters -ID725=AnsiHexPrefixC -ID7250=TEDIMessage.InternalCreateEDIDataObject -ID7251=TEDIMessage.InternalCreateHeaderTrailerSegments -ID7252=TEDIMessage.InternalCreateSegment -ID7253=TEDIMessage.Segment -ID7254=TEDIMessage.SegmentCount -ID7255=TEDIMessage.Segments -ID7256=TEDIMessage.SegmentUNH -ID7257=TEDIMessage.SegmentUNT -ID7258=TEDIMessage.SetSegment@Integer@TEDISegment -ID7259=TEDIMessage.SetUNHSegment@TEDIMessageSegment -ID726=AnsiHexPrefixPascal -ID7260=TEDIMessage.SetUNTSegment@TEDIMessageSegment -ID7261=TEDIMessageArray -ID7262=TEDIMessageDocumentOptions -ID7263=TEDIMessageLoop -ID7264=TEDIMessageLoop.AddLoop@string@string -ID7265=TEDIMessageLoop.AppendSegment@TEDISegment -ID7266=TEDIMessageLoop.Assemble -ID7267=TEDIMessageLoop.Create@TEDIDataObject -ID7268=TEDIMessageLoop.DeleteEDIDataObjects -ID7269=TEDIMessageLoop.Destroy -ID727=AnsiLetters -ID7270=TEDIMessageLoop.Disassemble -ID7271=TEDIMessageLoop.FindLoop@string@Integer -ID7272=TEDIMessageLoop.FindSegment@string@Integer -ID7273=TEDIMessageLoop.FindSegment@string@Integer@TStrings -ID7274=TEDIMessageLoop.FOwnerLoopId -ID7275=TEDIMessageLoop.FParentLoopId -ID7276=TEDIMessageLoop.FParentMessage -ID7277=TEDIMessageLoop.InternalAssignDelimiters -ID7278=TEDIMessageLoop.InternalCreateEDIDataObject -ID7279=TEDIMessageLoop.OwnerLoopId -ID728=AnsiLineBreak -ID7280=TEDIMessageLoop.ParentLoopId -ID7281=TEDIMessageLoop.ParentMessage -ID7282=TEDIMessageSegment -ID7283=TEDIMessageSegment.Create@TEDIDataObject@Integer -ID7284=TEDIMessageSegment.InternalAssignDelimiters -ID7285=TEDIObject -ID7286=TEDIObjectArray -ID7287=TEDIObjectList -ID7288=TEDIObjectList.Add@TEDIObject@string -ID7289=TEDIObjectList.Add@TEDIObjectListItem@string -ID729=AnsiLineFeed -ID7290=TEDIObjectList.Clear -ID7291=TEDIObjectList.Count -ID7292=TEDIObjectList.Create@Boolean -ID7293=TEDIObjectList.CreateListItem@TEDIObjectListItem@TEDIObject -ID7294=TEDIObjectList.CurrentItem -ID7295=TEDIObjectList.Delete@Integer -ID7296=TEDIObjectList.Delete@TEDIObject -ID7297=TEDIObjectList.Destroy -ID7298=TEDIObjectList.EDIObject -ID7299=TEDIObjectList.Extract@TEDIObject +ID720=AnsiCarriageReturn +ID7200=RsMapiErrDISK_FULL +ID7201=RsMapiErrFAILURE +ID7202=RsMapiErrINSUFFICIENT_MEMORY +ID7203=RsMapiErrINVALID_EDITFIELDS +ID7204=RsMapiErrINVALID_MESSAGE +ID7205=RsMapiErrINVALID_RECIPS +ID7206=RsMapiErrINVALID_SESSION +ID7207=RsMapiErrLOGIN_FAILURE +ID7208=RsMapiErrMESSAGE_IN_USE +ID7209=RsMapiErrNETWORK_FAILURE +ID721=AnsiCaseMap +ID7210=RsMapiErrNO_MESSAGES +ID7211=RsMapiErrNOT_SUPPORTED +ID7212=RsMapiError +ID7213=RsMapiErrTEXT_TOO_LARGE +ID7214=RsMapiErrTOO_MANY_FILES +ID7215=RsMapiErrTOO_MANY_RECIPIENTS +ID7216=RsMapiErrTOO_MANY_SESSIONS +ID7217=RsMapiErrTYPE_NOT_SUPPORTED +ID7218=RsMapiErrUNKNOWN_RECIPIENT +ID7219=RsMapiErrUSER_ABORT +ID722=AnsiCaseMapReady +ID7220=RsMapiInvalidIndex +ID7221=RsMapiMailBCC +ID7222=RsMapiMailBody +ID7223=RsMapiMailCC +ID7224=RsMapiMailNoClient +ID7225=RsMapiMailORIG +ID7226=RsMapiMailSubject +ID7227=RsMapiMailTO +ID7228=RsMapiMissingExport +ID7229=RsMapSizeFmt +ID723=AnsiCaseMapSize +ID7230=RsMathDomainError +ID7231=RsMetSectInitialize +ID7232=RsMetSectInvalidParameter +ID7233=RsMetSectNameEmpty +ID7234=RsMidiInUnknownError +ID7235=RsMidiInvalidChannelNum +ID7236=RsMidiNotImplemented +ID7237=RsMidiOutUnknownError +ID7238=RsMMCdTimeFormat +ID7239=RsMmCdTrackNo +ID724=AnsiCharCount +ID7240=RsMmInconsistentId +ID7241=RsMmMciErrorPrefix +ID7242=RsMmMixerAnalog +ID7243=RsMmMixerAuxiliary +ID7244=RsMmMixerCompactDisc +ID7245=RsMmMixerCtlNotFound +ID7246=RsMmMixerDestination +ID7247=RsMmMixerDigital +ID7248=RsMmMixerHeadphones +ID7249=RsMmMixerLine +ID725=AnsiCharToUCS4@AnsiChar +ID7250=RsMmMixerMicrophone +ID7251=RsMmMixerMonitor +ID7252=RsMmMixerNoDevices +ID7253=RsMmMixerPcSpeaker +ID7254=RsMmMixerSource +ID7255=RsMmMixerSpeakers +ID7256=RsMmMixerSynthesizer +ID7257=RsMmMixerTelephone +ID7258=RsMmMixerUndefined +ID7259=RsMmMixerVoiceIn +ID726=AnsiCharTypes +ID7260=RsMmMixerWaveIn +ID7261=RsMmMixerWaveOut +ID7262=RsMmNoCdAudio +ID7263=RsMmSetEvent +ID7264=RsMmTimerActive +ID7265=RsMmTimerBeginPeriod +ID7266=RsMmTimerGetCaps +ID7267=RsMMTrackAudio +ID7268=RsMMTrackOther +ID7269=RsMmUnknownError +ID727=AnsiComma +ID7270=RsMsBuildNotSupported +ID7271=RsNAEndDocument +ID7272=RsNAEndPage +ID7273=RsNaNSignal +ID7274=RsNaNTagError +ID7275=RsNASendData +ID7276=RsNAStartDocument +ID7277=RsNAStartPage +ID7278=RsNATransmission +ID7279=RsNeedUpdate +ID728=AnsiCrLf +ID7280=RsNoBitmapForRegion +ID7281=RsNoCounter +ID7282=RsNoDeviceContextForWindow +ID7283=RsNoLocalVarSig +ID7284=RsNoNaN +ID7285=RsNonPositiveArray +ID7286=RsNtfsUnableToDeleteSymbolicLink +ID7287=RsNumericConstantTooLarge +ID7288=RsOctaveA +ID7289=RsOctaveASharp +ID729=AnsiDc1 +ID7290=RsOctaveB +ID7291=RsOctaveC +ID7292=RsOctaveCSharp +ID7293=RsOctaveD +ID7294=RsOctaveDSharp +ID7295=RsOctaveE +ID7296=RsOctaveF +ID7297=RsOctaveFSharp +ID7298=RsOctaveG +ID7299=RsOctaveGSharp ID73=!!OVERLOADED_InsertEDIDataObject_TEDIDataObjectGroup -ID730=AnsiLowercaseLetters -ID7300=TEDIObjectList.Extract@TEDIObjectListItem -ID7301=TEDIObjectList.FCount -ID7302=TEDIObjectList.FCurrentItem -ID7303=TEDIObjectList.FFirstItem -ID7304=TEDIObjectList.Find@TEDIObject -ID7305=TEDIObjectList.Find@TEDIObjectListItem -ID7306=TEDIObjectList.FindEDIObject@TEDIObject -ID7307=TEDIObjectList.FindItemByName@string@TEDIObjectListItem -ID7308=TEDIObjectList.First@Integer -ID7309=TEDIObjectList.FLastItem -ID731=AnsiNak -ID7310=TEDIObjectList.FOptions -ID7311=TEDIObjectList.FOwnsObjects -ID7312=TEDIObjectList.GetEDIObject@Integer -ID7313=TEDIObjectList.GetItem@Integer -ID7314=TEDIObjectList.IndexIsValid@Integer -ID7315=TEDIObjectList.IndexOf@TEDIObject -ID7316=TEDIObjectList.IndexOf@TEDIObjectListItem -ID7317=TEDIObjectList.Insert@Integer@TEDIObject -ID7318=TEDIObjectList.Insert@TEDIObject -ID7319=TEDIObjectList.Insert@TEDIObject@TEDIObject -ID732=AnsiNull -ID7320=TEDIObjectList.Insert@TEDIObjectListItem -ID7321=TEDIObjectList.Insert@TEDIObjectListItem@TEDIObjectListItem -ID7322=TEDIObjectList.Item -ID7323=TEDIObjectList.Last -ID7324=TEDIObjectList.Next -ID7325=TEDIObjectList.Options -ID7326=TEDIObjectList.OwnsObjects -ID7327=TEDIObjectList.Prior -ID7328=TEDIObjectList.Remove@TEDIObject -ID7329=TEDIObjectList.Remove@TEDIObjectListItem -ID733=AnsiOctDigits -ID7330=TEDIObjectList.ReturnListItemsByName@string -ID7331=TEDIObjectList.SetEDIObject@Integer@TEDIObject -ID7332=TEDIObjectList.UpdateCount -ID7333=TEDIObjectList.UpdateIndexes@TEDIObjectListItem -ID7334=TEDIObjectListItem -ID7335=TEDIObjectListItem.Create@TEDIObjectList@TEDIObjectListItem@TEDIObject -ID7336=TEDIObjectListItem.Destroy -ID7337=TEDIObjectListItem.EDIObject -ID7338=TEDIObjectListItem.FEDIObject -ID7339=TEDIObjectListItem.FItemIndex -ID734=AnsiRs -ID7340=TEDIObjectListItem.FName -ID7341=TEDIObjectListItem.FNextItem -ID7342=TEDIObjectListItem.FParent -ID7343=TEDIObjectListItem.FPriorItem -ID7344=TEDIObjectListItem.FreeAndNilEDIDataObject -ID7345=TEDIObjectListItem.GetIndexPositionFromParent -ID7346=TEDIObjectListItem.ItemIndex -ID7347=TEDIObjectListItem.Name -ID7348=TEDIObjectListItem.NextItem -ID7349=TEDIObjectListItem.Parent -ID735=AnsiSi -ID7350=TEDIObjectListItem.PriorItem -ID7351=TEDISEFCompositeElement -ID7352=TEDISEFCompositeElement.AddRepeatingPattern -ID7353=TEDISEFCompositeElement.AddSubElement -ID7354=TEDISEFCompositeElement.AppendRepeatingPattern@TEDISEFRepeatingPattern -ID7355=TEDISEFCompositeElement.AppendSubElement@TEDISEFSubElement -ID7356=TEDISEFCompositeElement.Assemble -ID7357=TEDISEFCompositeElement.Assign@TEDISEFCompositeElement -ID7358=TEDISEFCompositeElement.AssignElementOrdinals -ID7359=TEDISEFCompositeElement.BindTextSets@TEDISEFTextSets -ID736=AnsiSigns -ID7360=TEDISEFCompositeElement.Clone@TEDISEFDataObject -ID7361=TEDISEFCompositeElement.CompositeElementId -ID7362=TEDISEFCompositeElement.Create@TEDISEFDataObject -ID7363=TEDISEFCompositeElement.DeleteRepeatingPattern@TEDISEFRepeatingPattern -ID7364=TEDISEFCompositeElement.DeleteSubElement@TEDISEFSubElement -ID7365=TEDISEFCompositeElement.Destroy -ID7366=TEDISEFCompositeElement.Disassemble -ID7367=TEDISEFCompositeElement.Elements -ID7368=TEDISEFCompositeElement.ExtractRepeatingPattern@TEDISEFRepeatingPattern -ID7369=TEDISEFCompositeElement.ExtractSubElement@TEDISEFSubElement -ID737=AnsiSingleQuote -ID7370=TEDISEFCompositeElement.FEDISEFTextSets -ID7371=TEDISEFCompositeElement.FExtendedData -ID7372=TEDISEFCompositeElement.FOrdinal -ID7373=TEDISEFCompositeElement.FOutOfSequenceOrdinal -ID7374=TEDISEFCompositeElement.FRepeatCount -ID7375=TEDISEFCompositeElement.FRequirementDesignator -ID7376=TEDISEFCompositeElement.FUserAttribute -ID7377=TEDISEFCompositeElement.GetElementObjectList -ID7378=TEDISEFCompositeElement.GetTextSetsLocation -ID7379=TEDISEFCompositeElement.InsertRepeatingPattern@TEDISEFDataObject -ID738=AnsiSo -ID7380=TEDISEFCompositeElement.InsertRepeatingPattern@TEDISEFRepeatingPattern@TEDISEFDataObject -ID7381=TEDISEFCompositeElement.InsertSubElement@TEDISEFDataObject -ID7382=TEDISEFCompositeElement.InsertSubElement@TEDISEFSubElement@TEDISEFDataObject -ID7383=TEDISEFCompositeElement.Ordinal -ID7384=TEDISEFCompositeElement.OutOfSequenceOrdinal -ID7385=TEDISEFCompositeElement.RepeatCount -ID7386=TEDISEFCompositeElement.RequirementDesignator -ID7387=TEDISEFCompositeElement.TEXTSETS -ID7388=TEDISEFCompositeElement.TextSetsLocation -ID7389=TEDISEFCompositeElement.UserAttribute -ID739=AnsiSoh -ID7390=TEDISEFComsUserAttributes -ID7391=TEDISEFComsUserAttributes.caAmpersand -ID7392=TEDISEFComsUserAttributes.caDollarSign -ID7393=TEDISEFComsUserAttributes.caExclamationPoint -ID7394=TEDISEFComsUserAttributes.caHyphen -ID7395=TEDISEFComsUserAttributes.caPeriod -ID7396=TEDISEFDataObject -ID7397=TEDISEFDataObject.Assemble -ID7398=TEDISEFDataObject.Clone@TEDISEFDataObject -ID7399=TEDISEFDataObject.Create@TEDISEFDataObject +ID730=AnsiDc2 +ID7300=RsOpenDialogAdd +ID7301=RsOpenDialogConfirmation +ID7302=RsOpenDialogDelConfirm +ID7303=RsOpenDialogDelete +ID7304=RsOpenDialogFavorites +ID7305=RsOpenEdition +ID7306=RsOpenGLInfoError +ID7307=RsOSVersionWin2000 +ID7308=RsOSVersionWin2003 +ID7309=RsOSVersionWin2003R2 +ID731=AnsiDc3 +ID7310=RsOSVersionWin7 +ID7311=RsOSVersionWin95 +ID7312=RsOSVersionWin95OSR2 +ID7313=RsOSVersionWin98 +ID7314=RsOSVersionWin98SE +ID7315=RsOSVersionWinME +ID7316=RsOSVersionWinNT3 +ID7317=RsOSVersionWinNT4 +ID7318=RsOSVersionWinServer2008 +ID7319=RsOSVersionWinServer2008R2 +ID732=AnsiDc4 +ID7320=RsOSVersionWinVista +ID7321=RsOSVersionWinXP +ID7322=RsOSVersionWinXP64 +ID7323=RsPackageInstallationFinished +ID7324=RsPackageInstallationStarted +ID7325=RsPackageUninstallationFinished +ID7326=RsPackageUninstallationStarted +ID7327=RsPathInvalidDrive +ID7328=RsPeAddressOfEntryPoint +ID7329=RsPeBaseOfCode +ID733=AnsiDecDigits +ID7330=RsPeBaseOfData +ID7331=RsPeCantOpen +ID7332=RsPeCharacteristics +ID7333=RsPeCheckSum +ID7334=RsPeCriticalSectionDefaultTimeout +ID7335=RsPeCSDVersion +ID7336=RsPeDEBUG_BORLAND +ID7337=RsPeDEBUG_CODEVIEW +ID7338=RsPeDEBUG_COFF +ID7339=RsPeDEBUG_EXCEPTION +ID734=AnsiDle +ID7340=RsPeDEBUG_FIXUP +ID7341=RsPeDEBUG_FPO +ID7342=RsPeDEBUG_MISC +ID7343=RsPeDEBUG_OMAP_FROM_SRC +ID7344=RsPeDEBUG_OMAP_TO_SRC +ID7345=RsPeDEBUG_UNKNOWN +ID7346=RsPeDeCommitFreeBlockThreshold +ID7347=RsPeDeCommitTotalFreeThreshold +ID7348=RsPeDllCharacteristics +ID7349=RsPeEditList +ID735=AnsiDoubleQuote +ID7350=RsPeFileAlignment +ID7351=RsPeGlobalFlagsClear +ID7352=RsPeGlobalFlagsSet +ID7353=RsPeImageBase +ID7354=RsPeImageVersion +ID7355=RsPeImg_00 +ID7356=RsPeImg_01 +ID7357=RsPeImg_02 +ID7358=RsPeImg_03 +ID7359=RsPeImg_04 +ID736=AnsiEm +ID7360=RsPeImg_05 +ID7361=RsPeImg_06 +ID7362=RsPeImg_07 +ID7363=RsPeImg_08 +ID7364=RsPeImg_09 +ID7365=RsPeImg_10 +ID7366=RsPeImg_11 +ID7367=RsPeImg_12 +ID7368=RsPeImg_13 +ID7369=RsPeImg_14 +ID737=AnsiEndOfFile +ID7370=RsPeImg_Reserved +ID7371=RsPeLinkerVersion +ID7372=RsPeLoaderFlags +ID7373=RsPeLockPrefixTable +ID7374=RsPeMachine +ID7375=RsPeMACHINE_ALPHA +ID7376=RsPeMACHINE_AM33 +ID7377=RsPeMACHINE_AMD64 +ID7378=RsPeMACHINE_AMPHA64 +ID7379=RsPeMACHINE_ARM +ID738=AnsiEnq +ID7380=RsPeMACHINE_CEE +ID7381=RsPeMACHINE_CEF +ID7382=RsPeMACHINE_EBC +ID7383=RsPeMACHINE_I386 +ID7384=RsPeMACHINE_IA64 +ID7385=RsPeMACHINE_M32R +ID7386=RsPeMACHINE_MIPS16 +ID7387=RsPeMACHINE_MIPSFPU +ID7388=RsPeMACHINE_MIPSFPU16 +ID7389=RsPeMACHINE_POWERPC +ID739=AnsiEot +ID7390=RsPeMACHINE_POWERPCFP +ID7391=RsPeMACHINE_R10000 +ID7392=RsPeMACHINE_R3000 +ID7393=RsPeMACHINE_R4000 +ID7394=RsPeMACHINE_SH3 +ID7395=RsPeMACHINE_SH3DSP +ID7396=RsPeMACHINE_SH3E +ID7397=RsPeMACHINE_SH4 +ID7398=RsPeMACHINE_SH5 +ID7399=RsPeMACHINE_THUMB ID74=!!OVERLOADED_InsertEDIDataObjects_TEDIDataObjectGroup -ID740=AnsiSpace -ID7400=TEDISEFDataObject.Data -ID7401=TEDISEFDataObject.DataLength -ID7402=TEDISEFDataObject.Destroy -ID7403=TEDISEFDataObject.Disassemble -ID7404=TEDISEFDataObject.FData -ID7405=TEDISEFDataObject.FErrorLog -ID7406=TEDISEFDataObject.FId -ID7407=TEDISEFDataObject.FLength -ID7408=TEDISEFDataObject.FOwnerItemRef -ID7409=TEDISEFDataObject.FParent -ID741=AnsiStx -ID7410=TEDISEFDataObject.FSEFFile -ID7411=TEDISEFDataObject.FState -ID7412=TEDISEFDataObject.GetData -ID7413=TEDISEFDataObject.Id -ID7414=TEDISEFDataObject.OwnerItemRef -ID7415=TEDISEFDataObject.Parent -ID7416=TEDISEFDataObject.SEFFile -ID7417=TEDISEFDataObject.SetData@string -ID7418=TEDISEFDataObject.SetId@string -ID7419=TEDISEFDataObject.SetParent@TEDISEFDataObject -ID742=AnsiSyn -ID7420=TEDISEFDataObject.State -ID7421=TEDISEFDataObject.UpdateOwnerItemName -ID7422=TEDISEFDataObjectClass -ID7423=TEDISEFDataObjectGroup -ID7424=TEDISEFDataObjectGroup.Create@TEDISEFDataObject -ID7425=TEDISEFDataObjectGroup.Destroy -ID7426=TEDISEFDataObjectGroup.EDISEFDataObject -ID7427=TEDISEFDataObjectGroup.EDISEFDataObjectCount -ID7428=TEDISEFDataObjectGroup.EDISEFDataObjects -ID7429=TEDISEFDataObjectGroup.FEDISEFDataObjects -ID743=AnsiTab -ID7430=TEDISEFDataObjectGroup.GetCount -ID7431=TEDISEFDataObjectGroup.GetEDISEFDataObject@Integer -ID7432=TEDISEFDataObjectList -ID7433=TEDISEFDataObjectList.Add@TEDISEFDataObject@string -ID7434=TEDISEFDataObjectList.CreateListItem@TEDIObjectListItem@TEDIObject -ID7435=TEDISEFDataObjectList.EDISEFDataObject -ID7436=TEDISEFDataObjectList.FindItemByName@string@TEDIObjectListItem -ID7437=TEDISEFDataObjectList.First@Integer -ID7438=TEDISEFDataObjectList.GetEDISEFDataObject@Integer -ID7439=TEDISEFDataObjectList.GetObjectByItemByName@string -ID744=AnsiUppercaseLetters -ID7440=TEDISEFDataObjectList.Insert@TEDISEFDataObject@TEDISEFDataObject -ID7441=TEDISEFDataObjectList.Last -ID7442=TEDISEFDataObjectList.Next -ID7443=TEDISEFDataObjectList.Prior -ID7444=TEDISEFDataObjectList.SetEDISEFDataObject@Integer@TEDISEFDataObject -ID7445=TEDISEFDataObjectListItem -ID7446=TEDISEFDataObjectListItem.EDISEFDataObject -ID7447=TEDISEFDataObjectListItem.GetEDISEFDataObject -ID7448=TEDISEFDataObjectListItem.LinkToObject -ID7449=TEDISEFDataObjectListItem.NextItem -ID745=AnsiUs -ID7450=TEDISEFDataObjectListItem.PriorItem -ID7451=TEDISEFDataObjectListItem.SetEDISEFDataObject@TEDISEFDataObject -ID7452=TEDISEFDataObjectListItem.UpdateName -ID7453=TEDISEFElement -ID7454=TEDISEFElement.Assemble -ID7455=TEDISEFElement.Assign@TEDISEFElement -ID7456=TEDISEFElement.BindTextSets@TEDISEFTextSets -ID7457=TEDISEFElement.Clone@TEDISEFDataObject -ID7458=TEDISEFElement.CloneAsSubElement@TEDISEFDataObject -ID7459=TEDISEFElement.Create@TEDISEFDataObject -ID746=AnsiValidIdentifierLetters -ID7460=TEDISEFElement.Destroy -ID7461=TEDISEFElement.Disassemble -ID7462=TEDISEFElement.ElementId -ID7463=TEDISEFElement.ElementType -ID7464=TEDISEFElement.FEDISEFTextSets -ID7465=TEDISEFElement.FElementType -ID7466=TEDISEFElement.FMaximumLength -ID7467=TEDISEFElement.FMinimumLength -ID7468=TEDISEFElement.FOrdinal -ID7469=TEDISEFElement.FOutOfSequenceOrdinal -ID747=AnsiVerticalTab -ID7470=TEDISEFElement.FRepeatCount -ID7471=TEDISEFElement.FRequirementDesignator -ID7472=TEDISEFElement.FUserAttribute -ID7473=TEDISEFElement.GetTextSetsLocation -ID7474=TEDISEFElement.MaximumLength -ID7475=TEDISEFElement.MinimumLength -ID7476=TEDISEFElement.Ordinal -ID7477=TEDISEFElement.OutOfSequenceOrdinal -ID7478=TEDISEFElement.RepeatCount -ID7479=TEDISEFElement.RequirementDesignator -ID748=AnsiWhiteSpace -ID7480=TEDISEFElement.TEXTSETS -ID7481=TEDISEFElement.TextSetsLocation -ID7482=TEDISEFElement.UserAttribute -ID7483=TEDISEFFile -ID7484=TEDISEFFile.Assemble -ID7485=TEDISEFFile.Clone@TEDISEFDataObject -ID7486=TEDISEFFile.Codes -ID7487=TEDISEFFile.COMS -ID7488=TEDISEFFile.Create@TEDISEFDataObject -ID7489=TEDISEFFile.Destroy -ID749=ANYSIZE_ARRAY -ID7490=TEDISEFFile.Disassemble -ID7491=TEDISEFFile.ELMS -ID7492=TEDISEFFile.FEDISEFCodesList -ID7493=TEDISEFFile.FEDISEFComs -ID7494=TEDISEFFile.FEDISEFElms -ID7495=TEDISEFFile.FEDISEFIni -ID7496=TEDISEFFile.FEDISEFSegs -ID7497=TEDISEFFile.FEDISEFSets -ID7498=TEDISEFFile.FEDISEFStd -ID7499=TEDISEFFile.FEDISEFTextSets +ID740=AnsiEscape +ID7400=RsPeMACHINE_TRICORE +ID7401=RsPeMACHINE_UNKNOWN +ID7402=RsPeMACHINE_WCEMIPSV2 +ID7403=RsPeMagic +ID7404=RsPeMaximumAllocationSize +ID7405=RsPeNotAvailableForAttached +ID7406=RsPeNotPE +ID7407=RsPeNotResDir +ID7408=RsPeNumberOfRvaAndSizes +ID7409=RsPeNumberOfSections +ID741=AnsiEtb +ID7410=RsPeNumberOfSymbols +ID7411=RsPeOperatingSystemVersion +ID7412=RsPePkgBCB4Produced +ID7413=RsPePkgDelphi4Produced +ID7414=RsPePkgDesignOnly +ID7415=RsPePkgExecutable +ID7416=RsPePkgIgnoreDupUnits +ID7417=RsPePkgImplicit +ID7418=RsPePkgMain +ID7419=RsPePkgNeverBuild +ID742=AnsiEtx +ID7420=RsPePkgOrgWeak +ID7421=RsPePkgPackage +ID7422=RsPePkgProducerUndefined +ID7423=RsPePkgRunOnly +ID7424=RsPePkgV3Produced +ID7425=RsPePkgWeak +ID7426=RsPePointerToSymbolTable +ID7427=RsPeProcessAffinityMask +ID7428=RsPeProcessHeapFlags +ID7429=RsPeReadOnlyStream +ID743=AnsiFormFeed +ID7430=RsPeReserved +ID7431=RsPersonal +ID7432=RsPeSectionAlignment +ID7433=RsPeSectionNotFound +ID7434=RsPeSignature +ID7435=RsPeSizeOfCode +ID7436=RsPeSizeOfHeaders +ID7437=RsPeSizeOfHeapCommit +ID7438=RsPeSizeOfHeapReserve +ID7439=RsPeSizeOfImage +ID744=AnsiForwardSlash +ID7440=RsPeSizeOfInitializedData +ID7441=RsPeSizeOfOptionalHeader +ID7442=RsPeSizeOfStackCommit +ID7443=RsPeSizeOfStackReserve +ID7444=RsPeSizeOfUninitializedData +ID7445=RsPeSubsystem +ID7446=RsPeSUBSYSTEM_NATIVE +ID7447=RsPeSUBSYSTEM_OS2_CUI +ID7448=RsPeSUBSYSTEM_POSIX_CUI +ID7449=RsPeSUBSYSTEM_RESERVED8 +ID745=AnsiFs +ID7450=RsPeSUBSYSTEM_UNKNOWN +ID7451=RsPeSUBSYSTEM_WINDOWS_CUI +ID7452=RsPeSUBSYSTEM_WINDOWS_GUI +ID7453=RsPeSubsystemVersion +ID7454=RsPeTimeDateStamp +ID7455=RsPeUnknownTarget +ID7456=RsPeVersion +ID7457=RsPeVirtualMemoryThreshold +ID7458=RsPeWin32VersionValue +ID7459=RsPngExtension +ID746=AnsiGetNextChar@AnsiString@SizeInt +ID7460=RsPowerComplex +ID7461=RsPowerInfinite +ID7462=RsProductTypeAdvancedServer +ID7463=RsProductTypeDatacenterServer +ID7464=RsProductTypeEnterprise +ID7465=RsProductTypePersonal +ID7466=RsProductTypeProfessional +ID7467=RsProductTypeServer +ID7468=RsProductTypeWebEdition +ID7469=RsProductTypeWorkStation +ID747=AnsiGetNextChar@AnsiString@Word@SizeInt +ID7470=RsProfessional +ID7471=RsPS10X14 +ID7472=RsPS11X17 +ID7473=RsPSA3 +ID7474=RsPSA4 +ID7475=RsPSA4Small +ID7476=RsPSA5 +ID7477=RsPSB4 +ID7478=RsPSB5 +ID7479=RsPSCSheet +ID748=AnsiGetNextCharFromStream@TStream@UCS4 +ID7480=RsPSDSheet +ID7481=RsPSEnv10 +ID7482=RsPSEnv11 +ID7483=RsPSEnv12 +ID7484=RsPSEnv14 +ID7485=RsPSEnv9 +ID7486=RsPSESheet +ID7487=RsPSExecutive +ID7488=RsPSFolio +ID7489=RsPSLedger +ID749=AnsiGetNextCharFromStream@TStream@Word@UCS4 +ID7490=RsPSLegal +ID7491=RsPSLetter +ID7492=RsPSLetterSmall +ID7493=RsPSNote +ID7494=RsPSQuarto +ID7495=RsPSStatement +ID7496=RsPSTabloid +ID7497=RsPSUnknown +ID7498=RsPSUser +ID7499=RsRamDisk ID75=!!OVERLOADED_InsertElement_TEDICompositeElement -ID750=APIC_FLAG -ID7500=TEDISEFFile.FEDISEFVer -ID7501=TEDISEFFile.FFileName -ID7502=TEDISEFFile.FileName -ID7503=TEDISEFFile.GetEDISEFCodesList -ID7504=TEDISEFFile.GetEDISEFIni -ID7505=TEDISEFFile.GetEDISEFStd -ID7506=TEDISEFFile.INI -ID7507=TEDISEFFile.LoadFromFile -ID7508=TEDISEFFile.LoadFromFile@string -ID7509=TEDISEFFile.ParseCodes -ID751=AppendCompositeElementTo@TEDISEFDataObjectGroup@TEDISEFCompositeElement -ID7510=TEDISEFFile.ParseCOMS -ID7511=TEDISEFFile.ParseELMS -ID7512=TEDISEFFile.ParseINI -ID7513=TEDISEFFile.ParseSEGS -ID7514=TEDISEFFile.ParseSETS -ID7515=TEDISEFFile.ParseSTD -ID7516=TEDISEFFile.ParseTextSets -ID7517=TEDISEFFile.ParseVER -ID7518=TEDISEFFile.SaveToFile -ID7519=TEDISEFFile.SaveToFile@string -ID752=AppendElementTo@TEDISEFDataObjectGroup@TEDISEFElement -ID7520=TEDISEFFile.SEGS -ID7521=TEDISEFFile.SETS -ID7522=TEDISEFFile.STD -ID7523=TEDISEFFile.TEXTSETS -ID7524=TEDISEFFile.Unload -ID7525=TEDISEFFile.VER -ID7526=TEDISEFLoop -ID7527=TEDISEFLoop.AddLoop -ID7528=TEDISEFLoop.AddSegment -ID7529=TEDISEFLoop.AppendLoop@TEDISEFLoop -ID753=AppendLoopTo@TEDISEFDataObjectGroup@TEDISEFLoop -ID7530=TEDISEFLoop.AppendSegment@TEDISEFSegment -ID7531=TEDISEFLoop.Assemble -ID7532=TEDISEFLoop.Clone@TEDISEFDataObject -ID7533=TEDISEFLoop.Create@TEDISEFDataObject -ID7534=TEDISEFLoop.DeleteLoop@TEDISEFLoop -ID7535=TEDISEFLoop.DeleteSegment@TEDISEFSegment -ID7536=TEDISEFLoop.Destroy -ID7537=TEDISEFLoop.Disassemble -ID7538=TEDISEFLoop.ExtractLoop@TEDISEFLoop -ID7539=TEDISEFLoop.ExtractSegment@TEDISEFSegment -ID754=AppendRepeatingPatternTo@TEDISEFDataObjectGroup@TEDISEFRepeatingPattern -ID7540=TEDISEFLoop.FMaximumRepeat -ID7541=TEDISEFLoop.GetParentLoopId -ID7542=TEDISEFLoop.GetParentSet -ID7543=TEDISEFLoop.GetParentTable -ID7544=TEDISEFLoop.InsertLoop@TEDISEFDataObject -ID7545=TEDISEFLoop.InsertLoop@TEDISEFLoop@TEDISEFDataObject -ID7546=TEDISEFLoop.InsertSegment@TEDISEFDataObject -ID7547=TEDISEFLoop.InsertSegment@TEDISEFSegment@TEDISEFDataObject -ID7548=TEDISEFLoop.LoopId -ID7549=TEDISEFLoop.MaximumRepeat -ID755=AppendSegmentTo@TEDISEFDataObjectGroup@TEDISEFSegment -ID7550=TEDISEFLoop.ParentLoopId -ID7551=TEDISEFLoop.ParentSet -ID7552=TEDISEFLoop.ParentTable -ID7553=TEDISEFObject -ID7554=TEDISEFObjectParentType -ID7555=TEDISEFObjectParentType.sefCompositeElement -ID7556=TEDISEFObjectParentType.sefElement -ID7557=TEDISEFObjectParentType.sefList -ID7558=TEDISEFObjectParentType.sefNil -ID7559=TEDISEFObjectParentType.sefSegment -ID756=AppendSubElementTo@TEDISEFDataObjectGroup@TEDISEFSubElement -ID7560=TEDISEFRepeatingPattern -ID7561=TEDISEFRepeatingPattern.AddRepeatingPattern -ID7562=TEDISEFRepeatingPattern.AppendRepeatingPattern@TEDISEFRepeatingPattern -ID7563=TEDISEFRepeatingPattern.Assemble -ID7564=TEDISEFRepeatingPattern.BaseParent -ID7565=TEDISEFRepeatingPattern.Clone@TEDISEFDataObject -ID7566=TEDISEFRepeatingPattern.Create@TEDISEFDataObject -ID7567=TEDISEFRepeatingPattern.DeleteRepeatingPattern@TEDISEFRepeatingPattern -ID7568=TEDISEFRepeatingPattern.Destroy -ID7569=TEDISEFRepeatingPattern.Disassemble -ID757=AppendTableTo@TEDISEFDataObjectGroup@TEDISEFTable -ID7570=TEDISEFRepeatingPattern.ExtractRepeatingPattern@TEDISEFRepeatingPattern -ID7571=TEDISEFRepeatingPattern.FBaseParent -ID7572=TEDISEFRepeatingPattern.FRepeatCount -ID7573=TEDISEFRepeatingPattern.InsertRepeatingPattern@TEDISEFDataObject -ID7574=TEDISEFRepeatingPattern.InsertRepeatingPattern@TEDISEFRepeatingPattern@TEDISEFDataObject -ID7575=TEDISEFRepeatingPattern.RepeatCount -ID7576=TEDISEFRepeatingPattern.SetParent@TEDISEFDataObject -ID7577=TEDISEFSegment -ID7578=TEDISEFSegment.AddCompositeElement -ID7579=TEDISEFSegment.AddElement -ID758=AppInstCmdLineDataKind -ID7580=TEDISEFSegment.AddRepeatingPattern -ID7581=TEDISEFSegment.AppendCompositeElement@TEDISEFCompositeElement -ID7582=TEDISEFSegment.AppendElement@TEDISEFElement -ID7583=TEDISEFSegment.AppendRepeatingPattern@TEDISEFRepeatingPattern -ID7584=TEDISEFSegment.Assemble -ID7585=TEDISEFSegment.Assign@TEDISEFSegment -ID7586=TEDISEFSegment.AssignElementOrdinals -ID7587=TEDISEFSegment.BindElementTextSets -ID7588=TEDISEFSegment.BindTextSets@TEDISEFTextSets -ID7589=TEDISEFSegment.Clone@TEDISEFDataObject -ID759=AppInstDataKindNoData -ID7590=TEDISEFSegment.Create@TEDISEFDataObject -ID7591=TEDISEFSegment.DeleteCompositeElement@TEDISEFCompositeElement -ID7592=TEDISEFSegment.DeleteElement@TEDISEFElement -ID7593=TEDISEFSegment.DeleteRepeatingPattern@TEDISEFRepeatingPattern -ID7594=TEDISEFSegment.Destroy -ID7595=TEDISEFSegment.Disassemble -ID7596=TEDISEFSegment.Elements -ID7597=TEDISEFSegment.ExtractCompositeElement@TEDISEFCompositeElement -ID7598=TEDISEFSegment.ExtractElement@TEDISEFElement -ID7599=TEDISEFSegment.ExtractRepeatingPattern@TEDISEFRepeatingPattern +ID750=AnsiGs +ID7500=RsRangeError +ID7501=RsRationalDivByZero +ID7502=RsReadKeyError +ID7503=RsRegionCouldNotCreated +ID7504=RsRegionDataOutOfBound +ID7505=RsRegisteringExpert +ID7506=RsRegisteringIdePackage +ID7507=RsRegisteringPackage +ID7508=RsRegistrationFailed +ID7509=RsRegistrationOk +ID751=AnsiHexDigits +ID7510=RsRemoteDrive +ID7511=RsRemovableDrive +ID7512=RsRetrievingPaperSource +ID7513=RsRetrievingSource +ID7514=RsRSName +ID7515=RsRTTIArrayOf +ID7516=RsRTTIBasedOn +ID7517=RsRTTIBits +ID7518=RsRTTIClassName +ID7519=RsRTTIConst +ID752=AnsiHexPrefix +ID7520=RsRTTIDefault +ID7521=RsRTTIElNeedCleanup +ID7522=RsRTTIElSize +ID7523=RsRTTIElType +ID7524=RsRTTIFalse +ID7525=RsRTTIField +ID7526=RsRTTIFlags +ID7527=RsRTTIFloatType +ID7528=RsRTTIGUID +ID7529=RsRTTIIndex +ID753=AnsiHexPrefixC +ID7530=RsRTTIInvalidBaseType +ID7531=RsRTTIMaxLen +ID7532=RsRTTIMaxValue +ID7533=RsRTTIMethodKind +ID7534=RsRTTIMinValue +ID7535=RsRTTIName +ID7536=RsRTTINameList +ID7537=RsRTTIOrdinal +ID7538=RsRTTIOrdinalType +ID7539=RsRTTIOut +ID754=AnsiHexPrefixPascal +ID7540=RsRTTIParamCount +ID7541=RsRTTIParent +ID7542=RsRTTIPropCount +ID7543=RsRTTIPropRead +ID7544=RsRTTIPropStored +ID7545=RsRTTIPropWrite +ID7546=RsRTTIReturnType +ID7547=RsRTTIStaticMethod +ID7548=RsRTTITrue +ID7549=RsRTTIType +ID755=AnsiLetters +ID7550=RsRTTITypeError +ID7551=RsRTTITypeInfoAt +ID7552=RsRTTITypeKind +ID7553=RsRTTIUnitName +ID7554=RsRTTIUnknownIdentifier +ID7555=RsRTTIValueOutOfRange +ID7556=RsRTTIVar +ID7557=RsRTTIVarType +ID7558=RsRTTIVirtualMethod +ID7559=RsScheduleDayInRange +ID756=AnsiLineBreak +ID7560=RsScheduleDayNotSupported +ID7561=RsScheduleEndBeforeStart +ID7562=RsScheduleIndexValueSup +ID7563=RsScheduleIndexValueZero +ID7564=RsScheduleIntervalZero +ID7565=RsScheduleInvalidTime +ID7566=RsScheduleMonthInRange +ID7567=RsScheduleNoDaySpecified +ID7568=RsSelectObjectInDc +ID7569=RsServerDeveloper +ID757=AnsiLineFeed +ID7570=RsSIDBufferTooSmall +ID7571=RsSourceBitmapEmpty +ID7572=RsSourceBitmapInvalid +ID7573=RsSPInfo +ID7574=RsSpoolerDocName +ID7575=RsStandard +ID7576=RsStreamsCRCError +ID7577=RsStreamsCreateError +ID7578=RsStreamsOpenError +ID7579=RsStreamsSeekError +ID758=AnsiLoOffset +ID7580=RsStreamsSetSizeError +ID7581=RsStringHashMapDuplicate +ID7582=RsStringHashMapInvalidNode +ID7583=RsStringHashMapMustBeEmpty +ID7584=RsStringHashMapNoTraits +ID7585=RsStringToBoolean +ID7586=RsSynchAttachDispatcher +ID7587=RsSynchAttachWin32Handle +ID7588=RsSynchCreateEvent +ID7589=RsSynchCreateMutex +ID759=AnsiLowercaseLetters +ID7590=RsSynchCreateSemaphore +ID7591=RsSynchCreateWaitableTimer +ID7592=RsSynchDuplicateWin32Handle +ID7593=RsSynchInitCriticalSection +ID7594=RsSynchOpenEvent +ID7595=RsSynchOpenMutex +ID7596=RsSynchOpenSemaphore +ID7597=RsSynchOpenWaitableTimer +ID7598=RsSysErrorMessageFmt +ID7599=RsSystemIdleProcess ID76=!!OVERLOADED_InsertElement_TEDISEFSegment -ID760=Apply@IJclIntfIterator@Integer@TIntfApplyFunction -ID7600=TEDISEFSegment.FEDISEFTextSets -ID7601=TEDISEFSegment.FExtendedData -ID7602=TEDISEFSegment.FMaskNumber -ID7603=TEDISEFSegment.FMaskNumberSpecified -ID7604=TEDISEFSegment.FMaximumUse -ID7605=TEDISEFSegment.FOrdinal -ID7606=TEDISEFSegment.FOutOfSequenceOrdinal -ID7607=TEDISEFSegment.FOwnerLoopId -ID7608=TEDISEFSegment.FParentLoopId -ID7609=TEDISEFSegment.FParentSet -ID761=Apply@IJclIterator@Integer@TApplyFunction -ID7610=TEDISEFSegment.FParentTable -ID7611=TEDISEFSegment.FPosition -ID7612=TEDISEFSegment.FPositionIncrement -ID7613=TEDISEFSegment.FRequirementDesignator -ID7614=TEDISEFSegment.FResetPositionInc -ID7615=TEDISEFSegment.FUserAttribute -ID7616=TEDISEFSegment.GetElementObjectList -ID7617=TEDISEFSegment.GetOwnerLoopId -ID7618=TEDISEFSegment.GetParentLoopId -ID7619=TEDISEFSegment.GetTextSetsLocation -ID762=Apply@IJclStrIterator@Integer@TStrApplyFunction -ID7620=TEDISEFSegment.InsertCompositeElement@TEDISEFCompositeElement@TEDISEFDataObject -ID7621=TEDISEFSegment.InsertCompositeElement@TEDISEFDataObject -ID7622=TEDISEFSegment.InsertElement@TEDISEFDataObject -ID7623=TEDISEFSegment.InsertElement@TEDISEFElement@TEDISEFDataObject -ID7624=TEDISEFSegment.InsertRepeatingPattern@TEDISEFDataObject -ID7625=TEDISEFSegment.InsertRepeatingPattern@TEDISEFRepeatingPattern@TEDISEFDataObject -ID7626=TEDISEFSegment.MaximumUse -ID7627=TEDISEFSegment.Ordinal -ID7628=TEDISEFSegment.OutOfSequenceOrdinal -ID7629=TEDISEFSegment.OwnerLoopId -ID763=ArcMinutesPerDeg -ID7630=TEDISEFSegment.ParentLoopId -ID7631=TEDISEFSegment.ParentSet -ID7632=TEDISEFSegment.ParentTable -ID7633=TEDISEFSegment.Position -ID7634=TEDISEFSegment.PositionIncrement -ID7635=TEDISEFSegment.RequirementDesignator -ID7636=TEDISEFSegment.ResetPositionInc -ID7637=TEDISEFSegment.SegmentId -ID7638=TEDISEFSegment.TEXTSETS -ID7639=TEDISEFSegment.TextSetsLocation -ID764=ArcSecondsPerArcMinute -ID7640=TEDISEFSegment.UserAttribute -ID7641=TEDISEFSet -ID7642=TEDISEFSet.AddTable -ID7643=TEDISEFSet.AppendTable@TEDISEFTable -ID7644=TEDISEFSet.Assemble -ID7645=TEDISEFSet.AssignSegmentOrdinals -ID7646=TEDISEFSet.AssignSegmentPositions -ID7647=TEDISEFSet.BindSegmentTextSets -ID7648=TEDISEFSet.BindTextSets@TEDISEFTextSets -ID7649=TEDISEFSet.BuildSegmentObjectListFromLoop@TObjectList@TEDISEFLoop -ID765=ArcSecondsPerDeg -ID7650=TEDISEFSet.Clone@TEDISEFDataObject -ID7651=TEDISEFSet.Create@TEDISEFDataObject -ID7652=TEDISEFSet.DeleteTable@TEDISEFTable -ID7653=TEDISEFSet.Destroy -ID7654=TEDISEFSet.Disassemble -ID7655=TEDISEFSet.ExtractTable@TEDISEFTable -ID7656=TEDISEFSet.FEDISEFTextSets -ID7657=TEDISEFSet.GetEDISEFTable@Integer -ID7658=TEDISEFSet.GetSegmentObjectList -ID7659=TEDISEFSet.GetTextSetsLocation -ID766=ArgumentException -ID7660=TEDISEFSet.InsertTable@TEDISEFTable -ID7661=TEDISEFSet.InsertTable@TEDISEFTable@TEDISEFTable -ID7662=TEDISEFSet.Table -ID7663=TEDISEFSet.Tables -ID7664=TEDISEFSet.TEXTSETS -ID7665=TEDISEFSet.TextSetsLocation -ID7666=TEDISEFSubElement -ID7667=TEDISEFSubElement.Assemble -ID7668=TEDISEFSubElement.Clone@TEDISEFDataObject -ID7669=TEDISEFSubElement.Create@TEDISEFDataObject -ID767=ArgumentNullException -ID7670=TEDISEFSubElement.Destroy -ID7671=TEDISEFSubElement.Disassemble -ID7672=TEDISEFTable -ID7673=TEDISEFTable.AddLoop -ID7674=TEDISEFTable.AddSegment -ID7675=TEDISEFTable.AppendLoop@TEDISEFLoop -ID7676=TEDISEFTable.AppendSegment@TEDISEFSegment -ID7677=TEDISEFTable.Assemble -ID7678=TEDISEFTable.Clone@TEDISEFDataObject -ID7679=TEDISEFTable.Create@TEDISEFDataObject -ID768=ArgumentOutOfRangeException -ID7680=TEDISEFTable.DeleteLoop@TEDISEFLoop -ID7681=TEDISEFTable.DeleteSegment@TEDISEFSegment -ID7682=TEDISEFTable.Destroy -ID7683=TEDISEFTable.Disassemble -ID7684=TEDISEFTable.ExtractLoop@TEDISEFLoop -ID7685=TEDISEFTable.ExtractSegment@TEDISEFSegment -ID7686=TEDISEFTable.GetSEFSet -ID7687=TEDISEFTable.InsertLoop@TEDISEFDataObject -ID7688=TEDISEFTable.InsertLoop@TEDISEFLoop@TEDISEFDataObject -ID7689=TEDISEFTable.InsertSegment@TEDISEFDataObject -ID769=ArrayOf@TStrings -ID7690=TEDISEFTable.InsertSegment@TEDISEFSegment@TEDISEFDataObject -ID7691=TEDISEFTable.SEFSet -ID7692=TEDISEFText -ID7693=TEDISEFText.Assemble -ID7694=TEDISEFText.Create -ID7695=TEDISEFText.Data -ID7696=TEDISEFText.Description -ID7697=TEDISEFText.Destroy -ID7698=TEDISEFText.Disassemble -ID7699=TEDISEFText.FData +ID760=AnsiMultiSzDup@PAnsiMultiSz +ID7600=RsSystemProcess +ID7601=RsTabs_CloseBracketExpected +ID7602=RsTabs_DuplicatesNotAllowed +ID7603=RsTabs_StopExpected +ID7604=RsTabs_TabWidthExpected +ID7605=RsTempConvTypeError +ID7606=RsUnableToAccessValue +ID7607=RsUnableToOpenKeyRead +ID7608=RsUnableToOpenKeyWrite +ID7609=RsUnexpectedDataType +ID761=AnsiMultiSzLength@PAnsiMultiSz +ID7610=RsUnexpectedValue +ID7611=RsUnknownAMDModel +ID7612=RsUnknownAttribute +ID7613=RsUnknownClassLayout +ID7614=RsUnknownDrive +ID7615=RsUnknownFunctionAt +ID7616=RsUnknownManifestResource +ID7617=RsUnknownProjectType +ID7618=RsUnknownStringFormatting +ID7619=RsUnknownTable +ID762=AnsiMultiSzToAnsiStrings@TAnsiStrings@PAnsiMultiSz +ID7620=RsUnknownTableFmt +ID7621=RsUnregisteringExpert +ID7622=RsUnregisteringIdePackage +ID7623=RsUnregisteringPackage +ID7624=RsUnregistrationFailed +ID7625=RsUnregistrationOk +ID7626=RsUpdatePackName +ID7627=RsUpdatingPrinter +ID7628=RsUREBaseString +ID7629=RsURECharacterClassOpen +ID763=AnsiNak +ID7630=RsUREErrorFmt +ID7631=RsUREExpressionEmpty +ID7632=RsUREInvalidCharProperty +ID7633=RsUREInvalidRepeatRange +ID7634=RsURERepeatRangeOpen +ID7635=RsUREUnbalancedGroup +ID7636=RsUREUnexpectedEOS +ID7637=RsVclIncludeDir +ID7638=RsVersionCtrlAddCaption +ID7639=RsVersionCtrlAddSandboxCaption +ID764=AnsiNull +ID7640=RsVersionCtrlBlameCaption +ID7641=RsVersionCtrlBranchCaption +ID7642=RsVersionCtrlBranchSandboxCaption +ID7643=RsVersionCtrlCheckOutSandboxCaption +ID7644=RsVersionCtrlCommitCaption +ID7645=RsVersionCtrlCommitSandboxCaption +ID7646=RsVersionCtrlContextMenuCaption +ID7647=RsVersionCtrlCVSName +ID7648=RsVersionCtrlDiffCaption +ID7649=RsVersionCtrlExploreCaption +ID765=AnsiOctDigits +ID7650=RsVersionCtrlExploreSandboxCaption +ID7651=RsVersionCtrlGraphCaption +ID7652=RsVersionCtrlLockCaption +ID7653=RsVersionCtrlLockSandboxCaption +ID7654=RsVersionCtrlLogCaption +ID7655=RsVersionCtrlLogSandboxCaption +ID7656=RsVersionCtrlMergeCaption +ID7657=RsVersionCtrlMergeSandboxCaption +ID7658=RsVersionCtrlPropertiesCaption +ID7659=RsVersionCtrlPropertiesSandboxCaption +ID766=AnsiReOffset +ID7660=RsVersionCtrlRenameCaption +ID7661=RsVersionCtrlRenameSandboxCaption +ID7662=RsVersionCtrlRepoBrowserCaption +ID7663=RsVersionCtrlRevertCaption +ID7664=RsVersionCtrlRevertSandboxCaption +ID7665=RsVersionCtrlStatusCaption +ID7666=RsVersionCtrlStatusSandboxCaption +ID7667=RsVersionCtrlSVNName +ID7668=RsVersionCtrlTagCaption +ID7669=RsVersionCtrlTagSandboxCaption +ID767=AnsiReplacementCharacter +ID7670=RsVersionCtrlUnlockCaption +ID7671=RsVersionCtrlUnlockSandboxCaption +ID7672=RsVersionCtrlUpdateCaption +ID7673=RsVersionCtrlUpdateSandboxCaption +ID7674=RsVersionCtrlUpdateSandboxToCaption +ID7675=RsVersionCtrlUpdateToCaption +ID7676=RsVft2DrvCOMM +ID7677=RsVft2DrvDISPLAY +ID7678=RsVft2DrvINSTALLABLE +ID7679=RsVft2DrvKEYBOARD +ID768=AnsiRs +ID7680=RsVft2DrvLANGUAGE +ID7681=RsVft2DrvMOUSE +ID7682=RsVft2DrvNETWORK +ID7683=RsVft2DrvPRINTER +ID7684=RsVft2DrvSOUND +ID7685=RsVft2DrvSYSTEM +ID7686=RsVft2FontRASTER +ID7687=RsVft2FontTRUETYPE +ID7688=RsVft2FontVECTOR +ID7689=RsVftApp +ID769=AnsiSetNextChar@AnsiString@SizeInt@UCS4 +ID7690=RsVftDll +ID7691=RsVftDrv +ID7692=RsVftFont +ID7693=RsVftStaticLib +ID7694=RsVftUnknown +ID7695=RsVftVxd +ID7696=RsViewNeedsMapping +ID7697=RsVMTMemoryWriteError +ID7698=RsVosDesignedFor +ID7699=RsVosDos ID77=!!OVERLOADED_InsertElement_TEDISegment -ID770=AssertKindOf@string@TObject -ID7700=TEDISEFText.FEDISEFWhereType -ID7701=TEDISEFText.FText -ID7702=TEDISEFText.FWhat -ID7703=TEDISEFText.FWhere -ID7704=TEDISEFText.FWhereLocation -ID7705=TEDISEFText.GetData -ID7706=TEDISEFText.GetDescription -ID7707=TEDISEFText.GetText -ID7708=TEDISEFText.GetWhereLocation -ID7709=TEDISEFText.SetData@string -ID771=ASYNCH -ID7710=TEDISEFText.SetText@string -ID7711=TEDISEFText.Text -ID7712=TEDISEFText.What -ID7713=TEDISEFText.Where -ID7714=TEDISEFText.WhereLocation -ID7715=TEDISEFTextSet -ID7716=TEDISEFTextSet.Assemble -ID7717=TEDISEFTextSet.Create -ID7718=TEDISEFTextSet.Destroy -ID7719=TEDISEFTextSet.Disassemble -ID772=BACKUP_MSG_FILENAME -ID7720=TEDISEFTextSet.FWhereElement -ID7721=TEDISEFTextSet.FWhereSegment -ID7722=TEDISEFTextSet.FWhereSet -ID7723=TEDISEFTextSet.FWhereSubElement -ID7724=TEDISEFTextSets -ID7725=TEDISEFTextSets.GetText@string -ID7726=TEDISEFTextSets.SetText@TEDISEFFile@string@string@string -ID7727=TEDISEFToSpecTranslator -ID7728=TEDISEFToSpecTranslator.Create -ID7729=TEDISEFToSpecTranslator.Destroy -ID773=BackupSeek@THandle@DWORD@DWORD@DWORD@DWORD@IntPtr Pointer -ID7730=TEDISEFWhereType -ID7731=TEDISEFWhereType.twElementOrCompositeElement -ID7732=TEDISEFWhereType.twSegment -ID7733=TEDISEFWhereType.twSet -ID7734=TEDISEFWhereType.twSubElement -ID7735=TEDISEFWhereType.twUnknown -ID7736=TEDISegment -ID7737=TEDISegment.AddCompositeElement -ID7738=TEDISegment.AddCompositeElements@Integer -ID7739=TEDISegment.AddElement -ID774=BaseServices -ID7740=TEDISegment.AddElements@Integer -ID7741=TEDISegment.AppendCompositeElement@TEDICompositeElement -ID7742=TEDISegment.AppendCompositeElements@TEDICompositeElementArray -ID7743=TEDISegment.AppendElement@TEDIElement -ID7744=TEDISegment.AppendElements@TEDIElementArray -ID7745=TEDISegment.Assemble -ID7746=TEDISegment.Create@TEDIDataObject@Integer -ID7747=TEDISegment.DeleteElement@Integer -ID7748=TEDISegment.DeleteElement@TEDIElement -ID7749=TEDISegment.DeleteElements -ID775=Bernstein -ID7750=TEDISegment.DeleteElements@Integer@Integer -ID7751=TEDISegment.Destroy -ID7752=TEDISegment.Disassemble -ID7753=TEDISegment.ElementCount -ID7754=TEDISegment.FSegmentId -ID7755=TEDISegment.InsertCompositeElement@Integer -ID7756=TEDISegment.InsertCompositeElement@Integer@TEDICompositeElement -ID7757=TEDISegment.InsertCompositeElements@Integer@Integer -ID7758=TEDISegment.InsertCompositeElements@Integer@TEDICompositeElementArray -ID7759=TEDISegment.InsertElement@Integer -ID776=BinaryExtensionExecutable -ID7760=TEDISegment.InsertElement@Integer@TEDIElement -ID7761=TEDISegment.InsertElements@Integer@Integer -ID7762=TEDISegment.InsertElements@Integer@TEDIElementArray -ID7763=TEDISegment.InternalAssignDelimiters -ID7764=TEDISegment.InternalCreateCompositeElement -ID7765=TEDISegment.InternalCreateEDIDataObject -ID7766=TEDISegment.InternalCreateElement -ID7767=TEDISegment.SegmentId -ID7768=TEDISegmentArray -ID7769=TEDISegmentSpec -ID777=BinaryExtensionLibrary -ID7770=TEDISegmentSpec.Assemble -ID7771=TEDISegmentSpec.AssembleReservedData@TStrings -ID7772=TEDISegmentSpec.Create@TEDIDataObject@Integer -ID7773=TEDISegmentSpec.Description -ID7774=TEDISegmentSpec.Destroy -ID7775=TEDISegmentSpec.Disassemble -ID7776=TEDISegmentSpec.DisassembleReservedData@TStrings -ID7777=TEDISegmentSpec.FDescription -ID7778=TEDISegmentSpec.FMaximumUsage -ID7779=TEDISegmentSpec.FNotes -ID778=BinaryExtensionPackage -ID7780=TEDISegmentSpec.FOwnerLoopId -ID7781=TEDISegmentSpec.FParentLoopId -ID7782=TEDISegmentSpec.FPosition -ID7783=TEDISegmentSpec.FRequirementDesignator -ID7784=TEDISegmentSpec.FReservedData -ID7785=TEDISegmentSpec.FSection -ID7786=TEDISegmentSpec.GetReservedData -ID7787=TEDISegmentSpec.Id -ID7788=TEDISegmentSpec.InternalCreateElement -ID7789=TEDISegmentSpec.MaximumUsage -ID779=BinaryFileName@string@string -ID7790=TEDISegmentSpec.Notes -ID7791=TEDISegmentSpec.OwnerLoopId -ID7792=TEDISegmentSpec.ParentLoopId -ID7793=TEDISegmentSpec.Position -ID7794=TEDISegmentSpec.RequirementDesignator -ID7795=TEDISegmentSpec.ReservedData -ID7796=TEDISegmentSpec.Section -ID7797=TEDISegmentSpec.ValidateElementIndexPositions -ID7798=TEDISpecToSEFTranslator -ID7799=TEDISpecToSEFTranslator.Create +ID770=AnsiSetNextChar@AnsiString@Word@SizeInt@UCS4 +ID7700=RsVosDosWindows16 +ID7701=RsVosDosWindows32 +ID7702=RsVosNT +ID7703=RsVosNTWindows32 +ID7704=RsVosOS216 +ID7705=RsVosOS216PM16 +ID7706=RsVosOS232 +ID7707=RsVosOS232PM32 +ID7708=RsVosPM16 +ID7709=RsVosPM32 +ID771=AnsiSetNextCharToStream@TStream@UCS4 +ID7710=RsVosUnknown +ID7711=RsVosWindows16 +ID7712=RsVosWindows32 +ID7713=RsWin32Error +ID7714=RsWin32Prefix +ID7715=RsWrongDataType +ID7716=RT_ACCELERATOR +ID7717=RT_ANICURSOR +ID7718=RT_ANIICON +ID7719=RT_BITMAP +ID772=AnsiSetNextCharToStream@TStream@Word@UCS4 +ID7720=RT_CURSOR +ID7721=RT_DIALOG +ID7722=RT_DLGINCLUDE +ID7723=RT_FONT +ID7724=RT_FONTDIR +ID7725=RT_GROUP_CURSOR +ID7726=RT_GROUP_ICON +ID7727=RT_ICON +ID7728=RT_MENU +ID7729=RT_MESSAGETABLE +ID773=AnsiSi +ID7730=RT_PLUGPLAY +ID7731=RT_RCDATA +ID7732=RT_STRING +ID7733=RT_VERSION +ID7734=RT_VXD +ID7735=RtdlDeleteVolumeMountPoint +ID7736=RtdlDeleteVolumeMountPointW +ID7737=RtdlEnumCalendarInfoExA +ID7738=RtdlEnumCalendarInfoExW +ID7739=RtdlGetCalendarInfoA +ID774=AnsiSignMinus +ID7740=RtdlGetCalendarInfoW +ID7741=RtdlGetVolumeNameForVolumeMountPoint +ID7742=RtdlGetVolumeNameForVolumeMountPointW +ID7743=RtdlMsiGetComponentPath +ID7744=RtdlMsiGetShortcutTarget +ID7745=RtdlMsiLibHandle +ID7746=RtdlNetApiBufferFree +ID7747=RtdlNetBios +ID7748=RtdlNetGroupAdd +ID7749=RtdlNetGroupDel +ID775=AnsiSignPlus +ID7750=RtdlNetGroupEnum +ID7751=RtdlNetLocalGroupAdd +ID7752=RtdlNetLocalGroupAddMembers +ID7753=RtdlNetLocalGroupDel +ID7754=RtdlNetLocalGroupEnum +ID7755=RtdlNetUserAdd +ID7756=RtdlNetUserDel +ID7757=RtdlSetNamedSecurityInfoW +ID7758=RtdlSetVolumeMountPoint +ID7759=RtdlSetVolumeMountPointW +ID776=AnsiSigns +ID7760=RtdlSetWaitableTimer +ID7761=RTL_OSVERSIONINFOEXW +ID7762=RTLFeatures +ID7763=RunDll32ShimW@THandle@HMODULE@PWideChar@Integer +ID7764=RUNTIME_INFO_DONT_RETURN_DIRECTORY +ID7765=RUNTIME_INFO_DONT_RETURN_VERSION +ID7766=RUNTIME_INFO_DONT_SHOW_ERROR_DIALOG +ID7767=RUNTIME_INFO_REQUEST_AMD64 +ID7768=RUNTIME_INFO_REQUEST_IA64 +ID7769=RUNTIME_INFO_REQUEST_X86 +ID777=AnsiSingleQuote +ID7770=RUNTIME_INFO_UPGRADE_VERSION +ID7771=RuntimeTypeInformation +ID7772=RVA +ID7773=SamePath@string@string +ID7774=Sar@Shortint@TBitRange +ID7775=Sar@Smallint@TBitRange +ID7776=SCHED_E_ACCOUNT_DBASE_CORRUPT +ID7777=SCHED_E_ACCOUNT_INFORMATION_NOT_SET +ID7778=SCHED_E_ACCOUNT_NAME_NOT_FOUND +ID7779=SCHED_E_CANNOT_OPEN_TASK +ID778=AnsiSkipChars@AnsiString@SizeInt@SizeInt +ID7780=SCHED_E_INVALID_TASK +ID7781=SCHED_E_NO_SECURITY_SERVICES +ID7782=SCHED_E_SERVICE_NOT_INSTALLED +ID7783=SCHED_E_SERVICE_NOT_RUNNING +ID7784=SCHED_E_TASK_NOT_READY +ID7785=SCHED_E_TASK_NOT_RUNNING +ID7786=SCHED_E_TRIGGER_NOT_FOUND +ID7787=SCHED_E_UNKNOWN_OBJECT_VERSION +ID7788=SCHED_E_UNSUPPORTED_ACCOUNT_OPTION +ID7789=SCHED_S_EVENT_TRIGGER +ID779=AnsiSkipCharsFromStream@TStream@SizeInt +ID7790=SCHED_S_TASK_DISABLED +ID7791=SCHED_S_TASK_HAS_NOT_RUN +ID7792=SCHED_S_TASK_NO_MORE_RUNS +ID7793=SCHED_S_TASK_NO_VALID_TRIGGERS +ID7794=SCHED_S_TASK_NOT_SCHEDULED +ID7795=SCHED_S_TASK_READY +ID7796=SCHED_S_TASK_RUNNING +ID7797=SCHED_S_TASK_TERMINATED +ID7798=ScreenShot@TBitmap@Boolean +ID7799=ScreenShot@TBitmap@Integer@Integer@Integer@Integer@THandle ID78=!!OVERLOADED_InsertElement_TEDIXMLSegment -ID780=BIT_0 -ID7800=TEDISpecToSEFTranslator.Destroy -ID7801=TEDISpecToSEFTranslator.TranslateLoopToSEFSet@TEDILoopStackRecord@string@string@string@TEDIObject -ID7802=TEDISpecToSEFTranslator.TranslateToSEFElement@TEDIElementSpec@TEDISEFFile -ID7803=TEDISpecToSEFTranslator.TranslateToSEFElement@TEDIElementSpec@TEDISEFSegment -ID7804=TEDISpecToSEFTranslator.TranslateToSEFElementTEXTSETS@TEDIElementSpec@TEDISEFElement -ID7805=TEDISpecToSEFTranslator.TranslateToSEFFile@TEDIInterchangeControlSpec -ID7806=TEDISpecToSEFTranslator.TranslateToSEFSegment@TEDISegmentSpec@TEDISEFFile -ID7807=TEDISpecToSEFTranslator.TranslateToSEFSegment@TEDISegmentSpec@TEDISEFLoop -ID7808=TEDISpecToSEFTranslator.TranslateToSEFSegment@TEDISegmentSpec@TEDISEFTable -ID7809=TEDISpecToSEFTranslator.TranslateToSEFSegmentTEXTSETS@TEDISegmentSpec@TEDISEFSegment -ID781=BIT_1 -ID7810=TEDISpecToSEFTranslator.TranslateToSEFSet@TEDITransactionSetSpec@TEDISEFFile -ID7811=TEDITransactionSet -ID7812=TEDITransactionSet.AddSegment -ID7813=TEDITransactionSet.AddSegments@Integer -ID7814=TEDITransactionSet.AppendSegment@TEDISegment -ID7815=TEDITransactionSet.AppendSegments@TEDISegmentArray -ID7816=TEDITransactionSet.Assemble -ID7817=TEDITransactionSet.Create@TEDIDataObject@Integer -ID7818=TEDITransactionSet.DeleteSegment@Integer -ID7819=TEDITransactionSet.DeleteSegment@TEDISegment -ID782=BIT_10 -ID7820=TEDITransactionSet.DeleteSegments -ID7821=TEDITransactionSet.DeleteSegments@Integer@Integer -ID7822=TEDITransactionSet.Destroy -ID7823=TEDITransactionSet.Disassemble -ID7824=TEDITransactionSet.FSESegment -ID7825=TEDITransactionSet.FSTSegment -ID7826=TEDITransactionSet.GetSegment@Integer -ID7827=TEDITransactionSet.InsertSegment@Integer -ID7828=TEDITransactionSet.InsertSegment@Integer@TEDISegment -ID7829=TEDITransactionSet.InsertSegments@Integer@Integer -ID783=BIT_10_FLAG -ID7830=TEDITransactionSet.InsertSegments@Integer@TEDISegmentArray -ID7831=TEDITransactionSet.InternalAssignDelimiters -ID7832=TEDITransactionSet.InternalCreateEDIDataObject -ID7833=TEDITransactionSet.InternalCreateHeaderTrailerSegments -ID7834=TEDITransactionSet.InternalCreateSegment -ID7835=TEDITransactionSet.Segment -ID7836=TEDITransactionSet.SegmentCount -ID7837=TEDITransactionSet.Segments -ID7838=TEDITransactionSet.SegmentSE -ID7839=TEDITransactionSet.SegmentST -ID784=BIT_11 -ID7840=TEDITransactionSet.SetSegment@Integer@TEDISegment -ID7841=TEDITransactionSet.SetSESegment@TEDISegment -ID7842=TEDITransactionSet.SetSTSegment@TEDISegment -ID7843=TEDITransactionSetArray -ID7844=TEDITransactionSetDocument -ID7845=TEDITransactionSetDocument.AddLoopToDoc@TEDILoopStackRecord@string@string@string@TEDIObject -ID7846=TEDITransactionSetDocument.AdvanceSegSpecIndex@Integer@Integer@Integer -ID7847=TEDITransactionSetDocument.Create@TEDIDataObject@TEDITransactionSet@TEDITransactionSetSpec -ID7848=TEDITransactionSetDocument.Destroy -ID7849=TEDITransactionSetDocument.EDITSDOptions -ID785=BIT_12 -ID7850=TEDITransactionSetDocument.ErrorOccured -ID7851=TEDITransactionSetDocument.FEDILoopStack -ID7852=TEDITransactionSetDocument.FEDITransactionSet -ID7853=TEDITransactionSetDocument.FEDITransactionSetSpec -ID7854=TEDITransactionSetDocument.FEDITSDOptions -ID7855=TEDITransactionSetDocument.FErrorOccured -ID7856=TEDITransactionSetDocument.FormatDocument -ID7857=TEDITransactionSetDocument.SetSpecificationPointers@TEDISegment@TEDISegment -ID7858=TEDITransactionSetDocument.ValidateData@TEDITransactionSetDocument@TEDILoopStack@TEDISegment@TEDISegment@Integer@Integer@Boolean -ID7859=TEDITransactionSetDocument.ValidateSegSpecIndex@string@Integer -ID786=BIT_13 -ID7860=TEDITransactionSetDocumentArray -ID7861=TEDITransactionSetDocumentOptions -ID7862=TEDITransactionSetLoop -ID7863=TEDITransactionSetLoop.AddLoop@string@string -ID7864=TEDITransactionSetLoop.AppendSegment@TEDISegment -ID7865=TEDITransactionSetLoop.Assemble -ID7866=TEDITransactionSetLoop.Create@TEDIDataObject -ID7867=TEDITransactionSetLoop.DeleteEDIDataObjects -ID7868=TEDITransactionSetLoop.Destroy -ID7869=TEDITransactionSetLoop.Disassemble -ID787=BIT_14 -ID7870=TEDITransactionSetLoop.FindLoop@string@Integer -ID7871=TEDITransactionSetLoop.FindSegment@string@Integer -ID7872=TEDITransactionSetLoop.FindSegment@string@Integer@TStrings -ID7873=TEDITransactionSetLoop.FOwnerLoopId -ID7874=TEDITransactionSetLoop.FParentLoopId -ID7875=TEDITransactionSetLoop.FParentTransactionSet -ID7876=TEDITransactionSetLoop.InternalAssignDelimiters -ID7877=TEDITransactionSetLoop.InternalCreateEDIDataObject -ID7878=TEDITransactionSetLoop.OwnerLoopId -ID7879=TEDITransactionSetLoop.ParentLoopId -ID788=BIT_15 -ID7880=TEDITransactionSetLoop.ParentTransactionSet -ID7881=TEDITransactionSetSegment -ID7882=TEDITransactionSetSegment.Create@TEDIDataObject@Integer -ID7883=TEDITransactionSetSegment.InternalAssignDelimiters -ID7884=TEDITransactionSetSegmentSpec -ID7885=TEDITransactionSetSegmentSpec.Create@TEDIDataObject@Integer -ID7886=TEDITransactionSetSegmentSpec.InternalAssignDelimiters -ID7887=TEDITransactionSetSegmentSTSpec -ID7888=TEDITransactionSetSegmentSTSpec.AssembleReservedData@TStrings -ID7889=TEDITransactionSetSegmentSTSpec.Create@TEDIDataObject@Integer -ID789=BIT_16 -ID7890=TEDITransactionSetSegmentSTSpec.DisassembleReservedData@TStrings -ID7891=TEDITransactionSetSpec -ID7892=TEDITransactionSetSpec.FTransactionSetId -ID7893=TEDITransactionSetSpec.FTSDescription -ID7894=TEDITransactionSetSpec.Id -ID7895=TEDITransactionSetSpec.InternalCreateHeaderTrailerSegments -ID7896=TEDITransactionSetSpec.InternalCreateSegment -ID7897=TEDITransactionSetSpec.TransactionSetId -ID7898=TEDITransactionSetSpec.TSDescription -ID7899=TEDITransactionSetSpec.ValidateSegmentIndexPositions +ID780=AnsiSo +ID7800=SE_CREATE_GLOBAL_NAME +ID7801=SE_IMPERSONATE_NAME +ID7802=SE_MANAGE_VOLUME_NAME +ID7803=SearchDynArray@Pointer@Cardinal@TDynArraySortCompare@Pointer@Boolean +ID7804=SearchSortedList@TList@TListSortCompare@Pointer@Boolean +ID7805=SearchSortedUntyped@Pointer@Integer@TUntypedSearchCompare@@Boolean +ID7806=Sec@TRectComplex +ID7807=SecH@TRectComplex +ID7808=SectionTag_ +ID7809=SectionTag_CODES +ID781=AnsiSoh +ID7810=SectionTag_COMS +ID7811=SectionTag_ELMS +ID7812=SectionTag_INI +ID7813=SectionTag_JCL_COMSEXT +ID7814=SectionTag_JCL_ELMSEXT +ID7815=SectionTag_JCL_SEGSEXT +ID7816=SectionTag_JCL_SETSEXT +ID7817=SectionTag_OBJVARS +ID7818=SectionTag_PRIVATE +ID7819=SectionTag_PUBLIC +ID782=AnsiSpace +ID7820=SectionTag_SEGS +ID7821=SectionTag_SEMREFS +ID7822=SectionTag_SETS +ID7823=SectionTag_STD +ID7824=SectionTag_TEXT +ID7825=SectionTag_TEXTSETS +ID7826=SectionTag_VALLISTS +ID7827=SectionTag_VER +ID7828=SECURITY_LOCAL_SERVICE_RID +ID7829=SECURITY_MAX_ALWAYS_FILTERED +ID783=AnsiStringsToAnsiMultiSz@PAnsiMultiSz@TAnsiStrings +ID7830=SECURITY_MAX_SID_SIZE +ID7831=SECURITY_MIN_NEVER_FILTERED +ID7832=SECURITY_NETWORK_SERVICE_RID +ID7833=SECURITY_NT_NON_UNIQUE_SUB_AUTH_COUNT +ID7834=SECURITY_OTHER_ORGANIZATION_RID +ID7835=SECURITY_PACKAGE_BASE_RID +ID7836=SECURITY_PACKAGE_DIGEST_RID +ID7837=SECURITY_PACKAGE_NTLM_RID +ID7838=SECURITY_PACKAGE_RID_COUNT +ID7839=SECURITY_PACKAGE_SCHANNEL_RID +ID784=AnsiStringStreamCopy@TJclStringStream@TJclStringStream@Longint +ID7840=SECURITY_REMOTE_LOGON_RID +ID7841=SECURITY_RESOURCE_MANAGER_AUTHORITY +ID7842=SECURITY_THIS_ORGANIZATION_RID +ID7843=SEFTextCR +ID7844=SEFTextCRLF +ID7845=SEFTextLF +ID7846=SEFTextSetsCode_Elm0 +ID7847=SEFTextSetsCode_Elm0_Desc +ID7848=SEFTextSetsCode_Elm1 +ID7849=SEFTextSetsCode_Elm1_Desc +ID785=AnsiStringToUCS4@AnsiString +ID7850=SEFTextSetsCode_Elm2 +ID7851=SEFTextSetsCode_Elm2_Desc +ID7852=SEFTextSetsCode_Elm4 +ID7853=SEFTextSetsCode_Elm4_Desc +ID7854=SEFTextSetsCode_Seg0 +ID7855=SEFTextSetsCode_Seg0_Desc +ID7856=SEFTextSetsCode_Seg1 +ID7857=SEFTextSetsCode_Seg1_Desc +ID7858=SEFTextSetsCode_Seg2 +ID7859=SEFTextSetsCode_Seg2_Desc +ID786=AnsiStringToUTF16@AnsiString +ID7860=SEFTextSetsCode_Seg3 +ID7861=SEFTextSetsCode_Seg3_Desc +ID7862=SEFTextSetsCode_Seg4 +ID7863=SEFTextSetsCode_Seg4_Desc +ID7864=SEFTextSetsCode_Seg5 +ID7865=SEFTextSetsCode_Seg5_Desc +ID7866=SEFTextSetsCode_Seg6 +ID7867=SEFTextSetsCode_Seg6_Desc +ID7868=SEFTextSetsCode_Seg7 +ID7869=SEFTextSetsCode_Seg7_Desc +ID787=AnsiStringToUTF8@AnsiString +ID7870=SEFTextSetsCode_Set0 +ID7871=SEFTextSetsCode_Set0_Desc +ID7872=SEFTextSetsCode_Set1 +ID7873=SEFTextSetsCode_Set1_Desc +ID7874=SEFTextSetsCode_Set2 +ID7875=SEFTextSetsCode_Set2_Desc +ID7876=SEFTextSetsCode_Set3 +ID7877=SEFTextSetsCode_Set3_Desc +ID7878=SEFTextSetsCode_Set4 +ID7879=SEFTextSetsCode_Set4_Desc +ID788=AnsiStrSimpleCompare@AnsiString@AnsiString +ID7880=SEFTextSetsCode_Set5 +ID7881=SEFTextSetsCode_Set5_Desc +ID7882=SendCmdLineParams@HWND@HWND +ID7883=SendData@HWND@HWND@TJclAppInstDataKind@Pointer@Integer +ID7884=SendString@HWND@HWND@TJclAppInstDataKind@string +ID7885=SendStrings@HWND@HWND@TJclAppInstDataKind@TStrings +ID7886=SEP_FLAG +ID7887=SERVICE_CONFIG_DESCRIPTION +ID7888=SERVICE_CONFIG_FAILURE_ACTIONS +ID7889=SERVICE_DESCRIPTIONA +ID789=AnsiStrSimpleCompareI@AnsiString@AnsiString +ID7890=SERVICE_DESCRIPTIONA.lpDescription +ID7891=SESSION_ABORTED +ID7892=SESSION_BUFFER +ID7893=SESSION_CRYPT_KLEN +ID7894=SESSION_ESTABLISHED +ID7895=SESSION_HEADER +ID7896=SESSION_PWLEN +ID7897=Set8087ControlWord +ID7898=Set8087Infinity +ID7899=Set8087Precision ID79=!!OVERLOADED_InsertElements_TEDICompositeElement -ID790=BIT_17 -ID7900=TEDIXMLANSIX12FormatTranslator -ID7901=TEDIXMLANSIX12FormatTranslator.ConvertToEDISegment@TEDIXMLSegment -ID7902=TEDIXMLANSIX12FormatTranslator.ConvertToEDITransaction@TEDIXMLTransactionSet -ID7903=TEDIXMLANSIX12FormatTranslator.ConvertToXMLSegment@TEDISegment -ID7904=TEDIXMLANSIX12FormatTranslator.ConvertToXMLTransaction@TEDITransactionSet -ID7905=TEDIXMLANSIX12FormatTranslator.ConvertToXMLTransaction@TEDITransactionSet@TEDITransactionSetSpec -ID7906=TEDIXMLANSIX12FormatTranslator.ConvertTransactionSetLoopToEDI@TEDITransactionSet@TEDIXMLTransactionSetLoop -ID7907=TEDIXMLANSIX12FormatTranslator.ConvertTransactionSetLoopToXML@TEDITransactionSetLoop@TEDIXMLTransactionSetLoop -ID7908=TEDIXMLANSIX12FormatTranslator.Create -ID7909=TEDIXMLANSIX12FormatTranslator.Destroy -ID791=BIT_18 -ID7910=TEDIXMLAttributes -ID7911=TEDIXMLAttributes.CheckAttribute@string@string -ID7912=TEDIXMLAttributes.CombineAttributes -ID7913=TEDIXMLAttributes.Create -ID7914=TEDIXMLAttributes.Destroy -ID7915=TEDIXMLAttributes.FAttributes -ID7916=TEDIXMLAttributes.FDelimiters -ID7917=TEDIXMLAttributes.GetAttributeString@string -ID7918=TEDIXMLAttributes.GetAttributeValue@string -ID7919=TEDIXMLAttributes.ParseAttributes@string -ID792=BIT_19 -ID7920=TEDIXMLAttributes.SetAttribute@string@string -ID7921=TEDIXMLDataObject -ID7922=TEDIXMLDataObject.Assemble -ID7923=TEDIXMLDataObject.Attributes -ID7924=TEDIXMLDataObject.Create@TEDIXMLDataObject -ID7925=TEDIXMLDataObject.CustomData1 -ID7926=TEDIXMLDataObject.CustomData2 -ID7927=TEDIXMLDataObject.Data -ID7928=TEDIXMLDataObject.DataLength -ID7929=TEDIXMLDataObject.Delimiters -ID793=BIT_2 -ID7930=TEDIXMLDataObject.Destroy -ID7931=TEDIXMLDataObject.Disassemble -ID7932=TEDIXMLDataObject.FAttributes -ID7933=TEDIXMLDataObject.FCustomData1 -ID7934=TEDIXMLDataObject.FCustomData2 -ID7935=TEDIXMLDataObject.FData -ID7936=TEDIXMLDataObject.FDelimiters -ID7937=TEDIXMLDataObject.FEDIDOT -ID7938=TEDIXMLDataObject.FErrorLog -ID7939=TEDIXMLDataObject.FLength -ID794=BIT_20 -ID7940=TEDIXMLDataObject.FParent -ID7941=TEDIXMLDataObject.FSpecPointer -ID7942=TEDIXMLDataObject.FState -ID7943=TEDIXMLDataObject.GetData -ID7944=TEDIXMLDataObject.Parent -ID7945=TEDIXMLDataObject.SetData@string -ID7946=TEDIXMLDataObject.SetDelimiters@TEDIXMLDelimiters -ID7947=TEDIXMLDataObject.SpecPointer -ID7948=TEDIXMLDataObject.State -ID7949=TEDIXMLDataObjectArray -ID795=BIT_20_FLAG -ID7950=TEDIXMLDataObjectGroup -ID7951=TEDIXMLDataObjectGroup.AddGroup -ID7952=TEDIXMLDataObjectGroup.AddSegment -ID7953=TEDIXMLDataObjectGroup.AppendEDIDataObject@TEDIXMLDataObject -ID7954=TEDIXMLDataObjectGroup.Create@TEDIXMLDataObject -ID7955=TEDIXMLDataObjectGroup.DeleteEDIDataObject@Integer -ID7956=TEDIXMLDataObjectGroup.DeleteEDIDataObject@TEDIXMLDataObject -ID7957=TEDIXMLDataObjectGroup.DeleteEDIDataObjects -ID7958=TEDIXMLDataObjectGroup.Destroy -ID7959=TEDIXMLDataObjectGroup.EDIDataObject -ID796=BIT_21 -ID7960=TEDIXMLDataObjectGroup.EDIDataObjects -ID7961=TEDIXMLDataObjectGroup.FEDIDataObjects -ID7962=TEDIXMLDataObjectGroup.GetEDIDataObject@Integer -ID7963=TEDIXMLDataObjectGroup.InsertEDIDataObject@Integer@TEDIXMLDataObject -ID7964=TEDIXMLDataObjectGroup.InsertGroup@Integer -ID7965=TEDIXMLDataObjectGroup.InsertSegment@Integer -ID7966=TEDIXMLDataObjectGroup.InternalAssignDelimiters -ID7967=TEDIXMLDataObjectGroup.InternalCreateDataObjectGroup -ID7968=TEDIXMLDataObjectGroup.SearchForSegmentInDataString@string@Integer -ID7969=TEDIXMLDataObjectGroup.SetEDIDataObject@Integer@TEDIXMLDataObject -ID797=BIT_22 -ID7970=TEDIXMLDelimiters -ID7971=TEDIXMLDelimiters.AssignmentDelimiter -ID7972=TEDIXMLDelimiters.BCDataD -ID7973=TEDIXMLDelimiters.BCDataLength -ID7974=TEDIXMLDelimiters.BOfETD -ID7975=TEDIXMLDelimiters.BOfETDLength -ID7976=TEDIXMLDelimiters.BTD -ID7977=TEDIXMLDelimiters.BTDLength -ID7978=TEDIXMLDelimiters.Create -ID7979=TEDIXMLDelimiters.DoubleQuote -ID798=BIT_23 -ID7980=TEDIXMLDelimiters.ECDataD -ID7981=TEDIXMLDelimiters.ECDataLength -ID7982=TEDIXMLDelimiters.ETD -ID7983=TEDIXMLDelimiters.ETDLength -ID7984=TEDIXMLDelimiters.FAssignmentDelimiter -ID7985=TEDIXMLDelimiters.FBeginCDataDelimiter -ID7986=TEDIXMLDelimiters.FBeginCDataLength -ID7987=TEDIXMLDelimiters.FBeginOfEndTagDelimiter -ID7988=TEDIXMLDelimiters.FBeginOfEndTagLength -ID7989=TEDIXMLDelimiters.FBeginTagDelimiter -ID799=BIT_24 -ID7990=TEDIXMLDelimiters.FBeginTagLength -ID7991=TEDIXMLDelimiters.FDoubleQuote -ID7992=TEDIXMLDelimiters.FEndCDataDelimiter -ID7993=TEDIXMLDelimiters.FEndCDataLength -ID7994=TEDIXMLDelimiters.FEndTagDelimiter -ID7995=TEDIXMLDelimiters.FEndTagLength -ID7996=TEDIXMLDelimiters.FSingleQuote -ID7997=TEDIXMLDelimiters.FSpaceDelimiter -ID7998=TEDIXMLDelimiters.SetBeginCDataDelimiter@string -ID7999=TEDIXMLDelimiters.SetBeginOfEndTagDelimiter@string +ID790=AnsiStrSimpleEqualityCompare@AnsiString@AnsiString +ID7900=Set8087Rounding +ID7901=SetAlpha@TColor32@Integer +ID7902=SetBit@Cardinal@TBitRange +ID7903=SetBit@Int64@TBitRange +ID7904=SetBit@Integer@TBitRange +ID7905=SetBit@Shortint@TBitRange +ID7906=SetBit@Smallint@TBitRange +ID7907=SetBit@Word@TBitRange +ID7908=SetBitBuffer@@Cardinal +ID7909=SetBitBuffer@@Int64 +ID791=AnsiStrSimpleEqualityCompareI@AnsiString@AnsiString +ID7910=SetBitmapColors@TBitmap@array of TColor@Integer +ID7911=SetBytesEx@@TBytes +ID7912=SetFileSecurity@LPCTSTR@SECURITY_INFORMATION@PSECURITY_DESCRIPTOR +ID7913=SetFileSecurityA@LPCSTR@SECURITY_INFORMATION@PSECURITY_DESCRIPTOR +ID7914=SetFileSecurityW@LPCWSTR@SECURITY_INFORMATION@PSECURITY_DESCRIPTOR +ID7915=SetGlobalEnvironmentVariable@string@string +ID7916=SetIntegerSet@TIntegerSet@UInt32 +ID7917=SetMasked8087Exceptions +ID7918=SetNamedSecurityInfoW@LPWSTR@SE_OBJECT_TYPE@SECURITY_INFORMATION@PSID@PSID@PACL@PACL +ID7919=SetObjectFontToSystemFont@TObject@TFontType +ID792=AnsiStrSimpleHashConvert@AnsiString +ID7920=SetPCRECalloutCallback@pcre_callout_callback +ID7921=SetPCREFreeCallback@pcre_free_callback +ID7922=SetPCREMallocCallback@pcre_malloc_callback +ID7923=SetPCREStackFreeCallback@pcre_stack_free_callback +ID7924=SetPCREStackMallocCallback@pcre_stack_malloc_callback +ID7925=SetPolarComplexFormatStr@string +ID7926=SetPrinterPixelsPerInch +ID7927=SetRectComplexFormatStr@string +ID7928=SetSevenzipArchiveCompressionProperties@IInterface@IInterface +ID7929=SetSuspendState@BOOL@BOOL@BOOL +ID793=AnsiStrSimpleHashConvertI@AnsiString +ID7930=SetVolumeMountPoint@LPCSTR@LPCSTR +ID7931=SetWaitableTimer@THandle@TLargeInteger@Longint@TFNTimerAPCRoutine@Pointer@BOOL +ID7932=sevenzip.pas +ID7933=SevenzipCheck@HRESULT +ID7934=sfUnicodeLSB +ID7935=sfUnicodeMSB +ID7936=SharedAllocMem@string@Cardinal@Cardinal +ID7937=SharedCloseMem@ +ID7938=SharedFreeMem@ +ID7939=SharedGetMem@@string@Cardinal@Cardinal +ID794=AnsiStrSimpleHashConvertU@AnsiString +ID7940=SharedOpenMem@@string@Cardinal +ID7941=SharedOpenMem@string@Cardinal +ID7942=SHCopy@THandle@string@string@TSHCopyOptions +ID7943=ShellExecEx@string@string@string@Integer +ID7944=ShellLinkIcon@string +ID7945=ShellLinkIcon@TShellLink +ID7946=ShellLinkResolve@string@TShellLink@Cardinal +ID7947=SHEnumSpecialFolderFirst@DWORD@TEnumFolderFlags@TEnumFolderRec +ID7948=SHMove@THandle@string@string@TSHMoveOptions +ID7949=ShortenString@HDC@WideString@Integer@Boolean@Integer +ID795=AnsiStrSimpleHashConvertUI@AnsiString +ID7950=ShortintMask +ID7951=SHPWLEN +ID7952=SHTDN_REASON_FLAG_CLEAN_UI +ID7953=SHTDN_REASON_FLAG_COMMENT_REQUIRED +ID7954=SHTDN_REASON_FLAG_DIRTY_PROBLEM_ID_REQUIRED +ID7955=SHTDN_REASON_FLAG_DIRTY_UI +ID7956=SHTDN_REASON_FLAG_PLANNED +ID7957=SHTDN_REASON_FLAG_USER_DEFINED +ID7958=SHTDN_REASON_LEGACY_API +ID7959=SHTDN_REASON_MAJOR_APPLICATION +ID796=AnsiStrSortProc +ID7960=SHTDN_REASON_MAJOR_HARDWARE +ID7961=SHTDN_REASON_MAJOR_LEGACY_API +ID7962=SHTDN_REASON_MAJOR_NONE +ID7963=SHTDN_REASON_MAJOR_OPERATINGSYSTEM +ID7964=SHTDN_REASON_MAJOR_OTHER +ID7965=SHTDN_REASON_MAJOR_POWER +ID7966=SHTDN_REASON_MAJOR_SOFTWARE +ID7967=SHTDN_REASON_MAJOR_SYSTEM +ID7968=SHTDN_REASON_MINOR_BLUESCREEN +ID7969=SHTDN_REASON_MINOR_CORDUNPLUGGED +ID797=AnsiStx +ID7970=SHTDN_REASON_MINOR_DC_DEMOTION +ID7971=SHTDN_REASON_MINOR_DC_PROMOTION +ID7972=SHTDN_REASON_MINOR_DISK +ID7973=SHTDN_REASON_MINOR_ENVIRONMENT +ID7974=SHTDN_REASON_MINOR_HARDWARE_DRIVER +ID7975=SHTDN_REASON_MINOR_HOTFIX +ID7976=SHTDN_REASON_MINOR_HOTFIX_UNINSTALL +ID7977=SHTDN_REASON_MINOR_HUNG +ID7978=SHTDN_REASON_MINOR_INSTALLATION +ID7979=SHTDN_REASON_MINOR_MAINTENANCE +ID798=AnsiSyn +ID7980=SHTDN_REASON_MINOR_MMC +ID7981=SHTDN_REASON_MINOR_NETWORK_CONNECTIVITY +ID7982=SHTDN_REASON_MINOR_NETWORKCARD +ID7983=SHTDN_REASON_MINOR_NONE +ID7984=SHTDN_REASON_MINOR_OTHER +ID7985=SHTDN_REASON_MINOR_OTHERDRIVER +ID7986=SHTDN_REASON_MINOR_POWER_SUPPLY +ID7987=SHTDN_REASON_MINOR_PROCESSOR +ID7988=SHTDN_REASON_MINOR_RECONFIG +ID7989=SHTDN_REASON_MINOR_SECURITY +ID799=AnsiTab +ID7990=SHTDN_REASON_MINOR_SECURITYFIX +ID7991=SHTDN_REASON_MINOR_SECURITYFIX_UNINSTALL +ID7992=SHTDN_REASON_MINOR_SERVICEPACK +ID7993=SHTDN_REASON_MINOR_SERVICEPACK_UNINSTALL +ID7994=SHTDN_REASON_MINOR_TERMSRV +ID7995=SHTDN_REASON_MINOR_UNSTABLE +ID7996=SHTDN_REASON_MINOR_UPGRADE +ID7997=SHTDN_REASON_MINOR_WMI +ID7998=SHTDN_REASON_UNKNOWN +ID7999=SHTDN_REASON_VALID_BIT_MASK ID8=!!OVERLOADED_AddStrings_TWStrings ID80=!!OVERLOADED_InsertElements_TEDISegment -ID800=BIT_25 -ID8000=TEDIXMLDelimiters.SetBeginTagDelimiter@string -ID8001=TEDIXMLDelimiters.SetEndCDataDelimiter@string -ID8002=TEDIXMLDelimiters.SetEndTagDelimiter@string -ID8003=TEDIXMLDelimiters.SingleQuote -ID8004=TEDIXMLDelimiters.SpaceDelimiter -ID8005=TEDIXMLElement -ID8006=TEDIXMLElement.Assemble -ID8007=TEDIXMLElement.CData -ID8008=TEDIXMLElement.Create@TEDIXMLDataObject -ID8009=TEDIXMLElement.Disassemble -ID801=BIT_26 -ID8010=TEDIXMLElement.FCData -ID8011=TEDIXMLElement.GetIndexPositionFromParent -ID8012=TEDIXMLElement.InternalAssignDelimiters -ID8013=TEDIXMLElementArray -ID8014=TEDIXMLFile -ID8015=TEDIXMLFile.Assemble -ID8016=TEDIXMLFile.Create@TEDIXMLDataObject -ID8017=TEDIXMLFile.Destroy -ID8018=TEDIXMLFile.Disassemble -ID8019=TEDIXMLFile.FEDIXMLFileHeader -ID802=BIT_27 -ID8020=TEDIXMLFile.FFileID -ID8021=TEDIXMLFile.FFileName -ID8022=TEDIXMLFile.FileID -ID8023=TEDIXMLFile.FileName -ID8024=TEDIXMLFile.InternalAssignDelimiters -ID8025=TEDIXMLFile.InternalCreateDataObjectGroup -ID8026=TEDIXMLFile.InternalLoadFromFile -ID8027=TEDIXMLFile.LoadFromFile@string -ID8028=TEDIXMLFile.ReLoadFromFile -ID8029=TEDIXMLFile.SaveAsToFile@string -ID803=BIT_28 -ID8030=TEDIXMLFile.SaveToFile -ID8031=TEDIXMLFile.XMLFileHeader -ID8032=TEDIXMLFileHeader -ID8033=TEDIXMLFileHeader.Attributes -ID8034=TEDIXMLFileHeader.Create -ID8035=TEDIXMLFileHeader.Delimiters -ID8036=TEDIXMLFileHeader.Destroy -ID8037=TEDIXMLFileHeader.FAttributes -ID8038=TEDIXMLFileHeader.FDelimiters -ID8039=TEDIXMLFileHeader.FXMLNameSpaceOption -ID804=BIT_29 -ID8040=TEDIXMLFileHeader.OutputAdditionalXMLHeaderAttributes -ID8041=TEDIXMLFileHeader.OutputXMLHeader -ID8042=TEDIXMLFileHeader.ParseXMLHeader@string -ID8043=TEDIXMLFileHeader.XMLNameSpaceOption -ID8044=TEDIXMLFunctionalGroup -ID8045=TEDIXMLFunctionalGroup.Assemble -ID8046=TEDIXMLFunctionalGroup.Create@TEDIXMLDataObject -ID8047=TEDIXMLFunctionalGroup.Destroy -ID8048=TEDIXMLFunctionalGroup.Disassemble -ID8049=TEDIXMLFunctionalGroup.FGESegment -ID805=BIT_3 -ID8050=TEDIXMLFunctionalGroup.FGSSegment -ID8051=TEDIXMLFunctionalGroup.InternalAssignDelimiters -ID8052=TEDIXMLFunctionalGroup.InternalCreateDataObjectGroup -ID8053=TEDIXMLFunctionalGroup.SegmentGE -ID8054=TEDIXMLFunctionalGroup.SegmentGS -ID8055=TEDIXMLFunctionalGroupSegment -ID8056=TEDIXMLFunctionalGroupSegment.Create@TEDIXMLDataObject -ID8057=TEDIXMLFunctionalGroupSegment.Create@TEDIXMLDataObject@Integer -ID8058=TEDIXMLFunctionalGroupSegment.InternalAssignDelimiters -ID8059=TEDIXMLInterchangeControl -ID806=BIT_30 -ID8060=TEDIXMLInterchangeControl.Assemble -ID8061=TEDIXMLInterchangeControl.Create@TEDIXMLDataObject -ID8062=TEDIXMLInterchangeControl.Destroy -ID8063=TEDIXMLInterchangeControl.Disassemble -ID8064=TEDIXMLInterchangeControl.FIEASegment -ID8065=TEDIXMLInterchangeControl.FISASegment -ID8066=TEDIXMLInterchangeControl.InternalAssignDelimiters -ID8067=TEDIXMLInterchangeControl.InternalCreateDataObjectGroup -ID8068=TEDIXMLInterchangeControl.SegmentIEA -ID8069=TEDIXMLInterchangeControl.SegmentISA -ID807=BIT_30_FLAG -ID8070=TEDIXMLInterchangeControlSegment -ID8071=TEDIXMLInterchangeControlSegment.Create@TEDIXMLDataObject -ID8072=TEDIXMLInterchangeControlSegment.Create@TEDIXMLDataObject@Integer -ID8073=TEDIXMLInterchangeControlSegment.InternalAssignDelimiters -ID8074=TEDIXMLNameSpaceOption -ID8075=TEDIXMLNameSpaceOption.nsDefault -ID8076=TEDIXMLNameSpaceOption.nsNone -ID8077=TEDIXMLNameSpaceOption.nsQualified -ID8078=TEDIXMLObject -ID8079=TEDIXMLObjectArray -ID808=BIT_31 -ID8080=TEDIXMLSegment -ID8081=TEDIXMLSegment.AddElement -ID8082=TEDIXMLSegment.AddElements@Integer -ID8083=TEDIXMLSegment.AppendElement@TEDIXMLElement -ID8084=TEDIXMLSegment.AppendElements@TEDIXMLElementArray -ID8085=TEDIXMLSegment.Assemble -ID8086=TEDIXMLSegment.Create@TEDIXMLDataObject -ID8087=TEDIXMLSegment.Create@TEDIXMLDataObject@Integer -ID8088=TEDIXMLSegment.DeleteElement@Integer -ID8089=TEDIXMLSegment.DeleteElement@TEDIXMLElement -ID809=BIT_4 -ID8090=TEDIXMLSegment.DeleteElements -ID8091=TEDIXMLSegment.DeleteElements@Integer@Integer -ID8092=TEDIXMLSegment.Destroy -ID8093=TEDIXMLSegment.Disassemble -ID8094=TEDIXMLSegment.Element -ID8095=TEDIXMLSegment.Elements -ID8096=TEDIXMLSegment.FElements -ID8097=TEDIXMLSegment.FSegmentID -ID8098=TEDIXMLSegment.GetElement@Integer -ID8099=TEDIXMLSegment.GetIndexPositionFromParent +ID800=AnsiUpOffset +ID8000=ShutDownDialog@string@DWORD@Boolean@Boolean +ID8001=ShutDownDialog@string@string@DWORD@Boolean@Boolean +ID8002=SID +ID8003=SID_AND_ATTRIBUTES +ID8004=SID_AND_ATTRIBUTES_ARRAY +ID8005=SID_IDENTIFIER_AUTHORITY +ID8006=SID_MAX_SUB_AUTHORITIES +ID8007=SID_RECOMMENDED_SUB_AUTHORITIES +ID8008=SID_REVISION +ID8009=SIDToString@PSID +ID801=AnsiUppercaseLetters +ID8010=SidTypeAlias +ID8011=SidTypeComputer +ID8012=SidTypeDeletedAccount +ID8013=SidTypeDomain +ID8014=SidTypeGroup +ID8015=SidTypeInvalid +ID8016=SidTypeUnknown +ID8017=SidTypeUser +ID8018=SidTypeWellKnownGroup +ID8019=SimpleCompare@TObject@TObject +ID802=AnsiUs +ID8020=SimpleEqualityCompare@TObject@TObject +ID8021=SimpleHashConvert@TObject +ID8022=SimpleLog +ID8023=SimpleXMLDecode@string@Boolean +ID8024=SimpleXMLEncode@string +ID8025=Sin@TRectComplex +ID8026=SinCos@Extended@Extended@Extended +ID8027=SinCos@Single@Single@Single +ID8028=SingleSimpleCompare@Single@Single +ID8029=SingleSimpleEqualityCompare@Single@Single +ID803=AnsiValidIdentifierLetters +ID8030=SingleSimpleHashConvert@Single +ID8031=SingleSortProc +ID8032=SinH@TRectComplex +ID8033=sivFirst +ID8034=sivFourth +ID8035=sivLast +ID8036=sivSecond +ID8037=sivThird +ID8038=SizeInt +ID8039=SIZEOF_RFPO_DATA +ID804=AnsiVerticalTab +ID8040=SizeOfIStreamContents@IStream +ID8041=sLineBreak +ID8042=SmallintMask +ID8043=SNLEN +ID8044=Snmp.pas +ID8045=SnmpExtensionLoaded +ID8046=SnmpLoaded +ID8047=Sort@IJclAnsiStrList@Integer@Integer@TAnsiStrCompare +ID8048=Sort@IJclCardinalList@Integer@Integer@TCardinalCompare +ID8049=Sort@IJclDoubleList@Integer@Integer@TDoubleCompare +ID805=AnsiWhiteSpace +ID8050=Sort@IJclExtendedList@Integer@Integer@TExtendedCompare +ID8051=Sort@IJclInt64List@Integer@Integer@TInt64Compare +ID8052=Sort@IJclIntegerList@Integer@Integer@TIntegerCompare +ID8053=Sort@IJclIntfList@Integer@Integer@TIntfCompare +ID8054=Sort@IJclList@Integer@Integer@TCompare +ID8055=Sort@IJclPtrList@Integer@Integer@TPtrCompare +ID8056=Sort@IJclSingleList@Integer@Integer@TSingleCompare +ID8057=Sort@IJclStrList@Integer@Integer@TStrCompare +ID8058=Sort@IJclUnicodeStrList@Integer@Integer@TUnicodeStrCompare +ID8059=Sort@IJclWideStrList@Integer@Integer@TWideStrCompare +ID806=ANYSIZE_ARRAY +ID8060=SortDynArray@Pointer@Cardinal@TDynArraySortCompare +ID8061=SORTIDFROMLCID@LCID +ID8062=SortProc +ID8063=SORTVERSIONFROMLCID@LCID +ID8064=Source files +ID8065=SourceDescriptionCPP +ID8066=SourceDescriptionPAS +ID8067=SourceExtensionBCBPackage +ID8068=SourceExtensionBCBProject +ID8069=SourceExtensionBDSProject +ID807=APIC_FLAG +ID8070=SourceExtensionConfiguration +ID8071=SourceExtensionCPP +ID8072=SourceExtensionDelphiPackage +ID8073=SourceExtensionDelphiProject +ID8074=SourceExtensionDFM +ID8075=SourceExtensionDOFProject +ID8076=SourceExtensionDProject +ID8077=SourceExtensionH +ID8078=SourceExtensionPAS +ID8079=SourceExtensionXFM +ID808=AppendCompositeElementTo@TEDISEFDataObjectGroup@TEDISEFCompositeElement +ID8080=SourceFiles +ID8081=Sqrt10 +ID8082=Sqrt2 +ID8083=Sqrt2Pi +ID8084=Sqrt3 +ID8085=Sqrt5 +ID8086=SqrtPi +ID8087=SS_FLAG +ID8088=SSE_FLAG +ID8089=SSE2_FLAG +ID809=AppendElementTo@TEDISEFDataObjectGroup@TEDISEFElement +ID8090=ssPendingStates +ID8091=stAllTypeService +ID8092=StartServiceByName@String@String +ID8093=STARTUP_CONCURRENT_GC +ID8094=STARTUP_LOADER_OPTIMIZATION_MASK +ID8095=STARTUP_LOADER_OPTIMIZATION_MULTI_DOMAIN +ID8096=STARTUP_LOADER_OPTIMIZATION_MULTI_DOMAIN_HOST +ID8097=STARTUP_LOADER_OPTIMIZATION_SINGLE_DOMAIN +ID8098=STARTUP_LOADER_SAFEMODE +ID8099=STARTUP_LOADER_SETPREFERENCE ID81=!!OVERLOADED_InsertElements_TEDIXMLSegment -ID810=BIT_5 -ID8100=TEDIXMLSegment.InsertElement@Integer -ID8101=TEDIXMLSegment.InsertElement@Integer@TEDIXMLElement -ID8102=TEDIXMLSegment.InsertElements@Integer@Integer -ID8103=TEDIXMLSegment.InsertElements@Integer@TEDIXMLElementArray -ID8104=TEDIXMLSegment.InternalAssignDelimiters -ID8105=TEDIXMLSegment.InternalCreateElement -ID8106=TEDIXMLSegment.SegmentID -ID8107=TEDIXMLSegment.SetElement@Integer@TEDIXMLElement -ID8108=TEDIXMLSegmentArray -ID8109=TEDIXMLTransactionSet -ID811=BIT_6 -ID8110=TEDIXMLTransactionSet.Assemble -ID8111=TEDIXMLTransactionSet.Create@TEDIXMLDataObject -ID8112=TEDIXMLTransactionSet.Destroy -ID8113=TEDIXMLTransactionSet.Disassemble -ID8114=TEDIXMLTransactionSet.FSESegment -ID8115=TEDIXMLTransactionSet.FSTSegment -ID8116=TEDIXMLTransactionSet.InternalAssignDelimiters -ID8117=TEDIXMLTransactionSet.InternalCreateDataObjectGroup -ID8118=TEDIXMLTransactionSet.SegmentSE -ID8119=TEDIXMLTransactionSet.SegmentST -ID812=BIT_7 -ID8120=TEDIXMLTransactionSetLoop -ID8121=TEDIXMLTransactionSetLoop.Assemble -ID8122=TEDIXMLTransactionSetLoop.Create@TEDIXMLDataObject -ID8123=TEDIXMLTransactionSetLoop.Destroy -ID8124=TEDIXMLTransactionSetLoop.Disassemble -ID8125=TEDIXMLTransactionSetLoop.FParentTransactionSet -ID8126=TEDIXMLTransactionSetLoop.InternalAssignDelimiters -ID8127=TEDIXMLTransactionSetLoop.InternalCreateDataObjectGroup -ID8128=TEDIXMLTransactionSetLoop.ParentTransactionSet -ID8129=TEDIXMLTransactionSetSegment -ID813=BIT_8 -ID8130=TEDIXMLTransactionSetSegment.Create@TEDIXMLDataObject -ID8131=TEDIXMLTransactionSetSegment.Create@TEDIXMLDataObject@Integer -ID8132=TEDIXMLTransactionSetSegment.InternalAssignDelimiters -ID8133=TerminateLocaleSupport -ID8134=TestBit@Cardinal@TBitRange -ID8135=TestBit@Int64@TBitRange -ID8136=TestBit@Integer@TBitRange -ID8137=TestBit@Shortint@TBitRange -ID8138=TestBit@Smallint@TBitRange -ID8139=TestBit@Word@TBitRange -ID814=BIT_9 -ID8140=TestBitBuffer@@Cardinal -ID8141=TestBits@Cardinal@Cardinal -ID8142=TestBits@Int64@Int64 -ID8143=TestBits@Integer@Integer -ID8144=TestBits@Shortint@Shortint -ID8145=TestBits@Smallint@Smallint -ID8146=TestBits@Word@Word -ID8147=TEventInfo -ID8148=TEventInfo.EventType -ID8149=TEventInfo.Signaled -ID815=BitmapToIcon@HBITMAP@Integer@Integer -ID8150=TFileEnumeratorSyncMode -ID8151=TFileEnumeratorSyncMode.smPerDirectory -ID8152=TFileEnumeratorSyncMode.smPerFile -ID8153=TFileFlag -ID8154=TFileFlag.ffDebug -ID8155=TFileFlag.ffInfoInferred -ID8156=TFileFlag.ffPatched -ID8157=TFileFlag.ffPreRelease -ID8158=TFileFlag.ffPrivateBuild -ID8159=TFileFlag.ffSpecialBuild -ID816=BitsHighest@Cardinal -ID8160=TFileHandler -ID8161=TFileHandlerEx -ID8162=TFileListOption -ID8163=TFileListOption.flFullNames -ID8164=TFileListOption.flMaskedSubfolders -ID8165=TFileListOption.flRecursive -ID8166=TFileMatchFunc -ID8167=TFileSearchOption -ID8168=TFileSearchOption.fsIncludeHiddenSubDirectories -ID8169=TFileSearchOption.fsIncludeSubDirectories -ID817=BitsHighest@Int64 -ID8170=TFileSearchOption.fsLastChangeAfter -ID8171=TFileSearchOption.fsLastChangeBefore -ID8172=TFileSearchOption.fsMaxSize -ID8173=TFileSearchOption.fsMinSize -ID8174=TFileSearchTaskID -ID8175=TFileSearchTerminationEvent -ID8176=TFileSystemFlag -ID8177=TFileSystemFlag.fsCasePreservedNames -ID8178=TFileSystemFlag.fsCaseSensitive -ID8179=TFileSystemFlag.fsPersistentACLs -ID818=BitsHighest@Integer -ID8180=TFileSystemFlag.fsSupportsEncryption -ID8181=TFileSystemFlag.fsSupportsFileCompression -ID8182=TFileSystemFlag.fsSupportsNamedStreams -ID8183=TFileSystemFlag.fsSupportsObjectIds -ID8184=TFileSystemFlag.fsSupportsRemoteStorage -ID8185=TFileSystemFlag.fsSupportsReparsePoints -ID8186=TFileSystemFlag.fsSupportsSparseFiles -ID8187=TFileSystemFlag.fsSupportsUnicodeOnDisk -ID8188=TFileSystemFlag.fsSupportsVolumeQuotas -ID8189=TFileSystemFlag.fsVolumeIsCompressed -ID819=BitsHighest@ShortInt -ID8190=TFileSystemFlag.fsVolumeIsReadOnly -ID8191=TFileSystemFlags -ID8192=TFileTime -ID8193=TFileVersionFormat -ID8194=TFileVersionFormat.vfFull -ID8195=TFileVersionFormat.vfMajorMinor -ID8196=TFindNameBuffer -ID8197=TFindNameHeader -ID8198=TFloat32Func -ID8199=TFloat64Func +ID810=AppendLoopTo@TEDISEFDataObjectGroup@TEDISEFLoop +ID8100=stat64@PChar@TStatBuf64 +ID8101=StdError@Float@Integer +ID8102=StdError@TDynFloatArray +ID8103=stDriverService +ID8104=StgCreateStorageEx@PWideChar@DWORD@DWORD@DWORD@PSTGOPTIONS@Pointer@PGUID@IInterface +ID8105=STGFMT_ANY +ID8106=STGFMT_DOCFILE +ID8107=STGFMT_DOCUMENT +ID8108=STGFMT_FILE +ID8109=STGFMT_NATIVE +ID811=AppendRepeatingPatternTo@TEDISEFDataObjectGroup@TEDISEFRepeatingPattern +ID8110=STGFMT_STORAGE +ID8111=StgOpenStorageEx@PWideChar@DWORD@DWORD@DWORD@PSTGOPTIONS@Pointer@PGUID@IInterface +ID8112=STGOPTIONS +ID8113=StopServiceByName@String@String +ID8114=StrAddRef@string +ID8115=StrAfter@string@string +ID8116=StrAllocSize@string +ID8117=StrAnsiToOem@AnsiString +ID8118=StrAnsiToOem@string +ID8119=STRANSMETA_BIT_10 +ID812=AppendSegmentTo@TEDISEFDataObjectGroup@TEDISEFSegment +ID8120=STRANSMETA_BIT_11 +ID8121=STRANSMETA_BIT_12 +ID8122=STRANSMETA_BIT_13 +ID8123=STRANSMETA_BIT_14 +ID8124=STRANSMETA_BIT_15 +ID8125=STRANSMETA_BIT_16 +ID8126=STRANSMETA_BIT_17 +ID8127=STRANSMETA_BIT_18 +ID8128=STRANSMETA_BIT_19 +ID8129=STRANSMETA_BIT_2 +ID813=AppendSubElementTo@TEDISEFDataObjectGroup@TEDISEFSubElement +ID8130=STRANSMETA_BIT_20 +ID8131=STRANSMETA_BIT_21 +ID8132=STRANSMETA_BIT_22 +ID8133=STRANSMETA_BIT_23 +ID8134=STRANSMETA_BIT_24 +ID8135=STRANSMETA_BIT_25 +ID8136=STRANSMETA_BIT_26 +ID8137=STRANSMETA_BIT_27 +ID8138=STRANSMETA_BIT_28 +ID8139=STRANSMETA_BIT_29 +ID814=AppendTableTo@TEDISEFDataObjectGroup@TEDISEFTable +ID8140=STRANSMETA_BIT_30 +ID8141=STRANSMETA_BIT_31 +ID8142=STRANSMETA_BIT_4 +ID8143=STRANSMETA_BIT_5 +ID8144=STRANSMETA_BIT_6 +ID8145=STRANSMETA_BIT_9 +ID8146=STRANSMETA_LONGRUN +ID8147=STRANSMETA_LRTI +ID8148=STRANSMETA_PTTI1 +ID8149=STRANSMETA_PTTI2 +ID815=AppInstCmdLineDataKind +ID8150=STRANSMETA_RECOVERY +ID8151=StrBefore@string@string +ID8152=StrBetween@string@Char@Char +ID8153=StrCaseMap +ID8154=StrCaseMapReady +ID8155=StrCaseMapSize +ID8156=StrCenter@string@Integer@Char +ID8157=StrCenter@string@SizeInt@Char +ID8158=StrCharCount@string@Char +ID8159=StrCharPosLower@AnsiString@SizeInt +ID816=AppInstDataKindNoData +ID8160=StrCharPosLower@string@Integer +ID8161=StrCharPosLower@string@SizeInt +ID8162=StrCharPosUpper@AnsiString@SizeInt +ID8163=StrCharPosUpper@string@Integer +ID8164=StrCharPosUpper@string@SizeInt +ID8165=StrCharsCount@string@array of Char +ID8166=StrCharsCount@string@TCharValidator +ID8167=StrCharsCount@string@TSysCharSet +ID8168=StrCharTypes +ID8169=StrChopRight@string@Integer +ID817=Apply@IJclAnsiStrIterator@Integer@TAnsiStrApplyFunction +ID8170=StrChopRight@string@SizeInt +ID8171=StrCompare@string@string +ID8172=StrCompare@string@string@Boolean +ID8173=StrCompareRange@string@string@Integer@Integer +ID8174=StrCompareRange@string@string@SizeInt@SizeInt@Boolean +ID8175=StrCompareRangeEx@AnsiString@AnsiString@SizeInt@SizeInt@Boolean +ID8176=StrCompareRangeEx@string@string@SizeInt@SizeInt@Boolean +ID8177=StrConsistsOfNumberChars@string +ID8178=StrContainsChars@string@array of Char@Boolean +ID8179=StrContainsChars@string@TCharValidator@Boolean +ID818=Apply@IJclCardinalIterator@Integer@TCardinalApplyFunction +ID8180=StrContainsChars@string@TSysCharSet@Boolean +ID8181=StrDecRef@string +ID8182=StrDisposeAndNilW@PWideChar +ID8183=StrDoubleQuote@string +ID8184=StreamCopy@TStream@TStream@Longint +ID8185=StreamDefaultBufferSize +ID8186=Streams +ID8187=StreamSeek@TStream@Int64@TSeekOrigin +ID8188=StreamToVariantArray@IStream +ID8189=StreamToVariantArray@TStream +ID819=Apply@IJclDoubleIterator@Integer@TDoubleApplyFunction +ID8190=StrEnsureNoPrefix@string@string +ID8191=StrEnsureNoSuffix@string@string +ID8192=StrEnsurePrefix@string@string +ID8193=StrEnsureSuffix@string@string +ID8194=StrEscapedToString@string +ID8195=StrExpandTabs@string@SizeInt +ID8196=StrFillChar@Char@Integer +ID8197=StrFind@string@string@Integer +ID8198=StrFind@string@string@SizeInt +ID8199=StrHasPrefix@string@array of string ID82=!!OVERLOADED_InsertFunctionalGroup_TEDIInterchangeControl -ID820=BitsHighest@SmallInt -ID8200=TFloat80Func -ID8201=TFNCreateHardLinkA -ID8202=TFNCreateHardLinkW -ID8203=TFontCharSet -ID8204=TFontType -ID8205=TFontType.ftAuto -ID8206=TFontType.ftCaption -ID8207=TFontType.ftContent -ID8208=TFpoData -ID8209=TFreeSysResKind -ID821=BitsHighest@Word -ID8210=TFreeSysResKind.rtGdi -ID8211=TFreeSysResKind.rtSystem -ID8212=TFreeSysResKind.rtUser -ID8213=TFreeSystemResources -ID8214=TFreeSystemResources.GdiRes -ID8215=TFreeSystemResources.SystemRes -ID8216=TFreeSystemResources.UserRes -ID8217=TGenericReparseBuffer -ID8218=TGenericReparseBuffer.DataBuffer -ID8219=TGetFileExInfoLevels -ID822=BitsLowest@Cardinal -ID8220=TGlobalTypeInfo -ID8221=TGlobalTypeInfo.Count -ID8222=TGlobalTypeInfo.Offsets -ID8223=TGroupInfo0 -ID8224=TGroupInfo1 -ID8225=THLSValue -ID8226=THLSVector -ID8227=THLSVector.Hue -ID8228=THLSVector.Luminance -ID8229=THLSVector.Saturation -ID823=BitsLowest@Int64 -ID8230=ThreeEpsDouble -ID8231=ThreeEpsExtended -ID8232=ThreeEpsilon -ID8233=ThreeEpsSingle -ID8234=ThreePi -ID8235=TIIDUnion -ID8236=TIIDUnion.Characteristics -ID8237=TIIDUnion.OriginalFirstThunk -ID8238=TImageArchitectureEntry -ID8239=TImageArchitectureHeader -ID824=BitsLowest@Integer -ID8240=TImageArchiveMemberHeader -ID8241=TImageCoffSymbolsHeader -ID8242=TImageCorILMethodFat -ID8243=TImageCorILMethodHeader -ID8244=TImageCorILMethodHeader.Fat -ID8245=TImageCorILMethodHeader.Tiny -ID8246=TImageCorILMethodSectEH -ID8247=TImageCorILMethodSectEHClauseFat -ID8248=TImageCorILMethodSectEHClauseSmall -ID8249=TImageCorILMethodSectEHFat -ID825=BitsLowest@Shortint -ID8250=TImageCorILMethodSectEHSmall -ID8251=TImageCorILMethodSectFat -ID8252=TImageCorILMethodSectHeader -ID8253=TImageCorILMethodSectHeader.Fat -ID8254=TImageCorILMethodSectHeader.Small -ID8255=TImageCorILMethodSectSmall -ID8256=TImageCorILMethodTiny -ID8257=TImageCorVTableFixup -ID8258=TImageCorVTableFixupArray -ID8259=TImageDataDirectory -ID826=BitsLowest@Smallint -ID8260=TImageDebugMisc -ID8261=TImageFileHeader -ID8262=TImageFunctionEntry -ID8263=TImageFunctionEntry64 -ID8264=TImageHlpLine -ID8265=TImageLineNumber -ID8266=TImageLoadConfigDirectory32 -ID8267=TImageLoadConfigDirectory64 -ID8268=TImageNtHeaders32 -ID8269=TImageNtHeaders64 -ID827=BitsLowest@Word -ID8270=TImageOptionalHeader32 -ID8271=TImageOptionalHeader64 -ID8272=TImageResourceDirectoryString -ID8273=TImageRomHeaders -ID8274=TImageRomOptionalHeader -ID8275=TImageSectionHeader -ID8276=TImageSeparateDebugHeader -ID8277=TImageThunkData32 -ID8278=TImageThunkData64 -ID8279=TImageTlsCallback -ID828=BitsNeeded@Int64 -ID8280=TImageTlsDirectory32 -ID8281=TImageTlsDirectory64 -ID8282=TIMEQ_FOREVER -ID8283=TimeStampDOW@TTimeStamp -ID8284=TImgDelayDescrV1 -ID8285=TImgDelayDescrV2 -ID8286=TImgLineNoType -ID8287=TImgLineNoType.SymbolTableIndex -ID8288=TImgLineNoType.VirtualAddress -ID8289=TImgSecHdrMisc -ID829=BitsNeeded@Integer -ID8290=TImgSecHdrMisc.PhysicalAddress -ID8291=TImgSecHdrMisc.VirtualSize -ID8292=TImportObjectHeader -ID8293=TImportObjectNameType -ID8294=TImportObjectType -ID8295=TIntegerSet -ID8296=TInternalFindStreamData -ID8297=TInternalFindStreamData.Context -ID8298=TInternalFindStreamData.FileHandle -ID8299=TInternalFindStreamData.StreamIds +ID820=Apply@IJclExtendedIterator@Integer@TExtendedApplyFunction +ID8200=StrIdent@AnsiString@SizeInt@AnsiString +ID8201=StrIdent@PAnsiChar@AnsiString +ID8202=StrIdent@PChar@string +ID8203=StrIdent@string@SizeInt@string +ID8204=StrILastPos@string@string +ID8205=StrIndex@string@array of string +ID8206=StrIndex@string@array of string@Boolean +ID8207=String bases +ID8208=StringGetNextChar@string@SizeInt +ID8209=StringManipulation +ID821=Apply@IJclInt64Iterator@Integer@TInt64ApplyFunction +ID8210=StringOf@array of Byte +ID8211=StringOf@Pointer@Cardinal +ID8212=StringRemove@string@string@TReplaceFlags +ID8213=StringReplace@string@string@string@TReplaceFlags +ID8214=StringSetNextChar@string@SizeInt@UCS4 +ID8215=StringSkipChars@string@SizeInt@SizeInt +ID8216=StringsToMultiSz@PMultiSz@TStrings +ID8217=StringsToMultiSz@PWideMultiSz@TJclWideStrings +ID8218=StringsToPCharVector@PCharVector@TStrings +ID8219=StringsToStr@TStrings@string@Boolean +ID822=Apply@IJclIntegerIterator@Integer@TIntegerApplyFunction +ID8220=StringStreamCopy@TJclStringStream@TJclStringStream@Longint +ID8221=StringToAnsiByteArray@string +ID8222=StringToByteArray@string +ID8223=StringToFile@string@AnsiString +ID8224=StringToFile@string@RawByteString AnsiString@Boolean +ID8225=StringToSID@String@PSID@DWORD +ID8226=StringToUCS4@string +ID8227=StringToUTF16@string +ID8228=StringToUTF8@string +ID8229=StrIPos@string@string +ID823=Apply@IJclIntfIterator@Integer@TIntfApplyFunction +ID8230=StrIsAlpha@string +ID8231=StrIsAlphaNum@string +ID8232=StrIsAlphaNumUnderscore@string +ID8233=StrIsDigit@string +ID8234=StrIsOneOf@string@array of string +ID8235=StrIsSubset@string@array of Char +ID8236=StrIsSubset@string@TCharValidator +ID8237=StrIsSubset@string@TSysCharSet +ID8238=StrIToStrings@AnsiString@AnsiString@TJclAnsiStrings@Boolean +ID8239=StrIToStrings@AnsiString@AnsiString@TStrings@Boolean +ID824=Apply@IJclIterator@Integer@TApplyFunction +ID8240=StrIToStrings@string@string@TStrings@Boolean +ID8241=StrKeepChars@string@array of Char +ID8242=StrKeepChars@string@TCharValidator +ID8243=StrKeepChars@string@TSysCharSet +ID8244=StrLastPos@string@string +ID8245=StrLeft@string@Integer +ID8246=StrLeft@string@SizeInt +ID8247=StrLen@PChar +ID8248=StrLength@string +ID8249=StrLICompW2@PWideChar@PWideChar@Cardinal +ID825=Apply@IJclPtrIterator@Integer@TPtrApplyFunction +ID8250=StrLICompW2@PWideChar@PWideChar@SizeInt +ID8251=StrLoOffset +ID8252=StrLower@string +ID8253=StrLowerBuff@PChar +ID8254=StrLowerInPlace@string +ID8255=StrMatch@string@string@Integer +ID8256=StrMatch@string@string@SizeInt +ID8257=StrMatches@string@string@Integer +ID8258=StrMatches@string@string@SizeInt +ID8259=StrMid@string@Integer@Integer +ID826=Apply@IJclSingleIterator@Integer@TSingleApplyFunction +ID8260=StrMid@string@SizeInt@SizeInt +ID8261=StrMove@string@string@Integer@Integer@Integer +ID8262=StrMove@string@string@SizeInt@SizeInt@SizeInt +ID8263=StrNewW@WideString +ID8264=StrNIPos@string@string@Integer +ID8265=StrNIPos@string@string@SizeInt +ID8266=StrNPos@string@string@Integer +ID8267=StrNPos@string@string@SizeInt +ID8268=StrOemToAnsi@AnsiString +ID8269=StrOemToAnsi@string +ID827=Apply@IJclStrIterator@Integer@TStrApplyFunction +ID8270=StrOptimizeTabs@string@SizeInt +ID8271=StrPadLeft@string@Integer@Char +ID8272=StrPadLeft@string@SizeInt@Char +ID8273=StrPadRight@string@Integer@Char +ID8274=StrPadRight@string@SizeInt@Char +ID8275=StrPCopyWW@PWideChar@WideString +ID8276=StrPLCopyWW@PWideChar@WideString@Cardinal +ID8277=StrPLCopyWW@PWideChar@WideString@SizeInt +ID8278=StrPrefixIndex@string@array of string +ID8279=StrProper@string +ID828=Apply@IJclUnicodeStrIterator@Integer@TUnicodeStrApplyFunction +ID8280=StrProperBuff@PChar +ID8281=StrQuote@string@Char +ID8282=StrRefCount@string +ID8283=StrRemoveChars@string@array of Char +ID8284=StrRemoveChars@string@TCharValidator +ID8285=StrRemoveChars@string@TSysCharSet +ID8286=StrRemoveEndChars@string@array of Char +ID8287=StrRemoveEndChars@string@TCharValidator +ID8288=StrRemoveLeadingChars@string@array of Char +ID8289=StrRemoveLeadingChars@string@TCharValidator +ID829=Apply@IJclWideStrIterator@Integer@TWideStrApplyFunction +ID8290=StrReOffset +ID8291=StrRepeat@string@Integer +ID8292=StrRepeat@string@SizeInt +ID8293=StrRepeatChar@AnsiChar@SizeInt +ID8294=StrRepeatChar@Char@SizeInt +ID8295=StrRepeatLength@AnsiString@SizeInt +ID8296=StrRepeatLength@string@Integer +ID8297=StrRepeatLength@string@SizeInt +ID8298=StrReplace@string@string@string@TReplaceFlags +ID8299=StrReplaceButChars@string@array of Char@Char ID83=!!OVERLOADED_InsertFunctionalGroups_TEDIInterchangeControl -ID830=BitsNeeded@Word -ID8300=TIntfApplyFunction -ID8301=TIntfCompare -ID8302=TIntfSortProc -ID8303=TJclAddr -ID8304=TJclAddr32 -ID8305=TJclAddr64 -ID8306=TJclAllowedPowerOperation -ID8307=TJclAllowedPowerOperation.apoHibernate -ID8308=TJclAllowedPowerOperation.apoShutdown -ID8309=TJclAllowedPowerOperation.apoSuspend -ID831=BitsPerByte -ID8310=TJclAllowedPowerOperations -ID8311=TJclAnsiCaptureOffset -ID8312=TJclAnsiCaptureOffset.FirstPos -ID8313=TJclAnsiCaptureOffset.LastPos -ID8314=TJclAnsiCaptureRange -ID8315=TJclAnsiCaptureRange.FirstPos -ID8316=TJclAnsiCaptureRange.LastPos -ID8317=TJclAnsiRegEx -ID8318=TJclAnsiRegEx.CalloutHandler@pcre_callout_block -ID8319=TJclAnsiRegEx.CaptureCount -ID832=BitsPerCardinal -ID8320=TJclAnsiRegEx.CaptureNameCount -ID8321=TJclAnsiRegEx.CaptureNames -ID8322=TJclAnsiRegEx.CaptureOffset -ID8323=TJclAnsiRegEx.CaptureRanges -ID8324=TJclAnsiRegEx.Captures -ID8325=TJclAnsiRegEx.Compile@AnsiString@Boolean@Boolean -ID8326=TJclAnsiRegEx.Create -ID8327=TJclAnsiRegEx.Destroy -ID8328=TJclAnsiRegEx.DfaMode -ID8329=TJclAnsiRegEx.ErrorCode -ID833=BitsPerInt64 -ID8330=TJclAnsiRegEx.ErrorMessage -ID8331=TJclAnsiRegEx.ErrorOffset -ID8332=TJclAnsiRegEx.FCaptureCount -ID8333=TJclAnsiRegEx.FChangedCaptures -ID8334=TJclAnsiRegEx.FCode -ID8335=TJclAnsiRegEx.FDfaMode -ID8336=TJclAnsiRegEx.FErrorCode -ID8337=TJclAnsiRegEx.FErrorMessage -ID8338=TJclAnsiRegEx.FErrorOffset -ID8339=TJclAnsiRegEx.FExtra -ID834=BitsPerInteger -ID8340=TJclAnsiRegEx.FOnCallout -ID8341=TJclAnsiRegEx.FOptions -ID8342=TJclAnsiRegEx.FPattern -ID8343=TJclAnsiRegEx.FResultValues -ID8344=TJclAnsiRegEx.FSubject -ID8345=TJclAnsiRegEx.FVector -ID8346=TJclAnsiRegEx.FVectorSize -ID8347=TJclAnsiRegEx.FViewChanges -ID8348=TJclAnsiRegEx.GetAPIOptions@Boolean -ID8349=TJclAnsiRegEx.GetCapture@Integer -ID835=BitsPerMIDIDataByte -ID8350=TJclAnsiRegEx.GetCaptureName@Integer -ID8351=TJclAnsiRegEx.GetCaptureNameCount -ID8352=TJclAnsiRegEx.GetCaptureRange@Integer -ID8353=TJclAnsiRegEx.GetNamedCapture@AnsiString -ID8354=TJclAnsiRegEx.GetResult -ID8355=TJclAnsiRegEx.IndexOfName@String -ID8356=TJclAnsiRegEx.IsNameValid@String -ID8357=TJclAnsiRegEx.Match@AnsiString@Cardinal -ID8358=TJclAnsiRegEx.NamedCaptures -ID8359=TJclAnsiRegEx.oncallout -ID836=BitsPerMIDIDataWord -ID8360=TJclAnsiRegEx.Options -ID8361=TJclAnsiRegEx.Pattern -ID8362=TJclAnsiRegEx.Result -ID8363=TJclAnsiRegEx.SetCapture@Integer@AnsiString -ID8364=TJclAnsiRegEx.SetNamedCapture@Ansistring@Ansistring -ID8365=TJclAnsiRegEx.Subject -ID8366=TJclAnsiRegEx.ViewChanges -ID8367=TJclAnsiRegExCallout -ID8368=TJclAnsiRegExOption -ID8369=TJclAnsiRegExOption.roAnchored -ID837=BitsPerNibble -ID8370=TJclAnsiRegExOption.roAutoCallout -ID8371=TJclAnsiRegExOption.roDfaFirstLine -ID8372=TJclAnsiRegExOption.roDfaRestart -ID8373=TJclAnsiRegExOption.roDfaShortest -ID8374=TJclAnsiRegExOption.roDollarEndOnly -ID8375=TJclAnsiRegExOption.roDotAll -ID8376=TJclAnsiRegExOption.roDupNames -ID8377=TJclAnsiRegExOption.roExtended -ID8378=TJclAnsiRegExOption.roExtra -ID8379=TJclAnsiRegExOption.roIgnoreCase -ID838=BitsPerShortint -ID8380=TJclAnsiRegExOption.roMultiLine -ID8381=TJclAnsiRegExOption.roNewLineAny -ID8382=TJclAnsiRegExOption.roNewLineCR -ID8383=TJclAnsiRegExOption.roNewLineCRLF -ID8384=TJclAnsiRegExOption.roNewLineLF -ID8385=TJclAnsiRegExOption.roNoAutoCapture -ID8386=TJclAnsiRegExOption.roNotBOL -ID8387=TJclAnsiRegExOption.roNotEmpty -ID8388=TJclAnsiRegExOption.roNotEOL -ID8389=TJclAnsiRegExOption.roNoUTF8Check -ID839=BitsPerSmallint -ID8390=TJclAnsiRegExOption.roPartial -ID8391=TJclAnsiRegExOption.roUnGreedy -ID8392=TJclAnsiRegExOption.roUTF8 -ID8393=TJclAnsiRegExOptions -ID8394=TJclAppInstances -ID8395=TJclAppInstances.AppWnds -ID8396=TJclAppInstances.BringAppWindowToFront -ID8397=TJclAppInstances.CheckInstance -ID8398=TJclAppInstances.CheckMultipleInstances -ID8399=TJclAppInstances.CheckSingleInstance +ID830=ArcMinutesPerDeg +ID8300=StrReplaceButChars@string@TCharValidator@Char +ID8301=StrReplaceButChars@string@TSysCharSet@Char +ID8302=StrReplaceChar@string@Char@Char +ID8303=StrReplaceChars@string@array of Char@Char +ID8304=StrReplaceChars@string@TCharValidator@Char +ID8305=StrReplaceChars@string@TSysCharSet@Char +ID8306=StrReplaceRegEx@AnsiString@AnsiString@array of const +ID8307=StrReplaceRegEx@string@string@array of const +ID8308=StrResetLength@string +ID8309=StrResetLength@StringBuilder +ID831=ArcSecondsPerArcMinute +ID8310=StrResetLength@TJclStringBuilder +ID8311=StrResetLength@UnicodeString +ID8312=StrResetLength@WideString +ID8313=StrRestOf@string@Integer +ID8314=StrRestOf@string@SizeInt +ID8315=StrReverse@string +ID8316=StrReverseInPlace@string +ID8317=StrRight@string@Integer +ID8318=StrRight@string@SizeInt +ID8319=StrSame@string@string +ID832=ArcSecondsPerDeg +ID8320=StrSame@string@string@Boolean +ID8321=StrScanW@PWideChar@WideChar@Cardinal +ID8322=StrScanW@PWideChar@WideChar@SizeInt +ID8323=StrSearch@string@string@Integer +ID8324=StrSearch@string@string@SizeInt +ID8325=StrSimpleCompare@string@string +ID8326=StrSimpleEqualityCompare@string@string +ID8327=StrSimpleHashConvert@string +ID8328=StrSingleQuote@string +ID8329=StrSkipChars@AnsiString@SizeInt@TSysCharSet +ID833=ArgumentException +ID8330=StrSkipChars@PAnsiChar@TSysCharSet +ID8331=StrSkipChars@PChar@array of Char +ID8332=StrSkipChars@PChar@TCharValidator +ID8333=StrSkipChars@string@SizeInt@array of Char +ID8334=StrSkipChars@string@SizeInt@TCharValidator +ID8335=StrSmartCase@string@array of Char +ID8336=StrSmartCase@string@TCharValidator +ID8337=StrSmartCase@string@TSysCharSet +ID8338=StrSortProc +ID8339=StrStrCount@string@string +ID834=ArgumentNullException +ID8340=StrStringToEscaped@string +ID8341=StrStripNonNumberChars@string +ID8342=StrToBoolean +ID8343=StrToFloatSafe@AnsiString +ID8344=StrToFloatSafe@string +ID8345=StrToHex@string +ID8346=StrToIntSafe@AnsiString +ID8347=StrToIntSafe@string +ID8348=StrToken@string@Char +ID8349=StrTokens@string@TStrings +ID835=ArgumentOutOfRangeException +ID8350=StrTokenToStrings@string@Char@TStrings +ID8351=StrToStrings@string@string@TStrings@Boolean +ID8352=StrTrimCharLeft@string@Char +ID8353=StrTrimCharRight@string@Char +ID8354=StrTrimCharsLeft@string@array of Char +ID8355=StrTrimCharsLeft@string@TCharValidator +ID8356=StrTrimCharsLeft@string@TSysCharSet +ID8357=StrTrimCharsRight@string@array of Char +ID8358=StrTrimCharsRight@string@TCharValidator +ID8359=StrTrimCharsRight@string@TSysCharSet +ID836=ArrayContainsChar@array of Char@Char +ID8360=StrTrimQuotes@AnsiString@AnsiChar +ID8361=StrTrimQuotes@string +ID8362=StrUpOffset +ID8363=StrUpper@string +ID8364=StrUpperBuff@PChar +ID8365=StrUpperInPlace@string +ID8366=StrWord@PAnsiChar@AnsiString +ID8367=StrWord@PChar@string +ID8368=StrWord@string@Integer@string +ID8369=StrWord@string@SizeInt@string +ID837=ArrayContainsChar@array of Char@Char@SizeInt +ID8370=stTraceEAbort +ID8371=stWin32Service +ID8372=STXTLEN +ID8373=SUBLANGID@WORD +ID8374=SUBSECTION_TYPE_ALIGN_SYMBOLS +ID8375=SUBSECTION_TYPE_GLOBAL_SYMBOLS +ID8376=SUBSECTION_TYPE_GLOBAL_TYPES +ID8377=SUBSECTION_TYPE_MODULE +ID8378=SUBSECTION_TYPE_NAMES +ID8379=SUBSECTION_TYPE_SOURCE_MODULE +ID838=ArrayOf@TJclAnsiStrings +ID8380=SUBSECTION_TYPE_SYMBOLS +ID8381=SUBSECTION_TYPE_TYPES +ID8382=Sum@array of TRectComplex +ID8383=Sum@TRectComplex@TRectComplex +ID8384=SumOfSquares@TDynFloatArray +ID8385=SupportedBCBVersions +ID8386=SupportedBDSVersions +ID8387=SupportedDelphiVersions +ID8388=SurrogateHighEnd +ID8389=SurrogateHighStart +ID839=ArrayOf@TStrings +ID8390=SurrogateLowEnd +ID8391=SurrogateLowStart +ID8392=SuspendOS@Boolean@Boolean +ID8393=SwapOrd@Cardinal@Cardinal +ID8394=SwapOrd@Int64@Int64 +ID8395=SwapOrd@Integer@Integer +ID8396=SwapOrd@Shortint@Shortint +ID8397=SwapOrd@Smallint@Smallint +ID8398=SwapOrd@Word@Word +ID8399=SYMBOL_TYPE_BLOCK16 ID84=!!OVERLOADED_InsertInterchange_TEDIFile -ID840=BitsPerWord -ID8400=TJclAppInstances.Create -ID8401=TJclAppInstances.Destroy -ID8402=TJclAppInstances.FCPID -ID8403=TJclAppInstances.FMapping -ID8404=TJclAppInstances.FMappingView -ID8405=TJclAppInstances.FMessageID -ID8406=TJclAppInstances.FOptex -ID8407=TJclAppInstances.GetApplicationWnd -ID8408=TJclAppInstances.GetAppWnds@Integer -ID8409=TJclAppInstances.GetInstanceCount -ID841=BitsToBooleans@Int64@TBooleanArray@Boolean -ID8410=TJclAppInstances.GetInstanceIndex@DWORD -ID8411=TJclAppInstances.GetProcessIDs@Integer -ID8412=TJclAppInstances.InitData -ID8413=TJclAppInstances.InstanceCount -ID8414=TJclAppInstances.InstanceIndex -ID8415=TJclAppInstances.KillInstance -ID8416=TJclAppInstances.MessageID -ID8417=TJclAppInstances.NotifyInstances@Longint@Longint -ID8418=TJclAppInstances.ProcessIDs -ID8419=TJclAppInstances.RemoveInstance -ID842=BitsToBooleans@Integer@TBooleanArray@Boolean -ID8420=TJclAppInstances.SendCmdLineParams@string@THandle -ID8421=TJclAppInstances.SendData -ID8422=TJclAppInstances.SendString -ID8423=TJclAppInstances.SendStrings -ID8424=TJclAppInstances.SetForegroundWindow98 -ID8425=TJclAppInstances.SwitchTo -ID8426=TJclAppInstances.UserNotify -ID8427=TJclAppInstDataKind -ID8428=TJclArraySet -ID8429=TJclArraySet.Add@TObject -ID843=BitsToBooleans@Word@TBooleanArray@Boolean -ID8430=TJclArraySet.AddAll@IJclCollection -ID8431=TJclArraySet.BinarySearch@TObject -ID8432=TJclArraySet.Contains@TObject -ID8433=TJclArraySet.Insert@Integer@TObject -ID8434=TJclArraySet.Intersect@IJclCollection -ID8435=TJclArraySet.Subtract@IJclCollection -ID8436=TJclArraySet.Union@IJclCollection -ID8437=TJclASet -ID8438=TJclASet.Clear -ID8439=TJclASet.GetBit@Integer -ID844=BlendLine -ID8440=TJclASet.GetRange@Integer@Integer@Boolean -ID8441=TJclASet.Invert -ID8442=TJclASet.SetBit@Integer@Boolean -ID8443=TJclASet.SetRange@Integer@Integer@Boolean -ID8444=TJclAttributeMatch -ID8445=TJclAttributeMatch.amAny -ID8446=TJclAttributeMatch.amCustom -ID8447=TJclAttributeMatch.amExact -ID8448=TJclAttributeMatch.amSubSetOf -ID8449=TJclAttributeMatch.amSuperSetOf -ID845=BlendLineEx -ID8450=TJclAudioSummaryInformation -ID8451=TJclAudioSummaryInformation.AverageDataRate -ID8452=TJclAudioSummaryInformation.ChannelCount -ID8453=TJclAudioSummaryInformation.Compression -ID8454=TJclAudioSummaryInformation.Format -ID8455=TJclAudioSummaryInformation.GetFMTID -ID8456=TJclAudioSummaryInformation.SampleRate -ID8457=TJclAudioSummaryInformation.SampleSize -ID8458=TJclAudioSummaryInformation.StreamName -ID8459=TJclAudioSummaryInformation.StreamNumber -ID846=BlendMem -ID8460=TJclAudioSummaryInformation.TimeLength -ID8461=TJclBCBInstallation -ID8462=TJclBCBInstallation.ConfigFileName@string -ID8463=TJclBCBInstallation.Create@string -ID8464=TJclBCBInstallation.Destroy -ID8465=TJclBCBInstallation.GetEnvironmentVariables -ID8466=TJclBCBInstallation.GetLatestUpdatePackForVersion@Integer -ID8467=TJclBCBInstallation.PackageSourceFileExtension -ID8468=TJclBCBInstallation.ProjectSourceFileExtension -ID8469=TJclBCBInstallation.RadToolKind -ID847=BlendMemEx -ID8470=TJclBCBInstallation.RadToolName -ID8471=TJclBCC32 -ID8472=TJclBCC32.Create@TJclBorRADToolInstallation -ID8473=TJclBCC32.GetExeName -ID8474=TJclBCC32.SupportsLibSuffix -ID8475=TJclBDSInstallation -ID8476=TJclBDSInstallation.AddToCppBrowsingPath@string -ID8477=TJclBDSInstallation.AddToCppLibraryPath@string -ID8478=TJclBDSInstallation.AddToCppSearchPath@string -ID8479=TJclBDSInstallation.CleanPackageCache@string -ID848=BlendReg -ID8480=TJclBDSInstallation.CompileDelphiDotNetProject@string@string@TJclBorPlatform@string@string -ID8481=TJclBDSInstallation.CompileDelphiPackage@string@string@string@string -ID8482=TJclBDSInstallation.CompileDelphiProject@string@string@string -ID8483=TJclBDSInstallation.CppBrowsingPath -ID8484=TJclBDSInstallation.CppLibraryPath -ID8485=TJclBDSInstallation.CppSearchPath -ID8486=TJclBDSInstallation.Create@string -ID8487=TJclBDSInstallation.DCCIL -ID8488=TJclBDSInstallation.Destroy -ID8489=TJclBDSInstallation.DualPackageInstallation -ID849=BlendRegEx -ID8490=TJclBDSInstallation.FDCCIL -ID8491=TJclBDSInstallation.FDualPackageInstallation -ID8492=TJclBDSInstallation.FHelp2Manager -ID8493=TJclBDSInstallation.FPdbCreate -ID8494=TJclBDSInstallation.GetBPLOutputPath -ID8495=TJclBDSInstallation.GetCommonProjectsDir -ID8496=TJclBDSInstallation.GetCommonProjectsDirectory@string@Integer -ID8497=TJclBDSInstallation.GetCppBrowsingPath -ID8498=TJclBDSInstallation.GetCppLibraryPath -ID8499=TJclBDSInstallation.GetCppPathsKeyName +ID840=AsmExeName +ID8400=SYMBOL_TYPE_BLOCK32 +ID8401=SYMBOL_TYPE_BPREL16 +ID8402=SYMBOL_TYPE_BPREL32 +ID8403=SYMBOL_TYPE_CEXMODEL16 +ID8404=SYMBOL_TYPE_CEXMODEL32 +ID8405=SYMBOL_TYPE_COMPILE +ID8406=SYMBOL_TYPE_CONST +ID8407=SYMBOL_TYPE_CVRESERVE +ID8408=SYMBOL_TYPE_END +ID8409=SYMBOL_TYPE_GDATA16 +ID841=AssertKindOf@string@TObject +ID8410=SYMBOL_TYPE_GDATA32 +ID8411=SYMBOL_TYPE_GPROC16 +ID8412=SYMBOL_TYPE_GPROC32 +ID8413=SYMBOL_TYPE_LABEL16 +ID8414=SYMBOL_TYPE_LABEL32 +ID8415=SYMBOL_TYPE_LDATA16 +ID8416=SYMBOL_TYPE_LDATA32 +ID8417=SYMBOL_TYPE_LPROC16 +ID8418=SYMBOL_TYPE_LPROC32 +ID8419=SYMBOL_TYPE_OBJNAME +ID842=ASYNCH +ID8420=SYMBOL_TYPE_PUB16 +ID8421=SYMBOL_TYPE_PUB32 +ID8422=SYMBOL_TYPE_REGISTER +ID8423=SYMBOL_TYPE_SKIP +ID8424=SYMBOL_TYPE_SSEARCH +ID8425=SYMBOL_TYPE_THUNK16 +ID8426=SYMBOL_TYPE_THUNK32 +ID8427=SYMBOL_TYPE_UDT +ID8428=SYMBOL_TYPE_VFTPATH16 +ID8429=SYMBOL_TYPE_VFTPATH32 +ID843=AWSuffix +ID8430=SYMBOL_TYPE_WITH16 +ID8431=SYMBOL_TYPE_WITH32 +ID8432=SYMOPT_ALLOW_ABSOLUTE_SYMBOLS +ID8433=SYMOPT_AUTO_PUBLICS +ID8434=SYMOPT_DEBUG +ID8435=SYMOPT_EXACT_SYMBOLS +ID8436=SYMOPT_FAIL_CRITICAL_ERRORS +ID8437=SYMOPT_IGNORE_CVREC +ID8438=SYMOPT_IGNORE_NT_SYMPATH +ID8439=SYMOPT_INCLUDE_32BIT_MODULES +ID844=BACKUP_MSG_FILENAME +ID8440=SYMOPT_LOAD_ANYTHING +ID8441=SYMOPT_LOAD_LINES +ID8442=SYMOPT_NO_IMAGE_SEARCH +ID8443=SYMOPT_NO_PROMPTS +ID8444=SYMOPT_NO_PUBLICS +ID8445=SYMOPT_NO_UNQUALIFIED_LOADS +ID8446=SYMOPT_OMAP_FIND_NEAREST +ID8447=SYMOPT_PUBLICS_ONLY +ID8448=SYMOPT_SECURE +ID8449=SystemInformationRoutines +ID845=BackupSeek@THandle@DWORD@DWORD@DWORD@DWORD@IntPtr Pointer +ID8450=SystemTimeToFileTime@TSystemTime@TFileTime +ID8451=SystemTObjectInstance +ID8452=T8087Exception +ID8453=T8087Exception.emDenormalizedOperand +ID8454=T8087Exception.emInvalidOp +ID8455=T8087Exception.emOverflow +ID8456=T8087Exception.emPrecision +ID8457=T8087Exception.emUnderflow +ID8458=T8087Exception.emZeroDivide +ID8459=TA1SegmentId +ID846=BaseServices +ID8460=TabSetFormatting_AlwaysUseBrackets +ID8461=TabSetFormatting_AutoTabWidth +ID8462=TabSetFormatting_Default +ID8463=TabSetFormatting_EmptyBracketsIfNoStops +ID8464=TabSetFormatting_Full +ID8465=TabSetFormatting_NoTabStops +ID8466=TabSetFormatting_NoTabWidth +ID8467=TabSetFormatting_StopsOnly +ID8468=TabSetFormatting_StopsWithoutBracketsAndTabWidth +ID8469=TabSetFormatting_SurroundStopsWithBrackets +ID847=BaseServices.Compatibility +ID8470=TabSetFormatting_TabWidthOnly +ID8471=TActionHeader +ID8472=tagRASDIALDLG +ID8473=tagRASDIALDLG.dwError +ID8474=tagRASDIALDLG.dwFlags +ID8475=tagRASDIALDLG.dwSize +ID8476=tagRASDIALDLG.dwSubEntry +ID8477=tagRASDIALDLG.hwndOwner +ID8478=tagRASDIALDLG.reserved +ID8479=tagRASDIALDLG.reserved2 +ID848=BaseServices.Dynamicarrays +ID8480=tagRASDIALDLG.xDlg +ID8481=tagRASDIALDLG.yDlg +ID8482=tagSTGOPTIONS +ID8483=tagSTGOPTIONS.pwcsTemplateFile +ID8484=tagSTGOPTIONS.reserved +ID8485=tagSTGOPTIONS.ulSectorSize +ID8486=tagSTGOPTIONS.usVersion +ID8487=Tan@TRectComplex +ID8488=TanH@TRectComplex +ID8489=TAnonObjectHeader +ID849=BaseServices.Dynamicloading +ID8490=TAnsiPath +ID8491=TAnsiStrApplyFunction +ID8492=TAnsiStrCompare +ID8493=TAnsiStrEqualityCompare +ID8494=TAnsiStrHashConvert +ID8495=TAnsiStringList +ID8496=TAnsiStrings +ID8497=TAnsiStrIterateProcedure +ID8498=TAnsiStrSortProc +ID8499=TAPMBatteryFlags ID85=!!OVERLOADED_InsertInterchanges_TEDIFile -ID850=BlueComponent@TColor32 -ID8500=TJclBDSInstallation.GetCppSearchPath -ID8501=TJclBDSInstallation.GetDCPOutputPath -ID8502=TJclBDSInstallation.GetDebugDCUPath -ID8503=TJclBDSInstallation.GetDefaultProjectsDir -ID8504=TJclBDSInstallation.GetDefaultProjectsDirectory@string@Integer -ID8505=TJclBDSInstallation.GetEnvironmentVariables -ID8506=TJclBDSInstallation.GetLatestUpdatePackForVersion@Integer -ID8507=TJclBDSInstallation.GetLibraryBrowsingPath -ID8508=TJclBDSInstallation.GetLibrarySearchPath -ID8509=TJclBDSInstallation.GetMaxDelphiCLRVersion -ID851=BOM_LSB_FIRST -ID8510=TJclBDSInstallation.GetMsBuildEnvOption@string -ID8511=TJclBDSInstallation.GetMsBuildEnvOptionsFileName -ID8512=TJclBDSInstallation.GetName -ID8513=TJclBDSInstallation.GetValid -ID8514=TJclBDSInstallation.GetVclIncludeDir -ID8515=TJclBDSInstallation.Help2Manager -ID8516=TJclBDSInstallation.MaxDelphiCLRVersion -ID8517=TJclBDSInstallation.PackageSourceFileExtension -ID8518=TJclBDSInstallation.PdbCreate -ID8519=TJclBDSInstallation.ProjectSourceFileExtension -ID852=BOM_MSB_FIRST -ID8520=TJclBDSInstallation.RadToolKind -ID8521=TJclBDSInstallation.RadToolName -ID8522=TJclBDSInstallation.RegisterPackage@string@string -ID8523=TJclBDSInstallation.RemoveFromCppBrowsingPath@string -ID8524=TJclBDSInstallation.RemoveFromCppLibraryPath@string -ID8525=TJclBDSInstallation.RemoveFromCppSearchPath@string -ID8526=TJclBDSInstallation.SetCppBrowsingPath@TJclBorRADToolPath -ID8527=TJclBDSInstallation.SetCppLibraryPath@TJclBorRADToolPath -ID8528=TJclBDSInstallation.SetCppSearchPath@TJclBorRADToolPath -ID8529=TJclBDSInstallation.SetDebugDCUPath@TJclBorRADToolPath -ID853=BOM_UTF16_LSB -ID8530=TJclBDSInstallation.SetDualPackageInstallation@Boolean -ID8531=TJclBDSInstallation.SetLibraryBrowsingPath@TJclBorRADToolPath -ID8532=TJclBDSInstallation.SetLibrarySearchPath@TJclBorRADToolPath -ID8533=TJclBDSInstallation.SetMsBuildEnvOption@string@string -ID8534=TJclBDSInstallation.SetOutputCallback@TTextHandler -ID8535=TJclBDSInstallation.UnregisterPackage@string -ID8536=TJclBinaryInstruction -ID8537=TJclBinaryNode -ID8538=TJclBinaryNode.Color -ID8539=TJclBinaryNode.Left -ID854=BOM_UTF16_MSB -ID8540=TJclBinaryNode.Parent -ID8541=TJclBinaryNode.Right -ID8542=TJclBinaryNode.TJclBinaryNode=recordObj -ID8543=TJclBinaryTree -ID8544=TJclBinaryTree.Add@TObject -ID8545=TJclBinaryTree.AddAll@IJclCollection -ID8546=TJclBinaryTree.Clear -ID8547=TJclBinaryTree.Clone -ID8548=TJclBinaryTree.Contains@TObject -ID8549=TJclBinaryTree.ContainsAll@IJclCollection -ID855=BOM_UTF32_LSB -ID8550=TJclBinaryTree.Create@TCompare -ID8551=TJclBinaryTree.Destroy -ID8552=TJclBinaryTree.Equals@IJclCollection -ID8553=TJclBinaryTree.FComparator -ID8554=TJclBinaryTree.FCount -ID8555=TJclBinaryTree.First -ID8556=TJclBinaryTree.FRoot -ID8557=TJclBinaryTree.FTraverseOrder -ID8558=TJclBinaryTree.GetTraverseOrder -ID8559=TJclBinaryTree.IsEmpty -ID856=BOM_UTF32_MSB -ID8560=TJclBinaryTree.Last -ID8561=TJclBinaryTree.Remove@TObject -ID8562=TJclBinaryTree.RemoveAll@IJclCollection -ID8563=TJclBinaryTree.RetainAll@IJclCollection -ID8564=TJclBinaryTree.RotateLeft@PJclBinaryNode -ID8565=TJclBinaryTree.RotateRight@PJclBinaryNode -ID8566=TJclBinaryTree.SetTraverseOrder@TJclTraverseOrder -ID8567=TJclBinaryTree.Size -ID8568=TJclBinDbgNameCache -ID8569=TJclBinDbgNameCache.Addr -ID857=BOM_UTF8 -ID8570=TJclBinDbgNameCache.FirstWord -ID8571=TJclBinDbgNameCache.SecondWord -ID8572=TJclBorDesigner -ID8573=TJclBorDesigner.bdCLX -ID8574=TJclBorDesigner.bdVCL -ID8575=TJclBorDesigners -ID8576=TJclBorlandCommandLineTool -ID8577=TJclBorlandCommandLineTool.AddPathOption@string@string -ID8578=TJclBorlandCommandLineTool.CheckOutputValid -ID8579=TJclBorlandCommandLineTool.Create@TJclBorRADToolInstallation -ID858=BooleansToBits@Int64@TBooleanArray -ID8580=TJclBorlandCommandLineTool.Destroy -ID8581=TJclBorlandCommandLineTool.Execute@string -ID8582=TJclBorlandCommandLineTool.FileName -ID8583=TJclBorlandCommandLineTool.FOptions -ID8584=TJclBorlandCommandLineTool.FOutput -ID8585=TJclBorlandCommandLineTool.FOutputCallback -ID8586=TJclBorlandCommandLineTool.GetExeName -ID8587=TJclBorlandCommandLineTool.GetFileName -ID8588=TJclBorlandCommandLineTool.GetOptions -ID8589=TJclBorlandCommandLineTool.GetOutput -ID859=BooleansToBits@Integer@TBooleanArray -ID8590=TJclBorlandCommandLineTool.GetOutputCallback -ID8591=TJclBorlandCommandLineTool.Options -ID8592=TJclBorlandCommandLineTool.Output -ID8593=TJclBorlandCommandLineTool.OutputCallback -ID8594=TJclBorlandCommandLineTool.SetOutputCallback@TTextHandler -ID8595=TJclBorlandMake -ID8596=TJclBorlandMake.GetExeName -ID8597=TJclBorlandOpenHelp -ID8598=TJclBorlandOpenHelp.AddHelpFile@string@string -ID8599=TJclBorlandOpenHelp.ContentFileName +ID850=BaseServices.ErrorHandling +ID8500=TApplyFunction +ID8501=TargetOS +ID8502=TArrayCatID +ID8503=TArrayOfColor32 +ID8504=TBinary32Func +ID8505=TBinary64Func +ID8506=TBinary80Func +ID8507=TBitRange +ID8508=TBlendLine +ID8509=TBlendLineEx +ID851=BaseServices.Int64support +ID8510=TBlendMem +ID8511=TBlendMemEx +ID8512=TBlendReg +ID8513=TBlendRegEx +ID8514=TBooleanArray +ID8515=TBoolSetter +ID8516=TBytes +ID8517=TCacheFamily +ID8518=TCacheFamily.cfDataTLB +ID8519=TCacheFamily.cfInstructionTLB +ID852=BaseServices.Notifications +ID8520=TCacheFamily.cfL1DataCache +ID8521=TCacheFamily.cfL1InstructionCache +ID8522=TCacheFamily.cfL2Cache +ID8523=TCacheFamily.cfL3Cache +ID8524=TCacheFamily.cfOther +ID8525=TCacheFamily.cfTrace +ID8526=TCacheInformation +ID8527=TCacheInformation.ciAssociativity +ID8528=TCacheInformation.ciLineSize +ID8529=TCacheInformation.ciLinesPerTag +ID853=BaseServices.Numericformattingroutines +ID8530=TCacheInformation.ciSize +ID8531=TCalInfoEnumProcExA +ID8532=TCardinalApplyFunction +ID8533=TCardinalCompare +ID8534=TCardinalEqualityCompare +ID8535=TCardinalHashConvert +ID8536=TCardinalIterateProcedure +ID8537=TCardinalSetter +ID8538=TCardinalSortProc +ID8539=TCaseType +ID854=BaseServices.Pointermanipulation +ID8540=TCharacterCategories +ID8541=TCharacterCategory +ID8542=TCharDynArray +ID8543=TCharValidator +ID8544=TClipCode +ID8545=TClipCode.ccAbove +ID8546=TClipCode.ccBelow +ID8547=TClipCode.ccLeft +ID8548=TClipCode.ccRight +ID8549=TClipCodes +ID855=BCC32ExeName +ID8550=TClrMetadataHeader +ID8551=TClrMetadataHeader.Length +ID8552=TClrMetadataHeader.MajorVersion +ID8553=TClrMetadataHeader.MinorVersion +ID8554=TClrMetadataHeader.Reserved +ID8555=TClrMetadataHeader.Signature +ID8556=TClrMetadataHeader.Version +ID8557=TClrStreamHeader +ID8558=TClrStreamHeader.Name +ID8559=TClrStreamHeader.Offset +ID856=Bernstein +ID8560=TClrStreamHeader.Size +ID8561=TClrTableStreamHeader +ID8562=TClrTableStreamHeader.HeapSizes +ID8563=TClrTableStreamHeader.MajorVersion +ID8564=TClrTableStreamHeader.MinorVersion +ID8565=TClrTableStreamHeader.Reserved +ID8566=TClrTableStreamHeader.Reserved2 +ID8567=TClrTableStreamHeader.Rows +ID8568=TClrTableStreamHeader.Sorted +ID8569=TClrTableStreamHeader.Valid +ID857=BinaryExtensionExecutable +ID8570=TColorChannel +ID8571=TColorChannel.ccAlpha +ID8572=TColorChannel.ccBlue +ID8573=TColorChannel.ccGreen +ID8574=TColorChannel.ccRed +ID8575=TColorRec +ID8576=TColorRec.B +ID8577=TColorRec.Blue +ID8578=TColorRec.Flag +ID8579=TColorRec.G +ID858=BinaryExtensionLibrary +ID8580=TColorRec.Green +ID8581=TColorRec.Index +ID8582=TColorRec.R +ID8583=TColorRec.Red +ID8584=TColorRec.Value +ID8585=TColorVector +ID8586=TColorVector.B +ID8587=TColorVector.Coord +ID8588=TColorVector.G +ID8589=TColorVector.H +ID859=BinaryExtensionPackage +ID8590=TColorVector.L +ID8591=TColorVector.R +ID8592=TColorVector.S +ID8593=TCombineMem +ID8594=TCombineReg +ID8595=TCommandLineTool +ID8596=TCommandLineTool.clAsm +ID8597=TCommandLineTool.clBcc32 +ID8598=TCommandLineTool.clDcc32 +ID8599=TCommandLineTool.clDccIL ID86=!!OVERLOADED_InsertLoop_TEDISEFLoop -ID860=BooleansToBits@Word@TBooleanArray -ID8600=TJclBorlandOpenHelp.GetContentFileName -ID8601=TJclBorlandOpenHelp.GetGidFileName -ID8602=TJclBorlandOpenHelp.GetIndexFileName -ID8603=TJclBorlandOpenHelp.GetLinkFileName -ID8604=TJclBorlandOpenHelp.GetProjectFileName -ID8605=TJclBorlandOpenHelp.GidFileName -ID8606=TJclBorlandOpenHelp.IndexFileName -ID8607=TJclBorlandOpenHelp.LinkFileName -ID8608=TJclBorlandOpenHelp.ProjectFileName -ID8609=TJclBorlandOpenHelp.ReadFileName@string -ID861=BooleanToStr -ID8610=TJclBorlandOpenHelp.RemoveHelpFile@string@string -ID8611=TJclBorPersonalities -ID8612=TJclBorPersonality -ID8613=TJclBorPersonality.bpBCBuilder32 -ID8614=TJclBorPersonality.bpBCBuilder64 -ID8615=TJclBorPersonality.bpCSBuilder32 -ID8616=TJclBorPersonality.bpCSBuilder64 -ID8617=TJclBorPersonality.bpDelphi32 -ID8618=TJclBorPersonality.bpDelphi64 -ID8619=TJclBorPersonality.bpDelphiNet32 -ID862=BoolToInt -ID8620=TJclBorPersonality.bpDelphiNet64 -ID8621=TJclBorPersonality.bpDesign -ID8622=TJclBorPersonality.bpUnknown -ID8623=TJclBorPersonality.bpVisualBasic32 -ID8624=TJclBorPersonality.bpVisualBasic64 -ID8625=TJclBorPlatform -ID8626=TJclBorPlatform.bp32bit -ID8627=TJclBorPlatform.bp64bit -ID8628=TJclBorRADToolEdition -ID8629=TJclBorRADToolEdition.deARC -ID863=Borland32BitSymbolFileSignatureForBCB -ID8630=TJclBorRADToolEdition.deCSS -ID8631=TJclBorRADToolEdition.dePRO -ID8632=TJclBorRADToolEdition.deSTD -ID8633=TJclBorRADToolIdePackages -ID8634=TJclBorRADToolIdePackages.AddExpert@string@string -ID8635=TJclBorRADToolIdePackages.AddIDEPackage@string@string -ID8636=TJclBorRADToolIdePackages.AddPackage@string@string -ID8637=TJclBorRADToolIdePackages.Count -ID8638=TJclBorRADToolIdePackages.Create@TJclBorRADToolInstallation -ID8639=TJclBorRADToolIdePackages.Destroy -ID864=Borland32BitSymbolFileSignatureForDelphi -ID8640=TJclBorRADToolIdePackages.ExpertCount -ID8641=TJclBorRADToolIdePackages.ExpertDescriptions -ID8642=TJclBorRADToolIdePackages.ExpertFileNames -ID8643=TJclBorRADToolIdePackages.FDisabledPackages -ID8644=TJclBorRADToolIdePackages.FExperts -ID8645=TJclBorRADToolIdePackages.FKnownIDEPackages -ID8646=TJclBorRADToolIdePackages.FKnownPackages -ID8647=TJclBorRADToolIdePackages.GetCount -ID8648=TJclBorRADToolIdePackages.GetExpertCount -ID8649=TJclBorRADToolIdePackages.GetExpertDescriptions@Integer -ID865=BorRADToolEditionIDs -ID8650=TJclBorRADToolIdePackages.GetExpertFileNames@Integer -ID8651=TJclBorRADToolIdePackages.GetIDECount -ID8652=TJclBorRADToolIdePackages.GetIDEPackageDescriptions@Integer -ID8653=TJclBorRADToolIdePackages.GetIDEPackageFileNames@Integer -ID8654=TJclBorRADToolIdePackages.GetPackageDescriptions@Integer -ID8655=TJclBorRADToolIdePackages.GetPackageDisabled@Integer -ID8656=TJclBorRADToolIdePackages.GetPackageFileNames@Integer -ID8657=TJclBorRADToolIdePackages.IDECount -ID8658=TJclBorRADToolIdePackages.IDEPackageDescriptions -ID8659=TJclBorRADToolIdePackages.IDEPackageFileNames -ID866=BorRADToolRepositoryDataModulesPage -ID8660=TJclBorRADToolIdePackages.PackageDescriptions -ID8661=TJclBorRADToolIdePackages.PackageDisabled -ID8662=TJclBorRADToolIdePackages.PackageEntryToFileName@string -ID8663=TJclBorRADToolIdePackages.PackageFileNames -ID8664=TJclBorRADToolIdePackages.ReadPackages -ID8665=TJclBorRADToolIdePackages.RemoveDisabled@string -ID8666=TJclBorRADToolIdePackages.RemoveExpert@string -ID8667=TJclBorRADToolIdePackages.RemoveIDEPackage@string -ID8668=TJclBorRADToolIdePackages.RemovePackage@string -ID8669=TJclBorRADToolIdeTool -ID867=BorRADToolRepositoryDesignerDfm -ID8670=TJclBorRADToolIdeTool.CheckIndex@Integer -ID8671=TJclBorRADToolIdeTool.Count -ID8672=TJclBorRADToolIdeTool.Create@TJclBorRADToolInstallation -ID8673=TJclBorRADToolIdeTool.FKey -ID8674=TJclBorRADToolIdeTool.GetCount -ID8675=TJclBorRADToolIdeTool.GetParameters@Integer -ID8676=TJclBorRADToolIdeTool.GetPath@Integer -ID8677=TJclBorRADToolIdeTool.GetTitle@Integer -ID8678=TJclBorRADToolIdeTool.GetWorkingDir@Integer -ID8679=TJclBorRADToolIdeTool.IndexOfPath@string -ID868=BorRADToolRepositoryDesignerXfm -ID8680=TJclBorRADToolIdeTool.IndexOfTitle@string -ID8681=TJclBorRADToolIdeTool.Key -ID8682=TJclBorRADToolIdeTool.Parameters -ID8683=TJclBorRADToolIdeTool.Path -ID8684=TJclBorRADToolIdeTool.RemoveIndex@Integer -ID8685=TJclBorRADToolIdeTool.SetCount@Integer -ID8686=TJclBorRADToolIdeTool.SetParameters@Integer@string -ID8687=TJclBorRADToolIdeTool.SetPath@Integer@string -ID8688=TJclBorRADToolIdeTool.SetTitle@Integer@string -ID8689=TJclBorRADToolIdeTool.SetWorkingDir@Integer@string -ID869=BorRADToolRepositoryDialogsPage -ID8690=TJclBorRADToolIdeTool.Title -ID8691=TJclBorRADToolIdeTool.WorkingDir -ID8692=TJclBorRADToolInstallation -ID8693=TJclBorRADToolInstallation.AddToDebugDCUPath@string -ID8694=TJclBorRADToolInstallation.AddToLibraryBrowsingPath@string -ID8695=TJclBorRADToolInstallation.AddToLibrarySearchPath@string -ID8696=TJclBorRADToolInstallation.AnyInstanceRunning -ID8697=TJclBorRADToolInstallation.BCC32 -ID8698=TJclBorRADToolInstallation.BinFolderName -ID8699=TJclBorRADToolInstallation.BPLOutputPath +ID860=BinaryFileName@string@string +ID8600=TCommandLineTool.clMake +ID8601=TCommandLineTool.clProj2Mak +ID8602=TCommandLineTools +ID8603=TCompactPath +ID8604=TCompactPath.cpCenter +ID8605=TCompactPath.cpEnd +ID8606=TCompare +ID8607=TCompareFunc +ID8608=TCompatibilityFormattingTag +ID8609=TComplex_VERSION +ID861=BIT_0 +ID8610=TConfirmConversionEvent +ID8611=TCoords +ID8612=TCoords.R +ID8613=TCoords.Theta +ID8614=TCoords.X +ID8615=TCoords.Y +ID8616=TCrc16Table +ID8617=TCrc32Table +ID8618=TCustomData +ID8619=TCustomGoal +ID862=BIT_1 +ID8620=TCustomUnitVersioningProvider +ID8621=TCustomUnitVersioningProvider.Create +ID8622=TCustomUnitVersioningProvider.LoadModuleUnitVersioningInfo@THandle +ID8623=TCustomUnitVersioningProvider.ReleaseModuleUnitVersioningInfo@THandle +ID8624=TDateTimeArray +ID8625=TDelphiSet +ID8626=TDFA +ID8627=TDFA.Flags +ID8628=TDFA.StateList +ID8629=TDFA.SymbolTable +ID863=BIT_10 +ID8630=TDFA.TransitionList +ID8631=TDFAState +ID8632=TDFAState.Accepting +ID8633=TDFAState.NumberTransitions +ID8634=TDFAState.StartTransition +ID8635=TDFAStates +ID8636=TDFAStates.States +ID8637=TDFAStates.StatesUsed +ID8638=TDigitCount +ID8639=TDigitValue +ID864=BIT_10_FLAG +ID8640=TDirectoryEntry +ID8641=TDirectoryEntry.ModuleIndex +ID8642=TDirectoryEntry.Offset +ID8643=TDirectoryEntry.Size +ID8644=TDirectoryEntry.SubsectionType +ID8645=TDirectoryHeader +ID8646=TDirectoryHeader.DirEntries +ID8647=TDirectoryHeader.DirEntryCount +ID8648=TDirectoryHeader.DirEntrySize +ID8649=TDirectoryHeader.Flags +ID865=BIT_11 +ID8650=TDirectoryHeader.lfoNextDir +ID8651=TDirectoryHeader.Size +ID8652=TDllVersionInfo +ID8653=TDosDateTime +ID8654=TDoubleApplyFunction +ID8655=TDoubleCompare +ID8656=TDoubleEqualityCompare +ID8657=TDoubleHashConvert +ID8658=TDoubleIterateProcedure +ID8659=TDoubleSortProc +ID866=BIT_12 +ID8660=TDWORD_PTRArray +ID8661=TDWORDArray +ID8662=TDynAnsiCharArray +ID8663=TDynAnsiStringArray +ID8664=TDynArraySortCompare +ID8665=TDynByteArray +ID8666=TDynCardinalArray +ID8667=TDynCharArray +ID8668=TDynDoubleArray +ID8669=TDynExtendedArray +ID867=BIT_13 +ID8670=TDynFloatArray +ID8671=TDynIInterfaceArray +ID8672=TDynInt64Array +ID8673=TDynIntegerArray +ID8674=TDynLongIntArray +ID8675=TDynObjectArray +ID8676=TDynPointerArray +ID8677=TDynShortIntArray +ID8678=TDynSingleArray +ID8679=TDynSizeIntArray +ID868=BIT_14 +ID8680=TDynSmallIntArray +ID8681=TDynStringArray +ID8682=TDynUnicodeStringArray +ID8683=TDynWideCharArray +ID8684=TDynWideStringArray +ID8685=TDynWordArray +ID8686=TEDI_ANSIX12_Document +ID8687=TEDI_ANSIX12_Document.AddLoopToDoc@TEDILoopStackRecord@string@string@string@TEDIObject +ID8688=TEDI_ANSIX12_Document.AdvanceSegSpecIndex@Integer@Integer@Integer +ID8689=TEDI_ANSIX12_Document.Create@TEDIDataObject@TEDITransactionSet@TEDISEFSet +ID869=BIT_15 +ID8690=TEDI_ANSIX12_Document.Destroy +ID8691=TEDI_ANSIX12_Document.EDITSDOptions +ID8692=TEDI_ANSIX12_Document.ErrorOccured +ID8693=TEDI_ANSIX12_Document.FEDILoopStack +ID8694=TEDI_ANSIX12_Document.FEDISEFSet +ID8695=TEDI_ANSIX12_Document.FEDITransactionSet +ID8696=TEDI_ANSIX12_Document.FEDITransactionSetSpec +ID8697=TEDI_ANSIX12_Document.FEDITSDOptions +ID8698=TEDI_ANSIX12_Document.FErrorOccured +ID8699=TEDI_ANSIX12_Document.FormatDocument ID87=!!OVERLOADED_InsertLoop_TEDISEFTable -ID870=BorRADToolRepositoryFormsPage -ID8700=TJclBorRADToolInstallation.Bpr2Mak -ID8701=TJclBorRADToolInstallation.CommandLineTools -ID8702=TJclBorRADToolInstallation.CommonProjectsDir -ID8703=TJclBorRADToolInstallation.CompileBCBPackage@string@string@string -ID8704=TJclBorRADToolInstallation.CompileBCBProject@string@string@string -ID8705=TJclBorRADToolInstallation.CompileDelphiPackage@string@string@string -ID8706=TJclBorRADToolInstallation.CompileDelphiPackage@string@string@string@string -ID8707=TJclBorRADToolInstallation.CompileDelphiProject@string@string@string -ID8708=TJclBorRADToolInstallation.CompilePackage@string@string@string -ID8709=TJclBorRADToolInstallation.CompileProject@string@string@string -ID871=BorRADToolRepositoryFormTemplate -ID8710=TJclBorRADToolInstallation.ConfigData -ID8711=TJclBorRADToolInstallation.ConfigDataLocation -ID8712=TJclBorRADToolInstallation.ConfigFileName@string -ID8713=TJclBorRADToolInstallation.Create@string -ID8714=TJclBorRADToolInstallation.DCC -ID8715=TJclBorRADToolInstallation.DCC32 -ID8716=TJclBorRADToolInstallation.DCPOutputPath -ID8717=TJclBorRADToolInstallation.DebugDCUPath -ID8718=TJclBorRADToolInstallation.DefaultProjectsDir -ID8719=TJclBorRADToolInstallation.Description -ID872=BorRADToolRepositoryObjectAncestor -ID8720=TJclBorRADToolInstallation.Destroy -ID8721=TJclBorRADToolInstallation.Edition -ID8722=TJclBorRADToolInstallation.EditionAsText -ID8723=TJclBorRADToolInstallation.EnvironmentVariables -ID8724=TJclBorRADToolInstallation.ExtractPaths@TJclBorRADToolPath@TStrings -ID8725=TJclBorRADToolInstallation.FBCC32 -ID8726=TJclBorRADToolInstallation.FBinFolderName -ID8727=TJclBorRADToolInstallation.FBpr2Mak -ID8728=TJclBorRADToolInstallation.FCommandLineTools -ID8729=TJclBorRADToolInstallation.FConfigData -ID873=BorRADToolRepositoryObjectAuthor -ID8730=TJclBorRADToolInstallation.FConfigDataLocation -ID8731=TJclBorRADToolInstallation.FDCC32 -ID8732=TJclBorRADToolInstallation.FEdition -ID8733=TJclBorRADToolInstallation.FEditionStr -ID8734=TJclBorRADToolInstallation.FEnvironmentVariables -ID8735=TJclBorRADToolInstallation.FGlobals -ID8736=TJclBorRADToolInstallation.FIdePackages -ID8737=TJclBorRADToolInstallation.FIdeTools -ID8738=TJclBorRADToolInstallation.FIDEVersionNumber -ID8739=TJclBorRADToolInstallation.FIDEVersionNumberStr -ID874=BorRADToolRepositoryObjectDescr -ID8740=TJclBorRADToolInstallation.FindFolderInPath@string@TStrings -ID8741=TJclBorRADToolInstallation.FInstalledUpdatePack -ID8742=TJclBorRADToolInstallation.FJdbgCreate -ID8743=TJclBorRADToolInstallation.FJdbgInsert -ID8744=TJclBorRADToolInstallation.FMake -ID8745=TJclBorRADToolInstallation.FMapCreate -ID8746=TJclBorRADToolInstallation.FMapDelete -ID8747=TJclBorRADToolInstallation.FOpenHelp -ID8748=TJclBorRADToolInstallation.FOutputCallback -ID8749=TJclBorRADToolInstallation.FPalette -ID875=BorRADToolRepositoryObjectDesigner -ID8750=TJclBorRADToolInstallation.FPersonalities -ID8751=TJclBorRADToolInstallation.FRepository -ID8752=TJclBorRADToolInstallation.FRootDir -ID8753=TJclBorRADToolInstallation.FVersionNumber -ID8754=TJclBorRADToolInstallation.FVersionNumberStr -ID8755=TJclBorRADToolInstallation.GetBCC32 -ID8756=TJclBorRADToolInstallation.GetBPLOutputPath -ID8757=TJclBorRADToolInstallation.GetBpr2Mak -ID8758=TJclBorRADToolInstallation.GetCommonProjectsDir -ID8759=TJclBorRADToolInstallation.GetDCC32 -ID876=BorRADToolRepositoryObjectIcon -ID8760=TJclBorRADToolInstallation.GetDCPOutputPath -ID8761=TJclBorRADToolInstallation.GetDebugDCUPath -ID8762=TJclBorRADToolInstallation.GetDefaultProjectsDir -ID8763=TJclBorRADToolInstallation.GetDescription -ID8764=TJclBorRADToolInstallation.GetEditionAsText -ID8765=TJclBorRADToolInstallation.GetEnvironmentVariables -ID8766=TJclBorRADToolInstallation.GetGlobals -ID8767=TJclBorRADToolInstallation.GetIdeExeBuildNumber -ID8768=TJclBorRADToolInstallation.GetIdeExeFileName -ID8769=TJclBorRADToolInstallation.GetIdePackages -ID877=BorRADToolRepositoryObjectMainForm -ID8770=TJclBorRADToolInstallation.GetIsTurboExplorer -ID8771=TJclBorRADToolInstallation.GetLatestUpdatePack -ID8772=TJclBorRADToolInstallation.GetLatestUpdatePackForVersion@Integer -ID8773=TJclBorRADToolInstallation.GetLibraryBrowsingPath -ID8774=TJclBorRADToolInstallation.GetLibrarySearchPath -ID8775=TJclBorRADToolInstallation.GetMake -ID8776=TJclBorRADToolInstallation.GetName -ID8777=TJclBorRADToolInstallation.GetPalette -ID8778=TJclBorRADToolInstallation.GetRepository -ID8779=TJclBorRADToolInstallation.GetSupportsLibSuffix -ID878=BorRADToolRepositoryObjectName -ID8780=TJclBorRADToolInstallation.GetUpdateNeeded -ID8781=TJclBorRADToolInstallation.GetValid -ID8782=TJclBorRADToolInstallation.GetVclIncludeDir -ID8783=TJclBorRADToolInstallation.Globals -ID8784=TJclBorRADToolInstallation.IdeExeBuildNumber -ID8785=TJclBorRADToolInstallation.IdeExeFileName -ID8786=TJclBorRADToolInstallation.IdePackages -ID8787=TJclBorRADToolInstallation.IdeTools -ID8788=TJclBorRADToolInstallation.IDEVersionNumber -ID8789=TJclBorRADToolInstallation.IDEVersionNumberStr -ID879=BorRADToolRepositoryObjectNewForm -ID8790=TJclBorRADToolInstallation.InstallBCBExpert@string@string@string -ID8791=TJclBorRADToolInstallation.InstallBCBIdePackage@string@string@string -ID8792=TJclBorRADToolInstallation.InstallBCBPackage@string@string@string -ID8793=TJclBorRADToolInstallation.InstallDelphiExpert@string@string@string -ID8794=TJclBorRADToolInstallation.InstallDelphiIdePackage@string@string@string -ID8795=TJclBorRADToolInstallation.InstallDelphiPackage@string@string@string -ID8796=TJclBorRADToolInstallation.InstalledUpdatePack -ID8797=TJclBorRADToolInstallation.InstallExpert@string@string@string -ID8798=TJclBorRADToolInstallation.InstallIDEPackage@string@string@string -ID8799=TJclBorRADToolInstallation.InstallPackage@string@string@string +ID870=BIT_16 +ID8700=TEDI_ANSIX12_Document.SetSpecificationPointers@TEDISegment@TEDISEFSegment +ID8701=TEDI_ANSIX12_Document.ValidateData@TEDI_ANSIX12_Document@TEDILoopStack@TEDISegment@TEDISEFSegment@Integer@Integer@Boolean +ID8702=TEDI_ANSIX12_Document.ValidateSegSpecIndex@string@Integer +ID8703=TEDI_UNEDIFACT_Document +ID8704=TEDI_UNEDIFACT_Document.AddLoopToDoc@TEDILoopStackRecord@string@string@string@TEDIObject +ID8705=TEDI_UNEDIFACT_Document.AdvanceSegSpecIndex@Integer@Integer@Integer +ID8706=TEDI_UNEDIFACT_Document.Create@TEDIDataObject@TEDIMessage@TEDISEFSet +ID8707=TEDI_UNEDIFACT_Document.Destroy +ID8708=TEDI_UNEDIFACT_Document.EDITSDOptions +ID8709=TEDI_UNEDIFACT_Document.ErrorOccured +ID871=BIT_17 +ID8710=TEDI_UNEDIFACT_Document.FEDILoopStack +ID8711=TEDI_UNEDIFACT_Document.FEDIMessage +ID8712=TEDI_UNEDIFACT_Document.FEDIMessageSpec +ID8713=TEDI_UNEDIFACT_Document.FEDISEFSet +ID8714=TEDI_UNEDIFACT_Document.FEDITSDOptions +ID8715=TEDI_UNEDIFACT_Document.FErrorOccured +ID8716=TEDI_UNEDIFACT_Document.FormatDocument +ID8717=TEDI_UNEDIFACT_Document.SetSpecificationPointers@TEDISegment@TEDISEFSegment +ID8718=TEDI_UNEDIFACT_Document.ValidateData@TEDI_UNEDIFACT_Document@TEDILoopStack@TEDISegment@TEDISEFSegment@Integer@Integer@Boolean +ID8719=TEDI_UNEDIFACT_Document.ValidateSegSpecIndex@string@Integer +ID872=BIT_18 +ID8720=TEDICompositeElement +ID8721=TEDICompositeElement.AddElement +ID8722=TEDICompositeElement.AddElements@Integer +ID8723=TEDICompositeElement.AppendElement@TEDIElement +ID8724=TEDICompositeElement.AppendElements@TEDIElementArray +ID8725=TEDICompositeElement.Assemble +ID8726=TEDICompositeElement.Create@TEDIDataObject@Integer +ID8727=TEDICompositeElement.DeleteElement@Integer +ID8728=TEDICompositeElement.DeleteElement@TEDIElement +ID8729=TEDICompositeElement.DeleteElements +ID873=BIT_19 +ID8730=TEDICompositeElement.DeleteElements@Integer@Integer +ID8731=TEDICompositeElement.Destroy +ID8732=TEDICompositeElement.Disassemble +ID8733=TEDICompositeElement.Element +ID8734=TEDICompositeElement.Elements +ID8735=TEDICompositeElement.GetElement@Integer +ID8736=TEDICompositeElement.InsertElement@Integer +ID8737=TEDICompositeElement.InsertElement@Integer@TEDIElement +ID8738=TEDICompositeElement.InsertElements@Integer@Integer +ID8739=TEDICompositeElement.InsertElements@Integer@TEDIElementArray +ID874=BIT_2 +ID8740=TEDICompositeElement.InternalAssignDelimiters +ID8741=TEDICompositeElement.InternalCreateEDIDataObject +ID8742=TEDICompositeElement.InternalCreateElement +ID8743=TEDICompositeElement.SetElement@Integer@TEDIElement +ID8744=TEDICompositeElementArray +ID8745=TEDIDataObject +ID8746=TEDIDataObject.Assemble +ID8747=TEDIDataObject.Create@TEDIDataObject +ID8748=TEDIDataObject.CustomData1 +ID8749=TEDIDataObject.CustomData2 +ID875=BIT_20 +ID8750=TEDIDataObject.Data +ID8751=TEDIDataObject.DataLength +ID8752=TEDIDataObject.Delimiters +ID8753=TEDIDataObject.Destroy +ID8754=TEDIDataObject.Disassemble +ID8755=TEDIDataObject.FCustomData1 +ID8756=TEDIDataObject.FCustomData2 +ID8757=TEDIDataObject.FData +ID8758=TEDIDataObject.FDelimiters +ID8759=TEDIDataObject.FEDIDOT +ID876=BIT_20_FLAG +ID8760=TEDIDataObject.FErrorLog +ID8761=TEDIDataObject.FLength +ID8762=TEDIDataObject.FParent +ID8763=TEDIDataObject.FSpecPointer +ID8764=TEDIDataObject.FState +ID8765=TEDIDataObject.GetData +ID8766=TEDIDataObject.Parent +ID8767=TEDIDataObject.SetData@string +ID8768=TEDIDataObject.SetDelimiters@TEDIDelimiters +ID8769=TEDIDataObject.SpecPointer +ID877=BIT_21 +ID8770=TEDIDataObject.State +ID8771=TEDIDataObjectArray +ID8772=TEDIDataObjectDataState +ID8773=TEDIDataObjectDataState.ediAssembled +ID8774=TEDIDataObjectDataState.ediCreated +ID8775=TEDIDataObjectDataState.ediDisassembled +ID8776=TEDIDataObjectGroup +ID8777=TEDIDataObjectGroup.AddEDIDataObject +ID8778=TEDIDataObjectGroup.AddEDIDataObjects@Integer +ID8779=TEDIDataObjectGroup.AppendEDIDataObject@TEDIDataObject +ID878=BIT_22 +ID8780=TEDIDataObjectGroup.AppendEDIDataObjects@TEDIDataObjectArray +ID8781=TEDIDataObjectGroup.Create@TEDIDataObject@Integer +ID8782=TEDIDataObjectGroup.CreateObjectType +ID8783=TEDIDataObjectGroup.DeleteEDIDataObject@Integer +ID8784=TEDIDataObjectGroup.DeleteEDIDataObject@TEDIDataObject +ID8785=TEDIDataObjectGroup.DeleteEDIDataObjects +ID8786=TEDIDataObjectGroup.DeleteEDIDataObjects@Integer@Integer +ID8787=TEDIDataObjectGroup.Destroy +ID8788=TEDIDataObjectGroup.EDIDataObject +ID8789=TEDIDataObjectGroup.EDIDataObjectCount +ID879=BIT_23 +ID8790=TEDIDataObjectGroup.EDIDataObjects +ID8791=TEDIDataObjectGroup.FCreateObjectType +ID8792=TEDIDataObjectGroup.FEDIDataObjects +ID8793=TEDIDataObjectGroup.FGroupIsParent +ID8794=TEDIDataObjectGroup.GetCount +ID8795=TEDIDataObjectGroup.GetEDIDataObject@Integer +ID8796=TEDIDataObjectGroup.GetIndexPositionFromParent +ID8797=TEDIDataObjectGroup.IndexIsValid@Integer +ID8798=TEDIDataObjectGroup.InsertEDIDataObject@Integer +ID8799=TEDIDataObjectGroup.InsertEDIDataObject@Integer@TEDIDataObject ID88=!!OVERLOADED_InsertMessage_TEDIFunctionalGroup -ID880=BorRADToolRepositoryObjectPage -ID8800=TJclBorRADToolInstallation.IsBDSPersonality -ID8801=TJclBorRADToolInstallation.IsTurboExplorer -ID8802=TJclBorRADToolInstallation.JdbgCreate -ID8803=TJclBorRADToolInstallation.JdbgInsert -ID8804=TJclBorRADToolInstallation.LatestUpdatePack -ID8805=TJclBorRADToolInstallation.LibFolderName -ID8806=TJclBorRADToolInstallation.LibraryBrowsingPath -ID8807=TJclBorRADToolInstallation.LibrarySearchPath -ID8808=TJclBorRADToolInstallation.Make -ID8809=TJclBorRADToolInstallation.MapCreate -ID881=BorRADToolRepositoryObjectType -ID8810=TJclBorRADToolInstallation.MapDelete -ID8811=TJclBorRADToolInstallation.Name -ID8812=TJclBorRADToolInstallation.OpenHelp -ID8813=TJclBorRADToolInstallation.OutputCallback -ID8814=TJclBorRADToolInstallation.OutputFileDelete@string -ID8815=TJclBorRADToolInstallation.OutputString@string -ID8816=TJclBorRADToolInstallation.PackageSourceFileExtension -ID8817=TJclBorRADToolInstallation.Palette -ID8818=TJclBorRADToolInstallation.Personalities -ID8819=TJclBorRADToolInstallation.ProcessMapFile@string -ID882=BorRADToolRepositoryPagesSection -ID8820=TJclBorRADToolInstallation.ProjectSourceFileExtension -ID8821=TJclBorRADToolInstallation.RadToolKind -ID8822=TJclBorRADToolInstallation.RadToolName -ID8823=TJclBorRADToolInstallation.ReadInformation -ID8824=TJclBorRADToolInstallation.RegisterExpert@string@string -ID8825=TJclBorRADToolInstallation.RegisterIDEPackage@string@string -ID8826=TJclBorRADToolInstallation.RegisterPackage@string@string -ID8827=TJclBorRADToolInstallation.RemoveFromDebugDCUPath@string -ID8828=TJclBorRADToolInstallation.RemoveFromLibraryBrowsingPath@string -ID8829=TJclBorRADToolInstallation.RemoveFromLibrarySearchPath@string -ID883=BorRADToolRepositoryProjectsPage -ID8830=TJclBorRADToolInstallation.RemoveFromPath@string@string -ID8831=TJclBorRADToolInstallation.Repository -ID8832=TJclBorRADToolInstallation.RootDir -ID8833=TJclBorRADToolInstallation.SetDebugDCUPath@TJclBorRADToolPath -ID8834=TJclBorRADToolInstallation.SetLibraryBrowsingPath@TJclBorRADToolPath -ID8835=TJclBorRADToolInstallation.SetLibrarySearchPath@TJclBorRADToolPath -ID8836=TJclBorRADToolInstallation.SetOutputCallback@TTextHandler -ID8837=TJclBorRADToolInstallation.SubstitutePath@string -ID8838=TJclBorRADToolInstallation.SupportsBCB -ID8839=TJclBorRADToolInstallation.SupportsLibSuffix -ID884=BorRADToolRepositoryProjectTemplate -ID8840=TJclBorRADToolInstallation.SupportsVCL -ID8841=TJclBorRADToolInstallation.SupportsVisualCLX -ID8842=TJclBorRADToolInstallation.UninstallBCBExpert@string@string -ID8843=TJclBorRADToolInstallation.UninstallBCBIdePackage@string@string@string -ID8844=TJclBorRADToolInstallation.UninstallBCBPackage@string@string@string -ID8845=TJclBorRADToolInstallation.UninstallDelphiExpert@string@string -ID8846=TJclBorRADToolInstallation.UninstallDelphiIdePackage@string@string@string -ID8847=TJclBorRADToolInstallation.UninstallDelphiPackage@string@string@string -ID8848=TJclBorRADToolInstallation.UninstallExpert@string@string -ID8849=TJclBorRADToolInstallation.UninstallIDEPackage@string@string@string -ID885=BPLFileName@string@string -ID8850=TJclBorRADToolInstallation.UninstallPackage@string@string@string -ID8851=TJclBorRADToolInstallation.UnregisterExpert@string -ID8852=TJclBorRADToolInstallation.UnregisterIDEPackage@string -ID8853=TJclBorRADToolInstallation.UnregisterPackage@string -ID8854=TJclBorRADToolInstallation.UpdateNeeded -ID8855=TJclBorRADToolInstallation.Valid -ID8856=TJclBorRADToolInstallation.VclIncludeDir -ID8857=TJclBorRADToolInstallation.VersionNumber -ID8858=TJclBorRADToolInstallation.VersionNumberStr -ID8859=TJclBorRADToolInstallationClass -ID886=bRtdlFunctionsLoaded -ID8860=TJclBorRADToolInstallationObject -ID8861=TJclBorRADToolInstallationObject.Create@TJclBorRADToolInstallation -ID8862=TJclBorRADToolInstallationObject.FInstallation -ID8863=TJclBorRADToolInstallationObject.Installation -ID8864=TJclBorRADToolInstallations -ID8865=TJclBorRADToolInstallations.AnyInstanceRunning -ID8866=TJclBorRADToolInstallations.AnyUpdatePackNeeded@string -ID8867=TJclBorRADToolInstallations.BCBInstallationFromVersion -ID8868=TJclBorRADToolInstallations.BCBVersionInstalled -ID8869=TJclBorRADToolInstallations.BDSInstallationFromVersion -ID887=ByteArrayStringLen@TBytes -ID8870=TJclBorRADToolInstallations.BDSVersionInstalled -ID8871=TJclBorRADToolInstallations.Count -ID8872=TJclBorRADToolInstallations.Create -ID8873=TJclBorRADToolInstallations.DelphiInstallationFromVersion -ID8874=TJclBorRADToolInstallations.DelphiVersionInstalled -ID8875=TJclBorRADToolInstallations.Destroy -ID8876=TJclBorRADToolInstallations.FList -ID8877=TJclBorRADToolInstallations.GetBCBInstallationFromVersion@Integer -ID8878=TJclBorRADToolInstallations.GetBCBVersionInstalled@Integer -ID8879=TJclBorRADToolInstallations.GetBDSInstallationFromVersion@Integer -ID888=ByteArrayToString@TBytes@Integer -ID8880=TJclBorRADToolInstallations.GetBDSVersionInstalled@Integer -ID8881=TJclBorRADToolInstallations.GetCount -ID8882=TJclBorRADToolInstallations.GetDelphiInstallationFromVersion@Integer -ID8883=TJclBorRADToolInstallations.GetDelphiVersionInstalled@Integer -ID8884=TJclBorRADToolInstallations.GetInstallations@Integer -ID8885=TJclBorRADToolInstallations.Installations -ID8886=TJclBorRADToolInstallations.Iterate@TTraverseMethod -ID8887=TJclBorRADToolInstallations.ReadInstallations -ID8888=TJclBorRADToolKind -ID8889=TJclBorRADToolKind.brBorlandDevStudio -ID889=ByteMask -ID8890=TJclBorRADToolKind.brCppBuilder -ID8891=TJclBorRADToolKind.brDelphi -ID8892=TJclBorRADToolPalette -ID8893=TJclBorRADToolPalette.ComponentsOnTab -ID8894=TJclBorRADToolPalette.ComponentsOnTabToStrings@Integer@TStrings@Boolean@Boolean -ID8895=TJclBorRADToolPalette.Create@TJclBorRADToolInstallation -ID8896=TJclBorRADToolPalette.DeleteTabName@string -ID8897=TJclBorRADToolPalette.Destroy -ID8898=TJclBorRADToolPalette.FKey -ID8899=TJclBorRADToolPalette.FTabNames +ID880=BIT_24 +ID8800=TEDIDataObjectGroup.InsertEDIDataObjects@Integer@Integer +ID8801=TEDIDataObjectGroup.InsertEDIDataObjects@Integer@TEDIDataObjectArray +ID8802=TEDIDataObjectGroup.InternalAssignDelimiters +ID8803=TEDIDataObjectGroup.InternalCreateEDIDataObject +ID8804=TEDIDataObjectGroup.SetEDIDataObject@Integer@TEDIDataObject +ID8805=TEDIDataObjectGroupArray +ID8806=TEDIDataObjectList +ID8807=TEDIDataObjectList.CreateListItem@TEDIObjectListItem@TEDIObject +ID8808=TEDIDataObjectList.EDIDataObject +ID8809=TEDIDataObjectList.GetEDIDataObject@Integer +ID881=BIT_25 +ID8810=TEDIDataObjectList.SetEDIDataObject@Integer@TEDIDataObject +ID8811=TEDIDataObjectListItem +ID8812=TEDIDataObjectListItem.EDIDataObject +ID8813=TEDIDataObjectListItem.GetEDIDataObject +ID8814=TEDIDataObjectListItem.SetEDIDataObject@TEDIDataObject +ID8815=TEDIDataObjectListOptions +ID8816=TEDIDataObjectType +ID8817=TEDIDataObjectType.ediCompositeElement +ID8818=TEDIDataObjectType.ediCustom +ID8819=TEDIDataObjectType.ediElement +ID882=BIT_26 +ID8820=TEDIDataObjectType.ediFile +ID8821=TEDIDataObjectType.ediFunctionalGroup +ID8822=TEDIDataObjectType.ediInterchangeControl +ID8823=TEDIDataObjectType.ediLoop +ID8824=TEDIDataObjectType.ediMessage +ID8825=TEDIDataObjectType.ediSegment +ID8826=TEDIDataObjectType.ediTransactionSet +ID8827=TEDIDataObjectType.ediUnknown +ID8828=TEDIDelimiters +ID8829=TEDIDelimiters.Create +ID883=BIT_27 +ID8830=TEDIDelimiters.Create@string@string@string +ID8831=TEDIDelimiters.ED +ID8832=TEDIDelimiters.EDLen +ID8833=TEDIDelimiters.FElementDelimiter +ID8834=TEDIDelimiters.FElementDelimiterLength +ID8835=TEDIDelimiters.FSegmentDelimiter +ID8836=TEDIDelimiters.FSegmentDelimiterLength +ID8837=TEDIDelimiters.FSubElementSeperator +ID8838=TEDIDelimiters.FSubelementSeperatorLength +ID8839=TEDIDelimiters.SD +ID884=BIT_28 +ID8840=TEDIDelimiters.SDLen +ID8841=TEDIDelimiters.SetED@string +ID8842=TEDIDelimiters.SetSD@string +ID8843=TEDIDelimiters.SetSS@string +ID8844=TEDIDelimiters.SS +ID8845=TEDIDelimiters.SSLen +ID8846=TEDIElement +ID8847=TEDIElement.Assemble +ID8848=TEDIElement.Create@TEDIDataObject +ID8849=TEDIElement.Disassemble +ID885=BIT_29 +ID8850=TEDIElement.GetIndexPositionFromParent +ID8851=TEDIElementArray +ID8852=TEDIElementSpec +ID8853=TEDIElementSpec.Assemble +ID8854=TEDIElementSpec.Create@TEDIDataObject +ID8855=TEDIElementSpec.Description +ID8856=TEDIElementSpec.Destroy +ID8857=TEDIElementSpec.Disassemble +ID8858=TEDIElementSpec.ElementId +ID8859=TEDIElementSpec.ElementType +ID886=BIT_3 +ID8860=TEDIElementSpec.FDescription +ID8861=TEDIElementSpec.FElementId +ID8862=TEDIElementSpec.FMaximumLength +ID8863=TEDIElementSpec.FMinimumLength +ID8864=TEDIElementSpec.FNotes +ID8865=TEDIElementSpec.FPosition +ID8866=TEDIElementSpec.FRequirementDesignator +ID8867=TEDIElementSpec.FReservedData +ID8868=TEDIElementSpec.FType +ID8869=TEDIElementSpec.GetReservedData +ID887=BIT_30 +ID8870=TEDIElementSpec.Id +ID8871=TEDIElementSpec.MaximumLength +ID8872=TEDIElementSpec.MinimumLength +ID8873=TEDIElementSpec.Notes +ID8874=TEDIElementSpec.Position +ID8875=TEDIElementSpec.RequirementDesignator +ID8876=TEDIElementSpec.ReservedData +ID8877=TEDIFile +ID8878=TEDIFile.AddInterchange +ID8879=TEDIFile.AddInterchanges@Integer +ID888=BIT_30_FLAG +ID8880=TEDIFile.AppendInterchange@TEDIInterchangeControl +ID8881=TEDIFile.AppendInterchanges@TEDIInterchangeControlArray +ID8882=TEDIFile.Assemble +ID8883=TEDIFile.Create@TEDIDataObject@Integer +ID8884=TEDIFile.DeleteInterchange@Integer +ID8885=TEDIFile.DeleteInterchange@TEDIInterchangeControl +ID8886=TEDIFile.DeleteInterchanges +ID8887=TEDIFile.DeleteInterchanges@Integer@Integer +ID8888=TEDIFile.Destroy +ID8889=TEDIFile.Disassemble +ID889=BIT_31 +ID8890=TEDIFile.FEDIFileOptions +ID8891=TEDIFile.FFileID +ID8892=TEDIFile.FFileName +ID8893=TEDIFile.FileID +ID8894=TEDIFile.FileName +ID8895=TEDIFile.GetInterchangeControl@Integer +ID8896=TEDIFile.InsertInterchange@Integer +ID8897=TEDIFile.InsertInterchange@Integer@TEDIInterchangeControl +ID8898=TEDIFile.InsertInterchanges@Integer@Integer +ID8899=TEDIFile.InsertInterchanges@Integer@TEDIInterchangeControlArray ID89=!!OVERLOADED_InsertMessage_TEDIInterchangeControl -ID890=BZip2File@string@string@Integer@TJclCompressStreamProgressCallback@Pointer -ID8900=TJclBorRADToolPalette.GetComponentsOnTab@Integer -ID8901=TJclBorRADToolPalette.GetHiddenComponentsOnTab@Integer -ID8902=TJclBorRADToolPalette.GetTabNameCount -ID8903=TJclBorRADToolPalette.GetTabNames@Integer -ID8904=TJclBorRADToolPalette.HiddenComponentsOnTab -ID8905=TJclBorRADToolPalette.Key -ID8906=TJclBorRADToolPalette.ReadTabNames -ID8907=TJclBorRADToolPalette.TabNameCount -ID8908=TJclBorRADToolPalette.TabNameExists@string -ID8909=TJclBorRADToolPalette.TabNames -ID891=C1_ALPHA -ID8910=TJclBorRADToolPath -ID8911=TJclBorRADToolRepository -ID8912=TJclBorRADToolRepository.AddObject@string@string@string@string@string@string@string@string@string -ID8913=TJclBorRADToolRepository.CloseIniFile -ID8914=TJclBorRADToolRepository.Create@TJclBorRADToolInstallation -ID8915=TJclBorRADToolRepository.Destroy -ID8916=TJclBorRADToolRepository.FFileName -ID8917=TJclBorRADToolRepository.FileName -ID8918=TJclBorRADToolRepository.FindPage@string@Integer -ID8919=TJclBorRADToolRepository.FIniFile -ID892=C1_BLANK -ID8920=TJclBorRADToolRepository.FPages -ID8921=TJclBorRADToolRepository.GetIniFile -ID8922=TJclBorRADToolRepository.GetPages -ID8923=TJclBorRADToolRepository.IniFile -ID8924=TJclBorRADToolRepository.Pages -ID8925=TJclBorRADToolRepository.RemoveObjects@string@string@string -ID8926=TJclBorUmSymbolModifiers -ID8927=TJclBpr2Mak -ID8928=TJclBpr2Mak.GetExeName -ID8929=TJclBriefCaseSummaryInformation -ID893=C1_CNTRL -ID8930=TJclBriefCaseSummaryInformation.GetFMTID -ID8931=TJclBucket -ID8932=TJclBucket.Entries -ID8933=TJclBucket.TJclBucket=recordCount -ID8934=TJclBucketArray -ID8935=TJclBufferedStream -ID8936=TJclBufferedStream.BufferHit -ID8937=TJclBufferedStream.BufferSize -ID8938=TJclBufferedStream.Create@TStream@Boolean -ID8939=TJclBufferedStream.Destroy -ID894=C1_DIGIT -ID8940=TJclBufferedStream.DoAfterStreamChange -ID8941=TJclBufferedStream.DoBeforeStreamChange -ID8942=TJclBufferedStream.FBuffer -ID8943=TJclBufferedStream.FBufferCurrentSize -ID8944=TJclBufferedStream.FBufferMaxModifiedPos -ID8945=TJclBufferedStream.FBufferSize -ID8946=TJclBufferedStream.FBufferStart -ID8947=TJclBufferedStream.Flush -ID8948=TJclBufferedStream.FPosition -ID8949=TJclBufferedStream.GetCalcedSize -ID895=C1_LOWER -ID8950=TJclBufferedStream.LoadBuffer -ID8951=TJclBufferedStream.Read@@Longint -ID8952=TJclBufferedStream.ReadFromBuffer@@Longint@Longint -ID8953=TJclBufferedStream.Seek@Int64@TSeekOrigin -ID8954=TJclBufferedStream.Write@@Longint -ID8955=TJclBufferedStream.WriteToBuffer@@Longint@Longint -ID8956=TJclByteArray -ID8957=TJclByteMap -ID8958=TJclByteMap.Assign -ID8959=TJclByteMap.AssignTo@TPersistent -ID896=C1_PUNCT -ID8960=TJclByteMap.Bytes -ID8961=TJclByteMap.Clear -ID8962=TJclByteMap.Destroy -ID8963=TJclByteMap.Empty -ID8964=TJclByteMap.FBytes -ID8965=TJclByteMap.FHeight -ID8966=TJclByteMap.FWidth -ID8967=TJclByteMap.GetValPtr@Integer@Integer -ID8968=TJclByteMap.GetValue@Integer@Integer -ID8969=TJclByteMap.ReadFrom -ID897=C1_SPACE -ID8970=TJclByteMap.SetSize -ID8971=TJclByteMap.SetValue@Integer@Integer@Byte -ID8972=TJclByteMap.ValPtr -ID8973=TJclByteMap.Value -ID8974=TJclByteMap.WriteTo@TJclBitmap32@TConversionKind -ID8975=TJclByteMap.WriteTo@TJclBitmap32@TPalette32 -ID8976=TJclBytes -ID8977=TJclBZIP2CompressionStream -ID8978=TJclBZIP2CompressionStream.BZLibRecord -ID8979=TJclBZIP2CompressionStream.CompressionLevel -ID898=C1_UPPER -ID8980=TJclBZIP2CompressionStream.Create@TStream@TJclCompressionLevel -ID8981=TJclBZIP2CompressionStream.Destroy -ID8982=TJclBZIP2CompressionStream.FCompressionLevel -ID8983=TJclBZIP2CompressionStream.FDeflateInitialized -ID8984=TJclBZIP2CompressionStream.Flush -ID8985=TJclBZIP2CompressionStream.Seek@Int64@TSeekOrigin -ID8986=TJclBZIP2CompressionStream.SetCompressionLevel@Integer -ID8987=TJclBZIP2CompressionStream.Write@@Longint -ID8988=TJclBZIP2DecompressionStream -ID8989=TJclBZIP2DecompressionStream.BZLibRecord -ID899=C1_XDIGIT -ID8990=TJclBZIP2DecompressionStream.Create@TStream -ID8991=TJclBZIP2DecompressionStream.Destroy -ID8992=TJclBZIP2DecompressionStream.FInflateInitialized -ID8993=TJclBZIP2DecompressionStream.Read@@Longint -ID8994=TJclBZIP2DecompressionStream.Seek@Int64@TSeekOrigin -ID8995=TJclCdMediaInfo -ID8996=TJclCdMediaInfo.miIdentity -ID8997=TJclCdMediaInfo.miProduct -ID8998=TJclCdMediaInfo.miUPC -ID8999=TJclCdTrackInfo +ID890=BIT_4 +ID8900=TEDIFile.Interchange +ID8901=TEDIFile.InterchangeControlCount +ID8902=TEDIFile.Interchanges +ID8903=TEDIFile.InternalAlternateDelimitersDetection@Integer +ID8904=TEDIFile.InternalAssignDelimiters +ID8905=TEDIFile.InternalCreateEDIDataObject +ID8906=TEDIFile.InternalCreateInterchangeControl +ID8907=TEDIFile.InternalDelimitersDetection@Integer +ID8908=TEDIFile.InternalLoadFromFile +ID8909=TEDIFile.LoadFromFile@string +ID891=BIT_5 +ID8910=TEDIFile.Options +ID8911=TEDIFile.ReLoadFromFile +ID8912=TEDIFile.SaveAsToFile@string +ID8913=TEDIFile.SaveToFile +ID8914=TEDIFile.SetInterchangeControl@Integer@TEDIInterchangeControl +ID8915=TEDIFileArray +ID8916=TEDIFileOptions +ID8917=TEDIFileSpec +ID8918=TEDIFileSpec.Create@TEDIDataObject@Integer +ID8919=TEDIFileSpec.FindFunctionalGroupSpec@string@string@string@string@string +ID892=BIT_6 +ID8920=TEDIFileSpec.FindInterchangeControlSpec@string@string +ID8921=TEDIFileSpec.FindTransactionSetSpec@string@string@string@string@string@string +ID8922=TEDIFileSpec.InternalCreateInterchangeControl +ID8923=TEDIFileSpec.InternalDelimitersDetection@Integer +ID8924=TEDIFunctionalGroup +ID8925=TEDIFunctionalGroup.AddMessage +ID8926=TEDIFunctionalGroup.AddMessages@Integer +ID8927=TEDIFunctionalGroup.AppendMessage@TEDIMessage +ID8928=TEDIFunctionalGroup.AppendMessages@TEDIMessageArray +ID8929=TEDIFunctionalGroup.Assemble +ID893=BIT_7 +ID8930=TEDIFunctionalGroup.Create@TEDIDataObject@Integer +ID8931=TEDIFunctionalGroup.DeleteMessage@Integer +ID8932=TEDIFunctionalGroup.DeleteMessage@TEDIMessage +ID8933=TEDIFunctionalGroup.DeleteMessages +ID8934=TEDIFunctionalGroup.DeleteMessages@Integer@Integer +ID8935=TEDIFunctionalGroup.Destroy +ID8936=TEDIFunctionalGroup.Disassemble +ID8937=TEDIFunctionalGroup.FUNESegment +ID8938=TEDIFunctionalGroup.FUNGSegment +ID8939=TEDIFunctionalGroup.GetMessage@Integer +ID894=BIT_8 +ID8940=TEDIFunctionalGroup.InsertMessage@Integer +ID8941=TEDIFunctionalGroup.InsertMessage@Integer@TEDIMessage +ID8942=TEDIFunctionalGroup.InsertMessages@Integer@Integer +ID8943=TEDIFunctionalGroup.InsertMessages@Integer@TEDIMessageArray +ID8944=TEDIFunctionalGroup.InternalAssignDelimiters +ID8945=TEDIFunctionalGroup.InternalCreateEDIDataObject +ID8946=TEDIFunctionalGroup.InternalCreateHeaderTrailerSegments +ID8947=TEDIFunctionalGroup.InternalCreateMessage +ID8948=TEDIFunctionalGroup.Message +ID8949=TEDIFunctionalGroup.MessageCount +ID895=BIT_9 +ID8950=TEDIFunctionalGroup.Messages +ID8951=TEDIFunctionalGroup.SegmentUNE +ID8952=TEDIFunctionalGroup.SegmentUNG +ID8953=TEDIFunctionalGroup.SetMessage@Integer@TEDIMessage +ID8954=TEDIFunctionalGroup.SetUNESegment@TEDIFunctionalGroupSegment +ID8955=TEDIFunctionalGroup.SetUNGSegment@TEDIFunctionalGroupSegment +ID8956=TEDIFunctionalGroupArray +ID8957=TEDIFunctionalGroupSegment +ID8958=TEDIFunctionalGroupSegment.Create@TEDIDataObject@Integer +ID8959=TEDIFunctionalGroupSegment.InternalAssignDelimiters +ID896=BitmapToGif@string +ID8960=TEDIFunctionalGroupSegmentGSSpec +ID8961=TEDIFunctionalGroupSegmentGSSpec.AssembleReservedData@TStrings +ID8962=TEDIFunctionalGroupSegmentGSSpec.Create@TEDIDataObject@Integer +ID8963=TEDIFunctionalGroupSegmentGSSpec.DisassembleReservedData@TStrings +ID8964=TEDIFunctionalGroupSegmentSpec +ID8965=TEDIFunctionalGroupSegmentSpec.Create@TEDIDataObject@Integer +ID8966=TEDIFunctionalGroupSegmentSpec.InternalAssignDelimiters +ID8967=TEDIFunctionalGroupSpec +ID8968=TEDIFunctionalGroupSpec.AgencyCodeId +ID8969=TEDIFunctionalGroupSpec.FAgencyCodeId +ID897=BitmapToIcon@HBITMAP@Integer@Integer +ID8970=TEDIFunctionalGroupSpec.FFGDescription +ID8971=TEDIFunctionalGroupSpec.FFunctionalGroupId +ID8972=TEDIFunctionalGroupSpec.FGDescription +ID8973=TEDIFunctionalGroupSpec.FindTransactionSetSpec@string +ID8974=TEDIFunctionalGroupSpec.FunctionalGroupId +ID8975=TEDIFunctionalGroupSpec.FVersionReleaseId +ID8976=TEDIFunctionalGroupSpec.Id +ID8977=TEDIFunctionalGroupSpec.InternalCreateHeaderTrailerSegments +ID8978=TEDIFunctionalGroupSpec.InternalCreateTransactionSet +ID8979=TEDIFunctionalGroupSpec.VersionReleaseId +ID898=BitmapToPng@string +ID8980=TEDIInterchangeControl +ID8981=TEDIInterchangeControl.AddFunctionalGroup +ID8982=TEDIInterchangeControl.AddFunctionalGroups@Integer +ID8983=TEDIInterchangeControl.AddMessage +ID8984=TEDIInterchangeControl.AddMessages@Integer +ID8985=TEDIInterchangeControl.AppendFunctionalGroup@TEDIFunctionalGroup +ID8986=TEDIInterchangeControl.AppendFunctionalGroups@TEDIFunctionalGroupArray +ID8987=TEDIInterchangeControl.AppendMessage@TEDIMessage +ID8988=TEDIInterchangeControl.AppendMessages@TEDIMessageArray +ID8989=TEDIInterchangeControl.Assemble +ID899=BitsHighest@Cardinal +ID8990=TEDIInterchangeControl.Create@TEDIDataObject@Integer +ID8991=TEDIInterchangeControl.Destroy +ID8992=TEDIInterchangeControl.Disassemble +ID8993=TEDIInterchangeControl.FCreateObjectType +ID8994=TEDIInterchangeControl.FUNASegment +ID8995=TEDIInterchangeControl.FUNBSegment +ID8996=TEDIInterchangeControl.FUNZSegment +ID8997=TEDIInterchangeControl.InsertFunctionalGroup@Integer +ID8998=TEDIInterchangeControl.InsertFunctionalGroup@Integer@TEDIFunctionalGroup +ID8999=TEDIInterchangeControl.InsertFunctionalGroups@Integer@Integer ID9=!!OVERLOADED_Append_TStringBuilder ID90=!!OVERLOADED_InsertMessages_TEDIFunctionalGroup -ID900=CAL_ITWODIGITYEARMAX -ID9000=TJclCdTrackInfo.Minute -ID9001=TJclCdTrackInfo.Second -ID9002=TJclCdTrackInfo.TrackType -ID9003=TJclCdTrackInfoArray -ID9004=TJclCdTrackType -ID9005=TJclCdTrackType.ttAudio -ID9006=TJclCdTrackType.ttOther -ID9007=TJclClrAppDomain -ID9008=TJclClrAppDomain.Create@TJclClrHost@IJclClrAppDomain -ID9009=TJclClrAppDomain.DefaultInterface -ID901=CAL_NOUSEROVERRIDE -ID9010=TJclClrAppDomain.Execute@TFileName@IJclClrEvidence -ID9011=TJclClrAppDomain.Execute@TFileName@TJclClrAssemblyArguments@IJclClrEvidence -ID9012=TJclClrAppDomain.Execute@TFileName@TStrings@IJclClrEvidence -ID9013=TJclClrAppDomain.FDefaultInterface -ID9014=TJclClrAppDomain.FHost -ID9015=TJclClrAppDomain.Host -ID9016=TJclClrAppDomain.Load@TStream@TStream@IJclClrEvidence -ID9017=TJclClrAppDomain.Load@WideString@IJclClrEvidence -ID9018=TJclClrAppDomain.Unload -ID9019=TJclClrAppDomainSetup -ID902=CAL_RETURN_NUMBER -ID9020=TJclClrAppDomainSetup.ApplicationBase -ID9021=TJclClrAppDomainSetup.ApplicationName -ID9022=TJclClrAppDomainSetup.CachePath -ID9023=TJclClrAppDomainSetup.ConfigurationFile -ID9024=TJclClrAppDomainSetup.Create@IAppDomainSetup -ID9025=TJclClrAppDomainSetup.DefaultInterface -ID9026=TJclClrAppDomainSetup.DynamicBase -ID9027=TJclClrAppDomainSetup.FDefaultInterface -ID9028=TJclClrAppDomainSetup.GetApplicationBase -ID9029=TJclClrAppDomainSetup.GetApplicationName -ID903=CAL_SYEARMONTH -ID9030=TJclClrAppDomainSetup.GetCachePath -ID9031=TJclClrAppDomainSetup.GetConfigurationFile -ID9032=TJclClrAppDomainSetup.GetDynamicBase -ID9033=TJclClrAppDomainSetup.GetLicenseFile -ID9034=TJclClrAppDomainSetup.GetPrivateBinPath -ID9035=TJclClrAppDomainSetup.GetPrivateBinPathProbe -ID9036=TJclClrAppDomainSetup.GetShadowCopyDirectories -ID9037=TJclClrAppDomainSetup.GetShadowCopyFiles -ID9038=TJclClrAppDomainSetup.LicenseFile -ID9039=TJclClrAppDomainSetup.PrivateBinPath -ID904=CAL_USE_CP_ACP -ID9040=TJclClrAppDomainSetup.PrivateBinPathProbe -ID9041=TJclClrAppDomainSetup.SetApplicationBase@WideString -ID9042=TJclClrAppDomainSetup.SetApplicationName@WideString -ID9043=TJclClrAppDomainSetup.SetCachePath@WideString -ID9044=TJclClrAppDomainSetup.SetConfigurationFile@WideString -ID9045=TJclClrAppDomainSetup.SetDynamicBase@WideString -ID9046=TJclClrAppDomainSetup.SetLicenseFile@WideString -ID9047=TJclClrAppDomainSetup.SetPrivateBinPath@WideString -ID9048=TJclClrAppDomainSetup.SetPrivateBinPathProbe@WideString -ID9049=TJclClrAppDomainSetup.SetShadowCopyDirectories@WideString -ID905=CALINFO_ENUMPROCEXA -ID9050=TJclClrAppDomainSetup.SetShadowCopyFiles@WideString -ID9051=TJclClrAppDomainSetup.ShadowCopyDirectories -ID9052=TJclClrAppDomainSetup.ShadowCopyFiles -ID9053=TJclClrArrayData -ID9054=TJclClrArrayData.adLowBound -ID9055=TJclClrArrayData.adSize -ID9056=TJclClrArraySign -ID9057=TJclClrArraySign.Create@TJclClrBlobRecord -ID9058=TJclClrArraySign.FBounds -ID9059=TJclClrArraySignBound -ID906=CALL_PENDING -ID9060=TJclClrArraySignBounds -ID9061=TJclClrAssembly -ID9062=TJclClrAssembly.Create@IJclClrAssembly -ID9063=TJclClrAssembly.DefaultInterface -ID9064=TJclClrAssembly.FDefaultInterface -ID9065=TJclClrAssemblyArguments -ID9066=TJclClrAssemblyFlag -ID9067=TJclClrAssemblyFlag.cafCompatibilityMask -ID9068=TJclClrAssemblyFlag.cafDisableJITcompileOptimizer -ID9069=TJclClrAssemblyFlag.cafEnableJITcompileTracking -ID907=CallFunctionShim@PWideChar@PChar@Pointer@Pointer@PWideChar@Pointer -ID9070=TJclClrAssemblyFlag.cafNonSideBySideAppDomain -ID9071=TJclClrAssemblyFlag.cafNonSideBySideMachine -ID9072=TJclClrAssemblyFlag.cafNonSideBySideProcess -ID9073=TJclClrAssemblyFlag.cafPublicKey -ID9074=TJclClrAssemblyFlag.cafSideBySideCompatible -ID9075=TJclClrAssemblyFlags -ID9076=TJclClrBase -ID9077=TJclClrBlobRecord -ID9078=TJclClrBlobRecord.Create@TJclClrStream@PJclByteArray -ID9079=TJclClrBlobRecord.Data -ID908=CallPCRECallout@pcre_callout_block -ID9080=TJclClrBlobRecord.Dump@string -ID9081=TJclClrBlobRecord.FOffset -ID9082=TJclClrBlobRecord.FPtr -ID9083=TJclClrBlobRecord.GetData -ID9084=TJclClrBlobRecord.Offset -ID9085=TJclClrBlobRecord.Ptr -ID9086=TJclClrBlobStream -ID9087=TJclClrBlobStream.At@DWORD -ID9088=TJclClrBlobStream.BlobCount -ID9089=TJclClrBlobStream.Blobs -ID909=CallPCREFree@Pointer -ID9090=TJclClrBlobStream.Create@TJclPeMetadata@PClrStreamHeader -ID9091=TJclClrBlobStream.Destroy -ID9092=TJclClrBlobStream.FBlobs -ID9093=TJclClrBlobStream.GetBlob@Integer -ID9094=TJclClrBlobStream.GetBlobCount -ID9095=TJclClrClassLayout -ID9096=TJclClrClassLayout.clAuto -ID9097=TJclClrClassLayout.clExplicit -ID9098=TJclClrClassLayout.clSequential -ID9099=TJclClrClassSemantics +ID900=BitsHighest@Int64 +ID9000=TEDIInterchangeControl.InsertFunctionalGroups@Integer@TEDIFunctionalGroupArray +ID9001=TEDIInterchangeControl.InsertMessage@Integer +ID9002=TEDIInterchangeControl.InsertMessage@Integer@TEDIMessage +ID9003=TEDIInterchangeControl.InsertMessages@Integer@Integer +ID9004=TEDIInterchangeControl.InsertMessages@Integer@TEDIMessageArray +ID9005=TEDIInterchangeControl.InternalAssignDelimiters +ID9006=TEDIInterchangeControl.InternalCreateEDIDataObject +ID9007=TEDIInterchangeControl.InternalCreateFunctionalGroup +ID9008=TEDIInterchangeControl.InternalCreateHeaderTrailerSegments +ID9009=TEDIInterchangeControl.InternalCreateMessage +ID901=BitsHighest@Integer +ID9010=TEDIInterchangeControl.SegmentUNA +ID9011=TEDIInterchangeControl.SegmentUNB +ID9012=TEDIInterchangeControl.SegmentUNZ +ID9013=TEDIInterchangeControl.SetUNBSegment@TEDIInterchangeControlSegment +ID9014=TEDIInterchangeControl.SetUNZSegment@TEDIInterchangeControlSegment +ID9015=TEDIInterchangeControlArray +ID9016=TEDIInterchangeControlSegment +ID9017=TEDIInterchangeControlSegment.Create@TEDIDataObject@Integer +ID9018=TEDIInterchangeControlSegment.InternalAssignDelimiters +ID9019=TEDIInterchangeControlSegmentISASpec +ID902=BitsHighest@ShortInt +ID9020=TEDIInterchangeControlSegmentISASpec.Assemble +ID9021=TEDIInterchangeControlSegmentISASpec.AssembleReservedData@TStrings +ID9022=TEDIInterchangeControlSegmentISASpec.Create@TEDIDataObject@Integer +ID9023=TEDIInterchangeControlSegmentISASpec.Disassemble +ID9024=TEDIInterchangeControlSegmentISASpec.DisassembleReservedData@TStrings +ID9025=TEDIInterchangeControlSegmentSpec +ID9026=TEDIInterchangeControlSegmentSpec.Create@TEDIDataObject@Integer +ID9027=TEDIInterchangeControlSegmentSpec.InternalAssignDelimiters +ID9028=TEDIInterchangeControlSpec +ID9029=TEDIInterchangeControlSpec.FICDescription +ID903=BitsHighest@SmallInt +ID9030=TEDIInterchangeControlSpec.FindFunctionalGroupSpec@string@string@string +ID9031=TEDIInterchangeControlSpec.FindTransactionSetSpec@string@string@string@string +ID9032=TEDIInterchangeControlSpec.FStandardId +ID9033=TEDIInterchangeControlSpec.FVersionId +ID9034=TEDIInterchangeControlSpec.ICDescription +ID9035=TEDIInterchangeControlSpec.InternalCreateFunctionalGroup +ID9036=TEDIInterchangeControlSpec.InternalCreateHeaderTrailerSegments +ID9037=TEDIInterchangeControlSpec.StandardId +ID9038=TEDIInterchangeControlSpec.VersionId +ID9039=TEDILoopStack +ID904=BitsHighest@Word +ID9040=TEDILoopStack.Create +ID9041=TEDILoopStack.Debug +ID9042=TEDILoopStack.Destroy +ID9043=TEDILoopStack.DoAddLoop@TEDILoopStackRecord@string@string@string@TEDIObject +ID9044=TEDILoopStack.FCheckAssignedEDIObject +ID9045=TEDILoopStack.FFlags +ID9046=TEDILoopStack.Flags +ID9047=TEDILoopStack.FOnAddLoop +ID9048=TEDILoopStack.FStack +ID9049=TEDILoopStack.GetSafeStackIndex@Integer +ID905=BitsLowest@Cardinal +ID9050=TEDILoopStack.GetSize +ID9051=TEDILoopStack.OnAddLoop +ID9052=TEDILoopStack.Peek +ID9053=TEDILoopStack.Peek@Integer +ID9054=TEDILoopStack.Pop@Integer +ID9055=TEDILoopStack.Push@string@string@string@Integer@TEDIObject +ID9056=TEDILoopStack.SetStackPointer@string@string +ID9057=TEDILoopStack.Size +ID9058=TEDILoopStack.Stack +ID9059=TEDILoopStack.UpdateStackData@string@string@string@Integer@TEDIObject +ID906=BitsLowest@Int64 +ID9060=TEDILoopStack.UpdateStackObject@TEDIObject +ID9061=TEDILoopStack.ValidateLoopStack@string@string@string@Integer@TEDIObject +ID9062=TEDILoopStackArray +ID9063=TEDILoopStackFlags +ID9064=TEDILoopStackFlags.ediAltStackPointer +ID9065=TEDILoopStackFlags.ediLoopRepeated +ID9066=TEDILoopStackFlags.ediStackResized +ID9067=TEDILoopStackFlagSet +ID9068=TEDILoopStackOnAddLoopEvent +ID9069=TEDILoopStackRecord +ID907=BitsLowest@Integer +ID9070=TEDILoopStackRecord.EDIObject +ID9071=TEDILoopStackRecord.EDISpecObject +ID9072=TEDILoopStackRecord.OwnerLoopId +ID9073=TEDILoopStackRecord.ParentLoopId +ID9074=TEDILoopStackRecord.SegmentId +ID9075=TEDILoopStackRecord.SpecStartIndex +ID9076=TEDIMessage +ID9077=TEDIMessage.AddSegment +ID9078=TEDIMessage.AddSegments@Integer +ID9079=TEDIMessage.AppendSegment@TEDISegment +ID908=BitsLowest@Shortint +ID9080=TEDIMessage.AppendSegments@TEDISegmentArray +ID9081=TEDIMessage.Assemble +ID9082=TEDIMessage.Create@TEDIDataObject@Integer +ID9083=TEDIMessage.DeleteSegment@Integer +ID9084=TEDIMessage.DeleteSegment@TEDISegment +ID9085=TEDIMessage.DeleteSegments +ID9086=TEDIMessage.DeleteSegments@Integer@Integer +ID9087=TEDIMessage.Destroy +ID9088=TEDIMessage.Disassemble +ID9089=TEDIMessage.FUNHSegment +ID909=BitsLowest@Smallint +ID9090=TEDIMessage.FUNTSegment +ID9091=TEDIMessage.GetSegment@Integer +ID9092=TEDIMessage.InsertSegment@Integer +ID9093=TEDIMessage.InsertSegment@Integer@TEDISegment +ID9094=TEDIMessage.InsertSegments@Integer@Integer +ID9095=TEDIMessage.InsertSegments@Integer@TEDISegmentArray +ID9096=TEDIMessage.InternalAssignDelimiters +ID9097=TEDIMessage.InternalCreateEDIDataObject +ID9098=TEDIMessage.InternalCreateHeaderTrailerSegments +ID9099=TEDIMessage.InternalCreateSegment ID91=!!OVERLOADED_InsertMessages_TEDIInterchangeControl -ID910=CallPCREMalloc@Integer -ID9100=TJclClrClassSemantics.csClass -ID9101=TJclClrClassSemantics.csInterface -ID9102=TJclClrCodeBlock -ID9103=TJclClrCodeBlock.Length -ID9104=TJclClrCodeBlock.Offset -ID9105=TJclClrComboIndex -ID9106=TJclClrComboIndex.ciResolutionScope -ID9107=TJclClrCustomModifierSign -ID9108=TJclClrCustomModifierSign.Create@TJclClrBlobRecord -ID9109=TJclClrCustomModifierSign.FRequired -ID911=CallPCREStackFree@Pointer -ID9110=TJclClrCustomModifierSign.FToken -ID9111=TJclClrCustomModifierSign.Required -ID9112=TJclClrCustomModifierSign.Token -ID9113=TJclClrElementType -ID9114=TJclClrElementType.etArray -ID9115=TJclClrElementType.etBoolean -ID9116=TJclClrElementType.etByRef -ID9117=TJclClrElementType.etChar -ID9118=TJclClrElementType.etClass -ID9119=TJclClrElementType.etCModOpt -ID912=CallPCREStackMalloc@Integer -ID9120=TJclClrElementType.etCModReqd -ID9121=TJclClrElementType.etEnd -ID9122=TJclClrElementType.etFnPtr -ID9123=TJclClrElementType.etI -ID9124=TJclClrElementType.etI1 -ID9125=TJclClrElementType.etI2 -ID9126=TJclClrElementType.etI4 -ID9127=TJclClrElementType.etI8 -ID9128=TJclClrElementType.etInternal -ID9129=TJclClrElementType.etMax -ID913=CardinalMask -ID9130=TJclClrElementType.etModifier -ID9131=TJclClrElementType.etObject -ID9132=TJclClrElementType.etPinned -ID9133=TJclClrElementType.etPtr -ID9134=TJclClrElementType.etR4 -ID9135=TJclClrElementType.etR8 -ID9136=TJclClrElementType.etSentinel -ID9137=TJclClrElementType.etString -ID9138=TJclClrElementType.etSzArray -ID9139=TJclClrElementType.etTypedByRef -ID914=Catalan -ID9140=TJclClrElementType.etU -ID9141=TJclClrElementType.etU1 -ID9142=TJclClrElementType.etU2 -ID9143=TJclClrElementType.etU4 -ID9144=TJclClrElementType.etU8 -ID9145=TJclClrElementType.etValueType -ID9146=TJclClrElementType.etVoid -ID9147=TJclClrExceptionClauseFlag -ID9148=TJclClrExceptionClauseFlag.cfException -ID9149=TJclClrExceptionClauseFlag.cfFault -ID915=CATID_SafeForInitializing -ID9150=TJclClrExceptionClauseFlag.cfFilter -ID9151=TJclClrExceptionClauseFlag.cfFinally -ID9152=TJclClrExceptionClauseFlags -ID9153=TJclClrExceptionHandler -ID9154=TJclClrExceptionHandler.ClassToken -ID9155=TJclClrExceptionHandler.Create@TImageCorILMethodSectEHClauseFat -ID9156=TJclClrExceptionHandler.Create@TImageCorILMethodSectEHClauseSmall -ID9157=TJclClrExceptionHandler.EHFlags -ID9158=TJclClrExceptionHandler.FClassToken -ID9159=TJclClrExceptionHandler.FFilterOffset -ID916=CATID_SafeForScripting -ID9160=TJclClrExceptionHandler.FFlags -ID9161=TJclClrExceptionHandler.FHandlerBlock -ID9162=TJclClrExceptionHandler.FilterOffset -ID9163=TJclClrExceptionHandler.Flags -ID9164=TJclClrExceptionHandler.FTryBlock -ID9165=TJclClrExceptionHandler.GetFlags -ID9166=TJclClrExceptionHandler.HandlerBlock -ID9167=TJclClrExceptionHandler.TryBlock -ID9168=TJclClrField -ID9169=TJclClrGuidStream -ID917=CBinMax -ID9170=TJclClrGuidStream.Create@TJclPeMetadata@PClrStreamHeader -ID9171=TJclClrGuidStream.FGuids -ID9172=TJclClrGuidStream.GetGuid@Integer -ID9173=TJclClrGuidStream.GetGuidCount -ID9174=TJclClrGuidStream.GuidCount -ID9175=TJclClrGuidStream.Guids -ID9176=TJclClrHeaderEx -ID9177=TJclClrHeaderEx.ClrImageFlag@DWORD -ID9178=TJclClrHeaderEx.ClrImageFlag@TJclClrImageFlags -ID9179=TJclClrHeaderEx.Create@TJclPeImage -ID918=Cbrt10 -ID9180=TJclClrHeaderEx.Destroy -ID9181=TJclClrHeaderEx.DumpIL -ID9182=TJclClrHeaderEx.EntryPointToken -ID9183=TJclClrHeaderEx.FFlags -ID9184=TJclClrHeaderEx.Flags -ID9185=TJclClrHeaderEx.FMetadata -ID9186=TJclClrHeaderEx.FResources -ID9187=TJclClrHeaderEx.FStrongNameSignature -ID9188=TJclClrHeaderEx.FVTableFixups -ID9189=TJclClrHeaderEx.GetEntryPointToken -ID919=Cbrt100 -ID9190=TJclClrHeaderEx.GetMetadata -ID9191=TJclClrHeaderEx.GetResource@Integer -ID9192=TJclClrHeaderEx.GetResourceCount -ID9193=TJclClrHeaderEx.GetStrongNameSignature -ID9194=TJclClrHeaderEx.GetVTableFixup@Integer -ID9195=TJclClrHeaderEx.GetVTableFixupCount -ID9196=TJclClrHeaderEx.HasResources -ID9197=TJclClrHeaderEx.HasStrongNameSignature -ID9198=TJclClrHeaderEx.HasVTableFixup -ID9199=TJclClrHeaderEx.Metadata +ID910=BitsLowest@Word +ID9100=TEDIMessage.Segment +ID9101=TEDIMessage.SegmentCount +ID9102=TEDIMessage.Segments +ID9103=TEDIMessage.SegmentUNH +ID9104=TEDIMessage.SegmentUNT +ID9105=TEDIMessage.SetSegment@Integer@TEDISegment +ID9106=TEDIMessage.SetUNHSegment@TEDIMessageSegment +ID9107=TEDIMessage.SetUNTSegment@TEDIMessageSegment +ID9108=TEDIMessageArray +ID9109=TEDIMessageDocumentOptions +ID911=BitsNeeded@Int64 +ID9110=TEDIMessageLoop +ID9111=TEDIMessageLoop.AddLoop@string@string +ID9112=TEDIMessageLoop.AppendSegment@TEDISegment +ID9113=TEDIMessageLoop.Assemble +ID9114=TEDIMessageLoop.Create@TEDIDataObject +ID9115=TEDIMessageLoop.DeleteEDIDataObjects +ID9116=TEDIMessageLoop.Destroy +ID9117=TEDIMessageLoop.Disassemble +ID9118=TEDIMessageLoop.FindLoop@string@Integer +ID9119=TEDIMessageLoop.FindSegment@string@Integer +ID912=BitsNeeded@Integer +ID9120=TEDIMessageLoop.FindSegment@string@Integer@TStrings +ID9121=TEDIMessageLoop.FOwnerLoopId +ID9122=TEDIMessageLoop.FParentLoopId +ID9123=TEDIMessageLoop.FParentMessage +ID9124=TEDIMessageLoop.InternalAssignDelimiters +ID9125=TEDIMessageLoop.InternalCreateEDIDataObject +ID9126=TEDIMessageLoop.OwnerLoopId +ID9127=TEDIMessageLoop.ParentLoopId +ID9128=TEDIMessageLoop.ParentMessage +ID9129=TEDIMessageSegment +ID913=BitsNeeded@Word +ID9130=TEDIMessageSegment.Create@TEDIDataObject@Integer +ID9131=TEDIMessageSegment.InternalAssignDelimiters +ID9132=TEDIObject +ID9133=TEDIObjectArray +ID9134=TEDIObjectList +ID9135=TEDIObjectList.Add@TEDIObject@string +ID9136=TEDIObjectList.Add@TEDIObjectListItem@string +ID9137=TEDIObjectList.Clear +ID9138=TEDIObjectList.Count +ID9139=TEDIObjectList.Create@Boolean +ID914=BitsPerByte +ID9140=TEDIObjectList.CreateListItem@TEDIObjectListItem@TEDIObject +ID9141=TEDIObjectList.CurrentItem +ID9142=TEDIObjectList.Delete@Integer +ID9143=TEDIObjectList.Delete@TEDIObject +ID9144=TEDIObjectList.Destroy +ID9145=TEDIObjectList.EDIObject +ID9146=TEDIObjectList.Extract@TEDIObject +ID9147=TEDIObjectList.Extract@TEDIObjectListItem +ID9148=TEDIObjectList.FCount +ID9149=TEDIObjectList.FCurrentItem +ID915=BitsPerCardinal +ID9150=TEDIObjectList.FFirstItem +ID9151=TEDIObjectList.Find@TEDIObject +ID9152=TEDIObjectList.Find@TEDIObjectListItem +ID9153=TEDIObjectList.FindEDIObject@TEDIObject +ID9154=TEDIObjectList.FindItemByName@string@TEDIObjectListItem +ID9155=TEDIObjectList.First@Integer +ID9156=TEDIObjectList.FLastItem +ID9157=TEDIObjectList.FOptions +ID9158=TEDIObjectList.FOwnsObjects +ID9159=TEDIObjectList.GetEDIObject@Integer +ID916=BitsPerInt64 +ID9160=TEDIObjectList.GetItem@Integer +ID9161=TEDIObjectList.IndexIsValid@Integer +ID9162=TEDIObjectList.IndexOf@TEDIObject +ID9163=TEDIObjectList.IndexOf@TEDIObjectListItem +ID9164=TEDIObjectList.Insert@Integer@TEDIObject +ID9165=TEDIObjectList.Insert@TEDIObject +ID9166=TEDIObjectList.Insert@TEDIObject@TEDIObject +ID9167=TEDIObjectList.Insert@TEDIObjectListItem +ID9168=TEDIObjectList.Insert@TEDIObjectListItem@TEDIObjectListItem +ID9169=TEDIObjectList.Item +ID917=BitsPerInteger +ID9170=TEDIObjectList.Last +ID9171=TEDIObjectList.Next +ID9172=TEDIObjectList.Options +ID9173=TEDIObjectList.OwnsObjects +ID9174=TEDIObjectList.Prior +ID9175=TEDIObjectList.Remove@TEDIObject +ID9176=TEDIObjectList.Remove@TEDIObjectListItem +ID9177=TEDIObjectList.ReturnListItemsByName@string +ID9178=TEDIObjectList.SetEDIObject@Integer@TEDIObject +ID9179=TEDIObjectList.UpdateCount +ID918=BitsPerMIDIDataByte +ID9180=TEDIObjectList.UpdateIndexes@TEDIObjectListItem +ID9181=TEDIObjectListItem +ID9182=TEDIObjectListItem.Create@TEDIObjectList@TEDIObjectListItem@TEDIObject +ID9183=TEDIObjectListItem.Destroy +ID9184=TEDIObjectListItem.EDIObject +ID9185=TEDIObjectListItem.FEDIObject +ID9186=TEDIObjectListItem.FItemIndex +ID9187=TEDIObjectListItem.FName +ID9188=TEDIObjectListItem.FNextItem +ID9189=TEDIObjectListItem.FParent +ID919=BitsPerMIDIDataWord +ID9190=TEDIObjectListItem.FPriorItem +ID9191=TEDIObjectListItem.FreeAndNilEDIDataObject +ID9192=TEDIObjectListItem.GetIndexPositionFromParent +ID9193=TEDIObjectListItem.ItemIndex +ID9194=TEDIObjectListItem.Name +ID9195=TEDIObjectListItem.NextItem +ID9196=TEDIObjectListItem.Parent +ID9197=TEDIObjectListItem.PriorItem +ID9198=TEDISEFCompositeElement +ID9199=TEDISEFCompositeElement.AddRepeatingPattern ID92=!!OVERLOADED_InsertRepeatingPattern_TEDISEFCompositeElement -ID920=Cbrt2 -ID9200=TJclClrHeaderEx.ResourceAt@DWORD -ID9201=TJclClrHeaderEx.ResourceCount -ID9202=TJclClrHeaderEx.Resources -ID9203=TJclClrHeaderEx.StrongNameSignature -ID9204=TJclClrHeaderEx.UpdateResources -ID9205=TJclClrHeaderEx.VTableFixupCount -ID9206=TJclClrHeaderEx.VTableFixups -ID9207=TJclClrHeapKind -ID9208=TJclClrHeapKind.hkBlob -ID9209=TJclClrHeapKind.hkGuid -ID921=Cbrt3 -ID9210=TJclClrHeapKind.hkString -ID9211=TJclClrHost -ID9212=TJclClrHost.AddAppDomain@TJclClrAppDomain -ID9213=TJclClrHost.AppDomainCount -ID9214=TJclClrHost.AppDomains -ID9215=TJclClrHost.CorRequiredVersion -ID9216=TJclClrHost.CorSystemDirectory -ID9217=TJclClrHost.CorVersion -ID9218=TJclClrHost.Create@WideString@TJclClrHostFlavor@Boolean@TJclClrHostLoaderFlags -ID9219=TJclClrHost.CreateAppDomain@WideString@TJclClrAppDomainSetup@IJclClrEvidence -ID922=CbrtPi -ID9220=TJclClrHost.CreateDomainSetup -ID9221=TJclClrHost.CurrentAppDomain -ID9222=TJclClrHost.DefaultAppDomain -ID9223=TJclClrHost.DefaultInterface -ID9224=TJclClrHost.Destroy -ID9225=TJclClrHost.EnumAppDomains -ID9226=TJclClrHost.FAppDomains -ID9227=TJclClrHost.FDefaultInterface -ID9228=TJclClrHost.FindAppDomain@IJclClrAppDomain@TJclClrAppDomain -ID9229=TJclClrHost.FindAppDomain@WideString@TJclClrAppDomain -ID923=CCHBinName -ID9230=TJclClrHost.GetAppDomain@Integer -ID9231=TJclClrHost.GetAppDomainCount -ID9232=TJclClrHost.GetClrVersions@TStrings -ID9233=TJclClrHost.GetClrVersions@TWideStrings -ID9234=TJclClrHost.GetCurrentAppDomain -ID9235=TJclClrHost.GetDefaultAppDomain -ID9236=TJclClrHost.Refresh -ID9237=TJclClrHost.RemoveAppDomain@TJclClrAppDomain -ID9238=TJclClrHost.Start -ID9239=TJclClrHost.Stop -ID924=CCHPaperName -ID9240=TJclClrHostFlavor -ID9241=TJclClrHostFlavor.hfServer -ID9242=TJclClrHostFlavor.hfWorkStation -ID9243=TJclClrHostLoaderFlag -ID9244=TJclClrHostLoaderFlag.hlOptMultiDomain -ID9245=TJclClrHostLoaderFlag.hlOptMultiDomainHost -ID9246=TJclClrHostLoaderFlag.hlOptSingleDomain -ID9247=TJclClrHostLoaderFlag.hlSafeMode -ID9248=TJclClrHostLoaderFlag.hlSetPreference -ID9249=TJclClrHostLoaderFlags -ID925=CelsiusAbsoluteZero -ID9250=TJclClrILGenerator -ID9251=TJclClrILGenerator.Create@TJclClrMethodBody -ID9252=TJclClrILGenerator.Destroy -ID9253=TJclClrILGenerator.DumpIL@TJclInstructionDumpILOptions -ID9254=TJclClrILGenerator.FInstructions -ID9255=TJclClrILGenerator.FMethod -ID9256=TJclClrILGenerator.GetInstruction@Integer -ID9257=TJclClrILGenerator.GetInstructionCount -ID9258=TJclClrILGenerator.InstructionCount -ID9259=TJclClrILGenerator.Instructions -ID926=CelsiusBoilingPoint -ID9260=TJclClrILGenerator.Method -ID9261=TJclClrImageFlag -ID9262=TJclClrImageFlag.cif32BitRequired -ID9263=TJclClrImageFlag.cifILOnly -ID9264=TJclClrImageFlag.cifStrongNameSinged -ID9265=TJclClrImageFlag.cifTrackDebugData -ID9266=TJclClrImageFlags -ID9267=TJclClrLocalVar -ID9268=TJclClrLocalVar.ElementType -ID9269=TJclClrLocalVar.FElementType -ID927=CelsiusFreezingPoint -ID9270=TJclClrLocalVar.FFlags -ID9271=TJclClrLocalVar.Flags -ID9272=TJclClrLocalVar.FToken -ID9273=TJclClrLocalVar.GetName -ID9274=TJclClrLocalVar.Name -ID9275=TJclClrLocalVar.Token -ID9276=TJclClrLocalVarFlag -ID9277=TJclClrLocalVarFlag.lvfByRef -ID9278=TJclClrLocalVarFlag.lvfPinned -ID9279=TJclClrLocalVarFlags -ID928=CelsiusTo@TTemperatureType@Float -ID9280=TJclClrLocalVarSign -ID9281=TJclClrLocalVarSign.Create@TJclClrBlobRecord -ID9282=TJclClrLocalVarSign.Destroy -ID9283=TJclClrLocalVarSign.FLocalVars -ID9284=TJclClrLocalVarSign.GetLocalVar@Integer -ID9285=TJclClrLocalVarSign.GetLocalVarCount -ID9286=TJclClrLocalVarSign.LocalVarCount -ID9287=TJclClrLocalVarSign.LocalVars -ID9288=TJclClrMemberAccess -ID9289=TJclClrMemberAccess.maAssembly -ID929=CelsiusToRankine@Float -ID9290=TJclClrMemberAccess.maCompilercontrolled -ID9291=TJclClrMemberAccess.maFamily -ID9292=TJclClrMemberAccess.maFamilyAndAssembly -ID9293=TJclClrMemberAccess.maFamilyOrAssembly -ID9294=TJclClrMemberAccess.maPrivate -ID9295=TJclClrMemberAccess.maPublic -ID9296=TJclClrMethod -ID9297=TJclClrMethod.DefaultInterface -ID9298=TJclClrMethod.FDefaultInterface -ID9299=TJclClrMethodBody +ID920=BitsPerNibble +ID9200=TEDISEFCompositeElement.AddSubElement +ID9201=TEDISEFCompositeElement.AppendRepeatingPattern@TEDISEFRepeatingPattern +ID9202=TEDISEFCompositeElement.AppendSubElement@TEDISEFSubElement +ID9203=TEDISEFCompositeElement.Assemble +ID9204=TEDISEFCompositeElement.Assign@TEDISEFCompositeElement +ID9205=TEDISEFCompositeElement.AssignElementOrdinals +ID9206=TEDISEFCompositeElement.BindTextSets@TEDISEFTextSets +ID9207=TEDISEFCompositeElement.Clone@TEDISEFDataObject +ID9208=TEDISEFCompositeElement.CompositeElementId +ID9209=TEDISEFCompositeElement.Create@TEDISEFDataObject +ID921=BitsPerShortint +ID9210=TEDISEFCompositeElement.DeleteRepeatingPattern@TEDISEFRepeatingPattern +ID9211=TEDISEFCompositeElement.DeleteSubElement@TEDISEFSubElement +ID9212=TEDISEFCompositeElement.Destroy +ID9213=TEDISEFCompositeElement.Disassemble +ID9214=TEDISEFCompositeElement.Elements +ID9215=TEDISEFCompositeElement.ExtractRepeatingPattern@TEDISEFRepeatingPattern +ID9216=TEDISEFCompositeElement.ExtractSubElement@TEDISEFSubElement +ID9217=TEDISEFCompositeElement.FEDISEFTextSets +ID9218=TEDISEFCompositeElement.FExtendedData +ID9219=TEDISEFCompositeElement.FOrdinal +ID922=BitsPerSmallint +ID9220=TEDISEFCompositeElement.FOutOfSequenceOrdinal +ID9221=TEDISEFCompositeElement.FRepeatCount +ID9222=TEDISEFCompositeElement.FRequirementDesignator +ID9223=TEDISEFCompositeElement.FUserAttribute +ID9224=TEDISEFCompositeElement.GetElementObjectList +ID9225=TEDISEFCompositeElement.GetTextSetsLocation +ID9226=TEDISEFCompositeElement.InsertRepeatingPattern@TEDISEFDataObject +ID9227=TEDISEFCompositeElement.InsertRepeatingPattern@TEDISEFRepeatingPattern@TEDISEFDataObject +ID9228=TEDISEFCompositeElement.InsertSubElement@TEDISEFDataObject +ID9229=TEDISEFCompositeElement.InsertSubElement@TEDISEFSubElement@TEDISEFDataObject +ID923=BitsPerWord +ID9230=TEDISEFCompositeElement.Ordinal +ID9231=TEDISEFCompositeElement.OutOfSequenceOrdinal +ID9232=TEDISEFCompositeElement.RepeatCount +ID9233=TEDISEFCompositeElement.RequirementDesignator +ID9234=TEDISEFCompositeElement.TEXTSETS +ID9235=TEDISEFCompositeElement.TextSetsLocation +ID9236=TEDISEFCompositeElement.UserAttribute +ID9237=TEDISEFComsUserAttributes +ID9238=TEDISEFComsUserAttributes.caAmpersand +ID9239=TEDISEFComsUserAttributes.caDollarSign +ID924=BitsToBooleans@Int64@TBooleanArray@Boolean +ID9240=TEDISEFComsUserAttributes.caExclamationPoint +ID9241=TEDISEFComsUserAttributes.caHyphen +ID9242=TEDISEFComsUserAttributes.caPeriod +ID9243=TEDISEFDataObject +ID9244=TEDISEFDataObject.Assemble +ID9245=TEDISEFDataObject.Clone@TEDISEFDataObject +ID9246=TEDISEFDataObject.Create@TEDISEFDataObject +ID9247=TEDISEFDataObject.Data +ID9248=TEDISEFDataObject.DataLength +ID9249=TEDISEFDataObject.Destroy +ID925=BitsToBooleans@Integer@TBooleanArray@Boolean +ID9250=TEDISEFDataObject.Disassemble +ID9251=TEDISEFDataObject.FData +ID9252=TEDISEFDataObject.FErrorLog +ID9253=TEDISEFDataObject.FId +ID9254=TEDISEFDataObject.FLength +ID9255=TEDISEFDataObject.FOwnerItemRef +ID9256=TEDISEFDataObject.FParent +ID9257=TEDISEFDataObject.FSEFFile +ID9258=TEDISEFDataObject.FState +ID9259=TEDISEFDataObject.GetData +ID926=BitsToBooleans@Word@TBooleanArray@Boolean +ID9260=TEDISEFDataObject.Id +ID9261=TEDISEFDataObject.OwnerItemRef +ID9262=TEDISEFDataObject.Parent +ID9263=TEDISEFDataObject.SEFFile +ID9264=TEDISEFDataObject.SetData@string +ID9265=TEDISEFDataObject.SetId@string +ID9266=TEDISEFDataObject.SetParent@TEDISEFDataObject +ID9267=TEDISEFDataObject.State +ID9268=TEDISEFDataObject.UpdateOwnerItemName +ID9269=TEDISEFDataObjectClass +ID927=BlendLine +ID9270=TEDISEFDataObjectGroup +ID9271=TEDISEFDataObjectGroup.Create@TEDISEFDataObject +ID9272=TEDISEFDataObjectGroup.Destroy +ID9273=TEDISEFDataObjectGroup.EDISEFDataObject +ID9274=TEDISEFDataObjectGroup.EDISEFDataObjectCount +ID9275=TEDISEFDataObjectGroup.EDISEFDataObjects +ID9276=TEDISEFDataObjectGroup.FEDISEFDataObjects +ID9277=TEDISEFDataObjectGroup.GetCount +ID9278=TEDISEFDataObjectGroup.GetEDISEFDataObject@Integer +ID9279=TEDISEFDataObjectList +ID928=BlendLineEx +ID9280=TEDISEFDataObjectList.Add@TEDISEFDataObject@string +ID9281=TEDISEFDataObjectList.CreateListItem@TEDIObjectListItem@TEDIObject +ID9282=TEDISEFDataObjectList.EDISEFDataObject +ID9283=TEDISEFDataObjectList.FindItemByName@string@TEDIObjectListItem +ID9284=TEDISEFDataObjectList.First@Integer +ID9285=TEDISEFDataObjectList.GetEDISEFDataObject@Integer +ID9286=TEDISEFDataObjectList.GetObjectByItemByName@string +ID9287=TEDISEFDataObjectList.Insert@TEDISEFDataObject@TEDISEFDataObject +ID9288=TEDISEFDataObjectList.Last +ID9289=TEDISEFDataObjectList.Next +ID929=BlendMem +ID9290=TEDISEFDataObjectList.Prior +ID9291=TEDISEFDataObjectList.SetEDISEFDataObject@Integer@TEDISEFDataObject +ID9292=TEDISEFDataObjectListItem +ID9293=TEDISEFDataObjectListItem.EDISEFDataObject +ID9294=TEDISEFDataObjectListItem.GetEDISEFDataObject +ID9295=TEDISEFDataObjectListItem.LinkToObject +ID9296=TEDISEFDataObjectListItem.NextItem +ID9297=TEDISEFDataObjectListItem.PriorItem +ID9298=TEDISEFDataObjectListItem.SetEDISEFDataObject@TEDISEFDataObject +ID9299=TEDISEFDataObjectListItem.UpdateName ID93=!!OVERLOADED_InsertRepeatingPattern_TEDISEFRepeatingPattern -ID930=CelsiusToReaumur@Float -ID9300=TJclClrMethodBody.AddEHTable@PImageCorILMethodSectEH -ID9301=TJclClrMethodBody.AddOptILTable@Pointer@Integer -ID9302=TJclClrMethodBody.Code -ID9303=TJclClrMethodBody.Create@TJclClrTableMethodDefRow -ID9304=TJclClrMethodBody.Destroy -ID9305=TJclClrMethodBody.ExceptionHandlerCount -ID9306=TJclClrMethodBody.ExceptionHandlers -ID9307=TJclClrMethodBody.FCode -ID9308=TJclClrMethodBody.FEHTable -ID9309=TJclClrMethodBody.FLocalVarSign -ID931=CharEqualNoCase@Char@Char -ID9310=TJclClrMethodBody.FLocalVarSignToken -ID9311=TJclClrMethodBody.FMaxStack -ID9312=TJclClrMethodBody.FMethod -ID9313=TJclClrMethodBody.FSize -ID9314=TJclClrMethodBody.GetExceptionHandler@Integer -ID9315=TJclClrMethodBody.GetExceptionHandlerCount -ID9316=TJclClrMethodBody.GetLocalVarSign -ID9317=TJclClrMethodBody.GetLocalVarSignData -ID9318=TJclClrMethodBody.LocalVarSign -ID9319=TJclClrMethodBody.LocalVarSignData -ID932=CharFitsWithinDots@string@Integer -ID9320=TJclClrMethodBody.LocalVarSignToken -ID9321=TJclClrMethodBody.MaxStack -ID9322=TJclClrMethodBody.Method -ID9323=TJclClrMethodBody.ParseMoreSections@PImageCorILMethodSectHeader -ID9324=TJclClrMethodBody.Size -ID9325=TJclClrMethodCodeType -ID9326=TJclClrMethodCodeType.ctIL -ID9327=TJclClrMethodCodeType.ctNative -ID9328=TJclClrMethodCodeType.ctOptIL -ID9329=TJclClrMethodCodeType.ctRuntime -ID933=CharHex@Char -ID9330=TJclClrMethodFlag -ID9331=TJclClrMethodFlag.mfAbstract -ID9332=TJclClrMethodFlag.mfCheckAccessOnOverride -ID9333=TJclClrMethodFlag.mfFinal -ID9334=TJclClrMethodFlag.mfHasSecurity -ID9335=TJclClrMethodFlag.mfHideBySig -ID9336=TJclClrMethodFlag.mfPInvokeImpl -ID9337=TJclClrMethodFlag.mfRequireSecObject -ID9338=TJclClrMethodFlag.mfRTSpcialName -ID9339=TJclClrMethodFlag.mfSpecialName -ID934=CharIPos@string@Char@Integer -ID9340=TJclClrMethodFlag.mfStatic -ID9341=TJclClrMethodFlag.mfUnmanagedExport -ID9342=TJclClrMethodFlag.mfVirtual -ID9343=TJclClrMethodFlags -ID9344=TJclClrMethodImplFlag -ID9345=TJclClrMethodImplFlag.mifForwardRef -ID9346=TJclClrMethodImplFlag.mifInternalCall -ID9347=TJclClrMethodImplFlag.mifNoInlining -ID9348=TJclClrMethodImplFlag.mifPreserveSig -ID9349=TJclClrMethodImplFlag.mifSynchronized -ID935=CharIsAlpha@Char -ID9350=TJclClrMethodImplFlags -ID9351=TJclClrMethodParam -ID9352=TJclClrMethodParam.ArraySign -ID9353=TJclClrMethodParam.ByRef -ID9354=TJclClrMethodParam.Create@TJclClrBlobRecord -ID9355=TJclClrMethodParam.CustomModifierCount -ID9356=TJclClrMethodParam.CustomModifiers -ID9357=TJclClrMethodParam.Destroy -ID9358=TJclClrMethodParam.ElementType -ID9359=TJclClrMethodParam.FArraySign -ID936=CharIsAlphaNum@Char -ID9360=TJclClrMethodParam.FByRef -ID9361=TJclClrMethodParam.FCustomMods -ID9362=TJclClrMethodParam.FElementType -ID9363=TJclClrMethodParam.FMethodSign -ID9364=TJclClrMethodParam.FToken -ID9365=TJclClrMethodParam.GetCustomModifier@Integer -ID9366=TJclClrMethodParam.GetCustomModifierCount -ID9367=TJclClrMethodParam.MethodSign -ID9368=TJclClrMethodParam.Token -ID9369=TJclClrMethodRetType -ID937=CharIsBlank@Char -ID9370=TJclClrMethodSign -ID9371=TJclClrMethodSign.Create@TJclClrBlobRecord -ID9372=TJclClrMethodSign.Destroy -ID9373=TJclClrMethodSign.FFlags -ID9374=TJclClrMethodSign.Flags -ID9375=TJclClrMethodSign.FParams -ID9376=TJclClrMethodSign.FRetType -ID9377=TJclClrMethodSign.GetParam@Integer -ID9378=TJclClrMethodSign.GetParamCount -ID9379=TJclClrMethodSign.ParamCount -ID938=CharIsControl@Char -ID9380=TJclClrMethodSign.Params -ID9381=TJclClrMethodSign.RetType -ID9382=TJclClrMethodSignFlag -ID9383=TJclClrMethodSignFlag.mfDefault -ID9384=TJclClrMethodSignFlag.mfExplicitThis -ID9385=TJclClrMethodSignFlag.mfHasThis -ID9386=TJclClrMethodSignFlag.mfVarArg -ID9387=TJclClrMethodSignFlags -ID9388=TJclClrObject -ID9389=TJclClrObject.Create@WideString@WideString@WideString@array of const -ID939=CharIsDelete@Char -ID9390=TJclClrObject.Create@WideString@WideString@WideString@Boolean -ID9391=TJclClrObject.Fields -ID9392=TJclClrObject.GetField@WideString -ID9393=TJclClrObject.GetMethod@WideString -ID9394=TJclClrObject.GetProperty@WideString -ID9395=TJclClrObject.Methods -ID9396=TJclClrObject.Properties -ID9397=TJclClrParamKind -ID9398=TJclClrParamKind.pkHasDefault -ID9399=TJclClrParamKind.pkHasFieldMarshal +ID930=BlendMemEx +ID9300=TEDISEFElement +ID9301=TEDISEFElement.Assemble +ID9302=TEDISEFElement.Assign@TEDISEFElement +ID9303=TEDISEFElement.BindTextSets@TEDISEFTextSets +ID9304=TEDISEFElement.Clone@TEDISEFDataObject +ID9305=TEDISEFElement.CloneAsSubElement@TEDISEFDataObject +ID9306=TEDISEFElement.Create@TEDISEFDataObject +ID9307=TEDISEFElement.Destroy +ID9308=TEDISEFElement.Disassemble +ID9309=TEDISEFElement.ElementId +ID931=BlendReg +ID9310=TEDISEFElement.ElementType +ID9311=TEDISEFElement.FEDISEFTextSets +ID9312=TEDISEFElement.FElementType +ID9313=TEDISEFElement.FMaximumLength +ID9314=TEDISEFElement.FMinimumLength +ID9315=TEDISEFElement.FOrdinal +ID9316=TEDISEFElement.FOutOfSequenceOrdinal +ID9317=TEDISEFElement.FRepeatCount +ID9318=TEDISEFElement.FRequirementDesignator +ID9319=TEDISEFElement.FUserAttribute +ID932=BlendRegEx +ID9320=TEDISEFElement.GetTextSetsLocation +ID9321=TEDISEFElement.MaximumLength +ID9322=TEDISEFElement.MinimumLength +ID9323=TEDISEFElement.Ordinal +ID9324=TEDISEFElement.OutOfSequenceOrdinal +ID9325=TEDISEFElement.RepeatCount +ID9326=TEDISEFElement.RequirementDesignator +ID9327=TEDISEFElement.TEXTSETS +ID9328=TEDISEFElement.TextSetsLocation +ID9329=TEDISEFElement.UserAttribute +ID933=BlueComponent@TColor32 +ID9330=TEDISEFFile +ID9331=TEDISEFFile.Assemble +ID9332=TEDISEFFile.Clone@TEDISEFDataObject +ID9333=TEDISEFFile.Codes +ID9334=TEDISEFFile.COMS +ID9335=TEDISEFFile.Create@TEDISEFDataObject +ID9336=TEDISEFFile.Destroy +ID9337=TEDISEFFile.Disassemble +ID9338=TEDISEFFile.ELMS +ID9339=TEDISEFFile.FEDISEFCodesList +ID934=BOM_LSB_FIRST +ID9340=TEDISEFFile.FEDISEFComs +ID9341=TEDISEFFile.FEDISEFElms +ID9342=TEDISEFFile.FEDISEFIni +ID9343=TEDISEFFile.FEDISEFSegs +ID9344=TEDISEFFile.FEDISEFSets +ID9345=TEDISEFFile.FEDISEFStd +ID9346=TEDISEFFile.FEDISEFTextSets +ID9347=TEDISEFFile.FEDISEFVer +ID9348=TEDISEFFile.FFileName +ID9349=TEDISEFFile.FileName +ID935=BOM_MSB_FIRST +ID9350=TEDISEFFile.GetEDISEFCodesList +ID9351=TEDISEFFile.GetEDISEFIni +ID9352=TEDISEFFile.GetEDISEFStd +ID9353=TEDISEFFile.INI +ID9354=TEDISEFFile.LoadFromFile +ID9355=TEDISEFFile.LoadFromFile@string +ID9356=TEDISEFFile.ParseCodes +ID9357=TEDISEFFile.ParseCOMS +ID9358=TEDISEFFile.ParseELMS +ID9359=TEDISEFFile.ParseINI +ID936=BOM_UTF16_LSB +ID9360=TEDISEFFile.ParseSEGS +ID9361=TEDISEFFile.ParseSETS +ID9362=TEDISEFFile.ParseSTD +ID9363=TEDISEFFile.ParseTextSets +ID9364=TEDISEFFile.ParseVER +ID9365=TEDISEFFile.SaveToFile +ID9366=TEDISEFFile.SaveToFile@string +ID9367=TEDISEFFile.SEGS +ID9368=TEDISEFFile.SETS +ID9369=TEDISEFFile.STD +ID937=BOM_UTF16_MSB +ID9370=TEDISEFFile.TEXTSETS +ID9371=TEDISEFFile.Unload +ID9372=TEDISEFFile.VER +ID9373=TEDISEFLoop +ID9374=TEDISEFLoop.AddLoop +ID9375=TEDISEFLoop.AddSegment +ID9376=TEDISEFLoop.AppendLoop@TEDISEFLoop +ID9377=TEDISEFLoop.AppendSegment@TEDISEFSegment +ID9378=TEDISEFLoop.Assemble +ID9379=TEDISEFLoop.Clone@TEDISEFDataObject +ID938=BOM_UTF32_LSB +ID9380=TEDISEFLoop.Create@TEDISEFDataObject +ID9381=TEDISEFLoop.DeleteLoop@TEDISEFLoop +ID9382=TEDISEFLoop.DeleteSegment@TEDISEFSegment +ID9383=TEDISEFLoop.Destroy +ID9384=TEDISEFLoop.Disassemble +ID9385=TEDISEFLoop.ExtractLoop@TEDISEFLoop +ID9386=TEDISEFLoop.ExtractSegment@TEDISEFSegment +ID9387=TEDISEFLoop.FMaximumRepeat +ID9388=TEDISEFLoop.GetParentLoopId +ID9389=TEDISEFLoop.GetParentSet +ID939=BOM_UTF32_MSB +ID9390=TEDISEFLoop.GetParentTable +ID9391=TEDISEFLoop.InsertLoop@TEDISEFDataObject +ID9392=TEDISEFLoop.InsertLoop@TEDISEFLoop@TEDISEFDataObject +ID9393=TEDISEFLoop.InsertSegment@TEDISEFDataObject +ID9394=TEDISEFLoop.InsertSegment@TEDISEFSegment@TEDISEFDataObject +ID9395=TEDISEFLoop.LoopId +ID9396=TEDISEFLoop.MaximumRepeat +ID9397=TEDISEFLoop.ParentLoopId +ID9398=TEDISEFLoop.ParentSet +ID9399=TEDISEFLoop.ParentTable ID94=!!OVERLOADED_InsertRepeatingPattern_TEDISEFSegment -ID940=CharIsDigit@Char -ID9400=TJclClrParamKind.pkIn -ID9401=TJclClrParamKind.pkOptional -ID9402=TJclClrParamKind.pkOut -ID9403=TJclClrParamKinds -ID9404=TJclClrProperty -ID9405=TJclClrResourceRecord -ID9406=TJclClrResourceRecord.Create@PChar@DWORD@DWORD -ID9407=TJclClrResourceRecord.Data -ID9408=TJclClrResourceRecord.FData -ID9409=TJclClrResourceRecord.FOffset -ID941=CharIsLower@Char -ID9410=TJclClrResourceRecord.FRVA -ID9411=TJclClrResourceRecord.Offset -ID9412=TJclClrResourceRecord.RVA -ID9413=TJclClrSignature -ID9414=TJclClrSignature.Blob -ID9415=TJclClrSignature.Create@TJclClrBlobRecord -ID9416=TJclClrSignature.FBlob -ID9417=TJclClrSignature.Inc@PJclByteArray@Integer -ID9418=TJclClrSignature.IsModifierType@TJclClrElementType -ID9419=TJclClrSignature.IsPrimitiveType@TJclClrElementType -ID942=CharIsNumberChar@Char -ID9420=TJclClrSignature.ReadByte -ID9421=TJclClrSignature.ReadElementType -ID9422=TJclClrSignature.ReadInteger -ID9423=TJclClrSignature.ReadToken -ID9424=TJclClrSignature.ReadValue -ID9425=TJclClrSignature.UncompressCallingConv@PJclByteArray -ID9426=TJclClrSignature.UncompressData@PJclByteArray@DWord -ID9427=TJclClrSignature.UncompressedDataSize@PJclByteArray -ID9428=TJclClrSignature.UncompressElementType@PJclByteArray -ID9429=TJclClrSignature.UncompressFieldSignature -ID943=CharIsPrintable@Char -ID9430=TJclClrSignature.UncompressSignedInt@PJclByteArray@Integer -ID9431=TJclClrSignature.UncompressToken@PJclByteArray@TJclClrToken -ID9432=TJclClrSignature.UncompressTypeSignature@PJclByteArray -ID9433=TJclClrStream -ID9434=TJclClrStream.Create@TJclPeMetadata@PClrStreamHeader -ID9435=TJclClrStream.Data -ID9436=TJclClrStream.FHeader -ID9437=TJclClrStream.FMetadata -ID9438=TJclClrStream.GetData -ID9439=TJclClrStream.GetName -ID944=CharIsPunctuation@Char -ID9440=TJclClrStream.GetOffset -ID9441=TJclClrStream.GetSize -ID9442=TJclClrStream.Header -ID9443=TJclClrStream.Metadata -ID9444=TJclClrStream.Name -ID9445=TJclClrStream.Offset -ID9446=TJclClrStream.Size -ID9447=TJclClrStreamClass -ID9448=TJclClrStringFormatting -ID9449=TJclClrStringFormatting.sfAnsi -ID945=CharIsReturn@Char -ID9450=TJclClrStringFormatting.sfAutoChar -ID9451=TJclClrStringFormatting.sfUnicode -ID9452=TJclClrStringsStream -ID9453=TJclClrStringsStream.At@DWORD -ID9454=TJclClrStringsStream.Create@TJclPeMetadata@PClrStreamHeader -ID9455=TJclClrStringsStream.Destroy -ID9456=TJclClrStringsStream.FStrings -ID9457=TJclClrStringsStream.GetOffset@Integer -ID9458=TJclClrStringsStream.GetString@Integer -ID9459=TJclClrStringsStream.GetStringCount -ID946=CharIsSpace@Char -ID9460=TJclClrStringsStream.Offsets -ID9461=TJclClrStringsStream.StringCount -ID9462=TJclClrStringsStream.Strings -ID9463=TJclClrTable -ID9464=TJclClrTable.AddRow@TJclClrTableRow -ID9465=TJclClrTable.Create@TJclClrTableStream@Pointer@Integer -ID9466=TJclClrTable.Data -ID9467=TJclClrTable.Destroy -ID9468=TJclClrTable.DumpIL -ID9469=TJclClrTable.FData -ID947=CharIsUpper@Char -ID9470=TJclClrTable.FPtr -ID9471=TJclClrTable.FRowCount -ID9472=TJclClrTable.FRows -ID9473=TJclClrTable.FSize -ID9474=TJclClrTable.FStream -ID9475=TJclClrTable.GetCodedIndexTag@DWORD@DWORD@Boolean -ID9476=TJclClrTable.GetCodedIndexValue@DWORD@DWORD@Boolean -ID9477=TJclClrTable.GetOffset -ID9478=TJclClrTable.GetRow@Integer -ID9479=TJclClrTable.GetRowCount -ID948=CharIsWhiteSpace@Char -ID9480=TJclClrTable.IsWideIndex@array of TJclClrTableKind -ID9481=TJclClrTable.IsWideIndex@TJclClrHeapKind -ID9482=TJclClrTable.Load -ID9483=TJclClrTable.Offset -ID9484=TJclClrTable.ReadByte -ID9485=TJclClrTable.ReadCompressedValue -ID9486=TJclClrTable.ReadDWord -ID9487=TJclClrTable.ReadIndex@array of TJclClrTableKind -ID9488=TJclClrTable.ReadIndex@TJclClrHeapKind -ID9489=TJclClrTable.ReadWord -ID949=CharLastPos@AnsiString@AnsiChar@Integer -ID9490=TJclClrTable.RealRowCount -ID9491=TJclClrTable.Reset -ID9492=TJclClrTable.RowCount -ID9493=TJclClrTable.Rows -ID9494=TJclClrTable.SetSize@Integer -ID9495=TJclClrTable.Size -ID9496=TJclClrTable.Stream -ID9497=TJclClrTable.TableRowClass -ID9498=TJclClrTable.Update -ID9499=TJclClrTableAssembly +ID940=BOM_UTF8 +ID9400=TEDISEFObject +ID9401=TEDISEFObjectParentType +ID9402=TEDISEFObjectParentType.sefCompositeElement +ID9403=TEDISEFObjectParentType.sefElement +ID9404=TEDISEFObjectParentType.sefList +ID9405=TEDISEFObjectParentType.sefNil +ID9406=TEDISEFObjectParentType.sefSegment +ID9407=TEDISEFRepeatingPattern +ID9408=TEDISEFRepeatingPattern.AddRepeatingPattern +ID9409=TEDISEFRepeatingPattern.AppendRepeatingPattern@TEDISEFRepeatingPattern +ID941=BooleansToBits@Int64@TBooleanArray +ID9410=TEDISEFRepeatingPattern.Assemble +ID9411=TEDISEFRepeatingPattern.BaseParent +ID9412=TEDISEFRepeatingPattern.Clone@TEDISEFDataObject +ID9413=TEDISEFRepeatingPattern.Create@TEDISEFDataObject +ID9414=TEDISEFRepeatingPattern.DeleteRepeatingPattern@TEDISEFRepeatingPattern +ID9415=TEDISEFRepeatingPattern.Destroy +ID9416=TEDISEFRepeatingPattern.Disassemble +ID9417=TEDISEFRepeatingPattern.ExtractRepeatingPattern@TEDISEFRepeatingPattern +ID9418=TEDISEFRepeatingPattern.FBaseParent +ID9419=TEDISEFRepeatingPattern.FRepeatCount +ID942=BooleansToBits@Integer@TBooleanArray +ID9420=TEDISEFRepeatingPattern.InsertRepeatingPattern@TEDISEFDataObject +ID9421=TEDISEFRepeatingPattern.InsertRepeatingPattern@TEDISEFRepeatingPattern@TEDISEFDataObject +ID9422=TEDISEFRepeatingPattern.RepeatCount +ID9423=TEDISEFRepeatingPattern.SetParent@TEDISEFDataObject +ID9424=TEDISEFSegment +ID9425=TEDISEFSegment.AddCompositeElement +ID9426=TEDISEFSegment.AddElement +ID9427=TEDISEFSegment.AddRepeatingPattern +ID9428=TEDISEFSegment.AppendCompositeElement@TEDISEFCompositeElement +ID9429=TEDISEFSegment.AppendElement@TEDISEFElement +ID943=BooleansToBits@Word@TBooleanArray +ID9430=TEDISEFSegment.AppendRepeatingPattern@TEDISEFRepeatingPattern +ID9431=TEDISEFSegment.Assemble +ID9432=TEDISEFSegment.Assign@TEDISEFSegment +ID9433=TEDISEFSegment.AssignElementOrdinals +ID9434=TEDISEFSegment.BindElementTextSets +ID9435=TEDISEFSegment.BindTextSets@TEDISEFTextSets +ID9436=TEDISEFSegment.Clone@TEDISEFDataObject +ID9437=TEDISEFSegment.Create@TEDISEFDataObject +ID9438=TEDISEFSegment.DeleteCompositeElement@TEDISEFCompositeElement +ID9439=TEDISEFSegment.DeleteElement@TEDISEFElement +ID944=BooleanToStr +ID9440=TEDISEFSegment.DeleteRepeatingPattern@TEDISEFRepeatingPattern +ID9441=TEDISEFSegment.Destroy +ID9442=TEDISEFSegment.Disassemble +ID9443=TEDISEFSegment.Elements +ID9444=TEDISEFSegment.ExtractCompositeElement@TEDISEFCompositeElement +ID9445=TEDISEFSegment.ExtractElement@TEDISEFElement +ID9446=TEDISEFSegment.ExtractRepeatingPattern@TEDISEFRepeatingPattern +ID9447=TEDISEFSegment.FEDISEFTextSets +ID9448=TEDISEFSegment.FExtendedData +ID9449=TEDISEFSegment.FMaskNumber +ID945=BoolToInt +ID9450=TEDISEFSegment.FMaskNumberSpecified +ID9451=TEDISEFSegment.FMaximumUse +ID9452=TEDISEFSegment.FOrdinal +ID9453=TEDISEFSegment.FOutOfSequenceOrdinal +ID9454=TEDISEFSegment.FOwnerLoopId +ID9455=TEDISEFSegment.FParentLoopId +ID9456=TEDISEFSegment.FParentSet +ID9457=TEDISEFSegment.FParentTable +ID9458=TEDISEFSegment.FPosition +ID9459=TEDISEFSegment.FPositionIncrement +ID946=Borland32BitSymbolFileSignatureForBCB +ID9460=TEDISEFSegment.FRequirementDesignator +ID9461=TEDISEFSegment.FResetPositionInc +ID9462=TEDISEFSegment.FUserAttribute +ID9463=TEDISEFSegment.GetElementObjectList +ID9464=TEDISEFSegment.GetOwnerLoopId +ID9465=TEDISEFSegment.GetParentLoopId +ID9466=TEDISEFSegment.GetTextSetsLocation +ID9467=TEDISEFSegment.InsertCompositeElement@TEDISEFCompositeElement@TEDISEFDataObject +ID9468=TEDISEFSegment.InsertCompositeElement@TEDISEFDataObject +ID9469=TEDISEFSegment.InsertElement@TEDISEFDataObject +ID947=Borland32BitSymbolFileSignatureForDelphi +ID9470=TEDISEFSegment.InsertElement@TEDISEFElement@TEDISEFDataObject +ID9471=TEDISEFSegment.InsertRepeatingPattern@TEDISEFDataObject +ID9472=TEDISEFSegment.InsertRepeatingPattern@TEDISEFRepeatingPattern@TEDISEFDataObject +ID9473=TEDISEFSegment.MaximumUse +ID9474=TEDISEFSegment.Ordinal +ID9475=TEDISEFSegment.OutOfSequenceOrdinal +ID9476=TEDISEFSegment.OwnerLoopId +ID9477=TEDISEFSegment.ParentLoopId +ID9478=TEDISEFSegment.ParentSet +ID9479=TEDISEFSegment.ParentTable +ID948=BorRADToolEditionIDs +ID9480=TEDISEFSegment.Position +ID9481=TEDISEFSegment.PositionIncrement +ID9482=TEDISEFSegment.RequirementDesignator +ID9483=TEDISEFSegment.ResetPositionInc +ID9484=TEDISEFSegment.SegmentId +ID9485=TEDISEFSegment.TEXTSETS +ID9486=TEDISEFSegment.TextSetsLocation +ID9487=TEDISEFSegment.UserAttribute +ID9488=TEDISEFSet +ID9489=TEDISEFSet.AddTable +ID949=BorRADToolRepositoryDataModulesPage +ID9490=TEDISEFSet.AppendTable@TEDISEFTable +ID9491=TEDISEFSet.Assemble +ID9492=TEDISEFSet.AssignSegmentOrdinals +ID9493=TEDISEFSet.AssignSegmentPositions +ID9494=TEDISEFSet.BindSegmentTextSets +ID9495=TEDISEFSet.BindTextSets@TEDISEFTextSets +ID9496=TEDISEFSet.BuildSegmentObjectListFromLoop@TObjectList@TEDISEFLoop +ID9497=TEDISEFSet.Clone@TEDISEFDataObject +ID9498=TEDISEFSet.Create@TEDISEFDataObject +ID9499=TEDISEFSet.DeleteTable@TEDISEFTable ID95=!!OVERLOADED_InsertSegment_TEDIMessage -ID950=CharLastPos@string@Char@Integer -ID9500=TJclClrTableAssembly.GetRow@Integer -ID9501=TJclClrTableAssembly.Rows -ID9502=TJclClrTableAssembly.TableRowClass -ID9503=TJclClrTableAssemblyOS -ID9504=TJclClrTableAssemblyOS.GetRow@Integer -ID9505=TJclClrTableAssemblyOS.Rows -ID9506=TJclClrTableAssemblyOS.TableRowClass -ID9507=TJclClrTableAssemblyOSRow -ID9508=TJclClrTableAssemblyOSRow.Create@TJclClrTable -ID9509=TJclClrTableAssemblyOSRow.FMajorVersion -ID951=CharLower@Char -ID9510=TJclClrTableAssemblyOSRow.FMinorVersion -ID9511=TJclClrTableAssemblyOSRow.FPlatformID -ID9512=TJclClrTableAssemblyOSRow.GetVersion -ID9513=TJclClrTableAssemblyOSRow.MajorVersion -ID9514=TJclClrTableAssemblyOSRow.MinorVersion -ID9515=TJclClrTableAssemblyOSRow.PlatformID -ID9516=TJclClrTableAssemblyOSRow.Version -ID9517=TJclClrTableAssemblyProcessor -ID9518=TJclClrTableAssemblyProcessor.GetRow@Integer -ID9519=TJclClrTableAssemblyProcessor.Rows -ID952=CharPos@string@Char@Integer -ID9520=TJclClrTableAssemblyProcessor.TableRowClass -ID9521=TJclClrTableAssemblyProcessorRow -ID9522=TJclClrTableAssemblyProcessorRow.Create@TJclClrTable -ID9523=TJclClrTableAssemblyProcessorRow.FProcessor -ID9524=TJclClrTableAssemblyProcessorRow.Processor -ID9525=TJclClrTableAssemblyRef -ID9526=TJclClrTableAssemblyRef.GetRow@Integer -ID9527=TJclClrTableAssemblyRef.Rows -ID9528=TJclClrTableAssemblyRef.TableRowClass -ID9529=TJclClrTableAssemblyRefOS -ID953=CharReplace@string@Char@Char -ID9530=TJclClrTableAssemblyRefOS.GetRow@Integer -ID9531=TJclClrTableAssemblyRefOS.Rows -ID9532=TJclClrTableAssemblyRefOS.TableRowClass -ID9533=TJclClrTableAssemblyRefOSRow -ID9534=TJclClrTableAssemblyRefOSRow.AssemblyRef -ID9535=TJclClrTableAssemblyRefOSRow.AssemblyRefIdx -ID9536=TJclClrTableAssemblyRefOSRow.Create@TJclClrTable -ID9537=TJclClrTableAssemblyRefOSRow.FAssemblyRefIdx -ID9538=TJclClrTableAssemblyRefOSRow.GetAssemblyRef -ID9539=TJclClrTableAssemblyRefProcessor -ID954=CharToggleCase@Char -ID9540=TJclClrTableAssemblyRefProcessor.GetRow@Integer -ID9541=TJclClrTableAssemblyRefProcessor.Rows -ID9542=TJclClrTableAssemblyRefProcessor.TableRowClass -ID9543=TJclClrTableAssemblyRefProcessorRow -ID9544=TJclClrTableAssemblyRefProcessorRow.AssemblyRef -ID9545=TJclClrTableAssemblyRefProcessorRow.AssemblyRefIdx -ID9546=TJclClrTableAssemblyRefProcessorRow.Create@TJclClrTable -ID9547=TJclClrTableAssemblyRefProcessorRow.FAssemblyRefIdx -ID9548=TJclClrTableAssemblyRefProcessorRow.GetAssemblyRef -ID9549=TJclClrTableAssemblyRefRow -ID955=CharToWideChar@AnsiChar -ID9550=TJclClrTableAssemblyRefRow.BuildNumber -ID9551=TJclClrTableAssemblyRefRow.Create@TJclClrTable -ID9552=TJclClrTableAssemblyRefRow.Culture -ID9553=TJclClrTableAssemblyRefRow.CultureOffset -ID9554=TJclClrTableAssemblyRefRow.DumpIL -ID9555=TJclClrTableAssemblyRefRow.FBuildNumber -ID9556=TJclClrTableAssemblyRefRow.FCultureOffset -ID9557=TJclClrTableAssemblyRefRow.FFlagMask -ID9558=TJclClrTableAssemblyRefRow.FHashValueOffset -ID9559=TJclClrTableAssemblyRefRow.FlagMask -ID956=CharType@Char -ID9560=TJclClrTableAssemblyRefRow.Flags -ID9561=TJclClrTableAssemblyRefRow.FMajorVersion -ID9562=TJclClrTableAssemblyRefRow.FMinorVersion -ID9563=TJclClrTableAssemblyRefRow.FNameOffset -ID9564=TJclClrTableAssemblyRefRow.FPublicKeyOrTokenOffset -ID9565=TJclClrTableAssemblyRefRow.FRevisionNumber -ID9566=TJclClrTableAssemblyRefRow.GetCulture -ID9567=TJclClrTableAssemblyRefRow.GetFlags -ID9568=TJclClrTableAssemblyRefRow.GetHashValue -ID9569=TJclClrTableAssemblyRefRow.GetName -ID957=CharUpper@Char -ID9570=TJclClrTableAssemblyRefRow.GetPublicKeyOrToken -ID9571=TJclClrTableAssemblyRefRow.GetVersion -ID9572=TJclClrTableAssemblyRefRow.HashValue -ID9573=TJclClrTableAssemblyRefRow.HashValueOffset -ID9574=TJclClrTableAssemblyRefRow.MajorVersion -ID9575=TJclClrTableAssemblyRefRow.MinorVersion -ID9576=TJclClrTableAssemblyRefRow.Name -ID9577=TJclClrTableAssemblyRefRow.NameOffset -ID9578=TJclClrTableAssemblyRefRow.PublicKeyOrToken -ID9579=TJclClrTableAssemblyRefRow.PublicKeyOrTokenOffset -ID958=CheckCrc16_A -ID9580=TJclClrTableAssemblyRefRow.RevisionNumber -ID9581=TJclClrTableAssemblyRefRow.Version -ID9582=TJclClrTableAssemblyRow -ID9583=TJclClrTableAssemblyRow.AssemblyFlags@DWORD -ID9584=TJclClrTableAssemblyRow.AssemblyFlags@TJclClrAssemblyFlags -ID9585=TJclClrTableAssemblyRow.BuildNumber -ID9586=TJclClrTableAssemblyRow.Create@TJclClrTable -ID9587=TJclClrTableAssemblyRow.Culture -ID9588=TJclClrTableAssemblyRow.CultureOffset -ID9589=TJclClrTableAssemblyRow.DumpIL -ID959=CheckCrc16_P -ID9590=TJclClrTableAssemblyRow.FBuildNumber -ID9591=TJclClrTableAssemblyRow.FCultureOffset -ID9592=TJclClrTableAssemblyRow.FFlagMask -ID9593=TJclClrTableAssemblyRow.FHashAlgId -ID9594=TJclClrTableAssemblyRow.FlagMask -ID9595=TJclClrTableAssemblyRow.Flags -ID9596=TJclClrTableAssemblyRow.FMajorVersion -ID9597=TJclClrTableAssemblyRow.FMinorVersion -ID9598=TJclClrTableAssemblyRow.FNameOffset -ID9599=TJclClrTableAssemblyRow.FPublicKeyOffset +ID950=BorRADToolRepositoryDesignerDfm +ID9500=TEDISEFSet.Destroy +ID9501=TEDISEFSet.Disassemble +ID9502=TEDISEFSet.ExtractTable@TEDISEFTable +ID9503=TEDISEFSet.FEDISEFTextSets +ID9504=TEDISEFSet.GetEDISEFTable@Integer +ID9505=TEDISEFSet.GetSegmentObjectList +ID9506=TEDISEFSet.GetTextSetsLocation +ID9507=TEDISEFSet.InsertTable@TEDISEFTable +ID9508=TEDISEFSet.InsertTable@TEDISEFTable@TEDISEFTable +ID9509=TEDISEFSet.Table +ID951=BorRADToolRepositoryDesignerXfm +ID9510=TEDISEFSet.Tables +ID9511=TEDISEFSet.TEXTSETS +ID9512=TEDISEFSet.TextSetsLocation +ID9513=TEDISEFSubElement +ID9514=TEDISEFSubElement.Assemble +ID9515=TEDISEFSubElement.Clone@TEDISEFDataObject +ID9516=TEDISEFSubElement.Create@TEDISEFDataObject +ID9517=TEDISEFSubElement.Destroy +ID9518=TEDISEFSubElement.Disassemble +ID9519=TEDISEFTable +ID952=BorRADToolRepositoryDialogsPage +ID9520=TEDISEFTable.AddLoop +ID9521=TEDISEFTable.AddSegment +ID9522=TEDISEFTable.AppendLoop@TEDISEFLoop +ID9523=TEDISEFTable.AppendSegment@TEDISEFSegment +ID9524=TEDISEFTable.Assemble +ID9525=TEDISEFTable.Clone@TEDISEFDataObject +ID9526=TEDISEFTable.Create@TEDISEFDataObject +ID9527=TEDISEFTable.DeleteLoop@TEDISEFLoop +ID9528=TEDISEFTable.DeleteSegment@TEDISEFSegment +ID9529=TEDISEFTable.Destroy +ID953=BorRADToolRepositoryFormsPage +ID9530=TEDISEFTable.Disassemble +ID9531=TEDISEFTable.ExtractLoop@TEDISEFLoop +ID9532=TEDISEFTable.ExtractSegment@TEDISEFSegment +ID9533=TEDISEFTable.GetSEFSet +ID9534=TEDISEFTable.InsertLoop@TEDISEFDataObject +ID9535=TEDISEFTable.InsertLoop@TEDISEFLoop@TEDISEFDataObject +ID9536=TEDISEFTable.InsertSegment@TEDISEFDataObject +ID9537=TEDISEFTable.InsertSegment@TEDISEFSegment@TEDISEFDataObject +ID9538=TEDISEFTable.SEFSet +ID9539=TEDISEFText +ID954=BorRADToolRepositoryFormTemplate +ID9540=TEDISEFText.Assemble +ID9541=TEDISEFText.Create +ID9542=TEDISEFText.Data +ID9543=TEDISEFText.Description +ID9544=TEDISEFText.Destroy +ID9545=TEDISEFText.Disassemble +ID9546=TEDISEFText.FData +ID9547=TEDISEFText.FEDISEFWhereType +ID9548=TEDISEFText.FText +ID9549=TEDISEFText.FWhat +ID955=BorRADToolRepositoryObjectAncestor +ID9550=TEDISEFText.FWhere +ID9551=TEDISEFText.FWhereLocation +ID9552=TEDISEFText.GetData +ID9553=TEDISEFText.GetDescription +ID9554=TEDISEFText.GetText +ID9555=TEDISEFText.GetWhereLocation +ID9556=TEDISEFText.SetData@string +ID9557=TEDISEFText.SetText@string +ID9558=TEDISEFText.Text +ID9559=TEDISEFText.What +ID956=BorRADToolRepositoryObjectAuthor +ID9560=TEDISEFText.Where +ID9561=TEDISEFText.WhereLocation +ID9562=TEDISEFTextSet +ID9563=TEDISEFTextSet.Assemble +ID9564=TEDISEFTextSet.Create +ID9565=TEDISEFTextSet.Destroy +ID9566=TEDISEFTextSet.Disassemble +ID9567=TEDISEFTextSet.FWhereElement +ID9568=TEDISEFTextSet.FWhereSegment +ID9569=TEDISEFTextSet.FWhereSet +ID957=BorRADToolRepositoryObjectDescr +ID9570=TEDISEFTextSet.FWhereSubElement +ID9571=TEDISEFTextSets +ID9572=TEDISEFTextSets.GetText@string +ID9573=TEDISEFTextSets.SetText@TEDISEFFile@string@string@string +ID9574=TEDISEFToSpecTranslator +ID9575=TEDISEFToSpecTranslator.Create +ID9576=TEDISEFToSpecTranslator.Destroy +ID9577=TEDISEFWhereType +ID9578=TEDISEFWhereType.twElementOrCompositeElement +ID9579=TEDISEFWhereType.twSegment +ID958=BorRADToolRepositoryObjectDesigner +ID9580=TEDISEFWhereType.twSet +ID9581=TEDISEFWhereType.twSubElement +ID9582=TEDISEFWhereType.twUnknown +ID9583=TEDISegment +ID9584=TEDISegment.AddCompositeElement +ID9585=TEDISegment.AddCompositeElements@Integer +ID9586=TEDISegment.AddElement +ID9587=TEDISegment.AddElements@Integer +ID9588=TEDISegment.AppendCompositeElement@TEDICompositeElement +ID9589=TEDISegment.AppendCompositeElements@TEDICompositeElementArray +ID959=BorRADToolRepositoryObjectIcon +ID9590=TEDISegment.AppendElement@TEDIElement +ID9591=TEDISegment.AppendElements@TEDIElementArray +ID9592=TEDISegment.Assemble +ID9593=TEDISegment.Create@TEDIDataObject@Integer +ID9594=TEDISegment.DeleteElement@Integer +ID9595=TEDISegment.DeleteElement@TEDIElement +ID9596=TEDISegment.DeleteElements +ID9597=TEDISegment.DeleteElements@Integer@Integer +ID9598=TEDISegment.Destroy +ID9599=TEDISegment.Disassemble ID96=!!OVERLOADED_InsertSegment_TEDISEFLoop -ID960=CheckCrc32_A -ID9600=TJclClrTableAssemblyRow.FRevisionNumber -ID9601=TJclClrTableAssemblyRow.GetCulture -ID9602=TJclClrTableAssemblyRow.GetFlags -ID9603=TJclClrTableAssemblyRow.GetName -ID9604=TJclClrTableAssemblyRow.GetPublicKey -ID9605=TJclClrTableAssemblyRow.GetVersion -ID9606=TJclClrTableAssemblyRow.HashAlgId -ID9607=TJclClrTableAssemblyRow.MajorVersion -ID9608=TJclClrTableAssemblyRow.MinorVersion -ID9609=TJclClrTableAssemblyRow.Name -ID961=CheckCrc32_P -ID9610=TJclClrTableAssemblyRow.NameOffset -ID9611=TJclClrTableAssemblyRow.PublicKey -ID9612=TJclClrTableAssemblyRow.PublicKeyOffset -ID9613=TJclClrTableAssemblyRow.RevisionNumber -ID9614=TJclClrTableAssemblyRow.Version -ID9615=TJclClrTableClass -ID9616=TJclClrTableClassLayout -ID9617=TJclClrTableClassLayout.GetRow@Integer -ID9618=TJclClrTableClassLayout.Rows -ID9619=TJclClrTableClassLayout.TableRowClass -ID962=CheckSumMappedFile@Pointer@DWORD@DWORD@DWORD -ID9620=TJclClrTableClassLayoutRow -ID9621=TJclClrTableClassLayoutRow.ClassSize -ID9622=TJclClrTableClassLayoutRow.Create@TJclClrTable -ID9623=TJclClrTableClassLayoutRow.FClassSize -ID9624=TJclClrTableClassLayoutRow.FPackingSize -ID9625=TJclClrTableClassLayoutRow.FParentIdx -ID9626=TJclClrTableClassLayoutRow.PackingSize -ID9627=TJclClrTableClassLayoutRow.ParentIdx -ID9628=TJclClrTableConstant -ID9629=TJclClrTableConstant.GetRow@Integer -ID963=CIELABToBGR@PByte@PByte@PByte@Pointer@Cardinal -ID9630=TJclClrTableConstant.Rows -ID9631=TJclClrTableConstant.TableRowClass -ID9632=TJclClrTableConstantRow -ID9633=TJclClrTableConstantRow.Create@TJclClrTable -ID9634=TJclClrTableConstantRow.DumpIL -ID9635=TJclClrTableConstantRow.ElementType -ID9636=TJclClrTableConstantRow.FKind -ID9637=TJclClrTableConstantRow.FParentIdx -ID9638=TJclClrTableConstantRow.FValueOffset -ID9639=TJclClrTableConstantRow.GetElementType -ID964=CIELABToBGR@Pointer@Pointer@Cardinal -ID9640=TJclClrTableConstantRow.GetParent -ID9641=TJclClrTableConstantRow.GetValue -ID9642=TJclClrTableConstantRow.Kind -ID9643=TJclClrTableConstantRow.Parent -ID9644=TJclClrTableConstantRow.ParentIdx -ID9645=TJclClrTableConstantRow.Value -ID9646=TJclClrTableConstantRow.ValueOffset -ID9647=TJclClrTableCustomAttribute -ID9648=TJclClrTableCustomAttribute.GetRow@Integer -ID9649=TJclClrTableCustomAttribute.Rows -ID965=clAqua32 -ID9650=TJclClrTableCustomAttribute.TableRowClass -ID9651=TJclClrTableCustomAttributeRow -ID9652=TJclClrTableCustomAttributeRow.Create@TJclClrTable -ID9653=TJclClrTableCustomAttributeRow.DumpIL -ID9654=TJclClrTableCustomAttributeRow.FParentIdx -ID9655=TJclClrTableCustomAttributeRow.FTypeIdx -ID9656=TJclClrTableCustomAttributeRow.FValueOffset -ID9657=TJclClrTableCustomAttributeRow.GetMethod -ID9658=TJclClrTableCustomAttributeRow.GetParent -ID9659=TJclClrTableCustomAttributeRow.GetValue -ID966=clBlack32 -ID9660=TJclClrTableCustomAttributeRow.Method -ID9661=TJclClrTableCustomAttributeRow.Parent -ID9662=TJclClrTableCustomAttributeRow.ParentIdx -ID9663=TJclClrTableCustomAttributeRow.TypeIdx -ID9664=TJclClrTableCustomAttributeRow.Value -ID9665=TJclClrTableCustomAttributeRow.ValueOffset -ID9666=TJclClrTableDeclSecurity -ID9667=TJclClrTableDeclSecurity.GetRow@Integer -ID9668=TJclClrTableDeclSecurity.Rows -ID9669=TJclClrTableDeclSecurity.TableRowClass -ID967=clBlue32 -ID9670=TJclClrTableDeclSecurityRow -ID9671=TJclClrTableDeclSecurityRow.Action -ID9672=TJclClrTableDeclSecurityRow.Create@TJclClrTable -ID9673=TJclClrTableDeclSecurityRow.FAction -ID9674=TJclClrTableDeclSecurityRow.FParentIdx -ID9675=TJclClrTableDeclSecurityRow.FPermissionSetOffset -ID9676=TJclClrTableDeclSecurityRow.ParentIdx -ID9677=TJclClrTableDeclSecurityRow.PermissionSetOffset -ID9678=TJclClrTableENCLog -ID9679=TJclClrTableENCLog.GetRow@Integer -ID968=clDimGray32 -ID9680=TJclClrTableENCLog.Rows -ID9681=TJclClrTableENCLog.TableRowClass -ID9682=TJclClrTableENCLogRow -ID9683=TJclClrTableENCLogRow.Create@TJclClrTable -ID9684=TJclClrTableENCLogRow.FFuncCode -ID9685=TJclClrTableENCLogRow.FuncCode -ID9686=TJclClrTableENCMap -ID9687=TJclClrTableENCMap.GetRow@Integer -ID9688=TJclClrTableENCMap.Rows -ID9689=TJclClrTableENCMap.TableRowClass -ID969=ClearBit@Cardinal@TBitRange -ID9690=TJclClrTableENCMapRow -ID9691=TJclClrTableENCMapRow.Create@TJclClrTable -ID9692=TJclClrTableENCMapRow.FFuncCode -ID9693=TJclClrTableENCMapRow.FToken -ID9694=TJclClrTableENCMapRow.FuncCode -ID9695=TJclClrTableEventDef -ID9696=TJclClrTableEventDef.GetRow@Integer -ID9697=TJclClrTableEventDef.Rows -ID9698=TJclClrTableEventDef.TableRowClass -ID9699=TJclClrTableEventDefRow +ID960=BorRADToolRepositoryObjectMainForm +ID9600=TEDISegment.ElementCount +ID9601=TEDISegment.FSegmentId +ID9602=TEDISegment.InsertCompositeElement@Integer +ID9603=TEDISegment.InsertCompositeElement@Integer@TEDICompositeElement +ID9604=TEDISegment.InsertCompositeElements@Integer@Integer +ID9605=TEDISegment.InsertCompositeElements@Integer@TEDICompositeElementArray +ID9606=TEDISegment.InsertElement@Integer +ID9607=TEDISegment.InsertElement@Integer@TEDIElement +ID9608=TEDISegment.InsertElements@Integer@Integer +ID9609=TEDISegment.InsertElements@Integer@TEDIElementArray +ID961=BorRADToolRepositoryObjectName +ID9610=TEDISegment.InternalAssignDelimiters +ID9611=TEDISegment.InternalCreateCompositeElement +ID9612=TEDISegment.InternalCreateEDIDataObject +ID9613=TEDISegment.InternalCreateElement +ID9614=TEDISegment.SegmentId +ID9615=TEDISegmentArray +ID9616=TEDISegmentSpec +ID9617=TEDISegmentSpec.Assemble +ID9618=TEDISegmentSpec.AssembleReservedData@TStrings +ID9619=TEDISegmentSpec.Create@TEDIDataObject@Integer +ID962=BorRADToolRepositoryObjectNewForm +ID9620=TEDISegmentSpec.Description +ID9621=TEDISegmentSpec.Destroy +ID9622=TEDISegmentSpec.Disassemble +ID9623=TEDISegmentSpec.DisassembleReservedData@TStrings +ID9624=TEDISegmentSpec.FDescription +ID9625=TEDISegmentSpec.FMaximumUsage +ID9626=TEDISegmentSpec.FNotes +ID9627=TEDISegmentSpec.FOwnerLoopId +ID9628=TEDISegmentSpec.FParentLoopId +ID9629=TEDISegmentSpec.FPosition +ID963=BorRADToolRepositoryObjectPage +ID9630=TEDISegmentSpec.FRequirementDesignator +ID9631=TEDISegmentSpec.FReservedData +ID9632=TEDISegmentSpec.FSection +ID9633=TEDISegmentSpec.GetReservedData +ID9634=TEDISegmentSpec.Id +ID9635=TEDISegmentSpec.InternalCreateElement +ID9636=TEDISegmentSpec.MaximumUsage +ID9637=TEDISegmentSpec.Notes +ID9638=TEDISegmentSpec.OwnerLoopId +ID9639=TEDISegmentSpec.ParentLoopId +ID964=BorRADToolRepositoryObjectType +ID9640=TEDISegmentSpec.Position +ID9641=TEDISegmentSpec.RequirementDesignator +ID9642=TEDISegmentSpec.ReservedData +ID9643=TEDISegmentSpec.Section +ID9644=TEDISegmentSpec.ValidateElementIndexPositions +ID9645=TEDISpecToSEFTranslator +ID9646=TEDISpecToSEFTranslator.Create +ID9647=TEDISpecToSEFTranslator.Destroy +ID9648=TEDISpecToSEFTranslator.TranslateLoopToSEFSet@TEDILoopStackRecord@string@string@string@TEDIObject +ID9649=TEDISpecToSEFTranslator.TranslateToSEFElement@TEDIElementSpec@TEDISEFFile +ID965=BorRADToolRepositoryPagesSection +ID9650=TEDISpecToSEFTranslator.TranslateToSEFElement@TEDIElementSpec@TEDISEFSegment +ID9651=TEDISpecToSEFTranslator.TranslateToSEFElementTEXTSETS@TEDIElementSpec@TEDISEFElement +ID9652=TEDISpecToSEFTranslator.TranslateToSEFFile@TEDIInterchangeControlSpec +ID9653=TEDISpecToSEFTranslator.TranslateToSEFSegment@TEDISegmentSpec@TEDISEFFile +ID9654=TEDISpecToSEFTranslator.TranslateToSEFSegment@TEDISegmentSpec@TEDISEFLoop +ID9655=TEDISpecToSEFTranslator.TranslateToSEFSegment@TEDISegmentSpec@TEDISEFTable +ID9656=TEDISpecToSEFTranslator.TranslateToSEFSegmentTEXTSETS@TEDISegmentSpec@TEDISEFSegment +ID9657=TEDISpecToSEFTranslator.TranslateToSEFSet@TEDITransactionSetSpec@TEDISEFFile +ID9658=TEDITransactionSet +ID9659=TEDITransactionSet.AddSegment +ID966=BorRADToolRepositoryProjectsPage +ID9660=TEDITransactionSet.AddSegments@Integer +ID9661=TEDITransactionSet.AppendSegment@TEDISegment +ID9662=TEDITransactionSet.AppendSegments@TEDISegmentArray +ID9663=TEDITransactionSet.Assemble +ID9664=TEDITransactionSet.Create@TEDIDataObject@Integer +ID9665=TEDITransactionSet.DeleteSegment@Integer +ID9666=TEDITransactionSet.DeleteSegment@TEDISegment +ID9667=TEDITransactionSet.DeleteSegments +ID9668=TEDITransactionSet.DeleteSegments@Integer@Integer +ID9669=TEDITransactionSet.Destroy +ID967=BorRADToolRepositoryProjectTemplate +ID9670=TEDITransactionSet.Disassemble +ID9671=TEDITransactionSet.FSESegment +ID9672=TEDITransactionSet.FSTSegment +ID9673=TEDITransactionSet.GetSegment@Integer +ID9674=TEDITransactionSet.InsertSegment@Integer +ID9675=TEDITransactionSet.InsertSegment@Integer@TEDISegment +ID9676=TEDITransactionSet.InsertSegments@Integer@Integer +ID9677=TEDITransactionSet.InsertSegments@Integer@TEDISegmentArray +ID9678=TEDITransactionSet.InternalAssignDelimiters +ID9679=TEDITransactionSet.InternalCreateEDIDataObject +ID968=BPLFileName@string@string +ID9680=TEDITransactionSet.InternalCreateHeaderTrailerSegments +ID9681=TEDITransactionSet.InternalCreateSegment +ID9682=TEDITransactionSet.Segment +ID9683=TEDITransactionSet.SegmentCount +ID9684=TEDITransactionSet.Segments +ID9685=TEDITransactionSet.SegmentSE +ID9686=TEDITransactionSet.SegmentST +ID9687=TEDITransactionSet.SetSegment@Integer@TEDISegment +ID9688=TEDITransactionSet.SetSESegment@TEDISegment +ID9689=TEDITransactionSet.SetSTSegment@TEDISegment +ID969=Bpr2MakExeName +ID9690=TEDITransactionSetArray +ID9691=TEDITransactionSetDocument +ID9692=TEDITransactionSetDocument.AddLoopToDoc@TEDILoopStackRecord@string@string@string@TEDIObject +ID9693=TEDITransactionSetDocument.AdvanceSegSpecIndex@Integer@Integer@Integer +ID9694=TEDITransactionSetDocument.Create@TEDIDataObject@TEDITransactionSet@TEDITransactionSetSpec +ID9695=TEDITransactionSetDocument.Destroy +ID9696=TEDITransactionSetDocument.EDITSDOptions +ID9697=TEDITransactionSetDocument.ErrorOccured +ID9698=TEDITransactionSetDocument.FEDILoopStack +ID9699=TEDITransactionSetDocument.FEDITransactionSet ID97=!!OVERLOADED_InsertSegment_TEDISEFTable -ID970=ClearBit@Int64@TBitRange -ID9700=TJclClrTableEventDefRow.Create@TJclClrTable -ID9701=TJclClrTableEventDefRow.EventFlags -ID9702=TJclClrTableEventDefRow.EventTypeIdx -ID9703=TJclClrTableEventDefRow.FEventFlags -ID9704=TJclClrTableEventDefRow.FEventTypeIdx -ID9705=TJclClrTableEventDefRow.FNameOffset -ID9706=TJclClrTableEventDefRow.GetName -ID9707=TJclClrTableEventDefRow.Name -ID9708=TJclClrTableEventDefRow.NameOffset -ID9709=TJclClrTableEventFlag -ID971=ClearBit@Integer@TBitRange -ID9710=TJclClrTableEventFlag.efRTSpecialName -ID9711=TJclClrTableEventFlag.efSpecialName -ID9712=TJclClrTableEventFlags -ID9713=TJclClrTableEventMap -ID9714=TJclClrTableEventMap.GetRow@Integer -ID9715=TJclClrTableEventMap.Rows -ID9716=TJclClrTableEventMap.TableRowClass -ID9717=TJclClrTableEventMapRow -ID9718=TJclClrTableEventMapRow.Create@TJclClrTable -ID9719=TJclClrTableEventMapRow.EventListIdx -ID972=ClearBit@Shortint@TBitRange -ID9720=TJclClrTableEventMapRow.FEventListIdx -ID9721=TJclClrTableEventMapRow.FParentIdx -ID9722=TJclClrTableEventMapRow.ParentIdx -ID9723=TJclClrTableEventPtr -ID9724=TJclClrTableEventPtr.GetRow@Integer -ID9725=TJclClrTableEventPtr.Rows -ID9726=TJclClrTableEventPtr.TableRowClass -ID9727=TJclClrTableEventPtrRow -ID9728=TJclClrTableEventPtrRow.Create@TJclClrTable -ID9729=TJclClrTableEventPtrRow.Event -ID973=ClearBit@Smallint@TBitRange -ID9730=TJclClrTableEventPtrRow.EventIdx -ID9731=TJclClrTableEventPtrRow.FEventIdx -ID9732=TJclClrTableEventPtrRow.GetEvent -ID9733=TJclClrTableExportedType -ID9734=TJclClrTableExportedType.GetRow@Integer -ID9735=TJclClrTableExportedType.Rows -ID9736=TJclClrTableExportedType.TableRowClass -ID9737=TJclClrTableExportedTypeRow -ID9738=TJclClrTableExportedTypeRow.Create@TJclClrTable -ID9739=TJclClrTableExportedTypeRow.FFlags -ID974=ClearBit@Word@TBitRange -ID9740=TJclClrTableExportedTypeRow.FImplementationIdx -ID9741=TJclClrTableExportedTypeRow.Flags -ID9742=TJclClrTableExportedTypeRow.FTypeDefIdx -ID9743=TJclClrTableExportedTypeRow.FTypeNameOffset -ID9744=TJclClrTableExportedTypeRow.FTypeNamespaceOffset -ID9745=TJclClrTableExportedTypeRow.GetTypeName -ID9746=TJclClrTableExportedTypeRow.GetTypeNamespace -ID9747=TJclClrTableExportedTypeRow.ImplementationIdx -ID9748=TJclClrTableExportedTypeRow.TypeDefIdx -ID9749=TJclClrTableExportedTypeRow.TypeName -ID975=ClearBitBuffer@@Cardinal -ID9750=TJclClrTableExportedTypeRow.TypeNameOffset -ID9751=TJclClrTableExportedTypeRow.TypeNamespace -ID9752=TJclClrTableExportedTypeRow.TypeNamespaceOffset -ID9753=TJclClrTableFieldDef -ID9754=TJclClrTableFieldDef.GetRow@Integer -ID9755=TJclClrTableFieldDef.Rows -ID9756=TJclClrTableFieldDef.TableRowClass -ID9757=TJclClrTableFieldDefFlag -ID9758=TJclClrTableFieldDefFlag.ffHasDefault -ID9759=TJclClrTableFieldDefFlag.ffHasFieldMarshal -ID976=CLFLSH_FLAG -ID9760=TJclClrTableFieldDefFlag.ffHasFieldRVA -ID9761=TJclClrTableFieldDefFlag.ffInitOnly -ID9762=TJclClrTableFieldDefFlag.ffLiteral -ID9763=TJclClrTableFieldDefFlag.ffNotSerialized -ID9764=TJclClrTableFieldDefFlag.ffPinvokeImpl -ID9765=TJclClrTableFieldDefFlag.ffRTSpecialName -ID9766=TJclClrTableFieldDefFlag.ffSpecialName -ID9767=TJclClrTableFieldDefFlag.ffStatic -ID9768=TJclClrTableFieldDefFlags -ID9769=TJclClrTableFieldDefRow -ID977=clFuchsia32 -ID9770=TJclClrTableFieldDefRow.Create@TJclClrTable -ID9771=TJclClrTableFieldDefRow.DumpIL -ID9772=TJclClrTableFieldDefRow.FFlags -ID9773=TJclClrTableFieldDefRow.Flags -ID9774=TJclClrTableFieldDefRow.FNameOffset -ID9775=TJclClrTableFieldDefRow.FParentToken -ID9776=TJclClrTableFieldDefRow.FSignatureOffset -ID9777=TJclClrTableFieldDefRow.GetFlag -ID9778=TJclClrTableFieldDefRow.GetName -ID9779=TJclClrTableFieldDefRow.GetSignature -ID978=clGray32 -ID9780=TJclClrTableFieldDefRow.GetVisibility -ID9781=TJclClrTableFieldDefRow.Name -ID9782=TJclClrTableFieldDefRow.NameOffset -ID9783=TJclClrTableFieldDefRow.ParentToken -ID9784=TJclClrTableFieldDefRow.RawFlags -ID9785=TJclClrTableFieldDefRow.SetParentToken@TJclClrTableTypeDefRow -ID9786=TJclClrTableFieldDefRow.Signature -ID9787=TJclClrTableFieldDefRow.SignatureOffset -ID9788=TJclClrTableFieldDefRow.Visibility -ID9789=TJclClrTableFieldDefVisibility -ID979=clGreen32 -ID9790=TJclClrTableFieldDefVisibility.fvAssembly -ID9791=TJclClrTableFieldDefVisibility.fvFamANDAssem -ID9792=TJclClrTableFieldDefVisibility.fvFamily -ID9793=TJclClrTableFieldDefVisibility.fvFamORAssem -ID9794=TJclClrTableFieldDefVisibility.fvPrivate -ID9795=TJclClrTableFieldDefVisibility.fvPrivateScope -ID9796=TJclClrTableFieldDefVisibility.fvPublic -ID9797=TJclClrTableFieldLayout -ID9798=TJclClrTableFieldLayout.GetRow@Integer -ID9799=TJclClrTableFieldLayout.Rows +ID970=bRtdlFunctionsLoaded +ID9700=TEDITransactionSetDocument.FEDITransactionSetSpec +ID9701=TEDITransactionSetDocument.FEDITSDOptions +ID9702=TEDITransactionSetDocument.FErrorOccured +ID9703=TEDITransactionSetDocument.FormatDocument +ID9704=TEDITransactionSetDocument.SetSpecificationPointers@TEDISegment@TEDISegment +ID9705=TEDITransactionSetDocument.ValidateData@TEDITransactionSetDocument@TEDILoopStack@TEDISegment@TEDISegment@Integer@Integer@Boolean +ID9706=TEDITransactionSetDocument.ValidateSegSpecIndex@string@Integer +ID9707=TEDITransactionSetDocumentArray +ID9708=TEDITransactionSetDocumentOptions +ID9709=TEDITransactionSetLoop +ID971=ByteArrayStringLen@TBytes +ID9710=TEDITransactionSetLoop.AddLoop@string@string +ID9711=TEDITransactionSetLoop.AppendSegment@TEDISegment +ID9712=TEDITransactionSetLoop.Assemble +ID9713=TEDITransactionSetLoop.Create@TEDIDataObject +ID9714=TEDITransactionSetLoop.DeleteEDIDataObjects +ID9715=TEDITransactionSetLoop.Destroy +ID9716=TEDITransactionSetLoop.Disassemble +ID9717=TEDITransactionSetLoop.FindLoop@string@Integer +ID9718=TEDITransactionSetLoop.FindSegment@string@Integer +ID9719=TEDITransactionSetLoop.FindSegment@string@Integer@TStrings +ID972=ByteArrayToString@TBytes@Integer +ID9720=TEDITransactionSetLoop.FOwnerLoopId +ID9721=TEDITransactionSetLoop.FParentLoopId +ID9722=TEDITransactionSetLoop.FParentTransactionSet +ID9723=TEDITransactionSetLoop.InternalAssignDelimiters +ID9724=TEDITransactionSetLoop.InternalCreateEDIDataObject +ID9725=TEDITransactionSetLoop.OwnerLoopId +ID9726=TEDITransactionSetLoop.ParentLoopId +ID9727=TEDITransactionSetLoop.ParentTransactionSet +ID9728=TEDITransactionSetSegment +ID9729=TEDITransactionSetSegment.Create@TEDIDataObject@Integer +ID973=ByteMask +ID9730=TEDITransactionSetSegment.InternalAssignDelimiters +ID9731=TEDITransactionSetSegmentSpec +ID9732=TEDITransactionSetSegmentSpec.Create@TEDIDataObject@Integer +ID9733=TEDITransactionSetSegmentSpec.InternalAssignDelimiters +ID9734=TEDITransactionSetSegmentSTSpec +ID9735=TEDITransactionSetSegmentSTSpec.AssembleReservedData@TStrings +ID9736=TEDITransactionSetSegmentSTSpec.Create@TEDIDataObject@Integer +ID9737=TEDITransactionSetSegmentSTSpec.DisassembleReservedData@TStrings +ID9738=TEDITransactionSetSpec +ID9739=TEDITransactionSetSpec.FTransactionSetId +ID974=BytePermTable +ID9740=TEDITransactionSetSpec.FTSDescription +ID9741=TEDITransactionSetSpec.Id +ID9742=TEDITransactionSetSpec.InternalCreateHeaderTrailerSegments +ID9743=TEDITransactionSetSpec.InternalCreateSegment +ID9744=TEDITransactionSetSpec.TransactionSetId +ID9745=TEDITransactionSetSpec.TSDescription +ID9746=TEDITransactionSetSpec.ValidateSegmentIndexPositions +ID9747=TEDIXMLANSIX12FormatTranslator +ID9748=TEDIXMLANSIX12FormatTranslator.ConvertToEDISegment@TEDIXMLSegment +ID9749=TEDIXMLANSIX12FormatTranslator.ConvertToEDITransaction@TEDIXMLTransactionSet +ID975=BytesOf@AnsiChar +ID9750=TEDIXMLANSIX12FormatTranslator.ConvertToXMLSegment@TEDISegment +ID9751=TEDIXMLANSIX12FormatTranslator.ConvertToXMLTransaction@TEDITransactionSet +ID9752=TEDIXMLANSIX12FormatTranslator.ConvertToXMLTransaction@TEDITransactionSet@TEDITransactionSetSpec +ID9753=TEDIXMLANSIX12FormatTranslator.ConvertTransactionSetLoopToEDI@TEDITransactionSet@TEDIXMLTransactionSetLoop +ID9754=TEDIXMLANSIX12FormatTranslator.ConvertTransactionSetLoopToXML@TEDITransactionSetLoop@TEDIXMLTransactionSetLoop +ID9755=TEDIXMLANSIX12FormatTranslator.Create +ID9756=TEDIXMLANSIX12FormatTranslator.Destroy +ID9757=TEDIXMLAttributes +ID9758=TEDIXMLAttributes.CheckAttribute@string@string +ID9759=TEDIXMLAttributes.CombineAttributes +ID976=BytesOf@AnsiString +ID9760=TEDIXMLAttributes.Create +ID9761=TEDIXMLAttributes.Destroy +ID9762=TEDIXMLAttributes.FAttributes +ID9763=TEDIXMLAttributes.FDelimiters +ID9764=TEDIXMLAttributes.GetAttributeString@string +ID9765=TEDIXMLAttributes.GetAttributeValue@string +ID9766=TEDIXMLAttributes.ParseAttributes@string +ID9767=TEDIXMLAttributes.SetAttribute@string@string +ID9768=TEDIXMLDataObject +ID9769=TEDIXMLDataObject.Assemble +ID977=BytesOf@WideChar +ID9770=TEDIXMLDataObject.Attributes +ID9771=TEDIXMLDataObject.Create@TEDIXMLDataObject +ID9772=TEDIXMLDataObject.CustomData1 +ID9773=TEDIXMLDataObject.CustomData2 +ID9774=TEDIXMLDataObject.Data +ID9775=TEDIXMLDataObject.DataLength +ID9776=TEDIXMLDataObject.Delimiters +ID9777=TEDIXMLDataObject.Destroy +ID9778=TEDIXMLDataObject.Disassemble +ID9779=TEDIXMLDataObject.FAttributes +ID978=BytesOf@WideString +ID9780=TEDIXMLDataObject.FCustomData1 +ID9781=TEDIXMLDataObject.FCustomData2 +ID9782=TEDIXMLDataObject.FData +ID9783=TEDIXMLDataObject.FDelimiters +ID9784=TEDIXMLDataObject.FEDIDOT +ID9785=TEDIXMLDataObject.FErrorLog +ID9786=TEDIXMLDataObject.FLength +ID9787=TEDIXMLDataObject.FParent +ID9788=TEDIXMLDataObject.FSpecPointer +ID9789=TEDIXMLDataObject.FState +ID979=bzip2.pas +ID9790=TEDIXMLDataObject.GetData +ID9791=TEDIXMLDataObject.Parent +ID9792=TEDIXMLDataObject.SetData@string +ID9793=TEDIXMLDataObject.SetDelimiters@TEDIXMLDelimiters +ID9794=TEDIXMLDataObject.SpecPointer +ID9795=TEDIXMLDataObject.State +ID9796=TEDIXMLDataObjectArray +ID9797=TEDIXMLDataObjectGroup +ID9798=TEDIXMLDataObjectGroup.AddGroup +ID9799=TEDIXMLDataObjectGroup.AddSegment ID98=!!OVERLOADED_InsertSegment_TEDITransactionSet -ID980=ClipCodes@Float@Float@Float@Float@Float@Float -ID9800=TJclClrTableFieldLayout.TableRowClass -ID9801=TJclClrTableFieldLayoutRow -ID9802=TJclClrTableFieldLayoutRow.Create@TJclClrTable -ID9803=TJclClrTableFieldLayoutRow.FFieldIdx -ID9804=TJclClrTableFieldLayoutRow.FieldIdx -ID9805=TJclClrTableFieldLayoutRow.FOffset -ID9806=TJclClrTableFieldLayoutRow.Offset -ID9807=TJclClrTableFieldMarshal -ID9808=TJclClrTableFieldMarshal.GetRow@Integer -ID9809=TJclClrTableFieldMarshal.Rows -ID981=ClipCodes@Float@Float@TRect -ID9810=TJclClrTableFieldMarshal.TableRowClass -ID9811=TJclClrTableFieldMarshalRow -ID9812=TJclClrTableFieldMarshalRow.Create@TJclClrTable -ID9813=TJclClrTableFieldMarshalRow.FNativeTypeOffset -ID9814=TJclClrTableFieldMarshalRow.FParentIdx -ID9815=TJclClrTableFieldMarshalRow.NativeTypeOffset -ID9816=TJclClrTableFieldMarshalRow.ParentIdx -ID9817=TJclClrTableFieldPtr -ID9818=TJclClrTableFieldPtr.GetRow@Integer -ID9819=TJclClrTableFieldPtr.Rows -ID982=ClipLine@Integer@Integer@Integer@Integer@TRect -ID9820=TJclClrTableFieldPtr.TableRowClass -ID9821=TJclClrTableFieldPtrRow -ID9822=TJclClrTableFieldPtrRow.Create@TJclClrTable -ID9823=TJclClrTableFieldPtrRow.FFieldIdx -ID9824=TJclClrTableFieldPtrRow.Field -ID9825=TJclClrTableFieldPtrRow.FieldIdx -ID9826=TJclClrTableFieldPtrRow.GetField -ID9827=TJclClrTableFieldRVA -ID9828=TJclClrTableFieldRVA.GetRow@Integer -ID9829=TJclClrTableFieldRVA.Rows -ID983=clLightGray32 -ID9830=TJclClrTableFieldRVA.TableRowClass -ID9831=TJclClrTableFieldRVARow -ID9832=TJclClrTableFieldRVARow.Create@TJclClrTable -ID9833=TJclClrTableFieldRVARow.FFieldIdx -ID9834=TJclClrTableFieldRVARow.FieldIdx -ID9835=TJclClrTableFieldRVARow.FRVA -ID9836=TJclClrTableFieldRVARow.RVA -ID9837=TJclClrTableFile -ID9838=TJclClrTableFile.GetRow@Integer -ID9839=TJclClrTableFile.Rows -ID984=clLime32 -ID9840=TJclClrTableFile.TableRowClass -ID9841=TJclClrTableFileRow -ID9842=TJclClrTableFileRow.ContainsMetadata -ID9843=TJclClrTableFileRow.Create@TJclClrTable -ID9844=TJclClrTableFileRow.DumpIL -ID9845=TJclClrTableFileRow.FFlags -ID9846=TJclClrTableFileRow.FHashValueOffset -ID9847=TJclClrTableFileRow.Flags -ID9848=TJclClrTableFileRow.FNameOffset -ID9849=TJclClrTableFileRow.GetContainsMetadata -ID985=clMaroon32 -ID9850=TJclClrTableFileRow.GetHashValue -ID9851=TJclClrTableFileRow.GetName -ID9852=TJclClrTableFileRow.HashValue -ID9853=TJclClrTableFileRow.HashValueOffset -ID9854=TJclClrTableFileRow.Name -ID9855=TJclClrTableFileRow.NameOffset -ID9856=TJclClrTableImplMap -ID9857=TJclClrTableImplMap.GetRow@Integer -ID9858=TJclClrTableImplMap.Rows -ID9859=TJclClrTableImplMap.TableRowClass -ID986=clNavy32 -ID9860=TJclClrTableImplMapRow -ID9861=TJclClrTableImplMapRow.Create@TJclClrTable -ID9862=TJclClrTableImplMapRow.FImportNameOffset -ID9863=TJclClrTableImplMapRow.FImportScopeIdx -ID9864=TJclClrTableImplMapRow.FMappingFlags -ID9865=TJclClrTableImplMapRow.FMemberForwardedIdx -ID9866=TJclClrTableImplMapRow.GetImportName -ID9867=TJclClrTableImplMapRow.ImportName -ID9868=TJclClrTableImplMapRow.ImportNameOffset -ID9869=TJclClrTableImplMapRow.ImportScopeIdx -ID987=clOlive32 -ID9870=TJclClrTableImplMapRow.MappingFlags -ID9871=TJclClrTableImplMapRow.MemberForwardedIdx -ID9872=TJclClrTableInterfaceImpl -ID9873=TJclClrTableInterfaceImpl.GetRow@Integer -ID9874=TJclClrTableInterfaceImpl.Rows -ID9875=TJclClrTableInterfaceImpl.TableRowClass -ID9876=TJclClrTableInterfaceImplRow -ID9877=TJclClrTableInterfaceImplRow.ClassIdx -ID9878=TJclClrTableInterfaceImplRow.Create@TJclClrTable -ID9879=TJclClrTableInterfaceImplRow.DumpIL -ID988=CloseCdMciDevice@TMCI_Open_Parms -ID9880=TJclClrTableInterfaceImplRow.FClassIdx -ID9881=TJclClrTableInterfaceImplRow.FInterfaceIdx -ID9882=TJclClrTableInterfaceImplRow.GetImplClass -ID9883=TJclClrTableInterfaceImplRow.GetImplInterface -ID9884=TJclClrTableInterfaceImplRow.ImplClass -ID9885=TJclClrTableInterfaceImplRow.ImplInterface -ID9886=TJclClrTableInterfaceImplRow.InterfaceIdx -ID9887=TJclClrTableKind -ID9888=TJclClrTableKind.ttAssembly -ID9889=TJclClrTableKind.ttAssemblyOS -ID989=clPurple32 -ID9890=TJclClrTableKind.ttAssemblyProcessor -ID9891=TJclClrTableKind.ttAssemblyRef -ID9892=TJclClrTableKind.ttAssemblyRefOS -ID9893=TJclClrTableKind.ttAssemblyRefProcessor -ID9894=TJclClrTableKind.ttClassLayout -ID9895=TJclClrTableKind.ttConstant -ID9896=TJclClrTableKind.ttCustomAttribute -ID9897=TJclClrTableKind.ttDeclSecurity -ID9898=TJclClrTableKind.ttENCLog -ID9899=TJclClrTableKind.ttENCMap +ID980=BZIP2_LINKDLL +ID9800=TEDIXMLDataObjectGroup.AppendEDIDataObject@TEDIXMLDataObject +ID9801=TEDIXMLDataObjectGroup.Create@TEDIXMLDataObject +ID9802=TEDIXMLDataObjectGroup.DeleteEDIDataObject@Integer +ID9803=TEDIXMLDataObjectGroup.DeleteEDIDataObject@TEDIXMLDataObject +ID9804=TEDIXMLDataObjectGroup.DeleteEDIDataObjects +ID9805=TEDIXMLDataObjectGroup.Destroy +ID9806=TEDIXMLDataObjectGroup.EDIDataObject +ID9807=TEDIXMLDataObjectGroup.EDIDataObjects +ID9808=TEDIXMLDataObjectGroup.FEDIDataObjects +ID9809=TEDIXMLDataObjectGroup.GetEDIDataObject@Integer +ID981=BZIP2_LINKONREQUEST +ID9810=TEDIXMLDataObjectGroup.InsertEDIDataObject@Integer@TEDIXMLDataObject +ID9811=TEDIXMLDataObjectGroup.InsertGroup@Integer +ID9812=TEDIXMLDataObjectGroup.InsertSegment@Integer +ID9813=TEDIXMLDataObjectGroup.InternalAssignDelimiters +ID9814=TEDIXMLDataObjectGroup.InternalCreateDataObjectGroup +ID9815=TEDIXMLDataObjectGroup.SearchForSegmentInDataString@string@Integer +ID9816=TEDIXMLDataObjectGroup.SetEDIDataObject@Integer@TEDIXMLDataObject +ID9817=TEDIXMLDelimiters +ID9818=TEDIXMLDelimiters.AssignmentDelimiter +ID9819=TEDIXMLDelimiters.BCDataD +ID982=BZIP2_STATICLINK +ID9820=TEDIXMLDelimiters.BCDataLength +ID9821=TEDIXMLDelimiters.BOfETD +ID9822=TEDIXMLDelimiters.BOfETDLength +ID9823=TEDIXMLDelimiters.BTD +ID9824=TEDIXMLDelimiters.BTDLength +ID9825=TEDIXMLDelimiters.Create +ID9826=TEDIXMLDelimiters.DoubleQuote +ID9827=TEDIXMLDelimiters.ECDataD +ID9828=TEDIXMLDelimiters.ECDataLength +ID9829=TEDIXMLDelimiters.ETD +ID983=BZip2File@string@string@Integer@TJclCompressStreamProgressCallback@Pointer +ID9830=TEDIXMLDelimiters.ETDLength +ID9831=TEDIXMLDelimiters.FAssignmentDelimiter +ID9832=TEDIXMLDelimiters.FBeginCDataDelimiter +ID9833=TEDIXMLDelimiters.FBeginCDataLength +ID9834=TEDIXMLDelimiters.FBeginOfEndTagDelimiter +ID9835=TEDIXMLDelimiters.FBeginOfEndTagLength +ID9836=TEDIXMLDelimiters.FBeginTagDelimiter +ID9837=TEDIXMLDelimiters.FBeginTagLength +ID9838=TEDIXMLDelimiters.FDoubleQuote +ID9839=TEDIXMLDelimiters.FEndCDataDelimiter +ID984=BZip2File@TFileName@TFileName@Integer@TJclCompressStreamProgressCallback@Pointer +ID9840=TEDIXMLDelimiters.FEndCDataLength +ID9841=TEDIXMLDelimiters.FEndTagDelimiter +ID9842=TEDIXMLDelimiters.FEndTagLength +ID9843=TEDIXMLDelimiters.FSingleQuote +ID9844=TEDIXMLDelimiters.FSpaceDelimiter +ID9845=TEDIXMLDelimiters.SetBeginCDataDelimiter@string +ID9846=TEDIXMLDelimiters.SetBeginOfEndTagDelimiter@string +ID9847=TEDIXMLDelimiters.SetBeginTagDelimiter@string +ID9848=TEDIXMLDelimiters.SetEndCDataDelimiter@string +ID9849=TEDIXMLDelimiters.SetEndTagDelimiter@string +ID985=BZip2Stream@TStream@TStream@Integer@TJclCompressStreamProgressCallback@Pointer +ID9850=TEDIXMLDelimiters.SingleQuote +ID9851=TEDIXMLDelimiters.SpaceDelimiter +ID9852=TEDIXMLElement +ID9853=TEDIXMLElement.Assemble +ID9854=TEDIXMLElement.CData +ID9855=TEDIXMLElement.Create@TEDIXMLDataObject +ID9856=TEDIXMLElement.Disassemble +ID9857=TEDIXMLElement.FCData +ID9858=TEDIXMLElement.GetIndexPositionFromParent +ID9859=TEDIXMLElement.InternalAssignDelimiters +ID986=C1_ALPHA +ID9860=TEDIXMLElementArray +ID9861=TEDIXMLFile +ID9862=TEDIXMLFile.Assemble +ID9863=TEDIXMLFile.Create@TEDIXMLDataObject +ID9864=TEDIXMLFile.Destroy +ID9865=TEDIXMLFile.Disassemble +ID9866=TEDIXMLFile.FEDIXMLFileHeader +ID9867=TEDIXMLFile.FFileID +ID9868=TEDIXMLFile.FFileName +ID9869=TEDIXMLFile.FileID +ID987=C1_BLANK +ID9870=TEDIXMLFile.FileName +ID9871=TEDIXMLFile.InternalAssignDelimiters +ID9872=TEDIXMLFile.InternalCreateDataObjectGroup +ID9873=TEDIXMLFile.InternalLoadFromFile +ID9874=TEDIXMLFile.LoadFromFile@string +ID9875=TEDIXMLFile.ReLoadFromFile +ID9876=TEDIXMLFile.SaveAsToFile@string +ID9877=TEDIXMLFile.SaveToFile +ID9878=TEDIXMLFile.XMLFileHeader +ID9879=TEDIXMLFileHeader +ID988=C1_CNTRL +ID9880=TEDIXMLFileHeader.Attributes +ID9881=TEDIXMLFileHeader.Create +ID9882=TEDIXMLFileHeader.Delimiters +ID9883=TEDIXMLFileHeader.Destroy +ID9884=TEDIXMLFileHeader.FAttributes +ID9885=TEDIXMLFileHeader.FDelimiters +ID9886=TEDIXMLFileHeader.FXMLNameSpaceOption +ID9887=TEDIXMLFileHeader.OutputAdditionalXMLHeaderAttributes +ID9888=TEDIXMLFileHeader.OutputXMLHeader +ID9889=TEDIXMLFileHeader.ParseXMLHeader@string +ID989=C1_DIGIT +ID9890=TEDIXMLFileHeader.XMLNameSpaceOption +ID9891=TEDIXMLFunctionalGroup +ID9892=TEDIXMLFunctionalGroup.Assemble +ID9893=TEDIXMLFunctionalGroup.Create@TEDIXMLDataObject +ID9894=TEDIXMLFunctionalGroup.Destroy +ID9895=TEDIXMLFunctionalGroup.Disassemble +ID9896=TEDIXMLFunctionalGroup.FGESegment +ID9897=TEDIXMLFunctionalGroup.FGSSegment +ID9898=TEDIXMLFunctionalGroup.InternalAssignDelimiters +ID9899=TEDIXMLFunctionalGroup.InternalCreateDataObjectGroup ID99=!!OVERLOADED_InsertSegments_TEDIMessage -ID990=ClrCreateManagedInstance@PWideChar@TIID@ -ID9900=TJclClrTableKind.ttEventDef -ID9901=TJclClrTableKind.ttEventMap -ID9902=TJclClrTableKind.ttEventPtr -ID9903=TJclClrTableKind.ttExportedType -ID9904=TJclClrTableKind.ttFieldDef -ID9905=TJclClrTableKind.ttFieldLayout -ID9906=TJclClrTableKind.ttFieldMarshal -ID9907=TJclClrTableKind.ttFieldPtr -ID9908=TJclClrTableKind.ttFieldRVA -ID9909=TJclClrTableKind.ttFile -ID991=clRed32 -ID9910=TJclClrTableKind.ttImplMap -ID9911=TJclClrTableKind.ttInterfaceImpl -ID9912=TJclClrTableKind.ttManifestResource -ID9913=TJclClrTableKind.ttMemberRef -ID9914=TJclClrTableKind.ttMethodDef -ID9915=TJclClrTableKind.ttMethodImpl -ID9916=TJclClrTableKind.ttMethodPtr -ID9917=TJclClrTableKind.ttMethodSemantics -ID9918=TJclClrTableKind.ttMethodTyPar -ID9919=TJclClrTableKind.ttModule -ID992=CLSID_RESOLUTION_DEFAULT -ID9920=TJclClrTableKind.ttModuleRef -ID9921=TJclClrTableKind.ttNestedClass -ID9922=TJclClrTableKind.ttParamDef -ID9923=TJclClrTableKind.ttParamPtr -ID9924=TJclClrTableKind.ttPropertyDef -ID9925=TJclClrTableKind.ttPropertyMap -ID9926=TJclClrTableKind.ttPropertyPtr -ID9927=TJclClrTableKind.ttSignature -ID9928=TJclClrTableKind.ttTypeDef -ID9929=TJclClrTableKind.ttTypeRef -ID993=CLSID_RESOLUTION_FLAGS -ID9930=TJclClrTableKind.ttTypeSpec -ID9931=TJclClrTableKind.ttTypeTyPar -ID9932=TJclClrTableManifestResource -ID9933=TJclClrTableManifestResource.GetRow@Integer -ID9934=TJclClrTableManifestResource.Rows -ID9935=TJclClrTableManifestResource.TableRowClass -ID9936=TJclClrTableManifestResourceRow -ID9937=TJclClrTableManifestResourceRow.Create@TJclClrTable -ID9938=TJclClrTableManifestResourceRow.DumpIL -ID9939=TJclClrTableManifestResourceRow.FFlags -ID994=CLSID_RESOLUTION_REGISTERED -ID9940=TJclClrTableManifestResourceRow.FImplementationIdx -ID9941=TJclClrTableManifestResourceRow.Flags -ID9942=TJclClrTableManifestResourceRow.FNameOffset -ID9943=TJclClrTableManifestResourceRow.FOffset -ID9944=TJclClrTableManifestResourceRow.GetImplementationRow -ID9945=TJclClrTableManifestResourceRow.GetName -ID9946=TJclClrTableManifestResourceRow.GetVisibility -ID9947=TJclClrTableManifestResourceRow.ImplementationIdx -ID9948=TJclClrTableManifestResourceRow.ImplementationRow -ID9949=TJclClrTableManifestResourceRow.Name -ID995=CLSID_StdComponentCategoriesMgr -ID9950=TJclClrTableManifestResourceRow.NameOffset -ID9951=TJclClrTableManifestResourceRow.Offset -ID9952=TJclClrTableManifestResourceRow.Visibility -ID9953=TJclClrTableManifestResourceVisibility -ID9954=TJclClrTableManifestResourceVisibility.rvPrivate -ID9955=TJclClrTableManifestResourceVisibility.rvPublic -ID9956=TJclClrTableMemberRef -ID9957=TJclClrTableMemberRef.GetRow@Integer -ID9958=TJclClrTableMemberRef.Rows -ID9959=TJclClrTableMemberRef.TableRowClass -ID996=clTeal32 -ID9960=TJclClrTableMemberRefRow -ID9961=TJclClrTableMemberRefRow.ClassIdx -ID9962=TJclClrTableMemberRefRow.Create@TJclClrTable -ID9963=TJclClrTableMemberRefRow.FClassIdx -ID9964=TJclClrTableMemberRefRow.FNameOffset -ID9965=TJclClrTableMemberRefRow.FSignatureOffset -ID9966=TJclClrTableMemberRefRow.FullName -ID9967=TJclClrTableMemberRefRow.GetFullName -ID9968=TJclClrTableMemberRefRow.GetName -ID9969=TJclClrTableMemberRefRow.GetParentClass -ID997=clTrBlack32 -ID9970=TJclClrTableMemberRefRow.GetSignature -ID9971=TJclClrTableMemberRefRow.Name -ID9972=TJclClrTableMemberRefRow.NameOffset -ID9973=TJclClrTableMemberRefRow.ParentClass -ID9974=TJclClrTableMemberRefRow.Signature -ID9975=TJclClrTableMemberRefRow.SignatureOffset -ID9976=TJclClrTableMethodDef -ID9977=TJclClrTableMethodDef.GetRow@Integer -ID9978=TJclClrTableMethodDef.Rows -ID9979=TJclClrTableMethodDef.TableRowClass -ID998=clTrBlue32 -ID9980=TJclClrTableMethodDefRow -ID9981=TJclClrTableMethodDefRow.CodeType -ID9982=TJclClrTableMethodDefRow.Create@TJclClrTable -ID9983=TJclClrTableMethodDefRow.Destroy -ID9984=TJclClrTableMethodDefRow.DumpIL -ID9985=TJclClrTableMethodDefRow.FFlags -ID9986=TJclClrTableMethodDefRow.FImplFlags -ID9987=TJclClrTableMethodDefRow.Flags -ID9988=TJclClrTableMethodDefRow.FMethodBody -ID9989=TJclClrTableMethodDefRow.FNameOffset -ID999=clTrGreen32 -ID9990=TJclClrTableMethodDefRow.FParamListIdx -ID9991=TJclClrTableMethodDefRow.FParams -ID9992=TJclClrTableMethodDefRow.FParentToken -ID9993=TJclClrTableMethodDefRow.FRVA -ID9994=TJclClrTableMethodDefRow.FSignature -ID9995=TJclClrTableMethodDefRow.FSignatureOffset -ID9996=TJclClrTableMethodDefRow.FullName -ID9997=TJclClrTableMethodDefRow.GetCodeType -ID9998=TJclClrTableMethodDefRow.GetFullName -ID9999=TJclClrTableMethodDefRow.GetHasParam +ID990=C1_LOWER +ID9900=TEDIXMLFunctionalGroup.SegmentGE +ID9901=TEDIXMLFunctionalGroup.SegmentGS +ID9902=TEDIXMLFunctionalGroupSegment +ID9903=TEDIXMLFunctionalGroupSegment.Create@TEDIXMLDataObject +ID9904=TEDIXMLFunctionalGroupSegment.Create@TEDIXMLDataObject@Integer +ID9905=TEDIXMLFunctionalGroupSegment.InternalAssignDelimiters +ID9906=TEDIXMLInterchangeControl +ID9907=TEDIXMLInterchangeControl.Assemble +ID9908=TEDIXMLInterchangeControl.Create@TEDIXMLDataObject +ID9909=TEDIXMLInterchangeControl.Destroy +ID991=C1_PUNCT +ID9910=TEDIXMLInterchangeControl.Disassemble +ID9911=TEDIXMLInterchangeControl.FIEASegment +ID9912=TEDIXMLInterchangeControl.FISASegment +ID9913=TEDIXMLInterchangeControl.InternalAssignDelimiters +ID9914=TEDIXMLInterchangeControl.InternalCreateDataObjectGroup +ID9915=TEDIXMLInterchangeControl.SegmentIEA +ID9916=TEDIXMLInterchangeControl.SegmentISA +ID9917=TEDIXMLInterchangeControlSegment +ID9918=TEDIXMLInterchangeControlSegment.Create@TEDIXMLDataObject +ID9919=TEDIXMLInterchangeControlSegment.Create@TEDIXMLDataObject@Integer +ID992=C1_SPACE +ID9920=TEDIXMLInterchangeControlSegment.InternalAssignDelimiters +ID9921=TEDIXMLNameSpaceOption +ID9922=TEDIXMLNameSpaceOption.nsDefault +ID9923=TEDIXMLNameSpaceOption.nsNone +ID9924=TEDIXMLNameSpaceOption.nsQualified +ID9925=TEDIXMLObject +ID9926=TEDIXMLObjectArray +ID9927=TEDIXMLSegment +ID9928=TEDIXMLSegment.AddElement +ID9929=TEDIXMLSegment.AddElements@Integer +ID993=C1_UPPER +ID9930=TEDIXMLSegment.AppendElement@TEDIXMLElement +ID9931=TEDIXMLSegment.AppendElements@TEDIXMLElementArray +ID9932=TEDIXMLSegment.Assemble +ID9933=TEDIXMLSegment.Create@TEDIXMLDataObject +ID9934=TEDIXMLSegment.Create@TEDIXMLDataObject@Integer +ID9935=TEDIXMLSegment.DeleteElement@Integer +ID9936=TEDIXMLSegment.DeleteElement@TEDIXMLElement +ID9937=TEDIXMLSegment.DeleteElements +ID9938=TEDIXMLSegment.DeleteElements@Integer@Integer +ID9939=TEDIXMLSegment.Destroy +ID994=C1_XDIGIT +ID9940=TEDIXMLSegment.Disassemble +ID9941=TEDIXMLSegment.Element +ID9942=TEDIXMLSegment.Elements +ID9943=TEDIXMLSegment.FElements +ID9944=TEDIXMLSegment.FSegmentID +ID9945=TEDIXMLSegment.GetElement@Integer +ID9946=TEDIXMLSegment.GetIndexPositionFromParent +ID9947=TEDIXMLSegment.InsertElement@Integer +ID9948=TEDIXMLSegment.InsertElement@Integer@TEDIXMLElement +ID9949=TEDIXMLSegment.InsertElements@Integer@Integer +ID995=CAL_ITWODIGITYEARMAX +ID9950=TEDIXMLSegment.InsertElements@Integer@TEDIXMLElementArray +ID9951=TEDIXMLSegment.InternalAssignDelimiters +ID9952=TEDIXMLSegment.InternalCreateElement +ID9953=TEDIXMLSegment.SegmentID +ID9954=TEDIXMLSegment.SetElement@Integer@TEDIXMLElement +ID9955=TEDIXMLSegmentArray +ID9956=TEDIXMLTransactionSet +ID9957=TEDIXMLTransactionSet.Assemble +ID9958=TEDIXMLTransactionSet.Create@TEDIXMLDataObject +ID9959=TEDIXMLTransactionSet.Destroy +ID996=CAL_NOUSEROVERRIDE +ID9960=TEDIXMLTransactionSet.Disassemble +ID9961=TEDIXMLTransactionSet.FSESegment +ID9962=TEDIXMLTransactionSet.FSTSegment +ID9963=TEDIXMLTransactionSet.InternalAssignDelimiters +ID9964=TEDIXMLTransactionSet.InternalCreateDataObjectGroup +ID9965=TEDIXMLTransactionSet.SegmentSE +ID9966=TEDIXMLTransactionSet.SegmentST +ID9967=TEDIXMLTransactionSetLoop +ID9968=TEDIXMLTransactionSetLoop.Assemble +ID9969=TEDIXMLTransactionSetLoop.Create@TEDIXMLDataObject +ID997=CAL_RETURN_NUMBER +ID9970=TEDIXMLTransactionSetLoop.Destroy +ID9971=TEDIXMLTransactionSetLoop.Disassemble +ID9972=TEDIXMLTransactionSetLoop.FParentTransactionSet +ID9973=TEDIXMLTransactionSetLoop.InternalAssignDelimiters +ID9974=TEDIXMLTransactionSetLoop.InternalCreateDataObjectGroup +ID9975=TEDIXMLTransactionSetLoop.ParentTransactionSet +ID9976=TEDIXMLTransactionSetSegment +ID9977=TEDIXMLTransactionSetSegment.Create@TEDIXMLDataObject +ID9978=TEDIXMLTransactionSetSegment.Create@TEDIXMLDataObject@Integer +ID9979=TEDIXMLTransactionSetSegment.InternalAssignDelimiters +ID998=CAL_SYEARMONTH +ID9980=TEqualityCompare +ID9981=TerminateLocaleSupport +ID9982=TestBit@Cardinal@TBitRange +ID9983=TestBit@Int64@TBitRange +ID9984=TestBit@Integer@TBitRange +ID9985=TestBit@Shortint@TBitRange +ID9986=TestBit@Smallint@TBitRange +ID9987=TestBit@Word@TBitRange +ID9988=TestBitBuffer@@Cardinal +ID9989=TestBitBuffer@@Int64 +ID999=CAL_USE_CP_ACP +ID9990=TestBits@Cardinal@Cardinal +ID9991=TestBits@Int64@Int64 +ID9992=TestBits@Integer@Integer +ID9993=TestBits@Shortint@Shortint +ID9994=TestBits@Smallint@Smallint +ID9995=TestBits@Word@Word +ID9996=TEventInfo +ID9997=TEventInfo.EventType +ID9998=TEventInfo.Signaled +ID9999=TExtendedApplyFunction [External Topic Properties\!!CLASSES] Count=1 @@ -68331,7 +71385,7 @@ ETPTopicOrder0=7 [External Topic Properties\_IMAGE_COR_VTABLEFIXUP] Count=1 ETPCommand0=2 -ETPTopicOrder0=10 +ETPTopicOrder0=0 [External Topic Properties\_IMAGE_COR_VTABLEFIXUP.Count] Count=1 @@ -70168,6 +73222,34 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=23 +[External Topic Properties\64-bit support] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=BaseServices +ETPTopicOrder0=12 + +[External Topic Properties\7ZIP_LINKDLL] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=32 + +[External Topic Properties\7ZIP_LINKONREQUEST] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=33 + +[External Topic Properties\7ZIP_STATICLINK] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=31 + [External Topic Properties\ABORT_EXIT_CODE] Count=1 ETPCommand0=2 @@ -70176,22 +73258,22 @@ ETPTopicOrder0=0 [External Topic Properties\AbortShutDown] Count=1 ETPCommand0=2 -ETPTopicOrder0=2 +ETPTopicOrder0=3 [External Topic Properties\AbortShutDown@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3 +ETPTopicOrder0=2 [External Topic Properties\AbsSqr@TPolarComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=5 +ETPTopicOrder0=4 [External Topic Properties\AbsSqr@TRectComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=4 +ETPTopicOrder0=5 [External Topic Properties\Ackermann@Integer@Integer] Count=1 @@ -70226,22 +73308,32 @@ ETPTopicOrder0=8 [External Topic Properties\AddIgnoredException@TClass] Count=1 ETPCommand0=2 -ETPTopicOrder0=9 +ETPTopicOrder0=7 + +[External Topic Properties\AddIgnoredExceptionByName@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=8 [External Topic Properties\AddLoopTo@TEDISEFDataObjectGroup] Count=1 ETPCommand0=2 ETPTopicOrder0=10 +[External Topic Properties\AddModule@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=9 + [External Topic Properties\Addr32ToAddr64@TJclAddr32] Count=1 ETPCommand0=2 -ETPTopicOrder0=11 +ETPTopicOrder0=10 [External Topic Properties\Addr64ToAddr32@TJclAddr64] Count=1 ETPCommand0=2 -ETPTopicOrder0=12 +ETPTopicOrder0=11 [External Topic Properties\AddRepeatingPatternTo@TEDISEFDataObjectGroup] Count=1 @@ -70253,6 +73345,11 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=14 +[External Topic Properties\AddStringToStrings@AnsiString@TJclAnsiStrings@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=13 + [External Topic Properties\AddStringToStrings@AnsiString@TStrings@Boolean] Count=1 ETPCommand0=2 @@ -70261,7 +73358,7 @@ ETPTopicOrder0=16 [External Topic Properties\AddStringToStrings@string@TStrings@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=15 +ETPTopicOrder0=12 [External Topic Properties\AddSubElementTo@TEDISEFDataObjectGroup] Count=1 @@ -70316,277 +73413,302 @@ ETPTopicOrder0=7 [External Topic Properties\All8087Exceptions] Count=1 ETPCommand0=2 -ETPTopicOrder0=8 +ETPTopicOrder0=6 + +[External Topic Properties\AllocateAnsiMultiSz@PAnsiMultiSz@SizeInt] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=14 + +[External Topic Properties\AllocateMultiSz@PAnsiMultiSz@SizeInt] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=17 [External Topic Properties\AllocateMultiSz@PMultiSz@Integer] Count=1 ETPCommand0=2 ETPTopicOrder0=20 +[External Topic Properties\AllocateMultiSz@PMultiSz@SizeInt] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=16 + +[External Topic Properties\AllocateMultiSz@PWideMultiSz@SizeInt] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=15 + [External Topic Properties\AllocateWideMultiSz@PWideMultiSz@Integer] Count=1 ETPCommand0=2 ETPTopicOrder0=21 +[External Topic Properties\AllocateWideMultiSz@PWideMultiSz@SizeInt] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=18 + [External Topic Properties\AlphaComponent@TColor32] Count=1 ETPCommand0=2 -ETPTopicOrder0=22 +ETPTopicOrder0=19 [External Topic Properties\AMD_APIC] Count=1 ETPCommand0=2 -ETPTopicOrder0=9 +ETPTopicOrder0=7 [External Topic Properties\AMD_ASSOC_DIRECT] Count=1 ETPCommand0=2 -ETPTopicOrder0=10 +ETPTopicOrder0=8 [External Topic Properties\AMD_ASSOC_FULLY] Count=1 ETPCommand0=2 -ETPTopicOrder0=11 +ETPTopicOrder0=9 [External Topic Properties\AMD_ASSOC_RESERVED] Count=1 ETPCommand0=2 -ETPTopicOrder0=12 +ETPTopicOrder0=10 [External Topic Properties\AMD_BIT_10] Count=1 ETPCommand0=2 -ETPTopicOrder0=13 +ETPTopicOrder0=11 [External Topic Properties\AMD_BIT_18] Count=1 ETPCommand0=2 -ETPTopicOrder0=14 +ETPTopicOrder0=12 [External Topic Properties\AMD_BIT_20] Count=1 ETPCommand0=2 -ETPTopicOrder0=15 +ETPTopicOrder0=13 [External Topic Properties\AMD_BIT_21] Count=1 ETPCommand0=2 -ETPTopicOrder0=16 +ETPTopicOrder0=14 [External Topic Properties\AMD_BIT_22] Count=1 ETPCommand0=2 -ETPTopicOrder0=17 +ETPTopicOrder0=15 [External Topic Properties\AMD_BIT_27] Count=1 ETPCommand0=2 -ETPTopicOrder0=18 +ETPTopicOrder0=16 [External Topic Properties\AMD_BIT_29] Count=1 ETPCommand0=2 -ETPTopicOrder0=19 +ETPTopicOrder0=17 [External Topic Properties\AMD_BIT_30] Count=1 ETPCommand0=2 -ETPTopicOrder0=20 +ETPTopicOrder0=18 [External Topic Properties\AMD_BIT_31] Count=1 ETPCommand0=2 -ETPTopicOrder0=21 +ETPTopicOrder0=19 [External Topic Properties\AMD_CLFLSH] Count=1 ETPCommand0=2 -ETPTopicOrder0=22 +ETPTopicOrder0=20 [External Topic Properties\AMD_CMOV] Count=1 ETPCommand0=2 -ETPTopicOrder0=23 +ETPTopicOrder0=21 [External Topic Properties\AMD_CX8] Count=1 ETPCommand0=2 -ETPTopicOrder0=24 +ETPTopicOrder0=22 [External Topic Properties\AMD_DE] Count=1 ETPCommand0=2 -ETPTopicOrder0=25 +ETPTopicOrder0=23 [External Topic Properties\AMD_FPU] Count=1 ETPCommand0=2 -ETPTopicOrder0=26 +ETPTopicOrder0=24 [External Topic Properties\AMD_FXSR] Count=1 ETPCommand0=2 -ETPTopicOrder0=27 +ETPTopicOrder0=25 [External Topic Properties\AMD_HTT] Count=1 ETPCommand0=2 -ETPTopicOrder0=28 +ETPTopicOrder0=26 [External Topic Properties\AMD_L2_ASSOC_16WAY] Count=1 ETPCommand0=2 -ETPTopicOrder0=29 +ETPTopicOrder0=27 [External Topic Properties\AMD_L2_ASSOC_2WAY] Count=1 ETPCommand0=2 -ETPTopicOrder0=30 +ETPTopicOrder0=28 [External Topic Properties\AMD_L2_ASSOC_4WAY] Count=1 ETPCommand0=2 -ETPTopicOrder0=31 +ETPTopicOrder0=29 [External Topic Properties\AMD_L2_ASSOC_8WAY] Count=1 ETPCommand0=2 -ETPTopicOrder0=32 +ETPTopicOrder0=30 [External Topic Properties\AMD_L2_ASSOC_DIRECT] Count=1 ETPCommand0=2 -ETPTopicOrder0=33 +ETPTopicOrder0=31 [External Topic Properties\AMD_L2_ASSOC_DISABLED] Count=1 ETPCommand0=2 -ETPTopicOrder0=34 +ETPTopicOrder0=32 [External Topic Properties\AMD_L2_ASSOC_FULLY] Count=1 ETPCommand0=2 -ETPTopicOrder0=35 +ETPTopicOrder0=33 [External Topic Properties\AMD_MCA] Count=1 ETPCommand0=2 -ETPTopicOrder0=36 +ETPTopicOrder0=34 [External Topic Properties\AMD_MCE] Count=1 ETPCommand0=2 -ETPTopicOrder0=37 +ETPTopicOrder0=35 [External Topic Properties\AMD_MMX] Count=1 ETPCommand0=2 -ETPTopicOrder0=38 +ETPTopicOrder0=36 [External Topic Properties\AMD_MSR] Count=1 ETPCommand0=2 -ETPTopicOrder0=39 +ETPTopicOrder0=37 [External Topic Properties\AMD_MTRR] Count=1 ETPCommand0=2 -ETPTopicOrder0=40 +ETPTopicOrder0=38 [External Topic Properties\AMD_PAE] Count=1 ETPCommand0=2 -ETPTopicOrder0=41 +ETPTopicOrder0=39 [External Topic Properties\AMD_PAT] Count=1 ETPCommand0=2 -ETPTopicOrder0=42 +ETPTopicOrder0=40 [External Topic Properties\AMD_PGE] Count=1 ETPCommand0=2 -ETPTopicOrder0=43 +ETPTopicOrder0=41 [External Topic Properties\AMD_PSE] Count=1 ETPCommand0=2 -ETPTopicOrder0=44 +ETPTopicOrder0=42 [External Topic Properties\AMD_PSE32] Count=1 ETPCommand0=2 -ETPTopicOrder0=45 +ETPTopicOrder0=43 [External Topic Properties\AMD_SEP_BIT] Count=1 ETPCommand0=2 -ETPTopicOrder0=46 +ETPTopicOrder0=44 [External Topic Properties\AMD_SSE] Count=1 ETPCommand0=2 -ETPTopicOrder0=47 +ETPTopicOrder0=45 [External Topic Properties\AMD_SSE2] Count=1 ETPCommand0=2 -ETPTopicOrder0=48 +ETPTopicOrder0=46 [External Topic Properties\AMD_TSC] Count=1 ETPCommand0=2 -ETPTopicOrder0=49 +ETPTopicOrder0=47 [External Topic Properties\AMD_VME] Count=1 ETPCommand0=2 -ETPTopicOrder0=50 +ETPTopicOrder0=48 [External Topic Properties\AMD2_BIT_1] Count=1 ETPCommand0=2 -ETPTopicOrder0=51 +ETPTopicOrder0=49 [External Topic Properties\AMD2_BIT_10] Count=1 ETPCommand0=2 -ETPTopicOrder0=52 +ETPTopicOrder0=50 [External Topic Properties\AMD2_BIT_11] Count=1 ETPCommand0=2 -ETPTopicOrder0=53 +ETPTopicOrder0=51 [External Topic Properties\AMD2_BIT_12] Count=1 ETPCommand0=2 -ETPTopicOrder0=54 +ETPTopicOrder0=52 [External Topic Properties\AMD2_BIT_14] Count=1 ETPCommand0=2 -ETPTopicOrder0=55 +ETPTopicOrder0=53 [External Topic Properties\AMD2_BIT_15] Count=1 ETPCommand0=2 -ETPTopicOrder0=56 +ETPTopicOrder0=54 [External Topic Properties\AMD2_BIT_16] Count=1 ETPCommand0=2 -ETPTopicOrder0=57 +ETPTopicOrder0=55 [External Topic Properties\AMD2_BIT_17] Count=1 ETPCommand0=2 -ETPTopicOrder0=58 +ETPTopicOrder0=56 [External Topic Properties\AMD2_BIT_18] Count=1 ETPCommand0=2 -ETPTopicOrder0=59 +ETPTopicOrder0=57 [External Topic Properties\AMD2_BIT_19] Count=1 @@ -70596,22 +73718,22 @@ ETPTopicOrder0=60 [External Topic Properties\AMD2_BIT_2] Count=1 ETPCommand0=2 -ETPTopicOrder0=61 +ETPTopicOrder0=58 [External Topic Properties\AMD2_BIT_20] Count=1 ETPCommand0=2 -ETPTopicOrder0=62 +ETPTopicOrder0=59 [External Topic Properties\AMD2_BIT_21] Count=1 ETPCommand0=2 -ETPTopicOrder0=63 +ETPTopicOrder0=60 [External Topic Properties\AMD2_BIT_22] Count=1 ETPCommand0=2 -ETPTopicOrder0=64 +ETPTopicOrder0=61 [External Topic Properties\AMD2_BIT_23] Count=1 @@ -70621,32 +73743,32 @@ ETPTopicOrder0=65 [External Topic Properties\AMD2_BIT_24] Count=1 ETPCommand0=2 -ETPTopicOrder0=66 +ETPTopicOrder0=62 [External Topic Properties\AMD2_BIT_25] Count=1 ETPCommand0=2 -ETPTopicOrder0=67 +ETPTopicOrder0=63 [External Topic Properties\AMD2_BIT_26] Count=1 ETPCommand0=2 -ETPTopicOrder0=68 +ETPTopicOrder0=64 [External Topic Properties\AMD2_BIT_27] Count=1 ETPCommand0=2 -ETPTopicOrder0=69 +ETPTopicOrder0=65 [External Topic Properties\AMD2_BIT_28] Count=1 ETPCommand0=2 -ETPTopicOrder0=70 +ETPTopicOrder0=66 [External Topic Properties\AMD2_BIT_29] Count=1 ETPCommand0=2 -ETPTopicOrder0=71 +ETPTopicOrder0=67 [External Topic Properties\AMD2_BIT_3] Count=1 @@ -70656,32 +73778,32 @@ ETPTopicOrder0=72 [External Topic Properties\AMD2_BIT_30] Count=1 ETPCommand0=2 -ETPTopicOrder0=73 +ETPTopicOrder0=68 [External Topic Properties\AMD2_BIT_4] Count=1 ETPCommand0=2 -ETPTopicOrder0=74 +ETPTopicOrder0=69 [External Topic Properties\AMD2_BIT_5] Count=1 ETPCommand0=2 -ETPTopicOrder0=75 +ETPTopicOrder0=70 [External Topic Properties\AMD2_BIT_6] Count=1 ETPCommand0=2 -ETPTopicOrder0=76 +ETPTopicOrder0=71 [External Topic Properties\AMD2_BIT_7] Count=1 ETPCommand0=2 -ETPTopicOrder0=77 +ETPTopicOrder0=72 [External Topic Properties\AMD2_BIT_8] Count=1 ETPCommand0=2 -ETPTopicOrder0=78 +ETPTopicOrder0=73 [External Topic Properties\AMD2_BIT_9] Count=1 @@ -70691,48 +73813,108 @@ ETPTopicOrder0=79 [External Topic Properties\AMD2_CMPXCHG16B] Count=1 ETPCommand0=2 -ETPTopicOrder0=80 +ETPTopicOrder0=74 + +[External Topic Properties\AMD2_MONITOR] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=75 + +[External Topic Properties\AMD2_POPCNT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=76 [External Topic Properties\AMD2_RAZ] Count=1 ETPCommand0=2 -ETPTopicOrder0=81 +ETPTopicOrder0=77 [External Topic Properties\AMD2_SSE3] Count=1 ETPCommand0=2 -ETPTopicOrder0=82 +ETPTopicOrder0=78 + +[External Topic Properties\AMD2_SSE41] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=79 + +[External Topic Properties\AMD2_SSSE3] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=80 [External Topic Properties\AnsiAck] Count=1 ETPCommand0=2 -ETPTopicOrder0=83 +ETPTopicOrder0=81 [External Topic Properties\AnsiBackslash] Count=1 ETPCommand0=2 -ETPTopicOrder0=84 +ETPTopicOrder0=82 [External Topic Properties\AnsiBackspace] Count=1 ETPCommand0=2 -ETPTopicOrder0=85 +ETPTopicOrder0=83 [External Topic Properties\AnsiBell] Count=1 ETPCommand0=2 -ETPTopicOrder0=86 +ETPTopicOrder0=84 + +[External Topic Properties\AnsiByteArrayStringLen@TBytes] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=20 + +[External Topic Properties\AnsiByteArrayToString@TBytes@SizeInt] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=21 [External Topic Properties\AnsiCan] Count=1 ETPCommand0=2 -ETPTopicOrder0=87 +ETPTopicOrder0=85 [External Topic Properties\AnsiCarriageReturn] Count=1 ETPCommand0=2 +ETPTopicOrder0=86 + +[External Topic Properties\AnsiCaseMap] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\AnsiCaseMapReady] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1 + +[External Topic Properties\AnsiCaseMapSize] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=87 + +[External Topic Properties\AnsiCharCount] +Count=1 +ETPCommand0=2 ETPTopicOrder0=88 +[External Topic Properties\AnsiCharToUCS4@AnsiChar] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=22 + +[External Topic Properties\AnsiCharTypes] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=2 + [External Topic Properties\AnsiComma] Count=1 ETPCommand0=2 @@ -70828,6 +74010,26 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=107 +[External Topic Properties\AnsiGetNextChar@AnsiString@SizeInt] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=24 + +[External Topic Properties\AnsiGetNextChar@AnsiString@Word@SizeInt] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=23 + +[External Topic Properties\AnsiGetNextCharFromStream@TStream@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=26 + +[External Topic Properties\AnsiGetNextCharFromStream@TStream@Word@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=25 + [External Topic Properties\AnsiGs] Count=1 ETPCommand0=2 @@ -70856,113 +74058,274 @@ ETPTopicOrder0=112 [External Topic Properties\AnsiLetters] Count=1 ETPCommand0=2 -ETPTopicOrder0=113 +ETPTopicOrder0=110 [External Topic Properties\AnsiLineBreak] Count=1 ETPCommand0=2 -ETPTopicOrder0=114 +ETPTopicOrder0=111 [External Topic Properties\AnsiLineFeed] Count=1 ETPCommand0=2 -ETPTopicOrder0=115 +ETPTopicOrder0=112 + +[External Topic Properties\AnsiLoOffset] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=113 [External Topic Properties\AnsiLowercaseLetters] Count=1 ETPCommand0=2 -ETPTopicOrder0=116 +ETPTopicOrder0=114 + +[External Topic Properties\AnsiMultiSzDup@PAnsiMultiSz] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=27 + +[External Topic Properties\AnsiMultiSzLength@PAnsiMultiSz] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=28 + +[External Topic Properties\AnsiMultiSzToAnsiStrings@TAnsiStrings@PAnsiMultiSz] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=29 [External Topic Properties\AnsiNak] Count=1 ETPCommand0=2 -ETPTopicOrder0=117 +ETPTopicOrder0=115 [External Topic Properties\AnsiNull] Count=1 ETPCommand0=2 -ETPTopicOrder0=118 +ETPTopicOrder0=116 [External Topic Properties\AnsiOctDigits] Count=1 ETPCommand0=2 -ETPTopicOrder0=119 +ETPTopicOrder0=117 + +[External Topic Properties\AnsiReOffset] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=118 + +[External Topic Properties\AnsiReplacementCharacter] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3 [External Topic Properties\AnsiRs] Count=1 ETPCommand0=2 -ETPTopicOrder0=120 +ETPTopicOrder0=119 + +[External Topic Properties\AnsiSetNextChar@AnsiString@SizeInt@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=31 + +[External Topic Properties\AnsiSetNextChar@AnsiString@Word@SizeInt@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=30 + +[External Topic Properties\AnsiSetNextCharToStream@TStream@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=33 + +[External Topic Properties\AnsiSetNextCharToStream@TStream@Word@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=32 [External Topic Properties\AnsiSi] Count=1 ETPCommand0=2 +ETPTopicOrder0=120 + +[External Topic Properties\AnsiSignMinus] +Count=1 +ETPCommand0=2 ETPTopicOrder0=121 -[External Topic Properties\AnsiSigns] +[External Topic Properties\AnsiSignPlus] Count=1 ETPCommand0=2 ETPTopicOrder0=122 -[External Topic Properties\AnsiSingleQuote] +[External Topic Properties\AnsiSigns] Count=1 ETPCommand0=2 ETPTopicOrder0=123 -[External Topic Properties\AnsiSo] +[External Topic Properties\AnsiSingleQuote] Count=1 ETPCommand0=2 ETPTopicOrder0=124 -[External Topic Properties\AnsiSoh] +[External Topic Properties\AnsiSkipChars@AnsiString@SizeInt@SizeInt] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=34 + +[External Topic Properties\AnsiSkipCharsFromStream@TStream@SizeInt] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=35 + +[External Topic Properties\AnsiSo] Count=1 ETPCommand0=2 ETPTopicOrder0=125 -[External Topic Properties\AnsiSpace] +[External Topic Properties\AnsiSoh] Count=1 ETPCommand0=2 ETPTopicOrder0=126 -[External Topic Properties\AnsiStx] +[External Topic Properties\AnsiSpace] Count=1 ETPCommand0=2 ETPTopicOrder0=127 -[External Topic Properties\AnsiSyn] +[External Topic Properties\AnsiStringsToAnsiMultiSz@PAnsiMultiSz@TAnsiStrings] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=36 + +[External Topic Properties\AnsiStringStreamCopy@TJclStringStream@TJclStringStream@Longint] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=37 + +[External Topic Properties\AnsiStringToUCS4@AnsiString] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=38 + +[External Topic Properties\AnsiStringToUTF16@AnsiString] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=39 + +[External Topic Properties\AnsiStringToUTF8@AnsiString] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=40 + +[External Topic Properties\AnsiStrSimpleCompare@AnsiString@AnsiString] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=41 + +[External Topic Properties\AnsiStrSimpleCompareI@AnsiString@AnsiString] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=42 + +[External Topic Properties\AnsiStrSimpleEqualityCompare@AnsiString@AnsiString] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=43 + +[External Topic Properties\AnsiStrSimpleEqualityCompareI@AnsiString@AnsiString] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=44 + +[External Topic Properties\AnsiStrSimpleHashConvert@AnsiString] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=45 + +[External Topic Properties\AnsiStrSimpleHashConvertI@AnsiString] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=46 + +[External Topic Properties\AnsiStrSimpleHashConvertU@AnsiString] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=47 + +[External Topic Properties\AnsiStrSimpleHashConvertUI@AnsiString] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=48 + +[External Topic Properties\AnsiStrSortProc] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=4 + +[External Topic Properties\AnsiStx] Count=1 ETPCommand0=2 ETPTopicOrder0=128 -[External Topic Properties\AnsiTab] +[External Topic Properties\AnsiSyn] Count=1 ETPCommand0=2 ETPTopicOrder0=129 -[External Topic Properties\AnsiUppercaseLetters] +[External Topic Properties\AnsiTab] Count=1 ETPCommand0=2 ETPTopicOrder0=130 -[External Topic Properties\AnsiUs] +[External Topic Properties\AnsiUpOffset] Count=1 ETPCommand0=2 ETPTopicOrder0=131 -[External Topic Properties\AnsiValidIdentifierLetters] +[External Topic Properties\AnsiUppercaseLetters] Count=1 ETPCommand0=2 ETPTopicOrder0=132 -[External Topic Properties\AnsiVerticalTab] +[External Topic Properties\AnsiUs] Count=1 ETPCommand0=2 ETPTopicOrder0=133 -[External Topic Properties\AnsiWhiteSpace] +[External Topic Properties\AnsiValidIdentifierLetters] Count=1 ETPCommand0=2 ETPTopicOrder0=134 +[External Topic Properties\AnsiVerticalTab] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=135 + +[External Topic Properties\AnsiWhiteSpace] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=136 + [External Topic Properties\ANYSIZE_ARRAY] Count=1 ETPCommand0=2 @@ -70971,7 +74334,7 @@ ETPTopicOrder0=135 [External Topic Properties\APIC_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=136 +ETPTopicOrder0=137 [External Topic Properties\AppendCompositeElementTo@TEDISEFDataObjectGroup@TEDISEFCompositeElement] Count=1 @@ -71011,42 +74374,116 @@ ETPTopicOrder0=29 [External Topic Properties\AppInstCmdLineDataKind] Count=1 ETPCommand0=2 -ETPTopicOrder0=137 +ETPTopicOrder0=138 [External Topic Properties\AppInstDataKindNoData] Count=1 ETPCommand0=2 -ETPTopicOrder0=138 +ETPTopicOrder0=139 + +[External Topic Properties\Apply@IJclAnsiStrIterator@Integer@TAnsiStrApplyFunction] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=53 + +[External Topic Properties\Apply@IJclCardinalIterator@Integer@TCardinalApplyFunction] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=51 + +[External Topic Properties\Apply@IJclDoubleIterator@Integer@TDoubleApplyFunction] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=49 + +[External Topic Properties\Apply@IJclExtendedIterator@Integer@TExtendedApplyFunction] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=52 + +[External Topic Properties\Apply@IJclInt64Iterator@Integer@TInt64ApplyFunction] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=57 + +[External Topic Properties\Apply@IJclIntegerIterator@Integer@TIntegerApplyFunction] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=59 [External Topic Properties\Apply@IJclIntfIterator@Integer@TIntfApplyFunction] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=31 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=56 [External Topic Properties\Apply@IJclIterator@Integer@TApplyFunction] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=30 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=55 + +[External Topic Properties\Apply@IJclPtrIterator@Integer@TPtrApplyFunction] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=60 + +[External Topic Properties\Apply@IJclSingleIterator@Integer@TSingleApplyFunction] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=54 [External Topic Properties\Apply@IJclStrIterator@Integer@TStrApplyFunction] Count=1 ETPCommand0=2 ETPTopicOrder0=32 +[External Topic Properties\Apply@IJclUnicodeStrIterator@Integer@TUnicodeStrApplyFunction] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=50 + +[External Topic Properties\Apply@IJclWideStrIterator@Integer@TWideStrApplyFunction] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=58 + [External Topic Properties\ArcMinutesPerDeg] Count=1 ETPCommand0=2 -ETPTopicOrder0=139 +ETPTopicOrder0=140 [External Topic Properties\ArcSecondsPerArcMinute] Count=1 ETPCommand0=2 -ETPTopicOrder0=140 +ETPTopicOrder0=141 [External Topic Properties\ArcSecondsPerDeg] Count=1 ETPCommand0=2 -ETPTopicOrder0=141 +ETPTopicOrder0=142 [External Topic Properties\ArgumentException] Count=1 @@ -71063,21 +74500,48 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=2 +[External Topic Properties\ArrayContainsChar@array of Char@Char] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=62 + +[External Topic Properties\ArrayContainsChar@array of Char@Char@SizeInt] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=61 + +[External Topic Properties\ArrayOf@TJclAnsiStrings] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=64 + [External Topic Properties\ArrayOf@TStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=33 +ETPTopicOrder0=63 + +[External Topic Properties\AsmExeName] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=143 [External Topic Properties\AssertKindOf@string@TObject] Count=1 ETPCommand0=2 -ETPTopicOrder0=34 +ETPTopicOrder0=65 [External Topic Properties\ASYNCH] Count=1 ETPCommand0=2 ETPTopicOrder0=142 +[External Topic Properties\AWSuffix] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Unicode +ETPTopicOrder0=21 + [External Topic Properties\BACKUP_MSG_FILENAME] Count=1 ETPCommand0=2 @@ -71093,561 +74557,631 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=1 -[External Topic Properties\Bernstein] +[External Topic Properties\BaseServices.Compatibility] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3 + +[External Topic Properties\BaseServices.Dynamicarrays] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=4 + +[External Topic Properties\BaseServices.Dynamicloading] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=5 + +[External Topic Properties\BaseServices.ErrorHandling] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=6 + +[External Topic Properties\BaseServices.Int64support] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=7 + +[External Topic Properties\BaseServices.Notifications] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=10 + +[External Topic Properties\BaseServices.Numericformattingroutines] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=8 + +[External Topic Properties\BaseServices.Pointermanipulation] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=9 + +[External Topic Properties\BCC32ExeName] Count=1 ETPCommand0=2 ETPTopicOrder0=144 -[External Topic Properties\BinaryExtensionExecutable] +[External Topic Properties\Bernstein] Count=1 ETPCommand0=2 ETPTopicOrder0=145 -[External Topic Properties\BinaryExtensionLibrary] +[External Topic Properties\BinaryExtensionExecutable] Count=1 ETPCommand0=2 ETPTopicOrder0=146 -[External Topic Properties\BinaryExtensionPackage] +[External Topic Properties\BinaryExtensionLibrary] Count=1 ETPCommand0=2 ETPTopicOrder0=147 +[External Topic Properties\BinaryExtensionPackage] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=148 + [External Topic Properties\BinaryFileName@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=36 +ETPTopicOrder0=66 [External Topic Properties\BIT_0] Count=1 ETPCommand0=2 -ETPTopicOrder0=148 +ETPTopicOrder0=149 [External Topic Properties\BIT_1] Count=1 ETPCommand0=2 -ETPTopicOrder0=149 +ETPTopicOrder0=150 [External Topic Properties\BIT_10] Count=1 ETPCommand0=2 -ETPTopicOrder0=150 +ETPTopicOrder0=151 [External Topic Properties\BIT_10_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=151 +ETPTopicOrder0=152 [External Topic Properties\BIT_11] Count=1 ETPCommand0=2 -ETPTopicOrder0=152 +ETPTopicOrder0=153 [External Topic Properties\BIT_12] Count=1 ETPCommand0=2 -ETPTopicOrder0=153 +ETPTopicOrder0=154 [External Topic Properties\BIT_13] Count=1 ETPCommand0=2 -ETPTopicOrder0=154 +ETPTopicOrder0=155 [External Topic Properties\BIT_14] Count=1 ETPCommand0=2 -ETPTopicOrder0=155 +ETPTopicOrder0=156 [External Topic Properties\BIT_15] Count=1 ETPCommand0=2 -ETPTopicOrder0=156 +ETPTopicOrder0=157 [External Topic Properties\BIT_16] Count=1 ETPCommand0=2 -ETPTopicOrder0=157 +ETPTopicOrder0=158 [External Topic Properties\BIT_17] Count=1 ETPCommand0=2 -ETPTopicOrder0=158 +ETPTopicOrder0=159 [External Topic Properties\BIT_18] Count=1 ETPCommand0=2 -ETPTopicOrder0=159 +ETPTopicOrder0=160 [External Topic Properties\BIT_19] Count=1 ETPCommand0=2 -ETPTopicOrder0=160 +ETPTopicOrder0=161 [External Topic Properties\BIT_2] Count=1 ETPCommand0=2 -ETPTopicOrder0=161 +ETPTopicOrder0=162 [External Topic Properties\BIT_20] Count=1 ETPCommand0=2 -ETPTopicOrder0=162 +ETPTopicOrder0=163 [External Topic Properties\BIT_20_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=163 +ETPTopicOrder0=164 [External Topic Properties\BIT_21] Count=1 ETPCommand0=2 -ETPTopicOrder0=164 +ETPTopicOrder0=165 [External Topic Properties\BIT_22] Count=1 ETPCommand0=2 -ETPTopicOrder0=165 +ETPTopicOrder0=166 [External Topic Properties\BIT_23] Count=1 ETPCommand0=2 -ETPTopicOrder0=166 +ETPTopicOrder0=167 [External Topic Properties\BIT_24] Count=1 ETPCommand0=2 -ETPTopicOrder0=167 +ETPTopicOrder0=168 [External Topic Properties\BIT_25] Count=1 ETPCommand0=2 -ETPTopicOrder0=168 +ETPTopicOrder0=169 [External Topic Properties\BIT_26] Count=1 ETPCommand0=2 -ETPTopicOrder0=169 +ETPTopicOrder0=170 [External Topic Properties\BIT_27] Count=1 ETPCommand0=2 -ETPTopicOrder0=170 +ETPTopicOrder0=171 [External Topic Properties\BIT_28] Count=1 ETPCommand0=2 -ETPTopicOrder0=171 +ETPTopicOrder0=172 [External Topic Properties\BIT_29] Count=1 ETPCommand0=2 -ETPTopicOrder0=172 +ETPTopicOrder0=173 [External Topic Properties\BIT_3] Count=1 ETPCommand0=2 -ETPTopicOrder0=173 +ETPTopicOrder0=174 [External Topic Properties\BIT_30] Count=1 ETPCommand0=2 -ETPTopicOrder0=174 +ETPTopicOrder0=175 [External Topic Properties\BIT_30_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=175 +ETPTopicOrder0=176 [External Topic Properties\BIT_31] Count=1 ETPCommand0=2 -ETPTopicOrder0=176 +ETPTopicOrder0=177 [External Topic Properties\BIT_4] Count=1 ETPCommand0=2 -ETPTopicOrder0=177 +ETPTopicOrder0=178 [External Topic Properties\BIT_5] Count=1 ETPCommand0=2 -ETPTopicOrder0=178 +ETPTopicOrder0=179 [External Topic Properties\BIT_6] Count=1 ETPCommand0=2 -ETPTopicOrder0=179 +ETPTopicOrder0=180 [External Topic Properties\BIT_7] Count=1 ETPCommand0=2 -ETPTopicOrder0=180 +ETPTopicOrder0=181 [External Topic Properties\BIT_8] Count=1 ETPCommand0=2 -ETPTopicOrder0=181 +ETPTopicOrder0=182 [External Topic Properties\BIT_9] Count=1 ETPCommand0=2 -ETPTopicOrder0=182 +ETPTopicOrder0=183 + +[External Topic Properties\BitmapToGif@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=67 [External Topic Properties\BitmapToIcon@HBITMAP@Integer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=37 +ETPTopicOrder0=68 + +[External Topic Properties\BitmapToPng@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=69 [External Topic Properties\BitsHighest@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=41 +ETPTopicOrder0=70 [External Topic Properties\BitsHighest@Int64] Count=1 ETPCommand0=2 -ETPTopicOrder0=38 +ETPTopicOrder0=73 [External Topic Properties\BitsHighest@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=39 +ETPTopicOrder0=74 [External Topic Properties\BitsHighest@ShortInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=42 +ETPTopicOrder0=71 [External Topic Properties\BitsHighest@SmallInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=40 +ETPTopicOrder0=75 [External Topic Properties\BitsHighest@Word] Count=1 ETPCommand0=2 -ETPTopicOrder0=43 +ETPTopicOrder0=72 [External Topic Properties\BitsLowest@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=48 +ETPTopicOrder0=77 [External Topic Properties\BitsLowest@Int64] Count=1 ETPCommand0=2 -ETPTopicOrder0=45 +ETPTopicOrder0=80 [External Topic Properties\BitsLowest@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=46 +ETPTopicOrder0=81 [External Topic Properties\BitsLowest@Shortint] Count=1 ETPCommand0=2 -ETPTopicOrder0=47 +ETPTopicOrder0=76 [External Topic Properties\BitsLowest@Smallint] Count=1 ETPCommand0=2 -ETPTopicOrder0=49 +ETPTopicOrder0=78 [External Topic Properties\BitsLowest@Word] Count=1 ETPCommand0=2 -ETPTopicOrder0=44 +ETPTopicOrder0=79 [External Topic Properties\BitsNeeded@Int64] Count=1 ETPCommand0=2 -ETPTopicOrder0=52 +ETPTopicOrder0=82 [External Topic Properties\BitsNeeded@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=51 +ETPTopicOrder0=83 [External Topic Properties\BitsNeeded@Word] Count=1 ETPCommand0=2 -ETPTopicOrder0=50 +ETPTopicOrder0=84 [External Topic Properties\BitsPerByte] Count=1 ETPCommand0=2 -ETPTopicOrder0=183 +ETPTopicOrder0=184 [External Topic Properties\BitsPerCardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=184 +ETPTopicOrder0=185 [External Topic Properties\BitsPerInt64] Count=1 ETPCommand0=2 -ETPTopicOrder0=185 +ETPTopicOrder0=186 [External Topic Properties\BitsPerInteger] Count=1 ETPCommand0=2 -ETPTopicOrder0=186 +ETPTopicOrder0=187 [External Topic Properties\BitsPerMIDIDataByte] Count=1 ETPCommand0=2 -ETPTopicOrder0=187 +ETPTopicOrder0=188 [External Topic Properties\BitsPerMIDIDataWord] Count=1 ETPCommand0=2 -ETPTopicOrder0=188 +ETPTopicOrder0=189 [External Topic Properties\BitsPerNibble] Count=1 ETPCommand0=2 -ETPTopicOrder0=189 +ETPTopicOrder0=190 [External Topic Properties\BitsPerShortint] Count=1 ETPCommand0=2 -ETPTopicOrder0=190 +ETPTopicOrder0=191 [External Topic Properties\BitsPerSmallint] Count=1 ETPCommand0=2 -ETPTopicOrder0=191 +ETPTopicOrder0=192 [External Topic Properties\BitsPerWord] Count=1 ETPCommand0=2 -ETPTopicOrder0=192 +ETPTopicOrder0=193 [External Topic Properties\BitsToBooleans@Int64@TBooleanArray@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=55 +ETPTopicOrder0=86 [External Topic Properties\BitsToBooleans@Integer@TBooleanArray@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=54 +ETPTopicOrder0=87 [External Topic Properties\BitsToBooleans@Word@TBooleanArray@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=53 +ETPTopicOrder0=85 [External Topic Properties\BlendLine] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=5 [External Topic Properties\BlendLineEx] Count=1 ETPCommand0=2 -ETPTopicOrder0=1 +ETPTopicOrder0=6 [External Topic Properties\BlendMem] Count=1 ETPCommand0=2 -ETPTopicOrder0=2 +ETPTopicOrder0=7 [External Topic Properties\BlendMemEx] Count=1 ETPCommand0=2 -ETPTopicOrder0=3 +ETPTopicOrder0=8 [External Topic Properties\BlendReg] Count=1 ETPCommand0=2 -ETPTopicOrder0=4 +ETPTopicOrder0=9 [External Topic Properties\BlendRegEx] Count=1 ETPCommand0=2 -ETPTopicOrder0=5 +ETPTopicOrder0=10 [External Topic Properties\BlueComponent@TColor32] Count=1 ETPCommand0=2 -ETPTopicOrder0=56 +ETPTopicOrder0=88 [External Topic Properties\BOM_LSB_FIRST] Count=1 ETPCommand0=2 -ETPTopicOrder0=193 +ETPTopicOrder0=194 [External Topic Properties\BOM_MSB_FIRST] Count=1 ETPCommand0=2 -ETPTopicOrder0=194 +ETPTopicOrder0=195 [External Topic Properties\BOM_UTF16_LSB] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=195 +ETPCommand1=3 +ETPGroup1=Unicode +ETPTopicOrder0=22 [External Topic Properties\BOM_UTF16_MSB] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=196 +ETPCommand1=3 +ETPGroup1=Unicode +ETPTopicOrder0=23 [External Topic Properties\BOM_UTF32_LSB] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=197 +ETPCommand1=3 +ETPGroup1=Unicode +ETPTopicOrder0=24 [External Topic Properties\BOM_UTF32_MSB] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=198 +ETPCommand1=3 +ETPGroup1=Unicode +ETPTopicOrder0=25 [External Topic Properties\BOM_UTF8] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=199 +ETPCommand1=3 +ETPGroup1=Unicode +ETPTopicOrder0=26 [External Topic Properties\BooleansToBits@Int64@TBooleanArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=58 +ETPTopicOrder0=90 [External Topic Properties\BooleansToBits@Integer@TBooleanArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=59 +ETPTopicOrder0=89 [External Topic Properties\BooleansToBits@Word@TBooleanArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=57 +ETPTopicOrder0=91 [External Topic Properties\BooleanToStr] Count=1 ETPCommand0=2 -ETPTopicOrder0=60 +ETPTopicOrder0=92 [External Topic Properties\BoolToInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=61 +ETPTopicOrder0=93 [External Topic Properties\Borland32BitSymbolFileSignatureForBCB] Count=1 ETPCommand0=2 -ETPTopicOrder0=200 +ETPTopicOrder0=196 [External Topic Properties\Borland32BitSymbolFileSignatureForDelphi] Count=1 ETPCommand0=2 -ETPTopicOrder0=201 +ETPTopicOrder0=197 [External Topic Properties\BorRADToolEditionIDs] Count=1 ETPCommand0=2 -ETPTopicOrder0=202 +ETPTopicOrder0=198 [External Topic Properties\BorRADToolRepositoryDataModulesPage] Count=1 ETPCommand0=2 -ETPTopicOrder0=203 +ETPTopicOrder0=199 [External Topic Properties\BorRADToolRepositoryDesignerDfm] Count=1 ETPCommand0=2 -ETPTopicOrder0=204 +ETPTopicOrder0=200 [External Topic Properties\BorRADToolRepositoryDesignerXfm] Count=1 ETPCommand0=2 -ETPTopicOrder0=205 +ETPTopicOrder0=201 [External Topic Properties\BorRADToolRepositoryDialogsPage] Count=1 ETPCommand0=2 -ETPTopicOrder0=206 +ETPTopicOrder0=202 [External Topic Properties\BorRADToolRepositoryFormsPage] Count=1 ETPCommand0=2 -ETPTopicOrder0=207 +ETPTopicOrder0=203 [External Topic Properties\BorRADToolRepositoryFormTemplate] Count=1 ETPCommand0=2 -ETPTopicOrder0=208 +ETPTopicOrder0=204 [External Topic Properties\BorRADToolRepositoryObjectAncestor] Count=1 ETPCommand0=2 -ETPTopicOrder0=209 +ETPTopicOrder0=205 [External Topic Properties\BorRADToolRepositoryObjectAuthor] Count=1 ETPCommand0=2 -ETPTopicOrder0=210 +ETPTopicOrder0=206 [External Topic Properties\BorRADToolRepositoryObjectDescr] Count=1 ETPCommand0=2 -ETPTopicOrder0=211 +ETPTopicOrder0=207 [External Topic Properties\BorRADToolRepositoryObjectDesigner] Count=1 ETPCommand0=2 -ETPTopicOrder0=212 +ETPTopicOrder0=208 [External Topic Properties\BorRADToolRepositoryObjectIcon] Count=1 ETPCommand0=2 -ETPTopicOrder0=213 +ETPTopicOrder0=209 [External Topic Properties\BorRADToolRepositoryObjectMainForm] Count=1 ETPCommand0=2 -ETPTopicOrder0=214 +ETPTopicOrder0=210 [External Topic Properties\BorRADToolRepositoryObjectName] Count=1 ETPCommand0=2 -ETPTopicOrder0=215 +ETPTopicOrder0=211 [External Topic Properties\BorRADToolRepositoryObjectNewForm] Count=1 ETPCommand0=2 -ETPTopicOrder0=216 +ETPTopicOrder0=212 [External Topic Properties\BorRADToolRepositoryObjectPage] Count=1 ETPCommand0=2 -ETPTopicOrder0=217 +ETPTopicOrder0=213 [External Topic Properties\BorRADToolRepositoryObjectType] Count=1 ETPCommand0=2 -ETPTopicOrder0=218 +ETPTopicOrder0=214 [External Topic Properties\BorRADToolRepositoryPagesSection] Count=1 ETPCommand0=2 -ETPTopicOrder0=219 +ETPTopicOrder0=215 [External Topic Properties\BorRADToolRepositoryProjectsPage] Count=1 ETPCommand0=2 -ETPTopicOrder0=220 +ETPTopicOrder0=216 [External Topic Properties\BorRADToolRepositoryProjectTemplate] Count=1 ETPCommand0=2 -ETPTopicOrder0=221 +ETPTopicOrder0=217 [External Topic Properties\BPLFileName@string@string] Count=1 ETPCommand0=2 ETPTopicOrder0=62 +[External Topic Properties\Bpr2MakExeName] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=218 + [External Topic Properties\bRtdlFunctionsLoaded] Count=1 ETPCommand0=2 @@ -71666,57 +75200,118 @@ ETPTopicOrder0=64 [External Topic Properties\ByteMask] Count=1 ETPCommand0=2 -ETPTopicOrder0=222 +ETPTopicOrder0=219 + +[External Topic Properties\BytePermTable] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=220 + +[External Topic Properties\BytesOf@AnsiChar] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=95 + +[External Topic Properties\BytesOf@AnsiString] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=94 + +[External Topic Properties\BytesOf@WideChar] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=97 + +[External Topic Properties\BytesOf@WideString] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=96 + +[External Topic Properties\bzip2.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\BZIP2_LINKDLL] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=18 + +[External Topic Properties\BZIP2_LINKONREQUEST] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=19 + +[External Topic Properties\BZIP2_STATICLINK] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=17 [External Topic Properties\BZip2File@string@string@Integer@TJclCompressStreamProgressCallback@Pointer] Count=1 ETPCommand0=2 ETPTopicOrder0=65 +[External Topic Properties\BZip2File@TFileName@TFileName@Integer@TJclCompressStreamProgressCallback@Pointer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=98 + +[External Topic Properties\BZip2Stream@TStream@TStream@Integer@TJclCompressStreamProgressCallback@Pointer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=99 + [External Topic Properties\C1_ALPHA] Count=1 ETPCommand0=2 -ETPTopicOrder0=223 +ETPTopicOrder0=221 [External Topic Properties\C1_BLANK] Count=1 ETPCommand0=2 -ETPTopicOrder0=224 +ETPTopicOrder0=222 [External Topic Properties\C1_CNTRL] Count=1 ETPCommand0=2 -ETPTopicOrder0=225 +ETPTopicOrder0=223 [External Topic Properties\C1_DIGIT] Count=1 ETPCommand0=2 -ETPTopicOrder0=226 +ETPTopicOrder0=224 [External Topic Properties\C1_LOWER] Count=1 ETPCommand0=2 -ETPTopicOrder0=227 +ETPTopicOrder0=225 [External Topic Properties\C1_PUNCT] Count=1 ETPCommand0=2 -ETPTopicOrder0=228 +ETPTopicOrder0=226 [External Topic Properties\C1_SPACE] Count=1 ETPCommand0=2 -ETPTopicOrder0=229 +ETPTopicOrder0=227 [External Topic Properties\C1_UPPER] Count=1 ETPCommand0=2 -ETPTopicOrder0=230 +ETPTopicOrder0=228 [External Topic Properties\C1_XDIGIT] Count=1 ETPCommand0=2 -ETPTopicOrder0=231 +ETPTopicOrder0=229 [External Topic Properties\CAL_ITWODIGITYEARMAX] Count=1 @@ -71756,7 +75351,7 @@ ETPTopicOrder0=237 [External Topic Properties\CallFunctionShim@PWideChar@PChar@Pointer@Pointer@PWideChar@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=66 +ETPTopicOrder0=100 [External Topic Properties\CallPCRECallout@pcre_callout_block] Count=1 @@ -71786,248 +75381,414 @@ ETPTopicOrder0=71 [External Topic Properties\CardinalMask] Count=1 ETPCommand0=2 -ETPTopicOrder0=238 +ETPTopicOrder0=230 + +[External Topic Properties\CardinalSimpleCompare@Cardinal@Cardinal] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=101 + +[External Topic Properties\CardinalSimpleEqualityCompare@Cardinal@Cardinal] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=102 + +[External Topic Properties\CardinalSimpleHashConvert@Cardinal] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=103 + +[External Topic Properties\CardinalSortProc] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=11 [External Topic Properties\Catalan] Count=1 ETPCommand0=2 -ETPTopicOrder0=239 +ETPTopicOrder0=231 [External Topic Properties\CATID_SafeForInitializing] Count=1 ETPCommand0=2 -ETPTopicOrder0=240 +ETPTopicOrder0=232 [External Topic Properties\CATID_SafeForScripting] Count=1 ETPCommand0=2 -ETPTopicOrder0=241 +ETPTopicOrder0=233 [External Topic Properties\CBinMax] Count=1 ETPCommand0=2 -ETPTopicOrder0=242 +ETPTopicOrder0=234 [External Topic Properties\Cbrt10] Count=1 ETPCommand0=2 -ETPTopicOrder0=243 +ETPTopicOrder0=235 [External Topic Properties\Cbrt100] Count=1 ETPCommand0=2 -ETPTopicOrder0=244 +ETPTopicOrder0=236 [External Topic Properties\Cbrt2] Count=1 ETPCommand0=2 -ETPTopicOrder0=245 +ETPTopicOrder0=237 [External Topic Properties\Cbrt3] Count=1 ETPCommand0=2 -ETPTopicOrder0=246 +ETPTopicOrder0=238 [External Topic Properties\CbrtPi] Count=1 ETPCommand0=2 -ETPTopicOrder0=247 +ETPTopicOrder0=239 [External Topic Properties\CCHBinName] Count=1 ETPCommand0=2 -ETPTopicOrder0=248 +ETPTopicOrder0=240 [External Topic Properties\CCHPaperName] Count=1 ETPCommand0=2 -ETPTopicOrder0=249 +ETPTopicOrder0=241 [External Topic Properties\CelsiusAbsoluteZero] Count=1 ETPCommand0=2 -ETPTopicOrder0=250 +ETPTopicOrder0=242 [External Topic Properties\CelsiusBoilingPoint] Count=1 ETPCommand0=2 -ETPTopicOrder0=251 +ETPTopicOrder0=243 [External Topic Properties\CelsiusFreezingPoint] Count=1 ETPCommand0=2 -ETPTopicOrder0=252 +ETPTopicOrder0=244 [External Topic Properties\CelsiusTo@TTemperatureType@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=72 +ETPTopicOrder0=104 [External Topic Properties\CelsiusToRankine@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=73 +ETPTopicOrder0=105 [External Topic Properties\CelsiusToReaumur@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=74 +ETPTopicOrder0=106 [External Topic Properties\CharEqualNoCase@Char@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=75 +ETPTopicOrder0=107 [External Topic Properties\CharFitsWithinDots@string@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=76 +ETPTopicOrder0=108 [External Topic Properties\CharHex@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=77 +ETPTopicOrder0=109 [External Topic Properties\CharIPos@string@Char@Integer] Count=1 ETPCommand0=2 ETPTopicOrder0=78 +[External Topic Properties\CharIPos@string@Char@SizeInt] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=110 + [External Topic Properties\CharIsAlpha@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=79 +ETPTopicOrder0=111 [External Topic Properties\CharIsAlphaNum@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=80 +ETPTopicOrder0=112 [External Topic Properties\CharIsBlank@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=81 +ETPTopicOrder0=113 [External Topic Properties\CharIsControl@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=82 +ETPTopicOrder0=114 [External Topic Properties\CharIsDelete@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=83 +ETPTopicOrder0=115 [External Topic Properties\CharIsDigit@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=84 +ETPTopicOrder0=116 + +[External Topic Properties\CharIsDriveLetter@char] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=117 + +[External Topic Properties\CharIsFracDigit@AnsiChar] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=119 + +[External Topic Properties\CharIsFracDigit@Char] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=118 + +[External Topic Properties\CharIsHexDigit@AnsiChar] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=121 + +[External Topic Properties\CharIsHexDigit@Char] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=120 [External Topic Properties\CharIsLower@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=85 +ETPTopicOrder0=122 + +[External Topic Properties\CharIsNumber@AnsiChar] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=124 + +[External Topic Properties\CharIsNumber@Char] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=123 [External Topic Properties\CharIsNumberChar@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=86 +ETPTopicOrder0=125 [External Topic Properties\CharIsPrintable@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=87 +ETPTopicOrder0=126 [External Topic Properties\CharIsPunctuation@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=88 +ETPTopicOrder0=127 [External Topic Properties\CharIsReturn@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=89 +ETPTopicOrder0=128 [External Topic Properties\CharIsSpace@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=90 +ETPTopicOrder0=129 [External Topic Properties\CharIsUpper@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=91 +ETPTopicOrder0=130 + +[External Topic Properties\CharIsValidIdentifierLetter@AnsiChar] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=132 + +[External Topic Properties\CharIsValidIdentifierLetter@Char] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=131 [External Topic Properties\CharIsWhiteSpace@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=92 +ETPTopicOrder0=133 + +[External Topic Properties\CharIsWildcard@AnsiChar] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=134 + +[External Topic Properties\CharIsWildcard@Char] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=135 [External Topic Properties\CharLastPos@AnsiString@AnsiChar@Integer] Count=1 ETPCommand0=2 ETPTopicOrder0=94 +[External Topic Properties\CharLastPos@AnsiString@AnsiChar@SizeInt] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=137 + [External Topic Properties\CharLastPos@string@Char@Integer] Count=1 ETPCommand0=2 ETPTopicOrder0=93 +[External Topic Properties\CharLastPos@string@Char@SizeInt] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=136 + [External Topic Properties\CharLower@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=95 +ETPTopicOrder0=138 [External Topic Properties\CharPos@string@Char@Integer] Count=1 ETPCommand0=2 ETPTopicOrder0=96 +[External Topic Properties\CharPos@string@Char@SizeInt] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=139 + [External Topic Properties\CharReplace@string@Char@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=97 +ETPTopicOrder0=140 + +[External Topic Properties\CharsetInfoFromCharsetName@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=141 + +[External Topic Properties\CharsetNameFromCodePage@Word] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=142 [External Topic Properties\CharToggleCase@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=98 +ETPTopicOrder0=143 + +[External Topic Properties\CharToUCS4@Char] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=144 [External Topic Properties\CharToWideChar@AnsiChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=99 +ETPTopicOrder0=145 [External Topic Properties\CharType@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=100 +ETPTopicOrder0=146 [External Topic Properties\CharUpper@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=101 +ETPTopicOrder0=147 + +[External Topic Properties\CheckCrc16@array of Byte@Integer@Word] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=148 [External Topic Properties\CheckCrc16_A] Count=1 ETPCommand0=2 ETPTopicOrder0=102 +[External Topic Properties\CheckCrc16_A@array of Byte@Word] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=149 + +[External Topic Properties\CheckCrc16_A@TCrc16Table@array of Byte@Word] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=150 + [External Topic Properties\CheckCrc16_P] Count=1 ETPCommand0=2 ETPTopicOrder0=103 +[External Topic Properties\CheckCrc16_P@PJclByteArray@Integer@Word] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=152 + +[External Topic Properties\CheckCrc16_P@TCrc16Table@PJclByteArray@Integer@Word] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=151 + +[External Topic Properties\CheckCrc32@array of Byte@Integer@Cardinal] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=153 + [External Topic Properties\CheckCrc32_A] Count=1 ETPCommand0=2 ETPTopicOrder0=104 +[External Topic Properties\CheckCrc32_A@array of Byte@Cardinal] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=155 + +[External Topic Properties\CheckCrc32_A@TCrc32Table@array of Byte@Cardinal] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=154 + [External Topic Properties\CheckCrc32_P] Count=1 ETPCommand0=2 ETPTopicOrder0=105 +[External Topic Properties\CheckCrc32_P@PJclByteArray@Integer@Cardinal] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=157 + +[External Topic Properties\CheckCrc32_P@TCrc32Table@PJclByteArray@Integer@Cardinal] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=156 + [External Topic Properties\CheckSumMappedFile@Pointer@DWORD@DWORD@DWORD] Count=1 ETPCommand0=2 @@ -72036,197 +75797,202 @@ ETPTopicOrder0=106 [External Topic Properties\CIELABToBGR@PByte@PByte@PByte@Pointer@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=107 +ETPTopicOrder0=158 [External Topic Properties\CIELABToBGR@Pointer@Pointer@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=108 +ETPTopicOrder0=159 [External Topic Properties\clAqua32] Count=1 ETPCommand0=2 -ETPTopicOrder0=253 +ETPTopicOrder0=245 [External Topic Properties\clBlack32] Count=1 ETPCommand0=2 -ETPTopicOrder0=254 +ETPTopicOrder0=246 [External Topic Properties\clBlue32] Count=1 ETPCommand0=2 -ETPTopicOrder0=255 +ETPTopicOrder0=247 [External Topic Properties\clDimGray32] Count=1 ETPCommand0=2 -ETPTopicOrder0=256 +ETPTopicOrder0=248 [External Topic Properties\ClearBit@Cardinal@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=111 +ETPTopicOrder0=165 [External Topic Properties\ClearBit@Int64@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=109 +ETPTopicOrder0=163 [External Topic Properties\ClearBit@Integer@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=110 +ETPTopicOrder0=164 [External Topic Properties\ClearBit@Shortint@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=114 +ETPTopicOrder0=161 [External Topic Properties\ClearBit@Smallint@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=112 +ETPTopicOrder0=162 [External Topic Properties\ClearBit@Word@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=113 +ETPTopicOrder0=160 [External Topic Properties\ClearBitBuffer@@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=115 +ETPTopicOrder0=167 + +[External Topic Properties\ClearBitBuffer@@Int64] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=166 [External Topic Properties\CLFLSH_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=257 +ETPTopicOrder0=249 [External Topic Properties\clFuchsia32] Count=1 ETPCommand0=2 -ETPTopicOrder0=258 +ETPTopicOrder0=250 [External Topic Properties\clGray32] Count=1 ETPCommand0=2 -ETPTopicOrder0=259 +ETPTopicOrder0=251 [External Topic Properties\clGreen32] Count=1 ETPCommand0=2 -ETPTopicOrder0=260 +ETPTopicOrder0=252 [External Topic Properties\ClipCodes@Float@Float@Float@Float@Float@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=117 +ETPTopicOrder0=168 [External Topic Properties\ClipCodes@Float@Float@TRect] Count=1 ETPCommand0=2 -ETPTopicOrder0=116 +ETPTopicOrder0=169 [External Topic Properties\ClipLine@Integer@Integer@Integer@Integer@TRect] Count=1 ETPCommand0=2 -ETPTopicOrder0=118 +ETPTopicOrder0=170 [External Topic Properties\clLightGray32] Count=1 ETPCommand0=2 -ETPTopicOrder0=261 +ETPTopicOrder0=253 [External Topic Properties\clLime32] Count=1 ETPCommand0=2 -ETPTopicOrder0=262 +ETPTopicOrder0=254 [External Topic Properties\clMaroon32] Count=1 ETPCommand0=2 -ETPTopicOrder0=263 +ETPTopicOrder0=255 [External Topic Properties\clNavy32] Count=1 ETPCommand0=2 -ETPTopicOrder0=264 +ETPTopicOrder0=256 [External Topic Properties\clOlive32] Count=1 ETPCommand0=2 -ETPTopicOrder0=265 +ETPTopicOrder0=257 [External Topic Properties\CloseCdMciDevice@TMCI_Open_Parms] Count=1 ETPCommand0=2 -ETPTopicOrder0=119 +ETPTopicOrder0=171 [External Topic Properties\clPurple32] Count=1 ETPCommand0=2 -ETPTopicOrder0=266 +ETPTopicOrder0=258 [External Topic Properties\ClrCreateManagedInstance@PWideChar@TIID@] Count=1 ETPCommand0=2 -ETPTopicOrder0=120 +ETPTopicOrder0=172 [External Topic Properties\clRed32] Count=1 ETPCommand0=2 -ETPTopicOrder0=267 +ETPTopicOrder0=259 [External Topic Properties\CLSID_RESOLUTION_DEFAULT] Count=1 ETPCommand0=2 -ETPTopicOrder0=268 +ETPTopicOrder0=260 [External Topic Properties\CLSID_RESOLUTION_FLAGS] Count=1 ETPCommand0=2 -ETPTopicOrder0=4 +ETPTopicOrder0=0 [External Topic Properties\CLSID_RESOLUTION_REGISTERED] Count=1 ETPCommand0=2 -ETPTopicOrder0=269 +ETPTopicOrder0=261 [External Topic Properties\CLSID_StdComponentCategoriesMgr] Count=1 ETPCommand0=2 -ETPTopicOrder0=270 +ETPTopicOrder0=262 [External Topic Properties\clTeal32] Count=1 ETPCommand0=2 -ETPTopicOrder0=271 +ETPTopicOrder0=263 [External Topic Properties\clTrBlack32] Count=1 ETPCommand0=2 -ETPTopicOrder0=272 +ETPTopicOrder0=264 [External Topic Properties\clTrBlue32] Count=1 ETPCommand0=2 -ETPTopicOrder0=273 +ETPTopicOrder0=265 [External Topic Properties\clTrGreen32] Count=1 ETPCommand0=2 -ETPTopicOrder0=274 +ETPTopicOrder0=266 [External Topic Properties\clTrRed32] Count=1 ETPCommand0=2 -ETPTopicOrder0=275 +ETPTopicOrder0=267 [External Topic Properties\clTrWhite32] Count=1 ETPCommand0=2 -ETPTopicOrder0=276 +ETPTopicOrder0=268 [External Topic Properties\CLTYPE_LEN] Count=1 @@ -72236,27 +76002,27 @@ ETPTopicOrder0=277 [External Topic Properties\clWhite32] Count=1 ETPCommand0=2 -ETPTopicOrder0=278 +ETPTopicOrder0=269 [External Topic Properties\clYellow32] Count=1 ETPCommand0=2 -ETPTopicOrder0=279 +ETPTopicOrder0=270 [External Topic Properties\CMOV_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=280 +ETPTopicOrder0=271 [External Topic Properties\CMYKToBGR@Pointer@Pointer@Byte@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=121 +ETPTopicOrder0=174 [External Topic Properties\CMYKToBGR@Pointer@Pointer@Pointer@Pointer@Pointer@Byte@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=122 +ETPTopicOrder0=173 [External Topic Properties\CNLEN] Count=1 @@ -72266,42 +76032,47 @@ ETPTopicOrder0=281 [External Topic Properties\CodeBlockName@TUnicodeBlock] Count=1 ETPCommand0=2 -ETPTopicOrder0=123 +ETPTopicOrder0=175 [External Topic Properties\CodeBlockRange@TUnicodeBlock] Count=1 ETPCommand0=2 -ETPTopicOrder0=124 +ETPTopicOrder0=176 + +[External Topic Properties\CodePageFromCharsetName@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=177 [External Topic Properties\Color32@Byte@Byte@Byte@Byte] Count=1 ETPCommand0=2 -ETPTopicOrder0=126 +ETPTopicOrder0=179 [External Topic Properties\Color32@Byte@TPalette32] Count=1 ETPCommand0=2 -ETPTopicOrder0=127 +ETPTopicOrder0=180 [External Topic Properties\Color32@TColor] Count=1 ETPCommand0=2 -ETPTopicOrder0=125 +ETPTopicOrder0=178 [External Topic Properties\ColorToHTML@TColor] Count=1 ETPCommand0=2 -ETPTopicOrder0=128 +ETPTopicOrder0=181 [External Topic Properties\CoMallocFree@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=129 +ETPTopicOrder0=182 [External Topic Properties\Combinations@Cardinal@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=130 +ETPTopicOrder0=183 [External Topic Properties\CombineCOMSDataOfCOMSDefinition@TEDISEFCompositeElement] Count=1 @@ -72326,12 +76097,12 @@ ETPTopicOrder0=134 [External Topic Properties\CombineMem] Count=1 ETPCommand0=2 -ETPTopicOrder0=7 +ETPTopicOrder0=12 [External Topic Properties\CombineReg] Count=1 ETPCommand0=2 -ETPTopicOrder0=8 +ETPTopicOrder0=13 [External Topic Properties\CombineSEGSDataOfSEGSDefinition@TEDISEFSegment] Count=1 @@ -72346,52 +76117,108 @@ ETPTopicOrder0=136 [External Topic Properties\CompareCLRVersions@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=137 +ETPTopicOrder0=184 + +[External Topic Properties\CompareFiles@TFileName@TFileName@Longint] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=185 + +[External Topic Properties\CompareNaturalStr@string@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=186 + +[External Topic Properties\CompareNaturalText@string@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=187 + +[External Topic Properties\CompareStreams@TStream@TStream@Longint] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=188 + +[External Topic Properties\CompilerCapabilities] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=jedi.inc +ETPTopicOrder0=1 [External Topic Properties\CompilerExtensionBPI] Count=1 ETPCommand0=2 -ETPTopicOrder0=282 +ETPTopicOrder0=272 [External Topic Properties\CompilerExtensionDCP] Count=1 ETPCommand0=2 -ETPTopicOrder0=283 +ETPTopicOrder0=273 [External Topic Properties\CompilerExtensionDEF] Count=1 ETPCommand0=2 -ETPTopicOrder0=284 +ETPTopicOrder0=274 [External Topic Properties\CompilerExtensionDRC] Count=1 ETPCommand0=2 -ETPTopicOrder0=285 +ETPTopicOrder0=275 [External Topic Properties\CompilerExtensionLIB] Count=1 ETPCommand0=2 -ETPTopicOrder0=286 +ETPTopicOrder0=276 [External Topic Properties\CompilerExtensionMAP] Count=1 ETPCommand0=2 -ETPTopicOrder0=287 +ETPTopicOrder0=277 [External Topic Properties\CompilerExtensionTDS] Count=1 ETPCommand0=2 -ETPTopicOrder0=288 +ETPTopicOrder0=278 + +[External Topic Properties\CompilerSettings] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=jedi.inc +ETPTopicOrder0=2 + +[External Topic Properties\CompilerVersions] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=jedi.inc +ETPTopicOrder0=0 [External Topic Properties\CompleteDelphiSet] Count=1 ETPCommand0=2 -ETPTopicOrder0=289 +ETPTopicOrder0=279 [External Topic Properties\ComplexPrecision] Count=1 ETPCommand0=2 -ETPTopicOrder0=9 +ETPTopicOrder0=14 + +[External Topic Properties\ComplexToStr@TPolarComplex] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=189 + +[External Topic Properties\ComplexToStr@TRectComplex] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=190 + +[External Topic Properties\ComplexTypeConversions] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=15 [External Topic Properties\COMPRESSION_ENGINE_HIBER] Count=1 @@ -72411,53 +76238,213 @@ ETPTopicOrder0=292 [External Topic Properties\Conjugate@TPolarComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=139 +ETPTopicOrder0=192 [External Topic Properties\Conjugate@TRectComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=138 +ETPTopicOrder0=191 + +[External Topic Properties\CONTAINER_ANSISTR] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=27 + +[External Topic Properties\CONTAINER_NOSTR] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=30 + +[External Topic Properties\CONTAINER_UNICODESTR] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=29 + +[External Topic Properties\CONTAINER_WIDESTR] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=28 [External Topic Properties\Containers] Count=1 ETPCommand0=2 ETPTopicOrder0=2 +[External Topic Properties\Containers.Adapters] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=6 + +[External Topic Properties\Containers.Associative] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=4 + +[External Topic Properties\Containers.exceptions] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers +ETPTopicOrder0=9 + +[External Topic Properties\Containers.files] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers +ETPTopicOrder0=1 + +[External Topic Properties\Containers.functions] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers +ETPTopicOrder0=8 + +[External Topic Properties\Containers.Interfaces] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=2 + +[External Topic Properties\Containers.OrderedSets] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=5 + +[External Topic Properties\Containers.Sequence] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3 + +[External Topic Properties\Containers.Specialized] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=7 + +[External Topic Properties\Containres.Interfaces.Maps] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.Interfaces +ETPTopicOrder0=321 + [External Topic Properties\ContinueCount@TJclCounter] Count=1 ETPCommand0=2 -ETPTopicOrder0=140 +ETPTopicOrder0=193 [External Topic Properties\ConvertMapFileToJdbgFile@TFileName@string@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=142 +ETPTopicOrder0=194 [External Topic Properties\ConvertMapFileToJdbgFile@TFileName@string@Integer@Integer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=141 +ETPTopicOrder0=195 [External Topic Properties\ConvertTemperature@TTemperatureType@TTemperatureType@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=143 +ETPTopicOrder0=196 + +[External Topic Properties\Copy@IJclAnsiStrIterator@Integer@IJclAnsiStrIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=206 + +[External Topic Properties\Copy@IJclCardinalIterator@Integer@IJclCardinalIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=208 + +[External Topic Properties\Copy@IJclDoubleIterator@Integer@IJclDoubleIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=207 + +[External Topic Properties\Copy@IJclExtendedIterator@Integer@IJclExtendedIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=198 + +[External Topic Properties\Copy@IJclInt64Iterator@Integer@IJclInt64Iterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=197 + +[External Topic Properties\Copy@IJclIntegerIterator@Integer@IJclIntegerIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=200 [External Topic Properties\Copy@IJclIntfIterator@Integer@IJclIntfIterator] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=144 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=199 [External Topic Properties\Copy@IJclIterator@Integer@IJclIterator] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=146 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=203 + +[External Topic Properties\Copy@IJclPtrIterator@Integer@IJclPtrIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=201 + +[External Topic Properties\Copy@IJclSingleIterator@Integer@IJclSingleIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=202 [External Topic Properties\Copy@IJclStrIterator@Integer@IJclStrIterator] Count=1 ETPCommand0=2 ETPTopicOrder0=145 +[External Topic Properties\Copy@IJclUnicodeStrIterator@Integer@IJclUnicodeStrIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=205 + +[External Topic Properties\Copy@IJclWideStrIterator@Integer@IJclWideStrIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=204 + [External Topic Properties\COR_DELETED_NAME_LENGTH] Count=1 ETPCommand0=2 @@ -72511,143 +76498,301 @@ ETPTopicOrder0=302 [External Topic Properties\CorBindToCurrentRuntime@PWideChar@TCLSID@TIID@] Count=1 ETPCommand0=2 -ETPTopicOrder0=147 +ETPTopicOrder0=209 [External Topic Properties\CorBindToRuntime@PWideChar@PWideChar@TCLSID@TIID@] Count=1 ETPCommand0=2 -ETPTopicOrder0=148 +ETPTopicOrder0=210 [External Topic Properties\CorBindToRuntimeByCfg@IStream@DWORD@DWORD@TCLSID@TIID@] Count=1 ETPCommand0=2 -ETPTopicOrder0=149 +ETPTopicOrder0=211 [External Topic Properties\CorBindToRuntimeEx@PWideChar@PWideChar@DWORD@TCLSID@TIID@] Count=1 ETPCommand0=2 -ETPTopicOrder0=150 +ETPTopicOrder0=212 [External Topic Properties\CorBindToRuntimeHost@PWideChar@PWideChar@PWideChar@Pointer@DWORD@TCLSID@TIID@] Count=1 ETPCommand0=2 -ETPTopicOrder0=151 +ETPTopicOrder0=213 [External Topic Properties\CorExitProcess@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=152 +ETPTopicOrder0=214 [External Topic Properties\CorMarkThreadInThreadPool] Count=1 ETPCommand0=2 -ETPTopicOrder0=153 +ETPTopicOrder0=215 [External Topic Properties\Cos@TRectComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=154 +ETPTopicOrder0=216 [External Topic Properties\CosH@TRectComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=155 +ETPTopicOrder0=217 [External Topic Properties\Cot@TRectComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=156 +ETPTopicOrder0=218 [External Topic Properties\CotH@TRectComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=157 +ETPTopicOrder0=219 [External Topic Properties\CountBitsCleared@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=159 +ETPTopicOrder0=221 [External Topic Properties\CountBitsCleared@Int64] Count=1 ETPCommand0=2 -ETPTopicOrder0=164 +ETPTopicOrder0=224 [External Topic Properties\CountBitsCleared@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=163 +ETPTopicOrder0=225 [External Topic Properties\CountBitsCleared@Pointer@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=158 +ETPTopicOrder0=222 [External Topic Properties\CountBitsCleared@Shortint] Count=1 ETPCommand0=2 -ETPTopicOrder0=161 +ETPTopicOrder0=223 [External Topic Properties\CountBitsCleared@Smallint] Count=1 ETPCommand0=2 -ETPTopicOrder0=162 +ETPTopicOrder0=226 [External Topic Properties\CountBitsCleared@Word] Count=1 ETPCommand0=2 -ETPTopicOrder0=160 +ETPTopicOrder0=220 [External Topic Properties\CountBitsSet@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=167 +ETPTopicOrder0=232 [External Topic Properties\CountBitsSet@Int64] Count=1 ETPCommand0=2 -ETPTopicOrder0=166 +ETPTopicOrder0=231 [External Topic Properties\CountBitsSet@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=169 +ETPTopicOrder0=230 [External Topic Properties\CountBitsSet@Pointer@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=170 +ETPTopicOrder0=227 [External Topic Properties\CountBitsSet@ShortInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=171 +ETPTopicOrder0=228 [External Topic Properties\CountBitsSet@Smallint] Count=1 ETPCommand0=2 -ETPTopicOrder0=168 +ETPTopicOrder0=233 [External Topic Properties\CountBitsSet@Word] Count=1 ETPCommand0=2 -ETPTopicOrder0=165 +ETPTopicOrder0=229 + +[External Topic Properties\CountObject@IJclAnsiStrIterator@Integer@AnsiString@TAnsiStrCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=235 + +[External Topic Properties\CountObject@IJclAnsiStrIterator@Integer@AnsiString@TAnsiStrEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=237 + +[External Topic Properties\CountObject@IJclCardinalIterator@Integer@Cardinal@TCardinalCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=238 + +[External Topic Properties\CountObject@IJclCardinalIterator@Integer@Cardinal@TCardinalEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=239 + +[External Topic Properties\CountObject@IJclDoubleIterator@Integer@Double@TDoubleCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=240 + +[External Topic Properties\CountObject@IJclDoubleIterator@Integer@Double@TDoubleEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=241 + +[External Topic Properties\CountObject@IJclExtendedIterator@Integer@Extended@TExtendedCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=242 + +[External Topic Properties\CountObject@IJclExtendedIterator@Integer@Extended@TExtendedEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=243 + +[External Topic Properties\CountObject@IJclInt64Iterator@Integer@Int64@TInt64Compare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=244 + +[External Topic Properties\CountObject@IJclInt64Iterator@Integer@Int64@TInt64EqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=245 + +[External Topic Properties\CountObject@IJclIntegerIterator@Integer@Integer@TIntegerCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=247 + +[External Topic Properties\CountObject@IJclIntegerIterator@Integer@Integer@TIntegerEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=246 [External Topic Properties\CountObject@IJclIntfIterator@Integer@IInterface@TIntfCompare] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=173 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=234 + +[External Topic Properties\CountObject@IJclIntfIterator@Integer@IInterface@TIntfEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=248 [External Topic Properties\CountObject@IJclIterator@Integer@TObject@TCompare] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=174 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=236 + +[External Topic Properties\CountObject@IJclIterator@Integer@TObject@TEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=249 + +[External Topic Properties\CountObject@IJclPtrIterator@Integer@Pointer@TPtrCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=250 + +[External Topic Properties\CountObject@IJclPtrIterator@Integer@Pointer@TPtrEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=251 + +[External Topic Properties\CountObject@IJclSingleIterator@Integer@Single@TSingleCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=252 + +[External Topic Properties\CountObject@IJclSingleIterator@Integer@Single@TSingleEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=253 [External Topic Properties\CountObject@IJclStrIterator@Integer@string@TStrCompare] Count=1 ETPCommand0=2 ETPTopicOrder0=172 +[External Topic Properties\CountObject@IJclUnicodeStrIterator@Integer@UnicodeString@TUnicodeStrCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=254 + +[External Topic Properties\CountObject@IJclUnicodeStrIterator@Integer@UnicodeString@TUnicodeStrEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=256 + +[External Topic Properties\CountObject@IJclWideStrIterator@Integer@WideString@TWideStrCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=257 + +[External Topic Properties\CountObject@IJclWideStrIterator@Integer@WideString@TWideStrEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=255 + [External Topic Properties\CP_ACP] Count=1 ETPCommand0=2 @@ -72673,6 +76818,11 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=307 +[External Topic Properties\CP_UTF16LE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=280 + [External Topic Properties\CP_UTF7] Count=1 ETPCommand0=2 @@ -72686,67 +76836,207 @@ ETPTopicOrder0=309 [External Topic Properties\CPaperNames] Count=1 ETPCommand0=2 -ETPTopicOrder0=310 +ETPTopicOrder0=281 [External Topic Properties\CPU_TYPE_AMD] Count=1 ETPCommand0=2 -ETPTopicOrder0=311 +ETPTopicOrder0=282 [External Topic Properties\CPU_TYPE_CYRIX] Count=1 ETPCommand0=2 -ETPTopicOrder0=312 +ETPTopicOrder0=283 [External Topic Properties\CPU_TYPE_INTEL] Count=1 ETPCommand0=2 -ETPTopicOrder0=313 +ETPTopicOrder0=284 [External Topic Properties\CPU_TYPE_TRANSMETA] Count=1 ETPCommand0=2 -ETPTopicOrder0=314 +ETPTopicOrder0=285 [External Topic Properties\CPU_TYPE_VIA] Count=1 ETPCommand0=2 -ETPTopicOrder0=315 +ETPTopicOrder0=286 + +[External Topic Properties\Crc16@array of Byte@Integer@Word] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=258 [External Topic Properties\Crc16_A] Count=1 ETPCommand0=2 ETPTopicOrder0=175 +[External Topic Properties\Crc16_A@array of Byte@Word] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=259 + +[External Topic Properties\Crc16_A@TCrc16Table@array of Byte@Word] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=260 + [External Topic Properties\Crc16_P] Count=1 ETPCommand0=2 ETPTopicOrder0=176 +[External Topic Properties\Crc16_P@PJclByteArray@Integer@Word] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=262 + +[External Topic Properties\Crc16_P@TCrc16Table@PJclByteArray@Integer@Word] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=261 + +[External Topic Properties\Crc16Bits] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=287 + +[External Topic Properties\Crc16Bytes] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=288 + +[External Topic Properties\Crc16DefaultStart] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=16 + +[External Topic Properties\Crc16DefaultTable] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=17 + +[External Topic Properties\Crc16HighBit] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=289 + +[External Topic Properties\Crc16PolynomCCITT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=290 + +[External Topic Properties\Crc16PolynomIBM] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=291 + +[External Topic Properties\Crc32@array of Byte@Integer@Cardinal] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=263 + [External Topic Properties\Crc32_A] Count=1 ETPCommand0=2 ETPTopicOrder0=177 +[External Topic Properties\Crc32_A@array of Byte@Cardinal] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=264 + +[External Topic Properties\Crc32_A@TCrc32Table@array of Byte@Cardinal] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=265 + [External Topic Properties\Crc32_P] Count=1 ETPCommand0=2 ETPTopicOrder0=178 +[External Topic Properties\Crc32_P@PJclByteArray@Integer@Cardinal] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=266 + +[External Topic Properties\Crc32_P@TCrc32Table@PJclByteArray@Integer@Cardinal] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=267 + +[External Topic Properties\Crc32Bits] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=292 + +[External Topic Properties\Crc32Bytes] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=293 + +[External Topic Properties\Crc32DefaultStart] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=18 + +[External Topic Properties\Crc32DefaultTable] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=19 + +[External Topic Properties\Crc32HighBit] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=294 + +[External Topic Properties\Crc32Koopman] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=295 + +[External Topic Properties\Crc32PolynomCastagnoli] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=296 + +[External Topic Properties\Crc32PolynomIEEE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=297 + +[External Topic Properties\Create7zFile@TFileName@TFileName@Int64@String@TJclCompressionProgressEvent] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=268 + +[External Topic Properties\Create7zFile@TStrings@TFileName@Int64@String@TJclCompressionProgressEvent] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=269 + [External Topic Properties\CreateAutoPtr@TObject] Count=1 ETPCommand0=2 -ETPTopicOrder0=179 +ETPTopicOrder0=270 [External Topic Properties\CreateComponentCategory@TGUID@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=180 +ETPTopicOrder0=271 [External Topic Properties\CreateDOSProcessRedirected@string@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=181 +ETPTopicOrder0=272 + +[External Topic Properties\CreateGoal@PChar] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=273 [External Topic Properties\CreateHardLinkA] Count=1 @@ -72771,12 +77061,12 @@ ETPTopicOrder0=316 [External Topic Properties\CreateRegionFromBitmap] Count=1 ETPCommand0=2 -ETPTopicOrder0=183 +ETPTopicOrder0=274 [External Topic Properties\crossplatform.inc] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=1 [External Topic Properties\CRYPT_KEY_LEN] Count=1 @@ -72791,12 +77081,12 @@ ETPTopicOrder0=318 [External Topic Properties\Csc@TRectComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=184 +ETPTopicOrder0=275 [External Topic Properties\CscH@TRectComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=185 +ETPTopicOrder0=276 [External Topic Properties\CSIDL_ADMINTOOLS] Count=1 @@ -72898,185 +77188,190 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=338 +[External Topic Properties\CurrentTimeZoneSupportsDaylightSavings] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=277 + [External Topic Properties\CX8_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=339 +ETPTopicOrder0=298 [External Topic Properties\CyclePerDeg] Count=1 ETPCommand0=2 -ETPTopicOrder0=340 +ETPTopicOrder0=299 [External Topic Properties\CyclePerGrad] Count=1 ETPCommand0=2 -ETPTopicOrder0=341 +ETPTopicOrder0=300 [External Topic Properties\CyclePerRad] Count=1 ETPCommand0=2 -ETPTopicOrder0=342 +ETPTopicOrder0=301 [External Topic Properties\CYRIX_APIC] Count=1 ETPCommand0=2 -ETPTopicOrder0=343 +ETPTopicOrder0=302 [External Topic Properties\CYRIX_BIT_10] Count=1 ETPCommand0=2 -ETPTopicOrder0=344 +ETPTopicOrder0=303 [External Topic Properties\CYRIX_BIT_11] Count=1 ETPCommand0=2 -ETPTopicOrder0=345 +ETPTopicOrder0=304 [External Topic Properties\CYRIX_BIT_16] Count=1 ETPCommand0=2 -ETPTopicOrder0=346 +ETPTopicOrder0=305 [External Topic Properties\CYRIX_BIT_17] Count=1 ETPCommand0=2 -ETPTopicOrder0=347 +ETPTopicOrder0=306 [External Topic Properties\CYRIX_BIT_18] Count=1 ETPCommand0=2 -ETPTopicOrder0=348 +ETPTopicOrder0=307 [External Topic Properties\CYRIX_BIT_19] Count=1 ETPCommand0=2 -ETPTopicOrder0=349 +ETPTopicOrder0=308 [External Topic Properties\CYRIX_BIT_20] Count=1 ETPCommand0=2 -ETPTopicOrder0=350 +ETPTopicOrder0=309 [External Topic Properties\CYRIX_BIT_21] Count=1 ETPCommand0=2 -ETPTopicOrder0=351 +ETPTopicOrder0=310 [External Topic Properties\CYRIX_BIT_22] Count=1 ETPCommand0=2 -ETPTopicOrder0=352 +ETPTopicOrder0=311 [External Topic Properties\CYRIX_BIT_24] Count=1 ETPCommand0=2 -ETPTopicOrder0=353 +ETPTopicOrder0=312 [External Topic Properties\CYRIX_BIT_25] Count=1 ETPCommand0=2 -ETPTopicOrder0=354 +ETPTopicOrder0=313 [External Topic Properties\CYRIX_BIT_26] Count=1 ETPCommand0=2 -ETPTopicOrder0=355 +ETPTopicOrder0=314 [External Topic Properties\CYRIX_BIT_27] Count=1 ETPCommand0=2 -ETPTopicOrder0=356 +ETPTopicOrder0=315 [External Topic Properties\CYRIX_BIT_28] Count=1 ETPCommand0=2 -ETPTopicOrder0=357 +ETPTopicOrder0=316 [External Topic Properties\CYRIX_BIT_29] Count=1 ETPCommand0=2 -ETPTopicOrder0=358 +ETPTopicOrder0=317 [External Topic Properties\CYRIX_BIT_30] Count=1 ETPCommand0=2 -ETPTopicOrder0=359 +ETPTopicOrder0=318 [External Topic Properties\CYRIX_BIT_31] Count=1 ETPCommand0=2 -ETPTopicOrder0=360 +ETPTopicOrder0=319 [External Topic Properties\CYRIX_CMOV] Count=1 ETPCommand0=2 -ETPTopicOrder0=361 +ETPTopicOrder0=320 [External Topic Properties\CYRIX_CX8] Count=1 ETPCommand0=2 -ETPTopicOrder0=362 +ETPTopicOrder0=321 [External Topic Properties\CYRIX_DE] Count=1 ETPCommand0=2 -ETPTopicOrder0=363 +ETPTopicOrder0=322 [External Topic Properties\CYRIX_FPU] Count=1 ETPCommand0=2 -ETPTopicOrder0=364 +ETPTopicOrder0=323 [External Topic Properties\CYRIX_MCA] Count=1 ETPCommand0=2 -ETPTopicOrder0=365 +ETPTopicOrder0=324 [External Topic Properties\CYRIX_MCE] Count=1 ETPCommand0=2 -ETPTopicOrder0=366 +ETPTopicOrder0=325 [External Topic Properties\CYRIX_MMX] Count=1 ETPCommand0=2 -ETPTopicOrder0=367 +ETPTopicOrder0=326 [External Topic Properties\CYRIX_MSR] Count=1 ETPCommand0=2 -ETPTopicOrder0=368 +ETPTopicOrder0=327 [External Topic Properties\CYRIX_MTRR] Count=1 ETPCommand0=2 -ETPTopicOrder0=369 +ETPTopicOrder0=328 [External Topic Properties\CYRIX_PAE] Count=1 ETPCommand0=2 -ETPTopicOrder0=370 +ETPTopicOrder0=329 [External Topic Properties\CYRIX_PGE] Count=1 ETPCommand0=2 -ETPTopicOrder0=371 +ETPTopicOrder0=330 [External Topic Properties\CYRIX_PSE] Count=1 ETPCommand0=2 -ETPTopicOrder0=372 +ETPTopicOrder0=331 [External Topic Properties\CYRIX_TSC] Count=1 ETPCommand0=2 -ETPTopicOrder0=373 +ETPTopicOrder0=332 [External Topic Properties\CYRIX_VME] Count=1 ETPCommand0=2 -ETPTopicOrder0=374 +ETPTopicOrder0=333 [External Topic Properties\DATE_LTRREADING] Count=1 @@ -73093,20 +77388,40 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=3 +[External Topic Properties\DateCurrentTimeZoneClocksChangeToDaylightSavings] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=278 + +[External Topic Properties\DateCurrentTimeZoneClocksChangeToStandard] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=279 + [External Topic Properties\DateTimeToSystemTime@TDateTime@TSystemTime] Count=1 ETPCommand0=2 -ETPTopicOrder0=186 +ETPTopicOrder0=280 [External Topic Properties\DayOfTheYear@TDateTime@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=187 +ETPTopicOrder0=281 + +[External Topic Properties\DCC32ExeName] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=334 + +[External Topic Properties\DCCILExeName] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=335 [External Topic Properties\DE_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=377 +ETPTopicOrder0=336 [External Topic Properties\Debug_EDIDataObjectListCreated] Count=1 @@ -73138,6 +77453,41 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=17 +[External Topic Properties\DEBUG_NO_BINARY] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=9 + +[External Topic Properties\DEBUG_NO_EXPORTS] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=12 + +[External Topic Properties\DEBUG_NO_MAP] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=11 + +[External Topic Properties\DEBUG_NO_SYMBOLS] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=13 + +[External Topic Properties\DEBUG_NO_TD32] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=10 + [External Topic Properties\Debugging] Count=1 ETPCommand0=2 @@ -73146,72 +77496,77 @@ ETPTopicOrder0=4 [External Topic Properties\DecLimit@Cardinal@Cardinal@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=193 +ETPTopicOrder0=284 [External Topic Properties\DecLimit@Int64@Int64@Int64] Count=1 ETPCommand0=2 -ETPTopicOrder0=192 +ETPTopicOrder0=285 [External Topic Properties\DecLimit@Integer@Integer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=191 +ETPTopicOrder0=286 [External Topic Properties\DecLimit@Shortint@Shortint@Shortint] Count=1 ETPCommand0=2 -ETPTopicOrder0=190 +ETPTopicOrder0=287 [External Topic Properties\DecLimit@Smallint@Smallint@Smallint] Count=1 ETPCommand0=2 -ETPTopicOrder0=188 +ETPTopicOrder0=283 [External Topic Properties\DecLimit@Word@Word@Word] Count=1 ETPCommand0=2 -ETPTopicOrder0=189 +ETPTopicOrder0=282 [External Topic Properties\DecLimitClamp@Cardinal@Cardinal@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=196 +ETPTopicOrder0=292 [External Topic Properties\DecLimitClamp@Int64@Int64@Int64] Count=1 ETPCommand0=2 -ETPTopicOrder0=195 +ETPTopicOrder0=291 [External Topic Properties\DecLimitClamp@Integer@Integer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=199 +ETPTopicOrder0=288 [External Topic Properties\DecLimitClamp@Shortint@Shortint@Shortint] Count=1 ETPCommand0=2 -ETPTopicOrder0=197 +ETPTopicOrder0=293 [External Topic Properties\DecLimitClamp@Smallint@Smallint@Smallint] Count=1 ETPCommand0=2 -ETPTopicOrder0=194 +ETPTopicOrder0=290 [External Topic Properties\DecLimitClamp@Word@Word@Word] Count=1 ETPCommand0=2 -ETPTopicOrder0=198 +ETPTopicOrder0=289 [External Topic Properties\DecodeDate@TDateTime@Integer@Word@Word] Count=1 ETPCommand0=2 -ETPTopicOrder0=200 +ETPTopicOrder0=295 [External Topic Properties\DecodeDate@TDateTime@Word@Word@Word] Count=1 ETPCommand0=2 -ETPTopicOrder0=201 +ETPTopicOrder0=294 + +[External Topic Properties\DecodeHttpBasicAuthentication@AnsiString@AnsiString@AnsiString] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=296 [External Topic Properties\DecodeHttpBasicAuthentication@string@string@string] Count=1 @@ -73221,72 +77576,72 @@ ETPTopicOrder0=202 [External Topic Properties\DefaultContainerCapacity] Count=1 ETPCommand0=2 -ETPTopicOrder0=378 +ETPTopicOrder0=337 [External Topic Properties\DefaultSCMDesiredAccess] Count=1 ETPCommand0=2 -ETPTopicOrder0=379 +ETPTopicOrder0=338 [External Topic Properties\DefaultSvcDesiredAccess] Count=1 ETPCommand0=2 -ETPTopicOrder0=380 +ETPTopicOrder0=339 [External Topic Properties\DegPerArcMinute] Count=1 ETPCommand0=2 -ETPTopicOrder0=381 +ETPTopicOrder0=340 [External Topic Properties\DegPerArcSecond] Count=1 ETPCommand0=2 -ETPTopicOrder0=382 +ETPTopicOrder0=341 [External Topic Properties\DegPerCycle] Count=1 ETPCommand0=2 -ETPTopicOrder0=383 +ETPTopicOrder0=342 [External Topic Properties\DegPerGrad] Count=1 ETPCommand0=2 -ETPTopicOrder0=384 +ETPTopicOrder0=343 [External Topic Properties\DegPerRad] Count=1 ETPCommand0=2 -ETPTopicOrder0=385 +ETPTopicOrder0=344 [External Topic Properties\DegToGrad@Extended] Count=1 ETPCommand0=2 -ETPTopicOrder0=204 +ETPTopicOrder0=299 [External Topic Properties\DegToGrad@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=205 +ETPTopicOrder0=298 [External Topic Properties\DegToGrad@Single] Count=1 ETPCommand0=2 -ETPTopicOrder0=203 +ETPTopicOrder0=297 [External Topic Properties\DegToRad@Extended] Count=1 ETPCommand0=2 -ETPTopicOrder0=207 +ETPTopicOrder0=302 [External Topic Properties\DegToRad@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=208 +ETPTopicOrder0=301 [External Topic Properties\DegToRad@Single] Count=1 ETPCommand0=2 -ETPTopicOrder0=206 +ETPTopicOrder0=300 [External Topic Properties\DeleteCompositeElementFrom@TEDISEFDataObjectGroup@TEDISEFCompositeElement] Count=1 @@ -73328,10 +77683,15 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=216 +[External Topic Properties\DELPHI] +Count=1 +ETPCommand0=3 +ETPGroup0=CompilerVersions + [External Topic Properties\DelphiHKEY] Count=1 ETPCommand0=2 -ETPTopicOrder0=5 +ETPTopicOrder0=1 [External Topic Properties\DEREGISTERED] Count=1 @@ -73341,17 +77701,17 @@ ETPTopicOrder0=386 [External Topic Properties\DesignerCLX] Count=1 ETPCommand0=2 -ETPTopicOrder0=387 +ETPTopicOrder0=345 [External Topic Properties\DesignerVCL] Count=1 ETPCommand0=2 -ETPTopicOrder0=388 +ETPTopicOrder0=346 [External Topic Properties\DestroyEnvironmentBlock@PChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=217 +ETPTopicOrder0=303 [External Topic Properties\DEVICE_TYPE] Count=1 @@ -73366,17 +77726,17 @@ ETPTopicOrder0=389 [External Topic Properties\DialogUnitsToPixelsX@Word] Count=1 ETPCommand0=2 -ETPTopicOrder0=218 +ETPTopicOrder0=304 [External Topic Properties\DialogUnitsToPixelsY@Word] Count=1 ETPCommand0=2 -ETPTopicOrder0=219 +ETPTopicOrder0=305 [External Topic Properties\Diff@TRectComplex@TRectComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=220 +ETPTopicOrder0=306 [External Topic Properties\DIFFERENCE] Count=1 @@ -73386,22 +77746,27 @@ ETPTopicOrder0=390 [External Topic Properties\DirDelimiter] Count=1 ETPCommand0=2 -ETPTopicOrder0=391 +ETPTopicOrder0=347 [External Topic Properties\DirectPrint@string@string] Count=1 ETPCommand0=2 ETPTopicOrder0=221 +[External Topic Properties\DirectPrint@string@string@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=307 + [External Topic Properties\DirSeparator] Count=1 ETPCommand0=2 -ETPTopicOrder0=392 +ETPTopicOrder0=348 [External Topic Properties\DisplayPropDialog@THandle@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=222 +ETPTopicOrder0=308 [External Topic Properties\DLLVER_PLATFORM_NT] Count=1 @@ -73506,17 +77871,17 @@ ETPTopicOrder0=411 [External Topic Properties\DomainCheck@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=223 +ETPTopicOrder0=309 [External Topic Properties\DosDateTimeToFileTime@Word@Word@TFileTime] Count=1 ETPCommand0=2 -ETPTopicOrder0=224 +ETPTopicOrder0=310 [External Topic Properties\DotNetFormat@string@array of const] Count=1 ETPCommand0=2 -ETPTopicOrder0=227 +ETPTopicOrder0=312 [External Topic Properties\DotNetFormat@string@array of System.Object] Count=1 @@ -73541,42 +77906,75 @@ ETPTopicOrder0=226 [External Topic Properties\DotNetFormat@string@Variant] Count=1 ETPCommand0=2 -ETPTopicOrder0=229 +ETPTopicOrder0=313 [External Topic Properties\DotNetFormat@string@Variant@Variant] Count=1 ETPCommand0=2 -ETPTopicOrder0=225 +ETPTopicOrder0=311 [External Topic Properties\DotNetFormat@string@Variant@Variant@Variant] Count=1 ETPCommand0=2 -ETPTopicOrder0=228 +ETPTopicOrder0=314 [External Topic Properties\DottedLineTo@TCanvas@Integer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=233 +ETPTopicOrder0=315 + +[External Topic Properties\DoubleSimpleCompare@Double@Double] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=316 + +[External Topic Properties\DoubleSimpleEqualityCompare@Double@Double] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=317 + +[External Topic Properties\DoubleSimpleHashConvert@Double] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=318 + +[External Topic Properties\DoubleSortProc] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=20 [External Topic Properties\DoubleToHex@Double] Count=1 ETPCommand0=2 -ETPTopicOrder0=234 +ETPTopicOrder0=319 [External Topic Properties\DPGetDefaultPrinter@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=235 +ETPTopicOrder0=320 [External Topic Properties\DPSetDefaultPrinter@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=236 +ETPTopicOrder0=321 [External Topic Properties\DrcFileExtension] Count=1 ETPCommand0=2 -ETPTopicOrder0=412 +ETPTopicOrder0=349 + +[External Topic Properties\DROP_OBSOLETE_CODE] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=7 [External Topic Properties\DROPEFFECT_COPY] Count=1 @@ -73606,7 +78004,7 @@ ETPTopicOrder0=417 [External Topic Properties\DS_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=418 +ETPTopicOrder0=350 [External Topic Properties\DUPLICATE] Count=1 @@ -73636,117 +78034,139 @@ ETPTopicOrder0=8 [External Topic Properties\DWORD_PTR] Count=1 ETPCommand0=2 -ETPTopicOrder0=9 +ETPTopicOrder0=2 + +[External Topic Properties\Dynamic arrays] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=BaseServices +ETPTopicOrder0=15 [External Topic Properties\DynArrayCompareAnsiString@Pointer@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=237 +ETPTopicOrder0=322 [External Topic Properties\DynArrayCompareAnsiText@Pointer@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=238 +ETPTopicOrder0=323 [External Topic Properties\DynArrayCompareByte@Pointer@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=239 +ETPTopicOrder0=324 [External Topic Properties\DynArrayCompareCardinal@Pointer@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=240 +ETPTopicOrder0=325 [External Topic Properties\DynArrayCompareDouble@Pointer@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=241 +ETPTopicOrder0=326 [External Topic Properties\DynArrayCompareExtended@Pointer@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=242 +ETPTopicOrder0=327 [External Topic Properties\DynArrayCompareFloat@Pointer@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=243 +ETPTopicOrder0=328 [External Topic Properties\DynArrayCompareInt64@Pointer@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=244 +ETPTopicOrder0=329 [External Topic Properties\DynArrayCompareInteger@Pointer@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=245 +ETPTopicOrder0=330 [External Topic Properties\DynArrayCompareShortInt@Pointer@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=246 +ETPTopicOrder0=331 [External Topic Properties\DynArrayCompareSingle@Pointer@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=247 +ETPTopicOrder0=332 [External Topic Properties\DynArrayCompareSmallInt@Pointer@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=248 +ETPTopicOrder0=333 [External Topic Properties\DynArrayCompareString@Pointer@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=249 +ETPTopicOrder0=334 [External Topic Properties\DynArrayCompareText@Pointer@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=250 +ETPTopicOrder0=335 + +[External Topic Properties\DynArrayCompareWideString@Pointer@Pointer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=336 + +[External Topic Properties\DynArrayCompareWideText@Pointer@Pointer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=337 [External Topic Properties\DynArrayCompareWord@Pointer@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=251 +ETPTopicOrder0=338 [External Topic Properties\E] Count=1 ETPCommand0=2 -ETPTopicOrder0=423 +ETPTopicOrder0=351 + +[External Topic Properties\EAMD_1GBPAGE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=352 [External Topic Properties\EAMD_3DNOW] Count=1 ETPCommand0=2 -ETPTopicOrder0=424 +ETPTopicOrder0=353 [External Topic Properties\EAMD_APIC] Count=1 ETPCommand0=2 -ETPTopicOrder0=425 +ETPTopicOrder0=354 [External Topic Properties\EAMD_BIT_10] Count=1 ETPCommand0=2 -ETPTopicOrder0=426 +ETPTopicOrder0=355 [External Topic Properties\EAMD_BIT_18] Count=1 ETPCommand0=2 -ETPTopicOrder0=427 +ETPTopicOrder0=356 [External Topic Properties\EAMD_BIT_19] Count=1 ETPCommand0=2 -ETPTopicOrder0=428 +ETPTopicOrder0=357 [External Topic Properties\EAMD_BIT_21] Count=1 ETPCommand0=2 -ETPTopicOrder0=429 +ETPTopicOrder0=358 [External Topic Properties\EAMD_BIT_26] Count=1 @@ -73761,127 +78181,142 @@ ETPTopicOrder0=431 [External Topic Properties\EAMD_BIT_28] Count=1 ETPCommand0=2 -ETPTopicOrder0=432 +ETPTopicOrder0=359 [External Topic Properties\EAMD_CMOV] Count=1 ETPCommand0=2 -ETPTopicOrder0=433 +ETPTopicOrder0=360 [External Topic Properties\EAMD_CX8] Count=1 ETPCommand0=2 -ETPTopicOrder0=434 +ETPTopicOrder0=361 [External Topic Properties\EAMD_DE] Count=1 ETPCommand0=2 -ETPTopicOrder0=435 +ETPTopicOrder0=362 [External Topic Properties\EAMD_EX3DNOW] Count=1 ETPCommand0=2 -ETPTopicOrder0=436 +ETPTopicOrder0=363 [External Topic Properties\EAMD_EXMMX] Count=1 ETPCommand0=2 -ETPTopicOrder0=437 +ETPTopicOrder0=364 [External Topic Properties\EAMD_FFX] Count=1 ETPCommand0=2 -ETPTopicOrder0=438 +ETPTopicOrder0=365 [External Topic Properties\EAMD_FPU] Count=1 ETPCommand0=2 -ETPTopicOrder0=439 +ETPTopicOrder0=366 [External Topic Properties\EAMD_FX] Count=1 ETPCommand0=2 -ETPTopicOrder0=440 +ETPTopicOrder0=367 [External Topic Properties\EAMD_LONG] Count=1 ETPCommand0=2 -ETPTopicOrder0=441 +ETPTopicOrder0=368 [External Topic Properties\EAMD_MCA] Count=1 ETPCommand0=2 -ETPTopicOrder0=442 +ETPTopicOrder0=369 [External Topic Properties\EAMD_MCE] Count=1 ETPCommand0=2 -ETPTopicOrder0=443 +ETPTopicOrder0=370 [External Topic Properties\EAMD_MMX] Count=1 ETPCommand0=2 -ETPTopicOrder0=444 +ETPTopicOrder0=371 [External Topic Properties\EAMD_MSR] Count=1 ETPCommand0=2 -ETPTopicOrder0=445 +ETPTopicOrder0=372 [External Topic Properties\EAMD_MTRR] Count=1 ETPCommand0=2 -ETPTopicOrder0=446 +ETPTopicOrder0=373 [External Topic Properties\EAMD_NX] Count=1 ETPCommand0=2 -ETPTopicOrder0=447 +ETPTopicOrder0=374 [External Topic Properties\EAMD_PAE] Count=1 ETPCommand0=2 -ETPTopicOrder0=448 +ETPTopicOrder0=375 [External Topic Properties\EAMD_PAT] Count=1 ETPCommand0=2 -ETPTopicOrder0=449 +ETPTopicOrder0=376 [External Topic Properties\EAMD_PGE] Count=1 ETPCommand0=2 -ETPTopicOrder0=450 +ETPTopicOrder0=377 [External Topic Properties\EAMD_PSE] Count=1 ETPCommand0=2 -ETPTopicOrder0=451 +ETPTopicOrder0=378 [External Topic Properties\EAMD_PSE2] Count=1 ETPCommand0=2 -ETPTopicOrder0=452 +ETPTopicOrder0=379 + +[External Topic Properties\EAMD_RDTSCP] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=380 [External Topic Properties\EAMD_SEP] Count=1 ETPCommand0=2 -ETPTopicOrder0=453 +ETPTopicOrder0=381 [External Topic Properties\EAMD_TSC] Count=1 ETPCommand0=2 -ETPTopicOrder0=454 +ETPTopicOrder0=382 [External Topic Properties\EAMD_VME] Count=1 ETPCommand0=2 -ETPTopicOrder0=455 +ETPTopicOrder0=383 + +[External Topic Properties\EAMD2_3DNOWPREFETCH] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=384 + +[External Topic Properties\EAMD2_ABM] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=385 [External Topic Properties\EAMD2_ALTMOVCR8] Count=1 ETPCommand0=2 -ETPTopicOrder0=456 +ETPTopicOrder0=386 [External Topic Properties\EAMD2_BIT_10] Count=1 @@ -73906,82 +78341,82 @@ ETPTopicOrder0=460 [External Topic Properties\EAMD2_BIT_14] Count=1 ETPCommand0=2 -ETPTopicOrder0=461 +ETPTopicOrder0=387 [External Topic Properties\EAMD2_BIT_15] Count=1 ETPCommand0=2 -ETPTopicOrder0=462 +ETPTopicOrder0=388 [External Topic Properties\EAMD2_BIT_16] Count=1 ETPCommand0=2 -ETPTopicOrder0=463 +ETPTopicOrder0=389 [External Topic Properties\EAMD2_BIT_17] Count=1 ETPCommand0=2 -ETPTopicOrder0=464 +ETPTopicOrder0=390 [External Topic Properties\EAMD2_BIT_18] Count=1 ETPCommand0=2 -ETPTopicOrder0=465 +ETPTopicOrder0=391 [External Topic Properties\EAMD2_BIT_19] Count=1 ETPCommand0=2 -ETPTopicOrder0=466 +ETPTopicOrder0=392 [External Topic Properties\EAMD2_BIT_20] Count=1 ETPCommand0=2 -ETPTopicOrder0=467 +ETPTopicOrder0=393 [External Topic Properties\EAMD2_BIT_21] Count=1 ETPCommand0=2 -ETPTopicOrder0=468 +ETPTopicOrder0=394 [External Topic Properties\EAMD2_BIT_22] Count=1 ETPCommand0=2 -ETPTopicOrder0=469 +ETPTopicOrder0=395 [External Topic Properties\EAMD2_BIT_23] Count=1 ETPCommand0=2 -ETPTopicOrder0=470 +ETPTopicOrder0=396 [External Topic Properties\EAMD2_BIT_24] Count=1 ETPCommand0=2 -ETPTopicOrder0=471 +ETPTopicOrder0=397 [External Topic Properties\EAMD2_BIT_25] Count=1 ETPCommand0=2 -ETPTopicOrder0=472 +ETPTopicOrder0=398 [External Topic Properties\EAMD2_BIT_26] Count=1 ETPCommand0=2 -ETPTopicOrder0=473 +ETPTopicOrder0=399 [External Topic Properties\EAMD2_BIT_27] Count=1 ETPCommand0=2 -ETPTopicOrder0=474 +ETPTopicOrder0=400 [External Topic Properties\EAMD2_BIT_28] Count=1 ETPCommand0=2 -ETPTopicOrder0=475 +ETPTopicOrder0=401 [External Topic Properties\EAMD2_BIT_29] Count=1 ETPCommand0=2 -ETPTopicOrder0=476 +ETPTopicOrder0=402 [External Topic Properties\EAMD2_BIT_3] Count=1 @@ -73991,12 +78426,12 @@ ETPTopicOrder0=477 [External Topic Properties\EAMD2_BIT_30] Count=1 ETPCommand0=2 -ETPTopicOrder0=478 +ETPTopicOrder0=403 [External Topic Properties\EAMD2_BIT_31] Count=1 ETPCommand0=2 -ETPTopicOrder0=479 +ETPTopicOrder0=404 [External Topic Properties\EAMD2_BIT_5] Count=1 @@ -74026,182 +78461,232 @@ ETPTopicOrder0=484 [External Topic Properties\EAMD2_CMPLEGACY] Count=1 ETPCommand0=2 -ETPTopicOrder0=485 +ETPTopicOrder0=405 + +[External Topic Properties\EAMD2_EXTAPICSPACE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=406 + +[External Topic Properties\EAMD2_IBS] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=407 [External Topic Properties\EAMD2_LAHF] Count=1 ETPCommand0=2 -ETPTopicOrder0=486 +ETPTopicOrder0=408 + +[External Topic Properties\EAMD2_MISALIGNSSE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=409 + +[External Topic Properties\EAMD2_OSVW] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=410 + +[External Topic Properties\EAMD2_SKINIT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=411 + +[External Topic Properties\EAMD2_SSE4A] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=412 + +[External Topic Properties\EAMD2_SSE5] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=413 [External Topic Properties\EAMD2_SVM] Count=1 ETPCommand0=2 -ETPTopicOrder0=487 +ETPTopicOrder0=414 -[External Topic Properties\EColorConversionError] +[External Topic Properties\EAMD2_WDT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=415 + +[External Topic Properties\EAutoAdjustNotEnabled] Count=1 ETPCommand0=2 ETPTopicOrder0=3 +[External Topic Properties\EColorConversionError] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=4 + [External Topic Properties\ECYRIX_APIC] Count=1 ETPCommand0=2 -ETPTopicOrder0=488 +ETPTopicOrder0=416 [External Topic Properties\ECYRIX_BIT_11] Count=1 ETPCommand0=2 -ETPTopicOrder0=489 +ETPTopicOrder0=417 [External Topic Properties\ECYRIX_BIT_17] Count=1 ETPCommand0=2 -ETPTopicOrder0=490 +ETPTopicOrder0=418 [External Topic Properties\ECYRIX_BIT_18] Count=1 ETPCommand0=2 -ETPTopicOrder0=491 +ETPTopicOrder0=419 [External Topic Properties\ECYRIX_BIT_19] Count=1 ETPCommand0=2 -ETPTopicOrder0=492 +ETPTopicOrder0=420 [External Topic Properties\ECYRIX_BIT_20] Count=1 ETPCommand0=2 -ETPTopicOrder0=493 +ETPTopicOrder0=421 [External Topic Properties\ECYRIX_BIT_21] Count=1 ETPCommand0=2 -ETPTopicOrder0=494 +ETPTopicOrder0=422 [External Topic Properties\ECYRIX_BIT_22] Count=1 ETPCommand0=2 -ETPTopicOrder0=495 +ETPTopicOrder0=423 [External Topic Properties\ECYRIX_BIT_25] Count=1 ETPCommand0=2 -ETPTopicOrder0=496 +ETPTopicOrder0=424 [External Topic Properties\ECYRIX_BIT_26] Count=1 ETPCommand0=2 -ETPTopicOrder0=497 +ETPTopicOrder0=425 [External Topic Properties\ECYRIX_BIT_27] Count=1 ETPCommand0=2 -ETPTopicOrder0=498 +ETPTopicOrder0=426 [External Topic Properties\ECYRIX_BIT_28] Count=1 ETPCommand0=2 -ETPTopicOrder0=499 +ETPTopicOrder0=427 [External Topic Properties\ECYRIX_BIT_29] Count=1 ETPCommand0=2 -ETPTopicOrder0=500 +ETPTopicOrder0=428 [External Topic Properties\ECYRIX_BIT_30] Count=1 ETPCommand0=2 -ETPTopicOrder0=501 +ETPTopicOrder0=429 [External Topic Properties\ECYRIX_BIT_31] Count=1 ETPCommand0=2 -ETPTopicOrder0=502 +ETPTopicOrder0=430 [External Topic Properties\ECYRIX_CX8] Count=1 ETPCommand0=2 -ETPTopicOrder0=503 +ETPTopicOrder0=431 [External Topic Properties\ECYRIX_DE] Count=1 ETPCommand0=2 -ETPTopicOrder0=504 +ETPTopicOrder0=432 [External Topic Properties\ECYRIX_EMMX] Count=1 ETPCommand0=2 -ETPTopicOrder0=505 +ETPTopicOrder0=433 [External Topic Properties\ECYRIX_FCMOV] Count=1 ETPCommand0=2 -ETPTopicOrder0=506 +ETPTopicOrder0=434 [External Topic Properties\ECYRIX_FPU] Count=1 ETPCommand0=2 -ETPTopicOrder0=507 +ETPTopicOrder0=435 [External Topic Properties\ECYRIX_ICMOV] Count=1 ETPCommand0=2 -ETPTopicOrder0=508 +ETPTopicOrder0=436 [External Topic Properties\ECYRIX_MCA] Count=1 ETPCommand0=2 -ETPTopicOrder0=509 +ETPTopicOrder0=437 [External Topic Properties\ECYRIX_MCE] Count=1 ETPCommand0=2 -ETPTopicOrder0=510 +ETPTopicOrder0=438 [External Topic Properties\ECYRIX_MMX] Count=1 ETPCommand0=2 -ETPTopicOrder0=511 +ETPTopicOrder0=439 [External Topic Properties\ECYRIX_MSR] Count=1 ETPCommand0=2 -ETPTopicOrder0=512 +ETPTopicOrder0=440 [External Topic Properties\ECYRIX_MTRR] Count=1 ETPCommand0=2 -ETPTopicOrder0=513 +ETPTopicOrder0=441 [External Topic Properties\ECYRIX_PAE] Count=1 ETPCommand0=2 -ETPTopicOrder0=514 +ETPTopicOrder0=442 [External Topic Properties\ECYRIX_PGE] Count=1 ETPCommand0=2 -ETPTopicOrder0=515 +ETPTopicOrder0=443 [External Topic Properties\ECYRIX_PSE] Count=1 ETPCommand0=2 -ETPTopicOrder0=516 +ETPTopicOrder0=444 [External Topic Properties\ECYRIX_SEP] Count=1 ETPCommand0=2 -ETPTopicOrder0=517 +ETPTopicOrder0=445 [External Topic Properties\ECYRIX_TSC] Count=1 ETPCommand0=2 -ETPTopicOrder0=518 +ETPTopicOrder0=446 [External Topic Properties\ECYRIX_VME] Count=1 ETPCommand0=2 -ETPTopicOrder0=519 +ETPTopicOrder0=447 + +[External Topic Properties\EDaylightSavingsNotSupported] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=5 [External Topic Properties\EDI] Count=1 @@ -74608,6 +79093,16 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=599 +[External Topic Properties\EINTEL_AES] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=448 + +[External Topic Properties\EINTEL_AVX] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=449 + [External Topic Properties\EINTEL_BIT_1] Count=1 ETPCommand0=2 @@ -74616,7 +79111,7 @@ ETPTopicOrder0=600 [External Topic Properties\EINTEL_BIT_11] Count=1 ETPCommand0=2 -ETPTopicOrder0=601 +ETPTopicOrder0=450 [External Topic Properties\EINTEL_BIT_12] Count=1 @@ -74631,7 +79126,7 @@ ETPTopicOrder0=603 [External Topic Properties\EINTEL_BIT_16] Count=1 ETPCommand0=2 -ETPTopicOrder0=604 +ETPTopicOrder0=451 [External Topic Properties\EINTEL_BIT_17] Count=1 @@ -74701,17 +79196,17 @@ ETPTopicOrder0=617 [External Topic Properties\EINTEL_BIT_29] Count=1 ETPCommand0=2 -ETPTopicOrder0=618 +ETPTopicOrder0=452 [External Topic Properties\EINTEL_BIT_30] Count=1 ETPCommand0=2 -ETPTopicOrder0=619 +ETPTopicOrder0=453 [External Topic Properties\EINTEL_BIT_31] Count=1 ETPCommand0=2 -ETPTopicOrder0=620 +ETPTopicOrder0=454 [External Topic Properties\EINTEL_BIT_6] Count=1 @@ -74726,292 +79221,377 @@ ETPTopicOrder0=622 [External Topic Properties\EINTEL_CNXTID] Count=1 ETPCommand0=2 -ETPTopicOrder0=623 +ETPTopicOrder0=455 + +[External Topic Properties\EINTEL_CX16] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=456 + +[External Topic Properties\EINTEL_DCA] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=457 [External Topic Properties\EINTEL_DSCPL] Count=1 ETPCommand0=2 -ETPTopicOrder0=624 +ETPTopicOrder0=458 + +[External Topic Properties\EINTEL_DTES64] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=459 [External Topic Properties\EINTEL_EST] Count=1 ETPCommand0=2 -ETPTopicOrder0=625 +ETPTopicOrder0=460 + +[External Topic Properties\EINTEL_FMA] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=461 [External Topic Properties\EINTEL_MONITOR] Count=1 ETPCommand0=2 -ETPTopicOrder0=626 +ETPTopicOrder0=462 + +[External Topic Properties\EINTEL_MOVBE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=463 + +[External Topic Properties\EINTEL_OSXSAVE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=464 + +[External Topic Properties\EINTEL_PCID] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=465 + +[External Topic Properties\EINTEL_PCLMULQDQ] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=466 + +[External Topic Properties\EINTEL_PDCM] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=467 + +[External Topic Properties\EINTEL_POPCNT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=468 + +[External Topic Properties\EINTEL_SMX] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=469 [External Topic Properties\EINTEL_SSE3] Count=1 ETPCommand0=2 -ETPTopicOrder0=627 +ETPTopicOrder0=470 + +[External Topic Properties\EINTEL_SSE4_1] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=471 + +[External Topic Properties\EINTEL_SSE4_2] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=472 [External Topic Properties\EINTEL_SSSE3] Count=1 ETPCommand0=2 -ETPTopicOrder0=628 +ETPTopicOrder0=473 [External Topic Properties\EINTEL_TM2] Count=1 ETPCommand0=2 -ETPTopicOrder0=629 +ETPTopicOrder0=474 + +[External Topic Properties\EINTEL_TSC_DL] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=475 [External Topic Properties\EINTEL_VMX] Count=1 ETPCommand0=2 -ETPTopicOrder0=630 +ETPTopicOrder0=476 + +[External Topic Properties\EINTEL_X2APIC] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=477 + +[External Topic Properties\EINTEL_XSAVE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=478 [External Topic Properties\EINTEL_XTPR] Count=1 ETPCommand0=2 -ETPTopicOrder0=631 +ETPTopicOrder0=479 + +[External Topic Properties\EINTEL64_1GBYTE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=480 [External Topic Properties\EINTEL64_2_BIT_1] Count=1 ETPCommand0=2 -ETPTopicOrder0=632 +ETPTopicOrder0=481 [External Topic Properties\EINTEL64_2_BIT_10] Count=1 ETPCommand0=2 -ETPTopicOrder0=633 +ETPTopicOrder0=482 [External Topic Properties\EINTEL64_2_BIT_11] Count=1 ETPCommand0=2 -ETPTopicOrder0=634 +ETPTopicOrder0=483 [External Topic Properties\EINTEL64_2_BIT_12] Count=1 ETPCommand0=2 -ETPTopicOrder0=635 +ETPTopicOrder0=484 [External Topic Properties\EINTEL64_2_BIT_13] Count=1 ETPCommand0=2 -ETPTopicOrder0=636 +ETPTopicOrder0=485 [External Topic Properties\EINTEL64_2_BIT_14] Count=1 ETPCommand0=2 -ETPTopicOrder0=637 +ETPTopicOrder0=486 [External Topic Properties\EINTEL64_2_BIT_15] Count=1 ETPCommand0=2 -ETPTopicOrder0=638 +ETPTopicOrder0=487 [External Topic Properties\EINTEL64_2_BIT_16] Count=1 ETPCommand0=2 -ETPTopicOrder0=639 +ETPTopicOrder0=488 [External Topic Properties\EINTEL64_2_BIT_17] Count=1 ETPCommand0=2 -ETPTopicOrder0=640 +ETPTopicOrder0=489 [External Topic Properties\EINTEL64_2_BIT_18] Count=1 ETPCommand0=2 -ETPTopicOrder0=641 +ETPTopicOrder0=490 [External Topic Properties\EINTEL64_2_BIT_19] Count=1 ETPCommand0=2 -ETPTopicOrder0=642 +ETPTopicOrder0=491 [External Topic Properties\EINTEL64_2_BIT_2] Count=1 ETPCommand0=2 -ETPTopicOrder0=643 +ETPTopicOrder0=492 [External Topic Properties\EINTEL64_2_BIT_20] Count=1 ETPCommand0=2 -ETPTopicOrder0=644 +ETPTopicOrder0=493 [External Topic Properties\EINTEL64_2_BIT_21] Count=1 ETPCommand0=2 -ETPTopicOrder0=645 +ETPTopicOrder0=494 [External Topic Properties\EINTEL64_2_BIT_22] Count=1 ETPCommand0=2 -ETPTopicOrder0=646 +ETPTopicOrder0=495 [External Topic Properties\EINTEL64_2_BIT_23] Count=1 ETPCommand0=2 -ETPTopicOrder0=647 +ETPTopicOrder0=496 [External Topic Properties\EINTEL64_2_BIT_24] Count=1 ETPCommand0=2 -ETPTopicOrder0=648 +ETPTopicOrder0=497 [External Topic Properties\EINTEL64_2_BIT_25] Count=1 ETPCommand0=2 -ETPTopicOrder0=649 +ETPTopicOrder0=498 [External Topic Properties\EINTEL64_2_BIT_26] Count=1 ETPCommand0=2 -ETPTopicOrder0=650 +ETPTopicOrder0=499 [External Topic Properties\EINTEL64_2_BIT_27] Count=1 ETPCommand0=2 -ETPTopicOrder0=651 +ETPTopicOrder0=500 [External Topic Properties\EINTEL64_2_BIT_28] Count=1 ETPCommand0=2 -ETPTopicOrder0=652 +ETPTopicOrder0=501 [External Topic Properties\EINTEL64_2_BIT_29] Count=1 ETPCommand0=2 -ETPTopicOrder0=653 +ETPTopicOrder0=502 [External Topic Properties\EINTEL64_2_BIT_3] Count=1 ETPCommand0=2 -ETPTopicOrder0=654 +ETPTopicOrder0=503 [External Topic Properties\EINTEL64_2_BIT_30] Count=1 ETPCommand0=2 -ETPTopicOrder0=655 +ETPTopicOrder0=504 [External Topic Properties\EINTEL64_2_BIT_31] Count=1 ETPCommand0=2 -ETPTopicOrder0=656 +ETPTopicOrder0=505 [External Topic Properties\EINTEL64_2_BIT_4] Count=1 ETPCommand0=2 -ETPTopicOrder0=657 +ETPTopicOrder0=506 [External Topic Properties\EINTEL64_2_BIT_5] Count=1 ETPCommand0=2 -ETPTopicOrder0=658 +ETPTopicOrder0=507 [External Topic Properties\EINTEL64_2_BIT_6] Count=1 ETPCommand0=2 -ETPTopicOrder0=659 +ETPTopicOrder0=508 [External Topic Properties\EINTEL64_2_BIT_7] Count=1 ETPCommand0=2 -ETPTopicOrder0=660 +ETPTopicOrder0=509 [External Topic Properties\EINTEL64_2_BIT_8] Count=1 ETPCommand0=2 -ETPTopicOrder0=661 +ETPTopicOrder0=510 [External Topic Properties\EINTEL64_2_BIT_9] Count=1 ETPCommand0=2 -ETPTopicOrder0=662 +ETPTopicOrder0=511 [External Topic Properties\EINTEL64_2_LAHF] Count=1 ETPCommand0=2 -ETPTopicOrder0=663 +ETPTopicOrder0=512 [External Topic Properties\EINTEL64_BIT_0] Count=1 ETPCommand0=2 -ETPTopicOrder0=664 +ETPTopicOrder0=513 [External Topic Properties\EINTEL64_BIT_1] Count=1 ETPCommand0=2 -ETPTopicOrder0=665 +ETPTopicOrder0=514 [External Topic Properties\EINTEL64_BIT_10] Count=1 ETPCommand0=2 -ETPTopicOrder0=666 +ETPTopicOrder0=515 [External Topic Properties\EINTEL64_BIT_12] Count=1 ETPCommand0=2 -ETPTopicOrder0=667 +ETPTopicOrder0=516 [External Topic Properties\EINTEL64_BIT_13] Count=1 ETPCommand0=2 -ETPTopicOrder0=668 +ETPTopicOrder0=517 [External Topic Properties\EINTEL64_BIT_14] Count=1 ETPCommand0=2 -ETPTopicOrder0=669 +ETPTopicOrder0=518 [External Topic Properties\EINTEL64_BIT_15] Count=1 ETPCommand0=2 -ETPTopicOrder0=670 +ETPTopicOrder0=519 [External Topic Properties\EINTEL64_BIT_16] Count=1 ETPCommand0=2 -ETPTopicOrder0=671 +ETPTopicOrder0=520 [External Topic Properties\EINTEL64_BIT_17] Count=1 ETPCommand0=2 -ETPTopicOrder0=672 +ETPTopicOrder0=521 [External Topic Properties\EINTEL64_BIT_18] Count=1 ETPCommand0=2 -ETPTopicOrder0=673 +ETPTopicOrder0=522 [External Topic Properties\EINTEL64_BIT_19] Count=1 ETPCommand0=2 -ETPTopicOrder0=674 +ETPTopicOrder0=523 [External Topic Properties\EINTEL64_BIT_2] Count=1 ETPCommand0=2 -ETPTopicOrder0=675 +ETPTopicOrder0=524 [External Topic Properties\EINTEL64_BIT_21] Count=1 ETPCommand0=2 -ETPTopicOrder0=676 +ETPTopicOrder0=525 [External Topic Properties\EINTEL64_BIT_22] Count=1 ETPCommand0=2 -ETPTopicOrder0=677 +ETPTopicOrder0=526 [External Topic Properties\EINTEL64_BIT_23] Count=1 ETPCommand0=2 -ETPTopicOrder0=678 +ETPTopicOrder0=527 [External Topic Properties\EINTEL64_BIT_24] Count=1 ETPCommand0=2 -ETPTopicOrder0=679 +ETPTopicOrder0=528 [External Topic Properties\EINTEL64_BIT_25] Count=1 ETPCommand0=2 -ETPTopicOrder0=680 +ETPTopicOrder0=529 [External Topic Properties\EINTEL64_BIT_26] Count=1 @@ -75026,52 +79606,52 @@ ETPTopicOrder0=682 [External Topic Properties\EINTEL64_BIT_28] Count=1 ETPCommand0=2 -ETPTopicOrder0=683 +ETPTopicOrder0=530 [External Topic Properties\EINTEL64_BIT_3] Count=1 ETPCommand0=2 -ETPTopicOrder0=684 +ETPTopicOrder0=531 [External Topic Properties\EINTEL64_BIT_30] Count=1 ETPCommand0=2 -ETPTopicOrder0=685 +ETPTopicOrder0=532 [External Topic Properties\EINTEL64_BIT_31] Count=1 ETPCommand0=2 -ETPTopicOrder0=686 +ETPTopicOrder0=533 [External Topic Properties\EINTEL64_BIT_4] Count=1 ETPCommand0=2 -ETPTopicOrder0=687 +ETPTopicOrder0=534 [External Topic Properties\EINTEL64_BIT_5] Count=1 ETPCommand0=2 -ETPTopicOrder0=688 +ETPTopicOrder0=535 [External Topic Properties\EINTEL64_BIT_6] Count=1 ETPCommand0=2 -ETPTopicOrder0=689 +ETPTopicOrder0=536 [External Topic Properties\EINTEL64_BIT_7] Count=1 ETPCommand0=2 -ETPTopicOrder0=690 +ETPTopicOrder0=537 [External Topic Properties\EINTEL64_BIT_8] Count=1 ETPCommand0=2 -ETPTopicOrder0=691 +ETPTopicOrder0=538 [External Topic Properties\EINTEL64_BIT_9] Count=1 ETPCommand0=2 -ETPTopicOrder0=692 +ETPTopicOrder0=539 [External Topic Properties\EINTEL64_EDB] Count=1 @@ -75081,82 +79661,133 @@ ETPTopicOrder0=693 [External Topic Properties\EINTEL64_EM64T] Count=1 ETPCommand0=2 -ETPTopicOrder0=694 +ETPTopicOrder0=540 + +[External Topic Properties\EINTEL64_RDTSCP] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=541 [External Topic Properties\EINTEL64_SYS] Count=1 ETPCommand0=2 -ETPTopicOrder0=695 +ETPTopicOrder0=542 + +[External Topic Properties\EINTEL64_XD] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=543 [External Topic Properties\EInvalidParam] Count=1 ETPCommand0=2 -ETPTopicOrder0=4 +ETPTopicOrder0=6 [External Topic Properties\EJclAddr64Exception] Count=1 ETPCommand0=2 -ETPTopicOrder0=5 +ETPTopicOrder0=7 + +[External Topic Properties\EJclAnsiStringError] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=8 + +[External Topic Properties\EJclAnsiStringListError] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=9 + +[External Topic Properties\EJclAssignError] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.exceptions +ETPTopicOrder0=0 [External Topic Properties\EJclBorRADException] Count=1 ETPCommand0=2 -ETPTopicOrder0=6 +ETPTopicOrder0=10 + +[External Topic Properties\EJclCharsetError] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=11 [External Topic Properties\EJclCliInstructionError] Count=1 ETPCommand0=2 -ETPTopicOrder0=7 +ETPTopicOrder0=12 [External Topic Properties\EJclCliInstructionStreamInvalid] Count=1 ETPCommand0=2 -ETPTopicOrder0=8 +ETPTopicOrder0=13 [External Topic Properties\EJclClrException] Count=1 ETPCommand0=2 -ETPTopicOrder0=9 +ETPTopicOrder0=14 [External Topic Properties\EJclCommandLineToolError] Count=1 ETPCommand0=2 -ETPTopicOrder0=10 +ETPTopicOrder0=15 + +[External Topic Properties\EJclCompilerUtilsException] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=16 [External Topic Properties\EJclCompressionError] Count=1 ETPCommand0=2 -ETPTopicOrder0=11 +ETPTopicOrder0=17 [External Topic Properties\EJclConcurrentModificationError] Count=1 ETPCommand0=2 ETPTopicOrder0=12 +[External Topic Properties\EJclContainerError] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.exceptions +ETPTopicOrder0=1 + [External Topic Properties\EJclConversionError] Count=1 ETPCommand0=2 -ETPTopicOrder0=13 +ETPTopicOrder0=18 [External Topic Properties\EJclCounterError] Count=1 ETPCommand0=2 -ETPTopicOrder0=14 +ETPTopicOrder0=19 [External Topic Properties\EJclCriticalSectionError] Count=1 ETPCommand0=2 -ETPTopicOrder0=15 +ETPTopicOrder0=20 [External Topic Properties\EJclDateTimeError] Count=1 ETPCommand0=2 -ETPTopicOrder0=16 +ETPTopicOrder0=21 [External Topic Properties\EJclDispatcherObjectError] Count=1 ETPCommand0=2 -ETPTopicOrder0=17 +ETPTopicOrder0=22 + +[External Topic Properties\EJclDuplicateElementError] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.exceptions +ETPTopicOrder0=2 [External Topic Properties\EJclEDIError] Count=1 @@ -75166,57 +79797,78 @@ ETPTopicOrder0=10 [External Topic Properties\EJclEventError] Count=1 ETPCommand0=2 -ETPTopicOrder0=18 +ETPTopicOrder0=23 [External Topic Properties\EJclFileMappingError] Count=1 ETPCommand0=2 -ETPTopicOrder0=19 +ETPTopicOrder0=24 [External Topic Properties\EJclFileMappingViewError] Count=1 ETPCommand0=2 -ETPTopicOrder0=20 +ETPTopicOrder0=25 [External Topic Properties\EJclFileSummaryError] Count=1 ETPCommand0=2 -ETPTopicOrder0=21 +ETPTopicOrder0=26 [External Topic Properties\EJclFileUtilsError] Count=1 ETPCommand0=2 -ETPTopicOrder0=22 +ETPTopicOrder0=27 [External Topic Properties\EJclFileVersionInfoError] Count=1 ETPCommand0=2 -ETPTopicOrder0=23 +ETPTopicOrder0=28 [External Topic Properties\EJclGraphicsError] Count=1 ETPCommand0=2 -ETPTopicOrder0=24 +ETPTopicOrder0=29 -[External Topic Properties\EJclIllegalArgumentError] +[External Topic Properties\EJclHelpUtilsException] Count=1 ETPCommand0=2 -ETPTopicOrder0=25 +ETPTopicOrder0=30 + +[External Topic Properties\EJclIllegalArgumentError] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.exceptions +ETPTopicOrder0=3 + +[External Topic Properties\EJclIllegalQueueCapacityError] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.exceptions +ETPTopicOrder0=4 [External Topic Properties\EJclIllegalStateError] Count=1 ETPCommand0=2 ETPTopicOrder0=26 +[External Topic Properties\EJclIllegalStateOperationError] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.exceptions +ETPTopicOrder0=5 + [External Topic Properties\EJclMathError] Count=1 ETPCommand0=2 -ETPTopicOrder0=27 +ETPTopicOrder0=31 [External Topic Properties\EJclMciError] Count=1 ETPCommand0=2 -ETPTopicOrder0=28 +ETPTopicOrder0=32 [External Topic Properties\EJclMciError.Create@MCIERROR@string] Count=1 @@ -75256,37 +79908,37 @@ ETPTopicOrder0=6 [External Topic Properties\EJclMetadataError] Count=1 ETPCommand0=2 -ETPTopicOrder0=29 +ETPTopicOrder0=33 [External Topic Properties\EJclMeteredSectionError] Count=1 ETPCommand0=2 -ETPTopicOrder0=30 +ETPTopicOrder0=34 [External Topic Properties\EJclMIDIError] Count=1 ETPCommand0=2 -ETPTopicOrder0=31 +ETPTopicOrder0=35 [External Topic Properties\EJclMixerError] Count=1 ETPCommand0=2 -ETPTopicOrder0=32 +ETPTopicOrder0=36 [External Topic Properties\EJclMmTimerError] Count=1 ETPCommand0=2 -ETPTopicOrder0=33 +ETPTopicOrder0=37 [External Topic Properties\EJclMutexError] Count=1 ETPCommand0=2 -ETPTopicOrder0=34 +ETPTopicOrder0=38 [External Topic Properties\EJclNaNSignal] Count=1 ETPCommand0=2 -ETPTopicOrder0=35 +ETPTopicOrder0=39 [External Topic Properties\EJclNaNSignal.Create@TNaNTag@Boolean] Count=1 @@ -75303,55 +79955,116 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=2 +[External Topic Properties\EJclNoCollectionError] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.exceptions +ETPTopicOrder0=9 + +[External Topic Properties\EJclNoComparerError] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.exceptions +ETPTopicOrder0=10 + +[External Topic Properties\EJclNoEqualityComparerError] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.exceptions +ETPTopicOrder0=11 + +[External Topic Properties\EJclNoHashConverterError] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.exceptions +ETPTopicOrder0=12 + [External Topic Properties\EJclNoSuchElementError] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=36 +ETPCommand1=3 +ETPGroup1=Containers.exceptions +ETPTopicOrder0=6 [External Topic Properties\EJclNtfsError] Count=1 ETPCommand0=2 -ETPTopicOrder0=37 +ETPTopicOrder0=40 -[External Topic Properties\EJclOperationNotSupportedError] +[External Topic Properties\EJclOpenDialogHookError] Count=1 ETPCommand0=2 -ETPTopicOrder0=38 +ETPTopicOrder0=41 + +[External Topic Properties\EJclOperationNotSupportedError] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.exceptions +ETPTopicOrder0=7 [External Topic Properties\EJclOutOfBoundsError] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=39 +ETPCommand1=3 +ETPGroup1=Containers.exceptions +ETPTopicOrder0=8 [External Topic Properties\EJclPathError] Count=1 ETPCommand0=2 -ETPTopicOrder0=40 +ETPTopicOrder0=42 + +[External Topic Properties\EJclPeImageError] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 [External Topic Properties\EJclPrinterError] Count=1 ETPCommand0=2 -ETPTopicOrder0=41 +ETPTopicOrder0=43 + +[External Topic Properties\EJclReadOnlyError] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.exceptions +ETPTopicOrder0=13 [External Topic Properties\EJclRTTIError] Count=1 ETPCommand0=2 -ETPTopicOrder0=42 +ETPTopicOrder0=44 + +[External Topic Properties\EJclScheduleError] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=45 [External Topic Properties\EJclSecurityError] Count=1 ETPCommand0=2 -ETPTopicOrder0=43 +ETPTopicOrder0=46 [External Topic Properties\EJclSemaphoreError] Count=1 ETPCommand0=2 -ETPTopicOrder0=44 +ETPTopicOrder0=47 + +[External Topic Properties\EJclSimpleXMLError] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=48 [External Topic Properties\EJclStatisticsError] Count=1 ETPCommand0=2 -ETPTopicOrder0=45 +ETPTopicOrder0=49 [External Topic Properties\EJclStreamError] Count=2 @@ -75360,40 +80073,55 @@ ETPCommand1=3 ETPGroup1=Streams ETPTopicOrder0=0 +[External Topic Properties\EJclStringConversionError] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=50 + [External Topic Properties\EJclStringError] Count=1 ETPCommand0=2 -ETPTopicOrder0=11 +ETPTopicOrder0=51 [External Topic Properties\EJclStructStorageError] Count=1 ETPCommand0=2 -ETPTopicOrder0=47 +ETPTopicOrder0=52 [External Topic Properties\EJclTempFileStreamError] Count=1 ETPCommand0=2 -ETPTopicOrder0=48 +ETPTopicOrder0=53 + +[External Topic Properties\EJclUnexpectedEOSequenceError] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=54 [External Topic Properties\EJclUnicodeError] Count=1 ETPCommand0=2 -ETPTopicOrder0=49 +ETPTopicOrder0=55 [External Topic Properties\EJclVMTError] Count=1 ETPCommand0=2 -ETPTopicOrder0=50 +ETPTopicOrder0=56 [External Topic Properties\EJclWaitableTimerError] Count=1 ETPCommand0=2 -ETPTopicOrder0=51 +ETPTopicOrder0=57 + +[External Topic Properties\EJclWideStringError] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=58 [External Topic Properties\EJclWin32HandleObjectError] Count=1 ETPCommand0=2 -ETPTopicOrder0=52 +ETPTopicOrder0=59 [External Topic Properties\ElementSpecId_Reserved] Count=1 @@ -75403,12 +80131,12 @@ ETPTopicOrder0=696 [External Topic Properties\EMMS] Count=1 ETPCommand0=2 -ETPTopicOrder0=252 +ETPTopicOrder0=339 [External Topic Properties\EmptyDelphiSet] Count=1 ETPCommand0=2 -ETPTopicOrder0=697 +ETPTopicOrder0=544 [External Topic Properties\ENCRYPTED_PWLEN] Count=1 @@ -75418,37 +80146,57 @@ ETPTopicOrder0=698 [External Topic Properties\EnsureRange@Double@Double@Double] Count=1 ETPCommand0=2 -ETPTopicOrder0=255 +ETPTopicOrder0=342 [External Topic Properties\EnsureRange@Int64@Int64@Int64] Count=1 ETPCommand0=2 -ETPTopicOrder0=254 +ETPTopicOrder0=341 [External Topic Properties\EnsureRange@Integer@Integer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=253 +ETPTopicOrder0=340 + +[External Topic Properties\EntityDecode@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=343 + +[External Topic Properties\EntityEncode@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=344 [External Topic Properties\EnumCalendarInfoExA@CALINFO_ENUMPROCEXA@LCID@CALID@CALTYPE] Count=1 ETPCommand0=2 ETPTopicOrder0=256 +[External Topic Properties\EnumFiles@string@TFileInfoHandlerEx@Integer@Integer@PBoolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=345 + +[External Topic Properties\EnumTimeZones@TJclTimeZoneCallBackFunc] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=346 + [External Topic Properties\EnvironmentVarAlternateNtSymbolPath] Count=1 ETPCommand0=2 -ETPTopicOrder0=699 +ETPTopicOrder0=545 [External Topic Properties\EnvironmentVarNtSymbolPath] Count=1 ETPCommand0=2 -ETPTopicOrder0=700 +ETPTopicOrder0=546 [External Topic Properties\EPCREError] Count=1 ETPCommand0=2 -ETPTopicOrder0=53 +ETPTopicOrder0=60 [External Topic Properties\EPCREError.CreateRes@PResStringRec@Integer] Count=1 @@ -75468,32 +80216,39 @@ ETPTopicOrder0=2 [External Topic Properties\EpsDouble] Count=1 ETPCommand0=2 -ETPTopicOrder0=18 +ETPTopicOrder0=21 [External Topic Properties\EpsExtended] Count=1 ETPCommand0=2 -ETPTopicOrder0=19 +ETPTopicOrder0=22 [External Topic Properties\EpsilonSqr] Count=1 ETPCommand0=2 -ETPTopicOrder0=701 +ETPTopicOrder0=547 [External Topic Properties\EpsSingle] Count=1 ETPCommand0=2 -ETPTopicOrder0=20 +ETPTopicOrder0=23 [External Topic Properties\Equal@TPolarComplex@TPolarComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=257 +ETPTopicOrder0=348 [External Topic Properties\Equal@TRectComplex@TRectComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=258 +ETPTopicOrder0=347 + +[External Topic Properties\EqualityCompareEqObjects@TRefUnique@TRefUnique] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=349 [External Topic Properties\ERROR_NO_MORE_FILES] Count=1 @@ -75503,347 +80258,352 @@ ETPTopicOrder0=702 [External Topic Properties\ESharedMemError] Count=1 ETPCommand0=2 -ETPTopicOrder0=54 +ETPTopicOrder0=61 [External Topic Properties\ETemperatureConversionError] Count=1 ETPCommand0=2 -ETPTopicOrder0=55 +ETPTopicOrder0=62 [External Topic Properties\ETRANSMETA_BIT_10] Count=1 ETPCommand0=2 -ETPTopicOrder0=703 +ETPTopicOrder0=548 [External Topic Properties\ETRANSMETA_BIT_11] Count=1 ETPCommand0=2 -ETPTopicOrder0=704 +ETPTopicOrder0=549 [External Topic Properties\ETRANSMETA_BIT_12] Count=1 ETPCommand0=2 -ETPTopicOrder0=705 +ETPTopicOrder0=550 [External Topic Properties\ETRANSMETA_BIT_13] Count=1 ETPCommand0=2 -ETPTopicOrder0=706 +ETPTopicOrder0=551 [External Topic Properties\ETRANSMETA_BIT_14] Count=1 ETPCommand0=2 -ETPTopicOrder0=707 +ETPTopicOrder0=552 [External Topic Properties\ETRANSMETA_BIT_17] Count=1 ETPCommand0=2 -ETPTopicOrder0=708 +ETPTopicOrder0=553 [External Topic Properties\ETRANSMETA_BIT_18] Count=1 ETPCommand0=2 -ETPTopicOrder0=709 +ETPTopicOrder0=554 [External Topic Properties\ETRANSMETA_BIT_19] Count=1 ETPCommand0=2 -ETPTopicOrder0=710 +ETPTopicOrder0=555 [External Topic Properties\ETRANSMETA_BIT_20] Count=1 ETPCommand0=2 -ETPTopicOrder0=711 +ETPTopicOrder0=556 [External Topic Properties\ETRANSMETA_BIT_21] Count=1 ETPCommand0=2 -ETPTopicOrder0=712 +ETPTopicOrder0=557 [External Topic Properties\ETRANSMETA_BIT_22] Count=1 ETPCommand0=2 -ETPTopicOrder0=713 +ETPTopicOrder0=558 [External Topic Properties\ETRANSMETA_BIT_24] Count=1 ETPCommand0=2 -ETPTopicOrder0=714 +ETPTopicOrder0=559 [External Topic Properties\ETRANSMETA_BIT_25] Count=1 ETPCommand0=2 -ETPTopicOrder0=715 +ETPTopicOrder0=560 [External Topic Properties\ETRANSMETA_BIT_26] Count=1 ETPCommand0=2 -ETPTopicOrder0=716 +ETPTopicOrder0=561 [External Topic Properties\ETRANSMETA_BIT_27] Count=1 ETPCommand0=2 -ETPTopicOrder0=717 +ETPTopicOrder0=562 [External Topic Properties\ETRANSMETA_BIT_28] Count=1 ETPCommand0=2 -ETPTopicOrder0=718 +ETPTopicOrder0=563 [External Topic Properties\ETRANSMETA_BIT_29] Count=1 ETPCommand0=2 -ETPTopicOrder0=719 +ETPTopicOrder0=564 [External Topic Properties\ETRANSMETA_BIT_30] Count=1 ETPCommand0=2 -ETPTopicOrder0=720 +ETPTopicOrder0=565 [External Topic Properties\ETRANSMETA_BIT_31] Count=1 ETPCommand0=2 -ETPTopicOrder0=721 +ETPTopicOrder0=566 [External Topic Properties\ETRANSMETA_BIT_6] Count=1 ETPCommand0=2 -ETPTopicOrder0=722 +ETPTopicOrder0=567 [External Topic Properties\ETRANSMETA_BIT_7] Count=1 ETPCommand0=2 -ETPTopicOrder0=723 +ETPTopicOrder0=568 [External Topic Properties\ETRANSMETA_BIT_9] Count=1 ETPCommand0=2 -ETPTopicOrder0=724 +ETPTopicOrder0=569 [External Topic Properties\ETRANSMETA_CMOV] Count=1 ETPCommand0=2 -ETPTopicOrder0=725 +ETPTopicOrder0=570 [External Topic Properties\ETRANSMETA_CX8] Count=1 ETPCommand0=2 -ETPTopicOrder0=726 +ETPTopicOrder0=571 [External Topic Properties\ETRANSMETA_DE] Count=1 ETPCommand0=2 -ETPTopicOrder0=727 +ETPTopicOrder0=572 [External Topic Properties\ETRANSMETA_FCMOV] Count=1 ETPCommand0=2 -ETPTopicOrder0=728 +ETPTopicOrder0=573 [External Topic Properties\ETRANSMETA_FPU] Count=1 ETPCommand0=2 -ETPTopicOrder0=729 +ETPTopicOrder0=574 [External Topic Properties\ETRANSMETA_MMX] Count=1 ETPCommand0=2 -ETPTopicOrder0=730 +ETPTopicOrder0=575 [External Topic Properties\ETRANSMETA_MSR] Count=1 ETPCommand0=2 -ETPTopicOrder0=731 +ETPTopicOrder0=576 [External Topic Properties\ETRANSMETA_PSE] Count=1 ETPCommand0=2 -ETPTopicOrder0=732 +ETPTopicOrder0=577 [External Topic Properties\ETRANSMETA_TSC] Count=1 ETPCommand0=2 -ETPTopicOrder0=733 +ETPTopicOrder0=578 [External Topic Properties\ETRANSMETA_VME] Count=1 ETPCommand0=2 -ETPTopicOrder0=734 +ETPTopicOrder0=579 [External Topic Properties\EulerMascheroni] Count=1 ETPCommand0=2 -ETPTopicOrder0=735 +ETPTopicOrder0=580 [External Topic Properties\EUnitConversionError] Count=1 ETPCommand0=2 -ETPTopicOrder0=56 +ETPTopicOrder0=63 + +[External Topic Properties\EUsesListError] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=64 [External Topic Properties\EveryoneSCMDesiredAccess] Count=1 ETPCommand0=2 -ETPTopicOrder0=736 +ETPTopicOrder0=581 [External Topic Properties\EVIA_ACEE] Count=1 ETPCommand0=2 -ETPTopicOrder0=737 +ETPTopicOrder0=582 [External Topic Properties\EVIA_AIS] Count=1 ETPCommand0=2 -ETPTopicOrder0=738 +ETPTopicOrder0=583 [External Topic Properties\EVIA_AISE] Count=1 ETPCommand0=2 -ETPTopicOrder0=739 +ETPTopicOrder0=584 [External Topic Properties\EVIA_BIT_10] Count=1 ETPCommand0=2 -ETPTopicOrder0=740 +ETPTopicOrder0=585 [External Topic Properties\EVIA_BIT_11] Count=1 ETPCommand0=2 -ETPTopicOrder0=741 +ETPTopicOrder0=586 [External Topic Properties\EVIA_BIT_12] Count=1 ETPCommand0=2 -ETPTopicOrder0=742 +ETPTopicOrder0=587 [External Topic Properties\EVIA_BIT_13] Count=1 ETPCommand0=2 -ETPTopicOrder0=743 +ETPTopicOrder0=588 [External Topic Properties\EVIA_BIT_14] Count=1 ETPCommand0=2 -ETPTopicOrder0=744 +ETPTopicOrder0=589 [External Topic Properties\EVIA_BIT_15] Count=1 ETPCommand0=2 -ETPTopicOrder0=745 +ETPTopicOrder0=590 [External Topic Properties\EVIA_BIT_16] Count=1 ETPCommand0=2 -ETPTopicOrder0=746 +ETPTopicOrder0=591 [External Topic Properties\EVIA_BIT_17] Count=1 ETPCommand0=2 -ETPTopicOrder0=747 +ETPTopicOrder0=592 [External Topic Properties\EVIA_BIT_18] Count=1 ETPCommand0=2 -ETPTopicOrder0=748 +ETPTopicOrder0=593 [External Topic Properties\EVIA_BIT_19] Count=1 ETPCommand0=2 -ETPTopicOrder0=749 +ETPTopicOrder0=594 [External Topic Properties\EVIA_BIT_20] Count=1 ETPCommand0=2 -ETPTopicOrder0=750 +ETPTopicOrder0=595 [External Topic Properties\EVIA_BIT_21] Count=1 ETPCommand0=2 -ETPTopicOrder0=751 +ETPTopicOrder0=596 [External Topic Properties\EVIA_BIT_22] Count=1 ETPCommand0=2 -ETPTopicOrder0=752 +ETPTopicOrder0=597 [External Topic Properties\EVIA_BIT_23] Count=1 ETPCommand0=2 -ETPTopicOrder0=753 +ETPTopicOrder0=598 [External Topic Properties\EVIA_BIT_24] Count=1 ETPCommand0=2 -ETPTopicOrder0=754 +ETPTopicOrder0=599 [External Topic Properties\EVIA_BIT_25] Count=1 ETPCommand0=2 -ETPTopicOrder0=755 +ETPTopicOrder0=600 [External Topic Properties\EVIA_BIT_26] Count=1 ETPCommand0=2 -ETPTopicOrder0=756 +ETPTopicOrder0=601 [External Topic Properties\EVIA_BIT_27] Count=1 ETPCommand0=2 -ETPTopicOrder0=757 +ETPTopicOrder0=602 [External Topic Properties\EVIA_BIT_28] Count=1 ETPCommand0=2 -ETPTopicOrder0=758 +ETPTopicOrder0=603 [External Topic Properties\EVIA_BIT_29] Count=1 ETPCommand0=2 -ETPTopicOrder0=759 +ETPTopicOrder0=604 [External Topic Properties\EVIA_BIT_30] Count=1 ETPCommand0=2 -ETPTopicOrder0=760 +ETPTopicOrder0=605 [External Topic Properties\EVIA_BIT_31] Count=1 ETPCommand0=2 -ETPTopicOrder0=761 +ETPTopicOrder0=606 [External Topic Properties\EVIA_BIT_8] Count=1 ETPCommand0=2 -ETPTopicOrder0=762 +ETPTopicOrder0=607 [External Topic Properties\EVIA_BIT_9] Count=1 ETPCommand0=2 -ETPTopicOrder0=763 +ETPTopicOrder0=608 [External Topic Properties\EVIA_FEMMS] Count=1 ETPCommand0=2 -ETPTopicOrder0=764 +ETPTopicOrder0=609 [External Topic Properties\EVIA_MSR] Count=1 ETPCommand0=2 -ETPTopicOrder0=765 +ETPTopicOrder0=610 [External Topic Properties\EVIA_NO_ACE] Count=1 ETPCommand0=2 -ETPTopicOrder0=766 +ETPTopicOrder0=611 [External Topic Properties\EVIA_NO_RNG] Count=1 ETPCommand0=2 -ETPTopicOrder0=767 +ETPTopicOrder0=612 [External Topic Properties\EVIA_RNGE] Count=1 ETPCommand0=2 -ETPTopicOrder0=768 +ETPTopicOrder0=613 [External Topic Properties\EVLEN] Count=1 @@ -75853,27 +80613,58 @@ ETPTopicOrder0=769 [External Topic Properties\Execute@string@string@Boolean@PBoolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=259 +ETPTopicOrder0=351 [External Topic Properties\Execute@string@TTextHandler@Boolean@PBoolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=260 +ETPTopicOrder0=350 [External Topic Properties\Exp@TRectComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=261 +ETPTopicOrder0=352 + +[External Topic Properties\ExpandASCIIString@PAnsiChar@PWideChar@SizeInt] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=353 [External Topic Properties\ExprEval] Count=1 ETPCommand0=2 -ETPTopicOrder0=6 +ETPTopicOrder0=5 [External Topic Properties\Exsecans@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=262 +ETPTopicOrder0=354 + +[External Topic Properties\ExtendedSimpleCompare@Extended@Extended] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=355 + +[External Topic Properties\ExtendedSimpleEqualityCompare@Extended@Extended] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=356 + +[External Topic Properties\ExtendedSimpleHashConvert@Extended] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=357 + +[External Topic Properties\ExtendedSortProc] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=24 [External Topic Properties\ExtractCompositeElementFrom@TEDISEFDataObjectGroup@TEDISEFCompositeElement] Count=1 @@ -75923,127 +80714,137 @@ ETPTopicOrder0=271 [External Topic Properties\faCompressed] Count=1 ETPCommand0=2 -ETPTopicOrder0=770 +ETPTopicOrder0=614 [External Topic Properties\faEncrypted] Count=1 ETPCommand0=2 -ETPTopicOrder0=771 +ETPTopicOrder0=615 [External Topic Properties\FahrenheitAbsoluteZero] Count=1 ETPCommand0=2 -ETPTopicOrder0=772 +ETPTopicOrder0=616 [External Topic Properties\FahrenheitBoilingPoint] Count=1 ETPCommand0=2 -ETPTopicOrder0=773 +ETPTopicOrder0=617 [External Topic Properties\FahrenheitFreezingPoint] Count=1 ETPCommand0=2 -ETPTopicOrder0=774 +ETPTopicOrder0=618 [External Topic Properties\FahrenheitTo@TTemperatureType@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=272 +ETPTopicOrder0=358 [External Topic Properties\FahrenheitToRankine@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=273 +ETPTopicOrder0=359 [External Topic Properties\FahrenheitToReaumur@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=274 +ETPTopicOrder0=360 + +[External Topic Properties\FamilyCodePageFromCharsetName@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=361 + +[External Topic Properties\FamilyCodePageFromCodePage@Word] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=362 [External Topic Properties\faNormalFile] Count=1 ETPCommand0=2 -ETPTopicOrder0=775 +ETPTopicOrder0=619 [External Topic Properties\faNotContentIndexed] Count=1 ETPCommand0=2 -ETPTopicOrder0=776 +ETPTopicOrder0=620 [External Topic Properties\faOffline] Count=1 ETPCommand0=2 -ETPTopicOrder0=777 +ETPTopicOrder0=621 [External Topic Properties\faRejectedByDefault] Count=1 ETPCommand0=2 -ETPTopicOrder0=778 +ETPTopicOrder0=622 [External Topic Properties\faReparsePoint] Count=1 ETPCommand0=2 -ETPTopicOrder0=779 +ETPTopicOrder0=623 [External Topic Properties\faSparseFile] Count=1 ETPCommand0=2 -ETPTopicOrder0=780 +ETPTopicOrder0=624 [External Topic Properties\FastDegToGrad] Count=1 ETPCommand0=2 -ETPTopicOrder0=275 +ETPTopicOrder0=363 [External Topic Properties\FastDegToRad] Count=1 ETPCommand0=2 -ETPTopicOrder0=276 +ETPTopicOrder0=364 [External Topic Properties\FastGradToDeg] Count=1 ETPCommand0=2 -ETPTopicOrder0=277 +ETPTopicOrder0=365 [External Topic Properties\FastGradToRad] Count=1 ETPCommand0=2 -ETPTopicOrder0=278 +ETPTopicOrder0=366 [External Topic Properties\FastRadToDeg] Count=1 ETPCommand0=2 -ETPTopicOrder0=279 +ETPTopicOrder0=367 [External Topic Properties\FastRadToGrad] Count=1 ETPCommand0=2 -ETPTopicOrder0=280 +ETPTopicOrder0=368 [External Topic Properties\faSymLink] Count=1 ETPCommand0=2 -ETPTopicOrder0=781 +ETPTopicOrder0=625 [External Topic Properties\FATDatesEqual@TFileTime@TFileTime] Count=1 ETPCommand0=2 -ETPTopicOrder0=281 +ETPTopicOrder0=369 [External Topic Properties\faTemporary] Count=1 ETPCommand0=2 -ETPTopicOrder0=782 +ETPTopicOrder0=626 [External Topic Properties\faUnixSpecific] Count=1 ETPCommand0=2 -ETPTopicOrder0=783 +ETPTopicOrder0=627 [External Topic Properties\faWindowsSpecific] Count=1 ETPCommand0=2 -ETPTopicOrder0=784 +ETPTopicOrder0=628 [External Topic Properties\FGHSegmentId] Count=1 @@ -76058,7 +80859,7 @@ ETPTopicOrder0=786 [External Topic Properties\Fibonacci@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=282 +ETPTopicOrder0=370 [External Topic Properties\FILE_ACTION_ADDED] Count=1 @@ -76678,58 +81479,300 @@ ETPTopicOrder0=13 [External Topic Properties\FilesandIO] Count=1 ETPCommand0=2 -ETPTopicOrder0=7 +ETPTopicOrder0=6 [External Topic Properties\FileTimeToDosDateTime@TFileTime@Word@Word] Count=1 ETPCommand0=2 -ETPTopicOrder0=283 +ETPTopicOrder0=371 [External Topic Properties\FileTimeToLocalDateTime] Count=1 ETPCommand0=2 -ETPTopicOrder0=284 +ETPTopicOrder0=372 [External Topic Properties\FileTimeToSystemTime@TFileTime@TSystemTime] Count=1 ETPCommand0=2 -ETPTopicOrder0=285 +ETPTopicOrder0=373 [External Topic Properties\FileToString@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=286 +ETPTopicOrder0=374 + +[External Topic Properties\Fill@IJclAnsiStrIterator@Integer@AnsiString] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=380 + +[External Topic Properties\Fill@IJclCardinalIterator@Integer@Cardinal] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=379 + +[External Topic Properties\Fill@IJclDoubleIterator@Integer@Double] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=383 + +[External Topic Properties\Fill@IJclExtendedIterator@Integer@Extended] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=382 + +[External Topic Properties\Fill@IJclInt64Iterator@Integer@Int64] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=377 + +[External Topic Properties\Fill@IJclIntegerIterator@Integer@Integer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=376 [External Topic Properties\Fill@IJclIntfIterator@Integer@IInterface] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=287 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=381 [External Topic Properties\Fill@IJclIterator@Integer@TObject] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=288 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=378 + +[External Topic Properties\Fill@IJclPtrIterator@Integer@Pointer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=375 + +[External Topic Properties\Fill@IJclSingleIterator@Integer@Single] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=384 [External Topic Properties\Fill@IJclStrIterator@Integer@string] Count=1 ETPCommand0=2 ETPTopicOrder0=289 -[External Topic Properties\Find@IJclIntfIterator@Integer@IInterface@TIntfCompare] +[External Topic Properties\Fill@IJclUnicodeStrIterator@Integer@UnicodeString] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=386 + +[External Topic Properties\Fill@IJclWideStrIterator@Integer@WideString] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=385 + +[External Topic Properties\FinalizeOpenDialogFavorites] Count=1 ETPCommand0=2 -ETPTopicOrder0=290 +ETPTopicOrder0=387 -[External Topic Properties\Find@IJclIterator@Integer@TObject@TCompare] +[External Topic Properties\FinalizeOpenDialogHook] Count=1 ETPCommand0=2 -ETPTopicOrder0=291 +ETPTopicOrder0=388 + +[External Topic Properties\Find@IJclAnsiStrIterator@Integer@AnsiString@TAnsiStrCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=411 + +[External Topic Properties\Find@IJclAnsiStrIterator@Integer@AnsiString@TAnsiStrEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=409 + +[External Topic Properties\Find@IJclCardinalIterator@Integer@Cardinal@TCardinalCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=412 + +[External Topic Properties\Find@IJclCardinalIterator@Integer@Cardinal@TCardinalEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=400 + +[External Topic Properties\Find@IJclDoubleIterator@Integer@Double@TDoubleCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=404 + +[External Topic Properties\Find@IJclDoubleIterator@Integer@Double@TDoubleEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=403 + +[External Topic Properties\Find@IJclExtendedIterator@Integer@Extended@TExtendedCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=405 + +[External Topic Properties\Find@IJclExtendedIterator@Integer@Extended@TExtendedEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=399 + +[External Topic Properties\Find@IJclInt64Iterator@Integer@Int64@TInt64Compare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=402 + +[External Topic Properties\Find@IJclInt64Iterator@Integer@Int64@TInt64EqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=396 + +[External Topic Properties\Find@IJclIntegerIterator@Integer@Integer@TIntegerCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=397 + +[External Topic Properties\Find@IJclIntegerIterator@Integer@Integer@TIntegerEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=390 + +[External Topic Properties\Find@IJclIntfIterator@Integer@IInterface@TIntfCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=401 + +[External Topic Properties\Find@IJclIntfIterator@Integer@IInterface@TIntfEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=393 + +[External Topic Properties\Find@IJclIterator@Integer@TObject@TCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=410 + +[External Topic Properties\Find@IJclIterator@Integer@TObject@TEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=394 + +[External Topic Properties\Find@IJclPtrIterator@Integer@Pointer@TPtrCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=395 + +[External Topic Properties\Find@IJclPtrIterator@Integer@Pointer@TPtrEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=389 + +[External Topic Properties\Find@IJclSingleIterator@Integer@Single@TSingleCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=408 + +[External Topic Properties\Find@IJclSingleIterator@Integer@Single@TSingleEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=407 [External Topic Properties\Find@IJclStrIterator@Integer@string@TStrCompare] Count=1 ETPCommand0=2 ETPTopicOrder0=292 +[External Topic Properties\Find@IJclUnicodeStrIterator@Integer@UnicodeString@TUnicodeStrCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=406 + +[External Topic Properties\Find@IJclUnicodeStrIterator@Integer@UnicodeString@TUnicodeStrEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=392 + +[External Topic Properties\Find@IJclWideStrIterator@Integer@WideString@TWideStrCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=391 + +[External Topic Properties\Find@IJclWideStrIterator@Integer@WideString@TWideStrEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=398 + [External Topic Properties\FIND_NAME_BUFFER] Count=1 ETPCommand0=2 @@ -76743,37 +81786,63 @@ ETPTopicOrder0=15 [External Topic Properties\FirstDayOfWeek@Integer@Integer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=293 +ETPTopicOrder0=413 [External Topic Properties\FirstWeekDay@Integer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=295 +ETPTopicOrder0=415 [External Topic Properties\FirstWeekDay@Integer@Integer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=294 +ETPTopicOrder0=414 [External Topic Properties\FirstWeekendDay@Integer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=297 +ETPTopicOrder0=416 [External Topic Properties\FirstWeekendDay@Integer@Integer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=296 +ETPTopicOrder0=417 + +[External Topic Properties\Float] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=2 [External Topic Properties\FloatingPointClass@Extended] Count=1 ETPCommand0=2 -ETPTopicOrder0=299 +ETPTopicOrder0=419 [External Topic Properties\FloatingPointClass@Single] Count=1 ETPCommand0=2 -ETPTopicOrder0=298 +ETPTopicOrder0=418 + +[External Topic Properties\FloatSimpleCompare@Float@Float] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=420 + +[External Topic Properties\FloatSimpleEqualityCompare@Float@Float] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=421 + +[External Topic Properties\FloatSimpleHashConvert@Float] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=422 [External Topic Properties\FMTID_Audio] Count=1 @@ -76893,22 +81962,22 @@ ETPTopicOrder0=930 [External Topic Properties\FormatException] Count=1 ETPCommand0=2 -ETPTopicOrder0=57 +ETPTopicOrder0=65 [External Topic Properties\FormatVersionString@TVSFixedFileInfo@TFileVersionFormat] Count=1 ETPCommand0=2 -ETPTopicOrder0=302 +ETPTopicOrder0=424 [External Topic Properties\FormatVersionString@Word@Word] Count=1 ETPCommand0=2 -ETPTopicOrder0=300 +ETPTopicOrder0=423 [External Topic Properties\FormatVersionString@Word@Word@Word@Word] Count=1 ETPCommand0=2 -ETPTopicOrder0=301 +ETPTopicOrder0=425 [External Topic Properties\FPO_DATA] Count=1 @@ -76948,7 +82017,7 @@ ETPTopicOrder0=936 [External Topic Properties\FPU_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=937 +ETPTopicOrder0=629 [External Topic Properties\FRAME_FPO] Count=1 @@ -76970,15 +82039,35 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=941 +[External Topic Properties\FreeAnsiMultiSz@PAnsiMultiSz] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=426 + +[External Topic Properties\FreeMultiSz@PMultiSz] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=428 + +[External Topic Properties\FreeMultiSz@PWideMultiSz] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=427 + +[External Topic Properties\FreePCharVector@PCharVector] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=429 + [External Topic Properties\FreeTokenInformation@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=303 +ETPTopicOrder0=430 [External Topic Properties\FreeWideMultiSz@PWideMultiSz] Count=1 ETPCommand0=2 -ETPTopicOrder0=304 +ETPTopicOrder0=431 [External Topic Properties\FSCTL_ALLOW_EXTENDED_DASD_IO] Count=1 @@ -77203,62 +82292,173 @@ ETPTopicOrder0=305 [External Topic Properties\FXSR_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=985 +ETPTopicOrder0=630 + +[External Topic Properties\Generate@IJclAnsiStrList@Integer@AnsiString] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=436 + +[External Topic Properties\Generate@IJclCardinalList@Integer@Cardinal] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=438 + +[External Topic Properties\Generate@IJclDoubleList@Integer@Double] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=441 + +[External Topic Properties\Generate@IJclExtendedList@Integer@Extended] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=439 + +[External Topic Properties\Generate@IJclInt64List@Integer@Int64] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=443 + +[External Topic Properties\Generate@IJclIntegerList@Integer@Integer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=434 [External Topic Properties\Generate@IJclIntfList@Integer@IInterface] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=306 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=435 [External Topic Properties\Generate@IJclList@Integer@TObject] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=308 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=440 + +[External Topic Properties\Generate@IJclPtrList@Integer@Pointer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=442 + +[External Topic Properties\Generate@IJclSingleList@Integer@Single] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=437 [External Topic Properties\Generate@IJclStrList@Integer@string] Count=1 ETPCommand0=2 ETPTopicOrder0=307 +[External Topic Properties\Generate@IJclUnicodeStrList@Integer@UnicodeString] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=433 + +[External Topic Properties\Generate@IJclWideStrList@Integer@WideString] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=432 + +[External Topic Properties\Generics] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=BaseServices +ETPTopicOrder0=13 + [External Topic Properties\GET_FILEEX_INFO_LEVELS] Count=1 ETPCommand0=2 ETPTopicOrder0=17 +[External Topic Properties\Get7zBoolProp@IInArchive@Integer@Cardinal@TBoolSetter] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=444 + +[External Topic Properties\Get7zCardinalProp@IInArchive@Integer@Cardinal@TCardinalSetter] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=445 + +[External Topic Properties\Get7zFileTimeProp@IInArchive@Integer@Cardinal@TFileTimeSetter] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=446 + +[External Topic Properties\Get7zInt64Prop@IInArchive@Integer@Cardinal@TInt64Setter] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=447 + +[External Topic Properties\Get7zWideStringProp@IInArchive@Integer@Cardinal@TWideStringSetter] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=448 + [External Topic Properties\Get8087ControlWord] Count=1 ETPCommand0=2 -ETPTopicOrder0=309 +ETPTopicOrder0=449 [External Topic Properties\Get8087Infinity] Count=1 ETPCommand0=2 -ETPTopicOrder0=310 +ETPTopicOrder0=450 [External Topic Properties\Get8087Precision] Count=1 ETPCommand0=2 -ETPTopicOrder0=311 +ETPTopicOrder0=451 [External Topic Properties\Get8087Rounding] Count=1 ETPCommand0=2 -ETPTopicOrder0=312 +ETPTopicOrder0=452 [External Topic Properties\GetAllowedPowerOperations] Count=1 ETPCommand0=2 -ETPTopicOrder0=313 +ETPTopicOrder0=453 [External Topic Properties\GetAntialiasedBitmap] Count=1 ETPCommand0=2 -ETPTopicOrder0=314 +ETPTopicOrder0=454 [External Topic Properties\GetAPMBatteryFlags] Count=1 ETPCommand0=2 -ETPTopicOrder0=315 +ETPTopicOrder0=455 + +[External Topic Properties\GetArchiveFormats] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=456 [External Topic Properties\GetBackupFileName] Count=1 @@ -77268,17 +82468,17 @@ ETPTopicOrder0=316 [External Topic Properties\GetBPKFileInfo@string@Boolean@PString@PString] Count=1 ETPCommand0=2 -ETPTopicOrder0=317 +ETPTopicOrder0=457 [External Topic Properties\GetBPP] Count=1 ETPCommand0=2 -ETPTopicOrder0=318 +ETPTopicOrder0=458 [External Topic Properties\GetBPRFileInfo@string@string@PString] Count=1 ETPCommand0=2 -ETPTopicOrder0=319 +ETPTopicOrder0=459 [External Topic Properties\GetBytesEx@] Count=1 @@ -77298,17 +82498,22 @@ ETPTopicOrder0=322 [External Topic Properties\GetCDAudioTrackList@TJclCdTrackInfoArray@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=323 +ETPTopicOrder0=460 [External Topic Properties\GetCDAudioTrackList@TStrings@Boolean@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=324 +ETPTopicOrder0=461 [External Topic Properties\GetCdInfo@TJclCdMediaInfo@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=325 +ETPTopicOrder0=462 + +[External Topic Properties\GetCharSetFromLocale@LCID@Byte] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=463 [External Topic Properties\GetCharSetFromLocale@LCID@TFontCharSet] Count=1 @@ -77318,47 +82523,72 @@ ETPTopicOrder0=326 [External Topic Properties\GetCommonDocumentsFolder] Count=1 ETPCommand0=2 -ETPTopicOrder0=327 +ETPTopicOrder0=464 + +[External Topic Properties\GetComponentPathName] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=631 [External Topic Properties\GetComputerSID@PSID@DWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=328 +ETPTopicOrder0=465 [External Topic Properties\GetCORRequiredVersion@PWideChar@DWORD@DWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=329 +ETPTopicOrder0=466 [External Topic Properties\GetCORSystemDirectory@PWideChar@DWORD@DWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=330 +ETPTopicOrder0=467 [External Topic Properties\GetCORVersion@PWideChar@DWORD@DWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=331 +ETPTopicOrder0=468 [External Topic Properties\GetCPUSpeed@TFreqInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=332 +ETPTopicOrder0=469 + +[External Topic Properties\GetCurrentTimeZoneDaylightSavingsPeriod] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=470 + +[External Topic Properties\GetCurrentTimeZoneDescription] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=471 + +[External Topic Properties\GetCurrentTimeZoneGMTOffset] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=472 + +[External Topic Properties\GetCurrentTimeZoneUTCBias] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=473 [External Topic Properties\GetDefaultPrinterName] Count=1 ETPCommand0=2 -ETPTopicOrder0=333 +ETPTopicOrder0=474 [External Topic Properties\GetDPKFileInfo@string@Boolean@PString@PString] Count=1 ETPCommand0=2 -ETPTopicOrder0=334 +ETPTopicOrder0=475 [External Topic Properties\GetDPRFileInfo@string@string@PString] Count=1 ETPCommand0=2 -ETPTopicOrder0=335 +ETPTopicOrder0=476 [External Topic Properties\GetEDISEFUserAttributeDescription@string] Count=1 @@ -77373,82 +82603,82 @@ ETPTopicOrder0=336 [External Topic Properties\GetEnvironmentVar@string@string@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=338 +ETPTopicOrder0=477 [External Topic Properties\GetEnvironmentVars@TStrings@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=339 +ETPTopicOrder0=478 [External Topic Properties\GetFileCreation@string@TDateTime] Count=1 ETPCommand0=2 -ETPTopicOrder0=340 +ETPTopicOrder0=479 [External Topic Properties\GetFileInformation@string@TSearchRec] Count=1 ETPCommand0=2 -ETPTopicOrder0=341 +ETPTopicOrder0=480 [External Topic Properties\GetFileLastAccess@string@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=343 +ETPTopicOrder0=481 [External Topic Properties\GetFileLastAccess@string@Integer@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=342 +ETPTopicOrder0=483 [External Topic Properties\GetFileLastAccess@string@TDateTime] Count=1 ETPCommand0=2 -ETPTopicOrder0=344 +ETPTopicOrder0=482 [External Topic Properties\GetFileLastAccess@string@TDateTime@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=345 +ETPTopicOrder0=484 [External Topic Properties\GetFileLastAttrChange@string@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=348 +ETPTopicOrder0=485 [External Topic Properties\GetFileLastAttrChange@string@Integer@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=347 +ETPTopicOrder0=487 [External Topic Properties\GetFileLastAttrChange@string@TDateTime@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=346 +ETPTopicOrder0=486 [External Topic Properties\GetFileLastWrite@string@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=350 +ETPTopicOrder0=491 [External Topic Properties\GetFileLastWrite@string@Integer@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=351 +ETPTopicOrder0=488 [External Topic Properties\GetFileLastWrite@string@TDateTime] Count=1 ETPCommand0=2 -ETPTopicOrder0=349 +ETPTopicOrder0=490 [External Topic Properties\GetFileLastWrite@string@TDateTime@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=352 +ETPTopicOrder0=489 [External Topic Properties\GetFileNameIcon@string@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=353 +ETPTopicOrder0=492 [External Topic Properties\GetFileSecurity@LPCTSTR@SECURITY_INFORMATION@PSECURITY_DESCRIPTOR@DWORD@DWORD] Count=1 @@ -77468,27 +82698,27 @@ ETPTopicOrder0=356 [External Topic Properties\GetFileStatus@string@TStatBuf64@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=357 +ETPTopicOrder0=493 [External Topic Properties\GetFileVersion@PWideChar@PWideChar@DWORD@DWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=358 +ETPTopicOrder0=494 [External Topic Properties\GetFreeSystemResources] Count=1 ETPCommand0=2 -ETPTopicOrder0=360 +ETPTopicOrder0=495 [External Topic Properties\GetFreeSystemResources@TFreeSysResKind] Count=1 ETPCommand0=2 -ETPTopicOrder0=359 +ETPTopicOrder0=496 [External Topic Properties\GetIconFromBitmap] Count=1 ETPCommand0=2 -ETPTopicOrder0=361 +ETPTopicOrder0=497 [External Topic Properties\GetImageUnusedHeaderBytes@LOADED_IMAGE@DWORD] Count=1 @@ -77498,62 +82728,87 @@ ETPTopicOrder0=362 [External Topic Properties\GetImplementorOfInterface@IInterface] Count=1 ETPCommand0=2 -ETPTopicOrder0=363 +ETPTopicOrder0=498 [External Topic Properties\GetIpAddresses@TStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=364 +ETPTopicOrder0=500 + +[External Topic Properties\GetIpAddresses@TStrings@AnsiString] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=499 [External Topic Properties\GetISOYearNumberOfDays@Word] Count=1 ETPCommand0=2 ETPTopicOrder0=365 +[External Topic Properties\GetISOYearNumberOfWeeks@Word] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=501 + +[External Topic Properties\GetLocalAppData] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=502 + [External Topic Properties\GetLocationInfo@Pointer@TJclLocationInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=366 +ETPTopicOrder0=503 [External Topic Properties\GetMainAppWndFromPid@DWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=367 +ETPTopicOrder0=504 + +[External Topic Properties\GetMem@@Longint] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=505 [External Topic Properties\GetMidiOutputs@TStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=368 +ETPTopicOrder0=506 [External Topic Properties\GetMsdosSys] Count=1 ETPCommand0=2 -ETPTopicOrder0=369 +ETPTopicOrder0=507 [External Topic Properties\GetNaNTag@Extended] Count=1 ETPCommand0=2 -ETPTopicOrder0=371 +ETPTopicOrder0=509 [External Topic Properties\GetNaNTag@Single] Count=1 ETPCommand0=2 -ETPTopicOrder0=370 +ETPTopicOrder0=508 [External Topic Properties\GetNativeSystemInfo@TSystemInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=372 +ETPTopicOrder0=510 + +[External Topic Properties\GetOSEnabledFeatures] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=511 [External Topic Properties\GetParity@PByte@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=373 +ETPTopicOrder0=513 [External Topic Properties\GetParity@TDynByteArray@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=374 +ETPTopicOrder0=512 [External Topic Properties\GetPCRECalloutCallback] Count=1 @@ -77583,62 +82838,97 @@ ETPTopicOrder0=379 [External Topic Properties\GetPending8087Exceptions] Count=1 ETPCommand0=2 -ETPTopicOrder0=380 +ETPTopicOrder0=514 [External Topic Properties\GetPrinterResolution] Count=1 ETPCommand0=2 -ETPTopicOrder0=381 +ETPTopicOrder0=515 [External Topic Properties\GetProcessorArchitecture] Count=1 ETPCommand0=2 -ETPTopicOrder0=382 +ETPTopicOrder0=516 [External Topic Properties\GetProfileFolder] Count=1 ETPCommand0=2 -ETPTopicOrder0=383 +ETPTopicOrder0=517 [External Topic Properties\GetRealProcAddress@PChar@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=384 +ETPTopicOrder0=518 [External Topic Properties\GetRequestedRuntimeInfo@PWideChar@PWideChar@PWideChar@DWORD@DWORD@PWideChar@DWORD@DWORD@PWideChar@DWORD@DWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=385 +ETPTopicOrder0=519 [External Topic Properties\GetRequestedRuntimeVersion@PWideChar@PWideChar@DWORD@DWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=386 +ETPTopicOrder0=520 [External Topic Properties\GetRequestedRuntimeVersionForCLSID@TGuid@PWideChar@DWORD@DWORD@CLSID_RESOLUTION_FLAGS] Count=1 ETPCommand0=2 -ETPTopicOrder0=387 +ETPTopicOrder0=521 [External Topic Properties\GetServiceStatusByName@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=388 +ETPTopicOrder0=522 + +[External Topic Properties\GetSevenzipArchiveCompressionProperties@IInterface@IInterface] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=523 + +[External Topic Properties\GetShortcutTargetName] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=632 [External Topic Properties\GetSizeOfFile@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=390 +ETPTopicOrder0=524 [External Topic Properties\GetSizeOfFile@TSearchRec] Count=1 ETPCommand0=2 -ETPTopicOrder0=389 +ETPTopicOrder0=525 + +[External Topic Properties\GetStreamFormats] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=526 + +[External Topic Properties\GetStringPropList@PTypeInfo@PPropList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=527 + +[External Topic Properties\GetUCS4CharAt@TUCS4Array@SizeInt@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=529 + +[External Topic Properties\GetUCS4CharAt@TUTF16String@SizeInt@UCS4@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=530 + +[External Topic Properties\GetUCS4CharAt@TUTF8String@SizeInt@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=528 [External Topic Properties\GetUnitVersioning] Count=1 ETPCommand0=2 -ETPTopicOrder0=391 +ETPTopicOrder0=531 [External Topic Properties\GetVersionEx@POSVERSIONINFOEX] Count=1 @@ -77653,7 +82943,7 @@ ETPTopicOrder0=393 [External Topic Properties\GetVolumeFileSystemFlags@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=394 +ETPTopicOrder0=532 [External Topic Properties\GetVolumeNameForVolumeMountPoint@LPCSTR@LPSTR@DWORD] Count=1 @@ -77663,13 +82953,28 @@ ETPTopicOrder0=395 [External Topic Properties\GetWindowCaption@THandle] Count=1 ETPCommand0=2 -ETPTopicOrder0=396 +ETPTopicOrder0=533 [External Topic Properties\GetWindowsServicePackVersionString] Count=1 ETPCommand0=2 ETPTopicOrder0=397 +[External Topic Properties\GetWMIScheduledJobUTCTime@TDateTime] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=534 + +[External Topic Properties\GetWndFromPid@DWORD@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=535 + +[External Topic Properties\GifToBitmap@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=536 + [External Topic Properties\GNLEN] Count=1 ETPCommand0=2 @@ -77678,67 +82983,67 @@ ETPTopicOrder0=986 [External Topic Properties\GoldenMean] Count=1 ETPCommand0=2 -ETPTopicOrder0=987 +ETPTopicOrder0=633 [External Topic Properties\GradPerCycle] Count=1 ETPCommand0=2 -ETPTopicOrder0=988 +ETPTopicOrder0=634 [External Topic Properties\GradPerDeg] Count=1 ETPCommand0=2 -ETPTopicOrder0=989 +ETPTopicOrder0=635 [External Topic Properties\GradPerRad] Count=1 ETPCommand0=2 -ETPTopicOrder0=990 +ETPTopicOrder0=636 [External Topic Properties\GradToDeg@Extended] Count=1 ETPCommand0=2 -ETPTopicOrder0=399 +ETPTopicOrder0=538 [External Topic Properties\GradToDeg@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=398 +ETPTopicOrder0=539 [External Topic Properties\GradToDeg@Single] Count=1 ETPCommand0=2 -ETPTopicOrder0=400 +ETPTopicOrder0=537 [External Topic Properties\GradToRad@Extended] Count=1 ETPCommand0=2 -ETPTopicOrder0=402 +ETPTopicOrder0=541 [External Topic Properties\GradToRad@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=403 +ETPTopicOrder0=540 [External Topic Properties\GradToRad@Single] Count=1 ETPCommand0=2 -ETPTopicOrder0=401 +ETPTopicOrder0=542 [External Topic Properties\Graphics] Count=1 ETPCommand0=2 -ETPTopicOrder0=8 +ETPTopicOrder0=7 [External Topic Properties\Gray32@Byte@Byte] Count=1 ETPCommand0=2 -ETPTopicOrder0=404 +ETPTopicOrder0=543 [External Topic Properties\GreenComponent@TColor32] Count=1 ETPCommand0=2 -ETPTopicOrder0=405 +ETPTopicOrder0=544 [External Topic Properties\GROUP_INFO_0] Count=1 @@ -77758,23 +83063,33 @@ ETPTopicOrder0=991 [External Topic Properties\Guard@Pointer@ISafeGuard] Count=1 ETPCommand0=2 -ETPTopicOrder0=408 +ETPTopicOrder0=545 [External Topic Properties\Guard@TObject@IMultiSafeGuard] Count=1 ETPCommand0=2 -ETPTopicOrder0=406 +ETPTopicOrder0=547 [External Topic Properties\Guard@TObject@ISafeGuard] Count=1 ETPCommand0=2 -ETPTopicOrder0=407 +ETPTopicOrder0=546 [External Topic Properties\GZipFile@string@string@Integer@TJclCompressStreamProgressCallback@Pointer] Count=1 ETPCommand0=2 ETPTopicOrder0=409 +[External Topic Properties\GZipFile@TFileName@TFileName@Integer@TJclCompressStreamProgressCallback@Pointer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=548 + +[External Topic Properties\GZipStream@TStream@TStream@Integer@TJclCompressStreamProgressCallback@Pointer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=549 + [External Topic Properties\HANGUP_COMPLETE] Count=1 ETPCommand0=2 @@ -77788,12 +83103,26 @@ ETPTopicOrder0=993 [External Topic Properties\Hardlinks.pas] Count=1 ETPCommand0=2 -ETPTopicOrder0=1 +ETPTopicOrder0=2 + +[External Topic Properties\HardwareArchitecture] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=jedi.inc +ETPTopicOrder0=4 + +[External Topic Properties\HashMul@Integer@Integer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=550 [External Topic Properties\HDOMAINENUM] Count=1 ETPCommand0=2 -ETPTopicOrder0=20 +ETPTopicOrder0=3 [External Topic Properties\HELP_MSG_FILENAME] Count=1 @@ -77803,37 +83132,97 @@ ETPTopicOrder0=994 [External Topic Properties\HeronianMean@Float@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=410 +ETPTopicOrder0=551 + +[External Topic Properties\HexPrefix] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=637 + +[External Topic Properties\HexPrefixC] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=638 + +[External Topic Properties\HexPrefixPascal] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=639 [External Topic Properties\HexToDouble@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=411 +ETPTopicOrder0=552 [External Topic Properties\HibernateOS@Boolean@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=412 +ETPTopicOrder0=553 + +[External Topic Properties\HighValidNaNTag] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=640 [External Topic Properties\HKCC] Count=1 ETPCommand0=2 -ETPTopicOrder0=995 +ETPTopicOrder0=641 + +[External Topic Properties\HKCCLongName] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=642 + +[External Topic Properties\HKCCShortName] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=643 [External Topic Properties\HKCR] Count=1 ETPCommand0=2 -ETPTopicOrder0=996 +ETPTopicOrder0=644 + +[External Topic Properties\HKCRLongName] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=645 + +[External Topic Properties\HKCRShortName] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=646 [External Topic Properties\HKCU] Count=1 ETPCommand0=2 -ETPTopicOrder0=997 +ETPTopicOrder0=647 + +[External Topic Properties\HKCULongName] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=648 + +[External Topic Properties\HKCUShortName] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=649 [External Topic Properties\HKDD] Count=1 ETPCommand0=2 -ETPTopicOrder0=998 +ETPTopicOrder0=650 + +[External Topic Properties\HKDDLongName] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=651 + +[External Topic Properties\HKDDShortName] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=652 [External Topic Properties\HKEY_CLASSES_ROOT] Count=1 @@ -77873,52 +83262,89 @@ ETPTopicOrder0=1005 [External Topic Properties\HKLM] Count=1 ETPCommand0=2 -ETPTopicOrder0=1006 +ETPTopicOrder0=653 + +[External Topic Properties\HKLMLongName] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=654 + +[External Topic Properties\HKLMShortName] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=655 [External Topic Properties\HKPD] Count=1 ETPCommand0=2 -ETPTopicOrder0=1007 +ETPTopicOrder0=656 + +[External Topic Properties\HKPDLongName] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=657 + +[External Topic Properties\HKPDShortName] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=658 [External Topic Properties\HKUS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1008 +ETPTopicOrder0=659 + +[External Topic Properties\HKUSLongName] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=660 + +[External Topic Properties\HKUSShortName] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=661 [External Topic Properties\hLn2Pi] Count=1 ETPCommand0=2 -ETPTopicOrder0=1009 +ETPTopicOrder0=662 [External Topic Properties\HLSToRGB@Single@Single@Single@Single@Single@Single] Count=1 ETPCommand0=2 -ETPTopicOrder0=415 +ETPTopicOrder0=556 [External Topic Properties\HLSToRGB@TColorVector] Count=1 ETPCommand0=2 -ETPTopicOrder0=414 +ETPTopicOrder0=554 [External Topic Properties\HLSToRGB@THLSValue@THLSValue@THLSValue] Count=1 ETPCommand0=2 -ETPTopicOrder0=413 +ETPTopicOrder0=555 [External Topic Properties\hNtDll] Count=1 ETPCommand0=2 ETPTopicOrder0=21 +[External Topic Properties\HOOK_DLL_EXCEPTIONS] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=5 + [External Topic Properties\HowAOneLinerCanBiteYou] Count=1 ETPCommand0=2 -ETPTopicOrder0=416 +ETPTopicOrder0=557 [External Topic Properties\HSLToRGB@Single@Single@Single] Count=1 ETPCommand0=2 -ETPTopicOrder0=417 +ETPTopicOrder0=558 [External Topic Properties\HSLToRGB@Single@Single@Single@Single@Single@Single] Count=1 @@ -77928,7 +83354,7 @@ ETPTopicOrder0=418 [External Topic Properties\HTT_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=1010 +ETPTopicOrder0=663 [External Topic Properties\IAHFLAGS_NAMETYPE] Count=1 @@ -77988,22017 +83414,29762 @@ ETPTopicOrder0=1017 [External Topic Properties\icMAX_CATEGORY_DESC_LEN] Count=1 ETPCommand0=2 -ETPTopicOrder0=1018 +ETPTopicOrder0=664 [External Topic Properties\ICTSegmentId] Count=1 ETPCommand0=2 ETPTopicOrder0=1019 +[External Topic Properties\Iff@Boolean@Boolean@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + [External Topic Properties\Iff@Boolean@Byte@Byte] Count=1 ETPCommand0=2 -ETPTopicOrder0=421 +ETPTopicOrder0=562 [External Topic Properties\Iff@Boolean@Cardinal@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=424 +ETPTopicOrder0=565 [External Topic Properties\Iff@Boolean@Char@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=423 +ETPTopicOrder0=566 [External Topic Properties\Iff@Boolean@Float@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=422 +ETPTopicOrder0=567 [External Topic Properties\Iff@Boolean@Int64@Int64] Count=1 ETPCommand0=2 -ETPTopicOrder0=420 +ETPTopicOrder0=563 [External Topic Properties\Iff@Boolean@Integer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=427 +ETPTopicOrder0=561 [External Topic Properties\Iff@Boolean@Pointer@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=426 +ETPTopicOrder0=560 [External Topic Properties\Iff@Boolean@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=425 +ETPTopicOrder0=559 [External Topic Properties\Iff@Boolean@Variant@Variant] Count=1 ETPCommand0=2 -ETPTopicOrder0=419 +ETPTopicOrder0=564 -[External Topic Properties\IJclClrAppDomain] -Count=1 +[External Topic Properties\IJclAbstractIterator] +Count=2 ETPCommand0=2 -ETPTopicOrder0=21 +ETPCommand1=3 +ETPGroup1=Containers.Interfaces +ETPTopicOrder0=83 -[External Topic Properties\IJclClrAssembly] -Count=1 +[External Topic Properties\IJclAnsiStrAnsiStrMap] +Count=2 ETPCommand0=2 -ETPTopicOrder0=22 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=1 + +[External Topic Properties\IJclAnsiStrAnsiStrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=2 + +[External Topic Properties\IJclAnsiStrArray] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=3 + +[External Topic Properties\IJclAnsiStrBinaryTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=4 + +[External Topic Properties\IJclAnsiStrCollection] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=5 + +[External Topic Properties\IJclAnsiStrComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=6 + +[External Topic Properties\IJclAnsiStrContainer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=7 + +[External Topic Properties\IJclAnsiStrEqualityComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=8 + +[External Topic Properties\IJclAnsiStrFlatContainer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=9 + +[External Topic Properties\IJclAnsiStrHashConverter] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=10 + +[External Topic Properties\IJclAnsiStrIntfMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=11 + +[External Topic Properties\IJclAnsiStrIntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=12 + +[External Topic Properties\IJclAnsiStrIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=13 + +[External Topic Properties\IJclAnsiStrList] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=14 + +[External Topic Properties\IJclAnsiStrMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=15 + +[External Topic Properties\IJclAnsiStrQueue] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=16 + +[External Topic Properties\IJclAnsiStrSet] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=17 + +[External Topic Properties\IJclAnsiStrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=18 + +[External Topic Properties\IJclAnsiStrSortedSet] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=19 + +[External Topic Properties\IJclAnsiStrStack] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=20 + +[External Topic Properties\IJclAnsiStrTree] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=21 + +[External Topic Properties\IJclAnsiStrTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=22 + +[External Topic Properties\IJclArchiveAlgorithm] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=23 + +[External Topic Properties\IJclArchiveCompressHeader] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=24 + +[External Topic Properties\IJclArchiveCompressionLevel] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=25 + +[External Topic Properties\IJclArchiveCompressionMethod] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=26 + +[External Topic Properties\IJclArchiveDictionarySize] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=27 + +[External Topic Properties\IJclArchiveEncryptHeader] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=28 + +[External Topic Properties\IJclArchiveEncryptionMethod] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=29 + +[External Topic Properties\IJclArchiveNumberOfPasses] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=30 + +[External Topic Properties\IJclArchiveNumberOfThreads] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=31 + +[External Topic Properties\IJclArchiveRemoveSfxBlock] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=32 + +[External Topic Properties\IJclArchiveSaveCreationDateTime] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=33 + +[External Topic Properties\IJclArchiveSaveLastAccessDateTime] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=34 + +[External Topic Properties\IJclArchiveSaveLastWriteDateTime] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=35 + +[External Topic Properties\IJclArchiveSolid] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=36 + +[External Topic Properties\IJclArray] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=37 + +[External Topic Properties\IJclBinaryTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.Interfaces +ETPTopicOrder0=103 + +[External Topic Properties\IJclCardinalArray] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=38 + +[External Topic Properties\IJclCardinalBinaryTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=39 + +[External Topic Properties\IJclCardinalCardinalMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=40 + +[External Topic Properties\IJclCardinalCardinalSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=41 + +[External Topic Properties\IJclCardinalCollection] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=42 + +[External Topic Properties\IJclCardinalComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=43 + +[External Topic Properties\IJclCardinalEqualityComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=44 + +[External Topic Properties\IJclCardinalHashConverter] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=45 + +[External Topic Properties\IJclCardinalIntfMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=46 + +[External Topic Properties\IJclCardinalIntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=47 + +[External Topic Properties\IJclCardinalIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=48 + +[External Topic Properties\IJclCardinalList] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=49 + +[External Topic Properties\IJclCardinalMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=50 + +[External Topic Properties\IJclCardinalQueue] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=51 + +[External Topic Properties\IJclCardinalSet] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=52 + +[External Topic Properties\IJclCardinalSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=53 + +[External Topic Properties\IJclCardinalSortedSet] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=54 + +[External Topic Properties\IJclCardinalStack] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=55 + +[External Topic Properties\IJclCardinalTree] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=56 + +[External Topic Properties\IJclCardinalTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=57 + +[External Topic Properties\IJclCloneable] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\IJclClrAppDomain] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=21 + +[External Topic Properties\IJclClrAssembly] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=22 [External Topic Properties\IJclClrEvidence] Count=1 ETPCommand0=2 -ETPTopicOrder0=23 +ETPTopicOrder0=23 + +[External Topic Properties\IJclClrMethod] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=24 + +[External Topic Properties\IJclCollection] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=58 + +[External Topic Properties\IJclCommandLineTool] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=59 + +[External Topic Properties\IJclCommandLineTool.AddPathOption@string@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\IJclCommandLineTool.Execute@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1 + +[External Topic Properties\IJclCommandLineTool.ExeName] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=2 + +[External Topic Properties\IJclCommandLineTool.GetExeName] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3 + +[External Topic Properties\IJclCommandLineTool.GetOptions] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=4 + +[External Topic Properties\IJclCommandLineTool.GetOutput] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=5 + +[External Topic Properties\IJclCommandLineTool.GetOutputCallback] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=6 + +[External Topic Properties\IJclCommandLineTool.Options] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=7 + +[External Topic Properties\IJclCommandLineTool.Output] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=8 + +[External Topic Properties\IJclCommandLineTool.OutputCallback] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=9 + +[External Topic Properties\IJclCommandLineTool.SetOutputCallback@TTextHandler] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=10 + +[External Topic Properties\IJclComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.Interfaces +ETPTopicOrder0=121 + +[External Topic Properties\IJclContainer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.Interfaces +ETPTopicOrder0=122 + +[External Topic Properties\IJclDoubleArray] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=60 + +[External Topic Properties\IJclDoubleBinaryTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=61 + +[External Topic Properties\IJclDoubleCollection] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=62 + +[External Topic Properties\IJclDoubleComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=63 + +[External Topic Properties\IJclDoubleContainer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=64 + +[External Topic Properties\IJclDoubleDoubleMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=65 + +[External Topic Properties\IJclDoubleDoubleSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=66 + +[External Topic Properties\IJclDoubleEqualityComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=67 + +[External Topic Properties\IJclDoubleHashConverter] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=68 + +[External Topic Properties\IJclDoubleIntfMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=69 + +[External Topic Properties\IJclDoubleIntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=70 + +[External Topic Properties\IJclDoubleIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=71 + +[External Topic Properties\IJclDoubleList] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=72 + +[External Topic Properties\IJclDoubleMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=73 + +[External Topic Properties\IJclDoubleQueue] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=74 + +[External Topic Properties\IJclDoubleSet] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=75 + +[External Topic Properties\IJclDoubleSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=76 + +[External Topic Properties\IJclDoubleSortedSet] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=77 + +[External Topic Properties\IJclDoubleStack] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=78 + +[External Topic Properties\IJclDoubleTree] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=79 + +[External Topic Properties\IJclDoubleTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=80 + +[External Topic Properties\IJclEqualityComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.Interfaces +ETPTopicOrder0=141 + +[External Topic Properties\IJclExtendedArray] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=81 + +[External Topic Properties\IJclExtendedBinaryTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=82 + +[External Topic Properties\IJclExtendedCollection] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=83 + +[External Topic Properties\IJclExtendedComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=84 + +[External Topic Properties\IJclExtendedContainer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=85 + +[External Topic Properties\IJclExtendedEqualityComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=86 + +[External Topic Properties\IJclExtendedExtendedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=87 + +[External Topic Properties\IJclExtendedExtendedSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=88 + +[External Topic Properties\IJclExtendedHashConverter] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=89 + +[External Topic Properties\IJclExtendedIntfMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=90 + +[External Topic Properties\IJclExtendedIntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=91 + +[External Topic Properties\IJclExtendedIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=92 + +[External Topic Properties\IJclExtendedList] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=93 + +[External Topic Properties\IJclExtendedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=94 + +[External Topic Properties\IJclExtendedQueue] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=95 + +[External Topic Properties\IJclExtendedSet] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=96 + +[External Topic Properties\IJclExtendedSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=97 + +[External Topic Properties\IJclExtendedSortedSet] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=98 + +[External Topic Properties\IJclExtendedStack] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=99 + +[External Topic Properties\IJclExtendedTree] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=100 + +[External Topic Properties\IJclExtendedTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=101 + +[External Topic Properties\IJclFileSearchOptions] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=102 + +[External Topic Properties\IJclFloatArray] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=103 + +[External Topic Properties\IJclFloatBinaryTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=104 + +[External Topic Properties\IJclFloatCollection] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=105 + +[External Topic Properties\IJclFloatComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=106 + +[External Topic Properties\IJclFloatContainer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=107 + +[External Topic Properties\IJclFloatEqualityComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=108 + +[External Topic Properties\IJclFloatFloatMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=109 + +[External Topic Properties\IJclFloatFloatSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=110 + +[External Topic Properties\IJclFloatHashConverter] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=111 + +[External Topic Properties\IJclFloatIntfMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=112 + +[External Topic Properties\IJclFloatIntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=113 + +[External Topic Properties\IJclFloatIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=114 + +[External Topic Properties\IJclFloatList] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=115 + +[External Topic Properties\IJclFloatMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=116 + +[External Topic Properties\IJclFloatQueue] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=117 + +[External Topic Properties\IJclFloatSet] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=118 + +[External Topic Properties\IJclFloatSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=119 + +[External Topic Properties\IJclFloatSortedSet] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=120 + +[External Topic Properties\IJclFloatStack] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=121 + +[External Topic Properties\IJclFloatTree] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=122 + +[External Topic Properties\IJclFloatTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=123 + +[External Topic Properties\IJclGrowable] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.Interfaces +ETPTopicOrder0=160 + +[External Topic Properties\IJclHashConverter] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.Interfaces +ETPTopicOrder0=161 + +[External Topic Properties\IJclInt64Array] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=124 + +[External Topic Properties\IJclInt64BinaryTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=125 + +[External Topic Properties\IJclInt64Collection] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=126 + +[External Topic Properties\IJclInt64Comparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=127 + +[External Topic Properties\IJclInt64EqualityComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=128 + +[External Topic Properties\IJclInt64HashConverter] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=129 + +[External Topic Properties\IJclInt64Int64Map] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=130 + +[External Topic Properties\IJclInt64Int64SortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=131 + +[External Topic Properties\IJclInt64IntfMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=132 + +[External Topic Properties\IJclInt64IntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=133 + +[External Topic Properties\IJclInt64Iterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=134 + +[External Topic Properties\IJclInt64List] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=135 + +[External Topic Properties\IJclInt64Map] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=136 + +[External Topic Properties\IJclInt64Queue] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=137 + +[External Topic Properties\IJclInt64Set] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=138 + +[External Topic Properties\IJclInt64SortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=139 + +[External Topic Properties\IJclInt64SortedSet] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=140 + +[External Topic Properties\IJclInt64Stack] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=141 + +[External Topic Properties\IJclInt64Tree] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=142 + +[External Topic Properties\IJclInt64TreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=143 + +[External Topic Properties\IJclIntegerArray] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=144 + +[External Topic Properties\IJclIntegerBinaryTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=145 + +[External Topic Properties\IJclIntegerCollection] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=146 + +[External Topic Properties\IJclIntegerComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=147 + +[External Topic Properties\IJclIntegerEqualityComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=148 + +[External Topic Properties\IJclIntegerHashConverter] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=149 + +[External Topic Properties\IJclIntegerIntegerMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=150 + +[External Topic Properties\IJclIntegerIntegerSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=151 + +[External Topic Properties\IJclIntegerIntfMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=152 + +[External Topic Properties\IJclIntegerIntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=153 + +[External Topic Properties\IJclIntegerIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=154 + +[External Topic Properties\IJclIntegerList] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=155 + +[External Topic Properties\IJclIntegerMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=156 + +[External Topic Properties\IJclIntegerQueue] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=157 + +[External Topic Properties\IJclIntegerSet] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=158 + +[External Topic Properties\IJclIntegerSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=159 + +[External Topic Properties\IJclIntegerSortedSet] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=160 + +[External Topic Properties\IJclIntegerStack] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=161 + +[External Topic Properties\IJclIntegerTree] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=162 + +[External Topic Properties\IJclIntegerTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=163 + +[External Topic Properties\IJclIntfAnsiStrMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=164 + +[External Topic Properties\IJclIntfAnsiStrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=165 + +[External Topic Properties\IJclIntfArray] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=166 + +[External Topic Properties\IJclIntfBinaryTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=167 + +[External Topic Properties\IJclIntfCardinalMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=168 + +[External Topic Properties\IJclIntfCardinalSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=169 + +[External Topic Properties\IJclIntfCloneable] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1 + +[External Topic Properties\IJclIntfCollection] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=170 + +[External Topic Properties\IJclIntfComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=171 + +[External Topic Properties\IJclIntfDoubleMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=172 + +[External Topic Properties\IJclIntfDoubleSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=173 + +[External Topic Properties\IJclIntfEqualityComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=174 + +[External Topic Properties\IJclIntfExtendedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=175 + +[External Topic Properties\IJclIntfExtendedSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=176 + +[External Topic Properties\IJclIntfFloatMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=177 + +[External Topic Properties\IJclIntfFloatSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=178 + +[External Topic Properties\IJclIntfHashConverter] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=179 + +[External Topic Properties\IJclIntfInt64Map] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=180 + +[External Topic Properties\IJclIntfInt64SortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=181 + +[External Topic Properties\IJclIntfIntegerMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=182 + +[External Topic Properties\IJclIntfIntegerSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=183 + +[External Topic Properties\IJclIntfIntfMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=184 + +[External Topic Properties\IJclIntfIntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=185 + +[External Topic Properties\IJclIntfIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=186 + +[External Topic Properties\IJclIntfList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=187 + +[External Topic Properties\IJclIntfMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=188 + +[External Topic Properties\IJclIntfPtrMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=189 + +[External Topic Properties\IJclIntfPtrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=190 + +[External Topic Properties\IJclIntfQueue] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=191 + +[External Topic Properties\IJclIntfSet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=192 + +[External Topic Properties\IJclIntfSingleMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=193 + +[External Topic Properties\IJclIntfSingleSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=194 + +[External Topic Properties\IJclIntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=195 + +[External Topic Properties\IJclIntfSortedSet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=196 + +[External Topic Properties\IJclIntfStack] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=197 + +[External Topic Properties\IJclIntfStrMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=198 + +[External Topic Properties\IJclIntfStrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=199 + +[External Topic Properties\IJclIntfTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=200 + +[External Topic Properties\IJclIntfTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=201 + +[External Topic Properties\IJclIntfUnicodeStrMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=202 + +[External Topic Properties\IJclIntfUnicodeStrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=203 + +[External Topic Properties\IJclIntfWideStrMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=204 + +[External Topic Properties\IJclIntfWideStrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=205 + +[External Topic Properties\IJclIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=206 + +[External Topic Properties\IJclKeyOwner] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.Interfaces +ETPTopicOrder0=213 + +[External Topic Properties\IJclList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=207 + +[External Topic Properties\IJclListener] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=208 + +[External Topic Properties\IJclLockable] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.Interfaces +ETPTopicOrder0=214 + +[External Topic Properties\IJclMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containres.Interfaces.Maps +ETPTopicOrder0=0 + +[External Topic Properties\IJclMsdosSys] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=209 + +[External Topic Properties\IJclMsdosSys.AutoScan] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\IJclMsdosSys.BootDelay] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1 + +[External Topic Properties\IJclMsdosSys.BootGUI] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=2 + +[External Topic Properties\IJclMsdosSys.BootKeys] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3 + +[External Topic Properties\IJclMsdosSys.BootMenu] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=4 + +[External Topic Properties\IJclMsdosSys.BootMenuDefault] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=5 + +[External Topic Properties\IJclMsdosSys.BootMenuDelay] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=6 + +[External Topic Properties\IJclMsdosSys.BootMulti] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=7 + +[External Topic Properties\IJclMsdosSys.BootSafe] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=8 + +[External Topic Properties\IJclMsdosSys.BootWarn] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=9 + +[External Topic Properties\IJclMsdosSys.BootWin] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=10 + +[External Topic Properties\IJclMsdosSys.DBLSpace] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=11 + +[External Topic Properties\IJclMsdosSys.DoubleBuffer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=12 + +[External Topic Properties\IJclMsdosSys.DRVSpace] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=13 + +[External Topic Properties\IJclMsdosSys.GetAutoScan] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=14 + +[External Topic Properties\IJclMsdosSys.GetBootDelay] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=15 + +[External Topic Properties\IJclMsdosSys.GetBootGUI] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=16 + +[External Topic Properties\IJclMsdosSys.GetBootKeys] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=17 + +[External Topic Properties\IJclMsdosSys.GetBootMenu] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=18 + +[External Topic Properties\IJclMsdosSys.GetBootMenuDefault] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=19 + +[External Topic Properties\IJclMsdosSys.GetBootMenuDelay] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=20 + +[External Topic Properties\IJclMsdosSys.GetBootMulti] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=21 + +[External Topic Properties\IJclMsdosSys.GetBootSafe] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=22 + +[External Topic Properties\IJclMsdosSys.GetBootWarn] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=23 + +[External Topic Properties\IJclMsdosSys.GetBootWin] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=24 + +[External Topic Properties\IJclMsdosSys.GetDBLSpace] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=25 + +[External Topic Properties\IJclMsdosSys.GetDoubleBuffer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=26 + +[External Topic Properties\IJclMsdosSys.GetDRVSpace] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=27 + +[External Topic Properties\IJclMsdosSys.GetHostWinBootDrv] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=28 + +[External Topic Properties\IJclMsdosSys.GetLoadTop] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=29 + +[External Topic Properties\IJclMsdosSys.GetLogo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=30 + +[External Topic Properties\IJclMsdosSys.GetNetwork] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=31 + +[External Topic Properties\IJclMsdosSys.GetUninstallDir] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=32 + +[External Topic Properties\IJclMsdosSys.GetWinBootDir] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=33 + +[External Topic Properties\IJclMsdosSys.GetWinDir] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=34 + +[External Topic Properties\IJclMsdosSys.GetWinVer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=35 + +[External Topic Properties\IJclMsdosSys.HostWinBootDrv] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=36 + +[External Topic Properties\IJclMsdosSys.LoadTop] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=37 + +[External Topic Properties\IJclMsdosSys.Logo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=38 + +[External Topic Properties\IJclMsdosSys.Network] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=39 + +[External Topic Properties\IJclMsdosSys.SetAutoScan@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=40 + +[External Topic Properties\IJclMsdosSys.SetBool@Boolean@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=41 + +[External Topic Properties\IJclMsdosSys.SetBootDelay@Cardinal] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=42 + +[External Topic Properties\IJclMsdosSys.SetBootGUI@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=43 + +[External Topic Properties\IJclMsdosSys.SetBootKeys@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=44 + +[External Topic Properties\IJclMsdosSys.SetBootMenu@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=45 + +[External Topic Properties\IJclMsdosSys.SetBootMenuDefault@Cardinal] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=46 + +[External Topic Properties\IJclMsdosSys.SetBootMenuDelay@Cardinal] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=47 + +[External Topic Properties\IJclMsdosSys.SetBootMulti@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=48 + +[External Topic Properties\IJclMsdosSys.SetBootSafe@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=49 + +[External Topic Properties\IJclMsdosSys.SetBootWarn@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=50 + +[External Topic Properties\IJclMsdosSys.SetBootWin@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=51 + +[External Topic Properties\IJclMsdosSys.SetDBLSpace@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=52 + +[External Topic Properties\IJclMsdosSys.SetDoubleBuffer@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=53 + +[External Topic Properties\IJclMsdosSys.SetDRVSpace@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=54 + +[External Topic Properties\IJclMsdosSys.SetHostWinBootDrv@Char] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=55 + +[External Topic Properties\IJclMsdosSys.SetLoadTop@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=56 + +[External Topic Properties\IJclMsdosSys.SetLogo@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=57 + +[External Topic Properties\IJclMsdosSys.SetNetwork@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=58 + +[External Topic Properties\IJclMsdosSys.SetString@string@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=59 + +[External Topic Properties\IJclMsdosSys.SetUninstallDir@Char] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=60 + +[External Topic Properties\IJclMsdosSys.SetWinBootDir@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=61 + +[External Topic Properties\IJclMsdosSys.SetWinDir@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=62 + +[External Topic Properties\IJclMsdosSys.SetWinVer@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=63 + +[External Topic Properties\IJclMsdosSys.UninstallDir] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=64 + +[External Topic Properties\IJclMsdosSys.WinBootDir] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=65 + +[External Topic Properties\IJclMsdosSys.WinDir] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=66 + +[External Topic Properties\IJclMsdosSys.WinVer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=67 + +[External Topic Properties\IJclMultiIntfIntfMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containres.Interfaces.Maps +ETPTopicOrder0=2 + +[External Topic Properties\IJclNotificationMessage] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=210 + +[External Topic Properties\IJclNotifier] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=211 + +[External Topic Properties\IJclObjectOwner] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.Interfaces +ETPTopicOrder0=215 + +[External Topic Properties\IJclPackable] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.Interfaces +ETPTopicOrder0=216 + +[External Topic Properties\IJclPtrArray] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=212 + +[External Topic Properties\IJclPtrBinaryTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=213 + +[External Topic Properties\IJclPtrCollection] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=214 + +[External Topic Properties\IJclPtrComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=215 + +[External Topic Properties\IJclPtrEqualityComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=216 + +[External Topic Properties\IJclPtrHashConverter] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=217 + +[External Topic Properties\IJclPtrIntfMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=218 + +[External Topic Properties\IJclPtrIntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=219 + +[External Topic Properties\IJclPtrIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=220 + +[External Topic Properties\IJclPtrList] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=221 + +[External Topic Properties\IJclPtrMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=222 + +[External Topic Properties\IJclPtrPtrMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=223 + +[External Topic Properties\IJclPtrPtrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=224 + +[External Topic Properties\IJclPtrQueue] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=225 + +[External Topic Properties\IJclPtrSet] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=226 + +[External Topic Properties\IJclPtrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=227 + +[External Topic Properties\IJclPtrSortedSet] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=228 + +[External Topic Properties\IJclPtrStack] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=229 + +[External Topic Properties\IJclPtrTree] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=230 + +[External Topic Properties\IJclPtrTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=231 + +[External Topic Properties\IJclQueue] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=232 + +[External Topic Properties\IJclScreenTextAttribute] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=233 + +[External Topic Properties\IJclScreenTextAttribute.BgColor] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\IJclScreenTextAttribute.BgHighlight] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1 + +[External Topic Properties\IJclScreenTextAttribute.Color] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=2 + +[External Topic Properties\IJclScreenTextAttribute.GetBgColor] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3 + +[External Topic Properties\IJclScreenTextAttribute.GetBgHighlight] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=4 + +[External Topic Properties\IJclScreenTextAttribute.GetColor] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=5 + +[External Topic Properties\IJclScreenTextAttribute.GetHighlight] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=6 + +[External Topic Properties\IJclScreenTextAttribute.GetStyle] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=7 + +[External Topic Properties\IJclScreenTextAttribute.GetTextAttribute] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=8 + +[External Topic Properties\IJclScreenTextAttribute.Highlight] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=9 + +[External Topic Properties\IJclScreenTextAttribute.SetBgColor@TJclScreenBackColor] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=10 + +[External Topic Properties\IJclScreenTextAttribute.SetBgHighlight@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=11 + +[External Topic Properties\IJclScreenTextAttribute.SetColor@TJclScreenFontColor] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=12 + +[External Topic Properties\IJclScreenTextAttribute.SetHighlight@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=13 + +[External Topic Properties\IJclScreenTextAttribute.SetStyle@TJclScreenFontStyles] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=14 + +[External Topic Properties\IJclScreenTextAttribute.SetTextAttribute@Word] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=15 + +[External Topic Properties\IJclScreenTextAttribute.Style] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=16 + +[External Topic Properties\IJclScreenTextAttribute.TextAttribute] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=17 + +[External Topic Properties\IJclSet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=234 + +[External Topic Properties\IJclSingleArray] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=235 + +[External Topic Properties\IJclSingleBinaryTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=236 + +[External Topic Properties\IJclSingleCollection] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=237 + +[External Topic Properties\IJclSingleComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=238 + +[External Topic Properties\IJclSingleContainer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=239 + +[External Topic Properties\IJclSingleEqualityComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=240 + +[External Topic Properties\IJclSingleHashConverter] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=241 + +[External Topic Properties\IJclSingleIntfMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=242 + +[External Topic Properties\IJclSingleIntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=243 + +[External Topic Properties\IJclSingleIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=244 + +[External Topic Properties\IJclSingleList] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=245 + +[External Topic Properties\IJclSingleMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=246 + +[External Topic Properties\IJclSingleQueue] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=247 + +[External Topic Properties\IJclSingleSet] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=248 + +[External Topic Properties\IJclSingleSingleMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=249 + +[External Topic Properties\IJclSingleSingleSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=250 + +[External Topic Properties\IJclSingleSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=251 + +[External Topic Properties\IJclSingleSortedSet] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=252 + +[External Topic Properties\IJclSingleStack] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=253 + +[External Topic Properties\IJclSingleTree] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=254 + +[External Topic Properties\IJclSingleTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=255 + +[External Topic Properties\IJclSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containres.Interfaces.Maps +ETPTopicOrder0=1 + +[External Topic Properties\IJclSortedSet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=256 + +[External Topic Properties\IJclStack] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=257 + +[External Topic Properties\IJclStrArray] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=4 + +[External Topic Properties\IJclStrBinaryTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=258 + +[External Topic Properties\IJclStrCollection] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=5 + +[External Topic Properties\IJclStrComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=259 + +[External Topic Properties\IJclStrContainer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=260 + +[External Topic Properties\IJclStrEqualityComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=261 + +[External Topic Properties\IJclStrHashConverter] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=262 + +[External Topic Properties\IJclStringList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=263 + +[External Topic Properties\IJclStrIntfMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=264 + +[External Topic Properties\IJclStrIntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=265 + +[External Topic Properties\IJclStrIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=6 + +[External Topic Properties\IJclStrList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=7 + +[External Topic Properties\IJclStrMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=266 + +[External Topic Properties\IJclStrQueue] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=8 + +[External Topic Properties\IJclStrSet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=9 + +[External Topic Properties\IJclStrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=267 + +[External Topic Properties\IJclStrSortedSet] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=268 + +[External Topic Properties\IJclStrStack] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=10 + +[External Topic Properties\IJclStrStrMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=269 + +[External Topic Properties\IJclStrStrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=270 + +[External Topic Properties\IJclStrTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=11 + +[External Topic Properties\IJclStrTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=271 + +[External Topic Properties\IJclTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=272 + +[External Topic Properties\IJclTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=273 + +[External Topic Properties\IJclUnicodeStrArray] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=274 + +[External Topic Properties\IJclUnicodeStrBinaryTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=275 + +[External Topic Properties\IJclUnicodeStrCollection] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=276 + +[External Topic Properties\IJclUnicodeStrComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=277 + +[External Topic Properties\IJclUnicodeStrContainer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=278 + +[External Topic Properties\IJclUnicodeStrEqualityComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=279 + +[External Topic Properties\IJclUnicodeStrFlatContainer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=280 + +[External Topic Properties\IJclUnicodeStrHashConverter] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=281 + +[External Topic Properties\IJclUnicodeStrIntfMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=282 + +[External Topic Properties\IJclUnicodeStrIntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=283 + +[External Topic Properties\IJclUnicodeStrIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=284 + +[External Topic Properties\IJclUnicodeStrList] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=285 + +[External Topic Properties\IJclUnicodeStrMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=286 + +[External Topic Properties\IJclUnicodeStrQueue] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=287 + +[External Topic Properties\IJclUnicodeStrSet] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=288 + +[External Topic Properties\IJclUnicodeStrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=289 + +[External Topic Properties\IJclUnicodeStrSortedSet] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=290 + +[External Topic Properties\IJclUnicodeStrStack] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=291 + +[External Topic Properties\IJclUnicodeStrTree] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=292 + +[External Topic Properties\IJclUnicodeStrTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=293 + +[External Topic Properties\IJclUnicodeStrUnicodeStrMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=294 + +[External Topic Properties\IJclUnicodeStrUnicodeStrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=295 + +[External Topic Properties\IJclValueOwner] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.Interfaces +ETPTopicOrder0=273 + +[External Topic Properties\IJclWideStrArray] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=296 + +[External Topic Properties\IJclWideStrBinaryTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=297 + +[External Topic Properties\IJclWideStrCollection] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=298 + +[External Topic Properties\IJclWideStrComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=299 + +[External Topic Properties\IJclWideStrContainer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=300 + +[External Topic Properties\IJclWideStrEqualityComparer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=301 + +[External Topic Properties\IJclWideStrFlatContainer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=302 + +[External Topic Properties\IJclWideStrHashConverter] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=303 + +[External Topic Properties\IJclWideStrIntfMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=304 + +[External Topic Properties\IJclWideStrIntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=305 + +[External Topic Properties\IJclWideStrIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=306 + +[External Topic Properties\IJclWideStrList] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=307 + +[External Topic Properties\IJclWideStrMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=308 + +[External Topic Properties\IJclWideStrQueue] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=309 + +[External Topic Properties\IJclWideStrSet] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=310 + +[External Topic Properties\IJclWideStrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=311 + +[External Topic Properties\IJclWideStrSortedSet] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=312 + +[External Topic Properties\IJclWideStrStack] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=313 + +[External Topic Properties\IJclWideStrTree] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=314 + +[External Topic Properties\IJclWideStrTreeIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=315 + +[External Topic Properties\IJclWideStrWideStrMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=316 + +[External Topic Properties\IJclWideStrWideStrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!INTERFACES +ETPTopicOrder0=317 + +[External Topic Properties\IJclWinMidiOut] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=318 + +[External Topic Properties\IJclWinMidiOut.ChannelVolume] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\IJclWinMidiOut.GetChannelVolume@TStereoChannel] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1 + +[External Topic Properties\IJclWinMidiOut.GetVolume] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=2 + +[External Topic Properties\IJclWinMidiOut.SetChannelVolume@TStereoChannel@Word] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3 + +[External Topic Properties\IJclWinMidiOut.SetVolume@Word] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=4 + +[External Topic Properties\IJclWinMidiOut.Volume] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=5 + +[External Topic Properties\IMAGE_ARCHITECTURE_ENTRY] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=25 + +[External Topic Properties\IMAGE_ARCHITECTURE_HEADER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=26 + +[External Topic Properties\IMAGE_ARCHIVE_END] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1020 + +[External Topic Properties\IMAGE_ARCHIVE_LINKER_MEMBER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1021 + +[External Topic Properties\IMAGE_ARCHIVE_LONGNAMES_MEMBER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1022 + +[External Topic Properties\IMAGE_ARCHIVE_MEMBER_HEADER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=27 + +[External Topic Properties\IMAGE_ARCHIVE_PAD] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1023 + +[External Topic Properties\IMAGE_ARCHIVE_START] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1024 + +[External Topic Properties\IMAGE_ARCHIVE_START_SIZE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1025 + +[External Topic Properties\IMAGE_COFF_SYMBOLS_HEADER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=28 + +[External Topic Properties\IMAGE_COR_EATJ_THUNK_SIZE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1026 + +[External Topic Properties\IMAGE_COR_ILMETHOD_FAT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1 + +[External Topic Properties\IMAGE_COR_ILMETHOD_FAT.CodeSize] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\IMAGE_COR_ILMETHOD_FAT.Flags_Size] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1 + +[External Topic Properties\IMAGE_COR_ILMETHOD_FAT.LocalVarSigTok] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=2 + +[External Topic Properties\IMAGE_COR_ILMETHOD_FAT.MaxStack] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=2 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH.Fat] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH.Small] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.ClassToken] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.FilterOffset] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.Flags] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=2 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.HandlerLength] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.HandlerOffset] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=4 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.TryLength] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=5 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.TryOffset] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=6 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=4 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.ClassToken] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.FilterOffset] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.Flags] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=2 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.HandlerLength] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.HandlerOffset] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=4 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.TryLength] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=5 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.TryOffset] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=6 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_FAT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=5 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_FAT.Clauses] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_FAT.SectFat] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_SMALL] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=6 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_SMALL.Clauses] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_SMALL.SectSmall] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_FAT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=7 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_FAT.Kind_DataSize] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_SMALL] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=8 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_SMALL.Datasize] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_SMALL.Kind] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1 + +[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_SMALL.Padding] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=2 + +[External Topic Properties\IMAGE_COR_ILMETHOD_TINY] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=9 + +[External Topic Properties\IMAGE_COR_ILMETHOD_TINY.Flags_CodeSize] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\IMAGE_COR_MIH_BASICBLOCK] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1027 + +[External Topic Properties\IMAGE_COR_MIH_EHRVA] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1028 + +[External Topic Properties\IMAGE_COR_MIH_METHODRVA] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1029 + +[External Topic Properties\IMAGE_COR_VTABLEFIXUP] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=12 + +[External Topic Properties\IMAGE_DATA_DIRECTORY] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=30 + +[External Topic Properties\IMAGE_DEBUG_MISC] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=31 + +[External Topic Properties\IMAGE_DEBUG_MISC_EXENAME] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1030 + +[External Topic Properties\IMAGE_DIRECTORY_ENTRY_ARCHITECTURE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1031 + +[External Topic Properties\IMAGE_DIRECTORY_ENTRY_BASERELOC] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1032 + +[External Topic Properties\IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1033 + +[External Topic Properties\IMAGE_DIRECTORY_ENTRY_DEBUG] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1034 + +[External Topic Properties\IMAGE_DIRECTORY_ENTRY_EXCEPTION] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1035 + +[External Topic Properties\IMAGE_DIRECTORY_ENTRY_EXPORT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1036 + +[External Topic Properties\IMAGE_DIRECTORY_ENTRY_GLOBALPTR] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1037 + +[External Topic Properties\IMAGE_DIRECTORY_ENTRY_IAT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1038 + +[External Topic Properties\IMAGE_DIRECTORY_ENTRY_IMPORT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1039 + +[External Topic Properties\IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1040 + +[External Topic Properties\IMAGE_DIRECTORY_ENTRY_RESOURCE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1041 + +[External Topic Properties\IMAGE_DIRECTORY_ENTRY_SECURITY] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1042 + +[External Topic Properties\IMAGE_DIRECTORY_ENTRY_TLS] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1043 + +[External Topic Properties\IMAGE_DLLCHARACTERISTICS_NO_BIND] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1044 + +[External Topic Properties\IMAGE_DLLCHARACTERISTICS_NO_ISOLATION] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1045 + +[External Topic Properties\IMAGE_DLLCHARACTERISTICS_NO_SEH] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1046 + +[External Topic Properties\IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1047 + +[External Topic Properties\IMAGE_DLLCHARACTERISTICS_WDM_DRIVER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1048 + +[External Topic Properties\IMAGE_FILE_32BIT_MACHINE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1049 + +[External Topic Properties\IMAGE_FILE_AGGRESIVE_WS_TRIM] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1050 + +[External Topic Properties\IMAGE_FILE_BYTES_REVERSED_HI] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1051 + +[External Topic Properties\IMAGE_FILE_BYTES_REVERSED_LO] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1052 + +[External Topic Properties\IMAGE_FILE_DEBUG_STRIPPED] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1053 + +[External Topic Properties\IMAGE_FILE_DLL] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1054 + +[External Topic Properties\IMAGE_FILE_EXECUTABLE_IMAGE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1055 + +[External Topic Properties\IMAGE_FILE_HEADER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=32 + +[External Topic Properties\IMAGE_FILE_LARGE_ADDRESS_AWARE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1056 + +[External Topic Properties\IMAGE_FILE_LINE_NUMS_STRIPPED] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1057 + +[External Topic Properties\IMAGE_FILE_LOCAL_SYMS_STRIPPED] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1058 + +[External Topic Properties\IMAGE_FILE_MACHINE_ALPHA] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1059 + +[External Topic Properties\IMAGE_FILE_MACHINE_ALPHA64] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1060 + +[External Topic Properties\IMAGE_FILE_MACHINE_AM33] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1061 + +[External Topic Properties\IMAGE_FILE_MACHINE_AMD64] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1062 + +[External Topic Properties\IMAGE_FILE_MACHINE_ARM] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1063 + +[External Topic Properties\IMAGE_FILE_MACHINE_AXP64] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1064 + +[External Topic Properties\IMAGE_FILE_MACHINE_CEE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1065 + +[External Topic Properties\IMAGE_FILE_MACHINE_CEF] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1066 + +[External Topic Properties\IMAGE_FILE_MACHINE_EBC] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1067 + +[External Topic Properties\IMAGE_FILE_MACHINE_I386] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1068 + +[External Topic Properties\IMAGE_FILE_MACHINE_IA64] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1069 + +[External Topic Properties\IMAGE_FILE_MACHINE_M32R] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1070 + +[External Topic Properties\IMAGE_FILE_MACHINE_MIPS16] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1071 + +[External Topic Properties\IMAGE_FILE_MACHINE_MIPSFPU] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1072 + +[External Topic Properties\IMAGE_FILE_MACHINE_MIPSFPU16] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1073 + +[External Topic Properties\IMAGE_FILE_MACHINE_POWERPC] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1074 + +[External Topic Properties\IMAGE_FILE_MACHINE_POWERPCFP] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1075 + +[External Topic Properties\IMAGE_FILE_MACHINE_R10000] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1076 + +[External Topic Properties\IMAGE_FILE_MACHINE_R3000] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1077 + +[External Topic Properties\IMAGE_FILE_MACHINE_R4000] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1078 + +[External Topic Properties\IMAGE_FILE_MACHINE_SH3] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1079 + +[External Topic Properties\IMAGE_FILE_MACHINE_SH3DSP] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1080 + +[External Topic Properties\IMAGE_FILE_MACHINE_SH3E] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1081 + +[External Topic Properties\IMAGE_FILE_MACHINE_SH4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1082 + +[External Topic Properties\IMAGE_FILE_MACHINE_SH5] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1083 + +[External Topic Properties\IMAGE_FILE_MACHINE_THUMB] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1084 + +[External Topic Properties\IMAGE_FILE_MACHINE_TRICORE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1085 + +[External Topic Properties\IMAGE_FILE_MACHINE_UNKNOWN] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1086 + +[External Topic Properties\IMAGE_FILE_MACHINE_WCEMIPSV2] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1087 + +[External Topic Properties\IMAGE_FILE_NET_RUN_FROM_SWAP] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1088 + +[External Topic Properties\IMAGE_FILE_RELOCS_STRIPPED] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1089 + +[External Topic Properties\IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1090 + +[External Topic Properties\IMAGE_FILE_SYSTEM] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1091 + +[External Topic Properties\IMAGE_FILE_UP_SYSTEM_ONLY] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1092 + +[External Topic Properties\IMAGE_FIRST_SECTION@PImageNtHeaders] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=428 + +[External Topic Properties\IMAGE_FUNCTION_ENTRY] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=33 + +[External Topic Properties\IMAGE_FUNCTION_ENTRY64] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=34 + +[External Topic Properties\IMAGE_LINENUMBER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=35 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=70 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.CriticalSectionDefaultTimeout] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.CSDVersion] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.DeCommitFreeBlockThreshold] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=2 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.DeCommitTotalFreeThreshold] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.EditList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=4 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.GlobalFlagsClear] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=5 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.GlobalFlagsSet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=6 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.LockPrefixTable] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=7 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.MajorVersion] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=8 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.MaximumAllocationSize] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=9 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.MinorVersion] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=10 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.ProcessAffinityMask] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=11 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.ProcessHeapFlags] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=12 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.Reserved1] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=13 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.SecurityCookie] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=14 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.SEHandlerCount] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=15 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.SEHandlerTable] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=16 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.Size] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=17 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.TimeDateStamp] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=18 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.VirtualMemoryThreshold] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=19 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=71 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.CriticalSectionDefaultTimeout] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.CSDVersion] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.DeCommitFreeBlockThreshold] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=2 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.DeCommitTotalFreeThreshold] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.EditList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=4 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.GlobalFlagsClear] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=5 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.GlobalFlagsSet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=6 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.LockPrefixTable] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=7 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.MajorVersion] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=8 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.MaximumAllocationSize] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=9 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.MinorVersion] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=10 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.ProcessAffinityMask] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=11 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.ProcessHeapFlags] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=12 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.Reserved1] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=13 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.SecurityCookie] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=14 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.SEHandlerCount] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=15 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.SEHandlerTable] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=16 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.Size] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=17 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.TimeDateStamp] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=18 + +[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.VirtualMemoryThreshold] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=19 + +[External Topic Properties\IMAGE_NT_HEADERS] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=36 + +[External Topic Properties\IMAGE_NT_HEADERS32] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=37 + +[External Topic Properties\IMAGE_NT_HEADERS64] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=38 + +[External Topic Properties\IMAGE_NT_OPTIONAL_HDR_MAGIC] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1093 + +[External Topic Properties\IMAGE_NT_OPTIONAL_HDR32_MAGIC] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1094 + +[External Topic Properties\IMAGE_NT_OPTIONAL_HDR64_MAGIC] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1095 + +[External Topic Properties\IMAGE_NUMBEROF_DIRECTORY_ENTRIES] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1096 + +[External Topic Properties\IMAGE_OPTIONAL_HEADER32] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=39 + +[External Topic Properties\IMAGE_OPTIONAL_HEADER64] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=40 + +[External Topic Properties\IMAGE_ORDINAL@DWORD] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=429 + +[External Topic Properties\IMAGE_ORDINAL_FLAG32] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1097 + +[External Topic Properties\IMAGE_ORDINAL_FLAG64] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1098 + +[External Topic Properties\IMAGE_ORDINAL32@DWORD] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=430 + +[External Topic Properties\IMAGE_ORDINAL64@ULONGLONG] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=431 + +[External Topic Properties\IMAGE_RESOURCE_DIRECTORY_STRING] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=41 + +[External Topic Properties\IMAGE_ROM_HEADERS] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=42 + +[External Topic Properties\IMAGE_ROM_OPTIONAL_HDR_MAGIC] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1099 + +[External Topic Properties\IMAGE_ROM_OPTIONAL_HEADER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=43 + +[External Topic Properties\IMAGE_SCN_ALIGN_1024BYTES] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1100 + +[External Topic Properties\IMAGE_SCN_ALIGN_128BYTES] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1101 + +[External Topic Properties\IMAGE_SCN_ALIGN_16BYTES] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1102 + +[External Topic Properties\IMAGE_SCN_ALIGN_1BYTES] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1103 + +[External Topic Properties\IMAGE_SCN_ALIGN_2048BYTES] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1104 + +[External Topic Properties\IMAGE_SCN_ALIGN_256BYTES] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1105 + +[External Topic Properties\IMAGE_SCN_ALIGN_2BYTES] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1106 + +[External Topic Properties\IMAGE_SCN_ALIGN_32BYTES] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1107 + +[External Topic Properties\IMAGE_SCN_ALIGN_4096BYTES] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1108 + +[External Topic Properties\IMAGE_SCN_ALIGN_4BYTES] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1109 + +[External Topic Properties\IMAGE_SCN_ALIGN_512BYTES] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1110 + +[External Topic Properties\IMAGE_SCN_ALIGN_64BYTES] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1111 + +[External Topic Properties\IMAGE_SCN_ALIGN_8192BYTES] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1112 + +[External Topic Properties\IMAGE_SCN_ALIGN_8BYTES] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1113 + +[External Topic Properties\IMAGE_SCN_ALIGN_MASK] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1114 + +[External Topic Properties\IMAGE_SCN_CNT_CODE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1115 + +[External Topic Properties\IMAGE_SCN_CNT_INITIALIZED_DATA] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1116 + +[External Topic Properties\IMAGE_SCN_CNT_UNINITIALIZED_DATA] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1117 + +[External Topic Properties\IMAGE_SCN_GPREL] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1118 + +[External Topic Properties\IMAGE_SCN_LNK_COMDAT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1119 + +[External Topic Properties\IMAGE_SCN_LNK_INFO] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1120 + +[External Topic Properties\IMAGE_SCN_LNK_NRELOC_OVFL] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1121 + +[External Topic Properties\IMAGE_SCN_LNK_OTHER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1122 + +[External Topic Properties\IMAGE_SCN_LNK_REMOVE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1123 + +[External Topic Properties\IMAGE_SCN_MEM_16BIT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1124 + +[External Topic Properties\IMAGE_SCN_MEM_DISCARDABLE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1125 + +[External Topic Properties\IMAGE_SCN_MEM_EXECUTE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1126 + +[External Topic Properties\IMAGE_SCN_MEM_FARDATA] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1127 + +[External Topic Properties\IMAGE_SCN_MEM_LOCKED] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1128 + +[External Topic Properties\IMAGE_SCN_MEM_NOT_CACHED] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1129 + +[External Topic Properties\IMAGE_SCN_MEM_NOT_PAGED] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1130 + +[External Topic Properties\IMAGE_SCN_MEM_PRELOAD] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1131 + +[External Topic Properties\IMAGE_SCN_MEM_PURGEABLE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1132 + +[External Topic Properties\IMAGE_SCN_MEM_READ] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1133 + +[External Topic Properties\IMAGE_SCN_MEM_SHARED] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1134 + +[External Topic Properties\IMAGE_SCN_MEM_WRITE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1135 + +[External Topic Properties\IMAGE_SCN_NO_DEFER_SPEC_EXC] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1136 + +[External Topic Properties\IMAGE_SCN_TYPE_NO_PAD] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1137 + +[External Topic Properties\IMAGE_SECTION_HEADER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=44 + +[External Topic Properties\IMAGE_SEPARATE_DEBUG_FLAGS_MASK] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1138 + +[External Topic Properties\IMAGE_SEPARATE_DEBUG_HEADER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=45 + +[External Topic Properties\IMAGE_SEPARATE_DEBUG_MISMATCH] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1139 + +[External Topic Properties\IMAGE_SEPARATE_DEBUG_SIGNATURE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1140 + +[External Topic Properties\IMAGE_SEPARATION] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1141 + +[External Topic Properties\IMAGE_SIZEOF_ARCHIVE_MEMBER_HDR] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1142 + +[External Topic Properties\IMAGE_SIZEOF_FILE_HEADER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1143 + +[External Topic Properties\IMAGE_SIZEOF_LINENUMBER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1144 + +[External Topic Properties\IMAGE_SIZEOF_NT_OPTIONAL_HEADER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1145 + +[External Topic Properties\IMAGE_SIZEOF_NT_OPTIONAL32_HEADER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1146 + +[External Topic Properties\IMAGE_SIZEOF_NT_OPTIONAL64_HEADER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1147 + +[External Topic Properties\IMAGE_SIZEOF_ROM_OPTIONAL_HEADER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1148 + +[External Topic Properties\IMAGE_SIZEOF_SECTION_HEADER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1149 + +[External Topic Properties\IMAGE_SIZEOF_SHORT_NAME] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1150 + +[External Topic Properties\IMAGE_SIZEOF_STD_OPTIONAL_HEADER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1151 + +[External Topic Properties\IMAGE_SNAP_BY_ORDINAL@DWORD] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=432 + +[External Topic Properties\IMAGE_SNAP_BY_ORDINAL32@DWORD] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=433 + +[External Topic Properties\IMAGE_SNAP_BY_ORDINAL64@ULONGLONG] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=434 + +[External Topic Properties\IMAGE_SUBSYSTEM_EFI_APPLICATION] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1152 + +[External Topic Properties\IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1153 + +[External Topic Properties\IMAGE_SUBSYSTEM_EFI_ROM] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1154 + +[External Topic Properties\IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1155 + +[External Topic Properties\IMAGE_SUBSYSTEM_NATIVE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1156 + +[External Topic Properties\IMAGE_SUBSYSTEM_NATIVE_WINDOWS] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1157 + +[External Topic Properties\IMAGE_SUBSYSTEM_OS2_CUI] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1158 + +[External Topic Properties\IMAGE_SUBSYSTEM_POSIX_CUI] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1159 + +[External Topic Properties\IMAGE_SUBSYSTEM_UNKNOWN] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1160 + +[External Topic Properties\IMAGE_SUBSYSTEM_WINDOWS_CE_GUI] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1161 + +[External Topic Properties\IMAGE_SUBSYSTEM_WINDOWS_CUI] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1162 + +[External Topic Properties\IMAGE_SUBSYSTEM_WINDOWS_GUI] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1163 + +[External Topic Properties\IMAGE_SUBSYSTEM_XBOX] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1164 + +[External Topic Properties\IMAGE_THUNK_DATA32] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=46 + +[External Topic Properties\IMAGE_THUNK_DATA64] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=47 + +[External Topic Properties\IMAGE_TLS_DIRECTORY32] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=48 + +[External Topic Properties\IMAGE_TLS_DIRECTORY64] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=49 + +[External Topic Properties\ImageDirectoryEntryToData@Pointer@ByteBool@USHORT@ULONG] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=435 + +[External Topic Properties\IMAGEHLP_LINE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=50 + +[External Topic Properties\ImageRvaToSection@PImageNtHeaders@Pointer@ULONG] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=436 + +[External Topic Properties\ImageRvaToVa@PImageNtHeaders@Pointer@ULONG@PPImageSectionHeader] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=437 + +[External Topic Properties\ImgDelayDescrV1] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=72 + +[External Topic Properties\ImgDelayDescrV1.dwTimeStamp] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\ImgDelayDescrV1.grAttrs] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1 + +[External Topic Properties\ImgDelayDescrV1.pBoundIAT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=2 + +[External Topic Properties\ImgDelayDescrV1.phmod] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3 + +[External Topic Properties\ImgDelayDescrV1.pIAT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=4 + +[External Topic Properties\ImgDelayDescrV1.pINT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=5 + +[External Topic Properties\ImgDelayDescrV1.pUnloadIAT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=6 + +[External Topic Properties\ImgDelayDescrV1.szName] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=7 + +[External Topic Properties\ImgDelayDescrV2] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=73 + +[External Topic Properties\ImgDelayDescrV2.dwTimeStamp] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\ImgDelayDescrV2.grAttrs] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1 + +[External Topic Properties\ImgDelayDescrV2.rvaBoundIAT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=2 + +[External Topic Properties\ImgDelayDescrV2.rvaDLLName] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3 + +[External Topic Properties\ImgDelayDescrV2.rvaHmod] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=4 + +[External Topic Properties\ImgDelayDescrV2.rvaIAT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=5 + +[External Topic Properties\ImgDelayDescrV2.rvaINT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=6 + +[External Topic Properties\ImgDelayDescrV2.rvaUnloadIAT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=7 + +[External Topic Properties\IMPORT_OBJECT_HDR_SIG2] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1165 + +[External Topic Properties\IMPORT_OBJECT_HEADER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=74 + +[External Topic Properties\IMPORT_OBJECT_HEADER.Flags] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\IMPORT_OBJECT_HEADER.Machine] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1 + +[External Topic Properties\IMPORT_OBJECT_HEADER.OrdinalOrHint] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=2 + +[External Topic Properties\IMPORT_OBJECT_HEADER.Sig1] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3 + +[External Topic Properties\IMPORT_OBJECT_HEADER.Sig2] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=4 + +[External Topic Properties\IMPORT_OBJECT_HEADER.SizeOfData] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=5 + +[External Topic Properties\IMPORT_OBJECT_HEADER.TimeDateStamp] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=6 + +[External Topic Properties\IMPORT_OBJECT_HEADER.Version] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=7 + +[External Topic Properties\IMPORT_OBJECT_NAME_TYPE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=75 + +[External Topic Properties\IMPORT_OBJECT_NAME_TYPE.IMPORT_OBJECT_NAME] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\IMPORT_OBJECT_NAME_TYPE.IMPORT_OBJECT_NAME_NO_PREFIX] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1 + +[External Topic Properties\IMPORT_OBJECT_NAME_TYPE.IMPORT_OBJECT_NAME_UNDECORATE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=2 + +[External Topic Properties\IMPORT_OBJECT_NAME_TYPE.IMPORT_OBJECT_ORDINAL] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3 + +[External Topic Properties\IMPORT_OBJECT_TYPE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=76 + +[External Topic Properties\IMPORT_OBJECT_TYPE.IMPORT_OBJECT_CODE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\IMPORT_OBJECT_TYPE.IMPORT_OBJECT_CONST] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1 + +[External Topic Properties\IMPORT_OBJECT_TYPE.IMPORT_OBJECT_DATA] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=2 + +[External Topic Properties\IncLimit@Cardinal@Cardinal@Cardinal] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=568 + +[External Topic Properties\IncLimit@Int64@Int64@Int64] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=569 + +[External Topic Properties\IncLimit@Integer@Integer@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=573 + +[External Topic Properties\IncLimit@Shortint@Shortint@Shortint] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=572 + +[External Topic Properties\IncLimit@Smallint@Smallint@Smallint] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=571 + +[External Topic Properties\IncLimit@Word@Word@Word] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=570 + +[External Topic Properties\IncLimitClamp@Cardinal@Cardinal@Cardinal] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=579 + +[External Topic Properties\IncLimitClamp@Int64@Int64@Int64] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=576 + +[External Topic Properties\IncLimitClamp@Integer@Integer@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=578 + +[External Topic Properties\IncLimitClamp@Shortint@Shortint@Shortint] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=574 + +[External Topic Properties\IncLimitClamp@Smallint@Smallint@Smallint] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=575 + +[External Topic Properties\IncLimitClamp@Word@Word@Word] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=577 + +[External Topic Properties\IncludedFiles] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=JCL +ETPTopicOrder0=32 + +[External Topic Properties\IndexedDayOfWeek@Integer@Integer@Integer@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=580 + +[External Topic Properties\IndexedWeekDay@Integer@Integer@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=581 + +[External Topic Properties\IndexedWeekendDay@Integer@Integer@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=582 + +[External Topic Properties\InfiniteTime] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=665 + +[External Topic Properties\Infinity] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=666 + +[External Topic Properties\InheritsFromByName@TClass@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=583 + +[External Topic Properties\IniReadStrings@TCustomIniFile@string@TStrings] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=584 + +[External Topic Properties\InitCrc16@Word@Word@TCrc16Table] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=585 + +[External Topic Properties\InitCrc32@Cardinal@Cardinal@TCrc32Table] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=586 + +[External Topic Properties\InitializeLocaleSupport] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=587 + +[External Topic Properties\InitializeOpenDialogFavorites] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=588 + +[External Topic Properties\InitializeOpenDialogHook@TJclOpenDialogHookClass] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=589 + +[External Topic Properties\InitSimpleLog@string@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=590 + +[External Topic Properties\IniWriteStrings@TCustomIniFile@string@TStrings] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=591 + +[External Topic Properties\InsertCompositeElementInto@TEDISEFDataObjectGroup@TEDISEFCompositeElement@TEDISEFDataObject] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=456 + +[External Topic Properties\InsertCompositeElementInto@TEDISEFDataObjectGroup@TEDISEFDataObject] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=457 + +[External Topic Properties\InsertDebugDataIntoExecutableFile@TFileName@TFileName@string@Integer@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=460 + +[External Topic Properties\InsertDebugDataIntoExecutableFile@TFileName@TFileName@string@Integer@Integer@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=592 + +[External Topic Properties\InsertDebugDataIntoExecutableFile@TFileName@TJclBinDebugGenerator@string@Integer@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=593 + +[External Topic Properties\InsertDebugDataIntoExecutableFile@TFileName@TJclBinDebugGenerator@string@Integer@Integer@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=594 + +[External Topic Properties\InsertElementInto@TEDISEFDataObjectGroup@TEDISEFDataObject] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=463 + +[External Topic Properties\InsertElementInto@TEDISEFDataObjectGroup@TEDISEFElement@TEDISEFDataObject] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=462 + +[External Topic Properties\InsertLoopInto@TEDISEFDataObjectGroup@TEDISEFDataObject] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=465 + +[External Topic Properties\InsertLoopInto@TEDISEFDataObjectGroup@TEDISEFLoop@TEDISEFDataObject] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=464 + +[External Topic Properties\InsertRepeatingPatternInto@TEDISEFDataObjectGroup@TEDISEFDataObject] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=466 + +[External Topic Properties\InsertRepeatingPatternInto@TEDISEFDataObjectGroup@TEDISEFRepeatingPattern@TEDISEFDataObject] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=467 + +[External Topic Properties\InsertSegmentInto@TEDISEFDataObjectGroup@TEDISEFDataObject] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=468 + +[External Topic Properties\InsertSegmentInto@TEDISEFDataObjectGroup@TEDISEFSegment@TEDISEFDataObject] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=469 + +[External Topic Properties\InsertSubElementInto@TEDISEFDataObjectGroup@TEDISEFDataObject] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=470 + +[External Topic Properties\InsertSubElementInto@TEDISEFDataObjectGroup@TEDISEFSubElement@TEDISEFDataObject] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=471 + +[External Topic Properties\InsertTableInto@TEDISEFDataObjectGroup@TEDISEFDataObject] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=473 + +[External Topic Properties\InsertTableInto@TEDISEFDataObjectGroup@TEDISEFTable@TEDISEFDataObject] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=472 + +[External Topic Properties\InsertUnitVersioningSection@TFileName@TJclUnitVersioningList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=595 + +[External Topic Properties\INSTALLSTATE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=13 + +[External Topic Properties\InstructionDumpILAllOption] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=667 + +[External Topic Properties\INT_PTR] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=14 + +[External Topic Properties\Int16] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=15 + +[External Topic Properties\Int32] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=16 + +[External Topic Properties\Int64Mask] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=668 + +[External Topic Properties\Int64SimpleCompare@Int64@Int64] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=596 + +[External Topic Properties\Int64SimpleEqualityCompare@Int64@Int64] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=597 + +[External Topic Properties\Int64SimpleHashConvert@Int64] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=598 + +[External Topic Properties\Int64SortProc] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=25 + +[External Topic Properties\Int8] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=17 + +[External Topic Properties\IntegerCompare@TObject@TObject] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=599 + +[External Topic Properties\IntegerMask] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=669 + +[External Topic Properties\IntegerSimpleCompare@Integer@Integer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=600 + +[External Topic Properties\IntegerSimpleEqualityCompare@Integer@Integer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=601 + +[External Topic Properties\IntegerSimpleHashConvert@Integer] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=602 + +[External Topic Properties\IntegerSortProc] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=26 + +[External Topic Properties\INTEL_ACPI] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=670 + +[External Topic Properties\INTEL_APIC] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=671 + +[External Topic Properties\INTEL_BIT_10] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=672 + +[External Topic Properties\INTEL_BIT_20] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=673 + +[External Topic Properties\INTEL_BIT_30] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1175 + +[External Topic Properties\INTEL_CLFLSH] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=674 + +[External Topic Properties\INTEL_CMOV] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=675 + +[External Topic Properties\INTEL_CX8] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=676 + +[External Topic Properties\INTEL_DE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=677 + +[External Topic Properties\INTEL_DS] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=678 + +[External Topic Properties\INTEL_FPU] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=679 + +[External Topic Properties\INTEL_FXSR] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=680 + +[External Topic Properties\INTEL_HTT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=681 + +[External Topic Properties\INTEL_IA64] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=682 + +[External Topic Properties\INTEL_MCA] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=683 + +[External Topic Properties\INTEL_MCE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=684 + +[External Topic Properties\INTEL_MMX] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=685 + +[External Topic Properties\INTEL_MSR] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=686 + +[External Topic Properties\INTEL_MTRR] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=687 + +[External Topic Properties\INTEL_PAE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=688 + +[External Topic Properties\INTEL_PAT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=689 + +[External Topic Properties\INTEL_PBE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=690 + +[External Topic Properties\INTEL_PGE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=691 + +[External Topic Properties\INTEL_PSE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=692 + +[External Topic Properties\INTEL_PSE36] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=693 + +[External Topic Properties\INTEL_PSN] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=694 + +[External Topic Properties\INTEL_SEP] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=695 + +[External Topic Properties\INTEL_SS] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=696 + +[External Topic Properties\INTEL_SSE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=697 + +[External Topic Properties\INTEL_SSE2] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=698 + +[External Topic Properties\INTEL_TM] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=699 + +[External Topic Properties\INTEL_TSC] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=700 + +[External Topic Properties\INTEL_VME] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=701 + +[External Topic Properties\IntelCacheDescription] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=702 + +[External Topic Properties\Intensity@Single@Single@Single] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=604 + +[External Topic Properties\Intensity@TColor32] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=603 + +[External Topic Properties\Internationalisation] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=8 + +[External Topic Properties\InternetandE-mail] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=9 + +[External Topic Properties\IntfSimpleCompare@IInterface@IInterface] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=605 + +[External Topic Properties\IntfSimpleEqualityCompare@IInterface@IInterface] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=606 + +[External Topic Properties\IntfSimpleHashConvert@IInterface] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=607 + +[External Topic Properties\IntfSortProc] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=27 + +[External Topic Properties\IntToBool] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=608 + +[External Topic Properties\Inv@TPolarComplex] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=609 + +[External Topic Properties\Inv@TRectComplex] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=610 + +[External Topic Properties\inv2Pi] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=703 + +[External Topic Properties\INVALID_MIXER_HANDLE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=704 + +[External Topic Properties\IO_COMPLETION_ALL_ACCESS] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1205 + +[External Topic Properties\IO_COMPLETION_MODIFY_STATE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1206 + +[External Topic Properties\IO_REPARSE_TAG_DFS] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1207 + +[External Topic Properties\IO_REPARSE_TAG_FILTER_MANAGER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1208 + +[External Topic Properties\IOHFLAGS_TYPE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1209 + +[External Topic Properties\Is7ZipLoaded] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=611 + +[External Topic Properties\IsAccessInstalled] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=612 + +[External Topic Properties\IsAccountOperator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=613 + +[External Topic Properties\IsAuthorizationAccess] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=614 + +[External Topic Properties\IsAutoAdjustEnabled] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=615 + +[External Topic Properties\IsBackupFileName] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=483 + +[External Topic Properties\IsBackupOperator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=616 + +[External Topic Properties\IsBCBPackage@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=617 + +[External Topic Properties\IsBCBProject@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=618 + +[External Topic Properties\IsBZip2Loaded] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=619 + +[External Topic Properties\IsCompiledWithPackages] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=620 + +[External Topic Properties\IsDelphiPackage@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=621 + +[External Topic Properties\IsDelphiProject@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=622 + +[External Topic Properties\IsElevated] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=623 + +[External Topic Properties\IsExcelInstalled] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=624 + +[External Topic Properties\IsFrontPageInstalled] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=625 + +[External Topic Properties\IsGroupMember@DWORD] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=626 + +[External Topic Properties\IsGuest] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=627 + +[External Topic Properties\IsIgnoredException@TClass] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=628 + +[External Topic Properties\IsIncomingForestTrustBuilder] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=629 + +[External Topic Properties\IsInfinite@Extended] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=632 + +[External Topic Properties\IsInfinite@Single] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=631 + +[External Topic Properties\IsInfinite@TPolarComplex] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=633 + +[External Topic Properties\IsInfinite@TRectComplex] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=630 + +[External Topic Properties\IsInternetExplorerInstalled] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=634 + +[External Topic Properties\IsISOLongYear@TDateTime] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=636 + +[External Topic Properties\IsISOLongYear@Word] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=635 + +[External Topic Properties\IsLeapYear@TDateTime] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=637 + +[External Topic Properties\IsLoggingUser] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=638 + +[External Topic Properties\IsMainAppWindow@THandle] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=639 + +[External Topic Properties\IsMediaPresentInDrive@Char] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=640 + +[External Topic Properties\IsMonitoringUser] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=641 + +[External Topic Properties\IsMSProjectInstalled] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=642 + +[External Topic Properties\IsNaN@Extended] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=643 + +[External Topic Properties\IsNaN@Single] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=644 + +[External Topic Properties\IsNetworkConfigurationOperator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=645 + +[External Topic Properties\ISODayOfWeek@TDateTime] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=646 + +[External Topic Properties\ISOLATIONAWARE_MANIFEST_RESOURCE_ID] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1210 + +[External Topic Properties\ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1211 + +[External Topic Properties\IsOpenOfficeInstalled] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=647 + +[External Topic Properties\IsOutlookInstalled] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=648 + +[External Topic Properties\ISOWeekNumber@TDateTime@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=650 + +[External Topic Properties\ISOWeekNumber@TDateTime@Integer@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=649 + +[External Topic Properties\IsPCRELoaded] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=651 + +[External Topic Properties\IsPowerPointInstalled] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=652 + +[External Topic Properties\IsPowerUser] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=653 + +[External Topic Properties\IsPreWin2000CompAccess] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=654 + +[External Topic Properties\IsPrintOperator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=655 + +[External Topic Properties\IsPwrHibernateAllowed] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=512 + +[External Topic Properties\IsPwrShutdownAllowed] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=513 + +[External Topic Properties\IsPwrSuspendAllowed] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=514 + +[External Topic Properties\IsRASServer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=656 + +[External Topic Properties\IsRemoteDesktopUser] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=657 + +[External Topic Properties\IsReparseTagHighLatency@ULONG] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=515 + +[External Topic Properties\IsReparseTagMicrosoft@ULONG] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=516 + +[External Topic Properties\IsReparseTagNameSurrogate@ULONG] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=517 + +[External Topic Properties\IsReplicator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=658 + +[External Topic Properties\IsRootDirectory@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=659 + +[External Topic Properties\IsSystemOperator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=660 + +[External Topic Properties\IsSystemResourcesMeterPresent] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=661 + +[External Topic Properties\IsTSLicenseServer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=662 + +[External Topic Properties\IsUser] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=663 + +[External Topic Properties\IsValidISBN@AnsiString] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=520 + +[External Topic Properties\IsValidISBN@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=664 + +[External Topic Properties\IsWin2003R2] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=23 + +[External Topic Properties\IsWindows64] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=665 + +[External Topic Properties\IsWinXP64] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=28 + +[External Topic Properties\IsWordInstalled] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=666 + +[External Topic Properties\IsZero@TPolarComplex] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=668 + +[External Topic Properties\IsZero@TRectComplex] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=667 + +[External Topic Properties\IsZLibLoaded] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=669 + +[External Topic Properties\ITableCanDumpIL] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=319 + +[External Topic Properties\Iterate@IJclAnsiStrIterator@Integer@TAnsiStrIterateProcedure] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=677 + +[External Topic Properties\Iterate@IJclCardinalIterator@Integer@TCardinalIterateProcedure] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=675 + +[External Topic Properties\Iterate@IJclDoubleIterator@Integer@TDoubleIterateProcedure] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=680 + +[External Topic Properties\Iterate@IJclExtendedIterator@Integer@TExtendedIterateProcedure] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=678 + +[External Topic Properties\Iterate@IJclInt64Iterator@Integer@TInt64IterateProcedure] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=681 + +[External Topic Properties\Iterate@IJclIntegerIterator@Integer@TIntegerIterateProcedure] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=674 + +[External Topic Properties\Iterate@IJclIntfIterator@Integer@TIntfIterateProcedure] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=670 + +[External Topic Properties\Iterate@IJclIterator@Integer@TIterateProcedure] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=671 + +[External Topic Properties\Iterate@IJclPtrIterator@Integer@TPtrIterateProcedure] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=676 + +[External Topic Properties\Iterate@IJclSingleIterator@Integer@TSingleIterateProcedure] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=679 + +[External Topic Properties\Iterate@IJclUnicodeStrIterator@Integer@TUnicodeStrIterateProcedure] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=673 + +[External Topic Properties\Iterate@IJclWideStrIterator@Integer@TWideStrIterateProcedure] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=672 + +[External Topic Properties\IToString] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=320 + +[External Topic Properties\IToString.ToString] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\jcl.inc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=2 + +[External Topic Properties\JCL_GZIP_CM_DEFLATE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=705 + +[External Topic Properties\JCL_GZIP_EFLAG_FAST] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=706 + +[External Topic Properties\JCL_GZIP_EFLAG_MAX] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=707 + +[External Topic Properties\JCL_GZIP_FLAG_COMMENT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=708 + +[External Topic Properties\JCL_GZIP_FLAG_CRC] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=709 + +[External Topic Properties\JCL_GZIP_FLAG_EXTRA] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=710 + +[External Topic Properties\JCL_GZIP_FLAG_NAME] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=711 + +[External Topic Properties\JCL_GZIP_FLAG_TEXT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=712 + +[External Topic Properties\JCL_GZIP_ID1] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=713 + +[External Topic Properties\JCL_GZIP_ID2] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=714 + +[External Topic Properties\JCL_GZIP_OS_ACORN] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=715 + +[External Topic Properties\JCL_GZIP_OS_AMIGA] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=716 + +[External Topic Properties\JCL_GZIP_OS_ATARI] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=717 + +[External Topic Properties\JCL_GZIP_OS_CPM] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=718 + +[External Topic Properties\JCL_GZIP_OS_FAT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=719 + +[External Topic Properties\JCL_GZIP_OS_HPFS] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=720 + +[External Topic Properties\JCL_GZIP_OS_MAC] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=721 + +[External Topic Properties\JCL_GZIP_OS_NTFS] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=722 + +[External Topic Properties\JCL_GZIP_OS_QDOS] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=723 + +[External Topic Properties\JCL_GZIP_OS_TOPS] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=724 + +[External Topic Properties\JCL_GZIP_OS_UNIX] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=725 + +[External Topic Properties\JCL_GZIP_OS_UNKNOWN] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=726 + +[External Topic Properties\JCL_GZIP_OS_VM] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=727 + +[External Topic Properties\JCL_GZIP_OS_VMS] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=728 + +[External Topic Properties\JCL_GZIP_OS_Z] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=729 + +[External Topic Properties\JCL_GZIP_X_AC1] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=730 + +[External Topic Properties\JCL_GZIP_X_AC2] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=731 + +[External Topic Properties\JCL_GZIP_X_Ap1] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=732 + +[External Topic Properties\JCL_GZIP_X_Ap2] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=733 + +[External Topic Properties\JCL_GZIP_X_cp1] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=734 + +[External Topic Properties\JCL_GZIP_X_cp2] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=735 + +[External Topic Properties\JCL_GZIP_X_GS1] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=736 + +[External Topic Properties\JCL_GZIP_X_GS2] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=737 + +[External Topic Properties\JCL_GZIP_X_KN1] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=738 + +[External Topic Properties\JCL_GZIP_X_KN2] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=739 + +[External Topic Properties\JCL_GZIP_X_Mc1] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=740 + +[External Topic Properties\JCL_GZIP_X_Mc2] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=741 + +[External Topic Properties\JCL_GZIP_X_RO1] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=742 + +[External Topic Properties\JCL_GZIP_X_RO2] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=743 + +[External Topic Properties\JCL_PCRE_CALLOUT_FAILCONTINUE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=744 + +[External Topic Properties\JCL_PCRE_CALLOUT_NOERROR] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=745 + +[External Topic Properties\JCL_PCRE_ERROR_CALLOUTERROR] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=746 + +[External Topic Properties\JCL_PCRE_ERROR_STUDYFAILED] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=747 + +[External Topic Properties\Jcl8087.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3 + +[External Topic Properties\JclAbstractContainers.pas] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.files +ETPTopicOrder0=0 + +[External Topic Properties\JclAddExceptNotifier@TJclExceptNotifyMethod@TJclExceptNotifyPriority] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=683 + +[External Topic Properties\JclAddExceptNotifier@TJclExceptNotifyProc@TJclExceptNotifyPriority] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=684 + +[External Topic Properties\JclAddExceptNotifier@TJclExceptNotifyProcEx@TJclExceptNotifyPriority] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=682 + +[External Topic Properties\JclAlgorithms.pas] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.files +ETPTopicOrder0=1 + +[External Topic Properties\JclAnsiStrings.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=4 + +[External Topic Properties\JclAppInst.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=5 + +[External Topic Properties\JclAppInstances] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=685 + +[External Topic Properties\JclAppInstances@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=686 + +[External Topic Properties\JclArrayLists.pas] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.files +ETPTopicOrder0=2 + +[External Topic Properties\JclArraySets.pas] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.files +ETPTopicOrder0=3 + +[External Topic Properties\JclBase.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=6 + +[External Topic Properties\JclBelongsHookedCode@Pointer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=687 + +[External Topic Properties\JclBinaryTrees.pas] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.files +ETPTopicOrder0=4 + +[External Topic Properties\JclBorDesignerDescription] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=748 + +[External Topic Properties\JclBorDesignerFormExtension] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=749 + +[External Topic Properties\JclBorlandTools.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=12 + +[External Topic Properties\JclBorPersonalityDescription] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=750 + +[External Topic Properties\jclc6.inc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=4 + +[External Topic Properties\JclCancelWaitableTimer@THandle] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=688 + +[External Topic Properties\JclCharsetInfos] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=751 + +[External Topic Properties\JclCharsets.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=7 + +[External Topic Properties\JclCheckAndInitializeOpenGL] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=689 + +[External Topic Properties\JclCIL.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=8 + +[External Topic Properties\JclClearGlobalStackData] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=690 + +[External Topic Properties\JclCLR.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=9 + +[External Topic Properties\JclCOM.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=10 + +[External Topic Properties\JclCompilerUtils.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=11 + +[External Topic Properties\JclComplex.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=12 + +[External Topic Properties\JclCompression.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=13 + +[External Topic Properties\JclConsole.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=14 + +[External Topic Properties\JclContainerIntf.pas] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.files +ETPTopicOrder0=5 + +[External Topic Properties\JclCounter.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=15 + +[External Topic Properties\JclCreateStackList@Boolean@DWORD@Pointer@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=692 + +[External Topic Properties\JclCreateStackList@Boolean@DWORD@Pointer@Boolean@Pointer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=693 + +[External Topic Properties\JclCreateStackList@Boolean@DWORD@Pointer@Boolean@Pointer@Pointer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=691 + +[External Topic Properties\JclCreateThreadStackTrace@Boolean@THandle] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=694 + +[External Topic Properties\JclCreateThreadStackTraceFromID@Boolean@DWORD] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=695 + +[External Topic Properties\JclCreateWaitableTimer@PSecurityAttributes@Boolean@AnsiString] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=696 + +[External Topic Properties\JclCreateWaitableTimer@PSecurityAttributes@Boolean@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=538 + +[External Topic Properties\jclcs1.inc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=6 + +[External Topic Properties\jcld10.inc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=9 + +[External Topic Properties\jcld10.net.inc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=SourceFiles +ETPTopicOrder0=7 + +[External Topic Properties\jcld11.inc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=10 + +[External Topic Properties\jcld12.inc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=11 + +[External Topic Properties\jcld14.inc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=12 + +[External Topic Properties\jcld15.inc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=13 + +[External Topic Properties\jcld5.inc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=SourceFiles +ETPTopicOrder0=1 + +[External Topic Properties\jcld6.inc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=3 + +[External Topic Properties\jcld7.inc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=5 + +[External Topic Properties\jcld8.inc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=7 + +[External Topic Properties\jcld9.inc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=8 + +[External Topic Properties\jcld9.net.inc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=SourceFiles +ETPTopicOrder0=6 + +[External Topic Properties\JclDateTime.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=16 + +[External Topic Properties\JclDbgHeaderVersion] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=752 + +[External Topic Properties\JclDebug.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=17 + +[External Topic Properties\JclDebugInfoSymbolPaths] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=29 + +[External Topic Properties\JclDebugSerialization.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=18 + +[External Topic Properties\JclDebugThreadList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=697 + +[External Topic Properties\JclDebugXMLDeserializer.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=19 + +[External Topic Properties\JclDebugXMLSerializer.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=20 + +[External Topic Properties\JclDevToolsResources.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=21 + +[External Topic Properties\JclDotNet.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=22 + +[External Topic Properties\JclEDI.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=25 + +[External Topic Properties\JclEDI_ANSIX12.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=26 + +[External Topic Properties\JclEDI_ANSIX12_Ext.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=27 + +[External Topic Properties\JclEDI_UNEDIFACT.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=28 + +[External Topic Properties\JclEDI_UNEDIFACT_Ext.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=29 + +[External Topic Properties\JclEDISEF.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=30 + +[External Topic Properties\JclEDITranslators.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=31 + +[External Topic Properties\JclEDIXML.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=32 + +[External Topic Properties\JclExceptionTrackingActive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=698 + +[External Topic Properties\JclFileUtils.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=23 + +[External Topic Properties\JclFont.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=24 + +[External Topic Properties\jclfpc.inc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=14 + +[External Topic Properties\JclGetExceptFrameList@DWORD] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=699 + +[External Topic Properties\JclGetExceptStackList@DWORD] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=700 + +[External Topic Properties\JclGetExceptStackListToStrings@DWORD@TStrings@Boolean@Boolean@Boolean@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=701 + +[External Topic Properties\JclGetFileAttributesEx@string@TGetFileExInfoLevels@Pointer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=702 + +[External Topic Properties\JclglGetError] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=703 + +[External Topic Properties\JclglGetString@Cardinal] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=704 + +[External Topic Properties\JclgluErrorString@Cardinal] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=705 + +[External Topic Properties\JclGraphics.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=25 + +[External Topic Properties\JclGraphUtils.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=26 + +[External Topic Properties\JclHashMaps.pas] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.files +ETPTopicOrder0=6 + +[External Topic Properties\JclHashSets.pas] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.files +ETPTopicOrder0=7 + +[External Topic Properties\JclHelpUtils.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=27 + +[External Topic Properties\JclHookedExceptModulesList@TJclModuleArray] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=706 + +[External Topic Properties\JclHookExcept.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=28 + +[External Topic Properties\JclHookExceptionsInModule@HMODULE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=707 + +[External Topic Properties\JclHookThreads] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=708 + +[External Topic Properties\JclIDEUtils.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=29 + +[External Topic Properties\JclIniFiles.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=30 + +[External Topic Properties\JclInitializeCriticalSectionAndSpinCount@TRTLCriticalSection@Cardinal] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=709 + +[External Topic Properties\JclInitializeLibrariesHookExcept] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=710 + +[External Topic Properties\JclLANMan.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=31 + +[External Topic Properties\JclLastExceptStackListToStrings@TStrings@Boolean@Boolean@Boolean@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=711 + +[External Topic Properties\JclLinkedLists.pas] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.files +ETPTopicOrder0=8 + +[External Topic Properties\JclLocales.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=32 + +[External Topic Properties\JclLocalesInfoList@TStrings@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=712 + +[External Topic Properties\JclLogic.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=33 + +[External Topic Properties\JclMapFileExtension] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=753 + +[External Topic Properties\JclMapi.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=34 + +[External Topic Properties\JclMath.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=35 + +[External Topic Properties\JclMetadata.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=36 + +[External Topic Properties\JclMIDI.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=37 + +[External Topic Properties\JclMime.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=38 + +[External Topic Properties\JclMiscel.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=39 + +[External Topic Properties\JclMsdosSys.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=40 + +[External Topic Properties\JclMultimedia.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=41 + +[External Topic Properties\JclNotify.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=42 + +[External Topic Properties\JclNTFS.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=43 + +[External Topic Properties\JclOpenDialogFavorites.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=44 + +[External Topic Properties\JclOpenDialogHooks.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=45 + +[External Topic Properties\JclOpenWaitableTimer@Cardinal@Boolean@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=713 + +[External Topic Properties\JclPCRE] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=pcre +ETPTopicOrder0=0 + +[External Topic Properties\JclPCRE.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=46 + +[External Topic Properties\JclPCRE_Intro] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=pcre +ETPTopicOrder0=6 + +[External Topic Properties\JclPCRE_Using] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=pcre +ETPTopicOrder0=7 + +[External Topic Properties\JclPeImage.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=47 + +[External Topic Properties\JclPrint.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=48 + +[External Topic Properties\JclQGraphics.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=57 + +[External Topic Properties\JclQGraphUtils.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=58 + +[External Topic Properties\JclQueues.pas] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.files +ETPTopicOrder0=9 + +[External Topic Properties\JclRegistry.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=49 + +[External Topic Properties\JclRemoveExceptNotifier@TJclExceptNotifyMethod] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=714 + +[External Topic Properties\JclRemoveExceptNotifier@TJclExceptNotifyProc] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=716 + +[External Topic Properties\JclRemoveExceptNotifier@TJclExceptNotifyProcEx] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=715 + +[External Topic Properties\JclReplaceExceptObj@Exception] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=717 + +[External Topic Properties\JclResources.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=50 + +[External Topic Properties\JclRTTI.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=51 + +[External Topic Properties\JclSchedule.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=52 + +[External Topic Properties\JclScheduleTaskAllPages] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=754 + +[External Topic Properties\JclSecurity.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=53 + +[External Topic Properties\JclSetCriticalSectionSpinCount@TRTLCriticalSection@Cardinal] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=718 + +[External Topic Properties\JclShell.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=54 + +[External Topic Properties\JclSignalObjectAndWait@THandle@THandle@Cardinal@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=719 + +[External Topic Properties\JclSimpleSendFax@AnsiString@AnsiString@AnsiString@AnsiString@TFileName@Boolean@THandle@AnsiString@AnsiString] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=720 + +[External Topic Properties\JclSimpleSendFax@string@string@string@string@string@Boolean@THandle@string@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=561 + +[External Topic Properties\JclSimpleXml.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=55 + +[External Topic Properties\JclSortedMaps.pas] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.files +ETPTopicOrder0=10 + +[External Topic Properties\JclStacks.pas] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.files +ETPTopicOrder0=11 + +[External Topic Properties\JclStackTrackingOptions] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=30 + +[External Topic Properties\JclStartExceptionTracking] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=721 + +[External Topic Properties\JclStatistics.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=56 + +[External Topic Properties\JclStopExceptionTracking] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=722 + +[External Topic Properties\JclStreams.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=57 + +[External Topic Properties\JclStrHashMap.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=58 + +[External Topic Properties\JclStringConversions.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=59 + +[External Topic Properties\JclStringList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=723 + +[External Topic Properties\JclStringList@array of const] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=724 + +[External Topic Properties\JclStringList@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=725 + +[External Topic Properties\JclStringLists.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=60 + +[External Topic Properties\JclStringListStrings@array of string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=727 + +[External Topic Properties\JclStringListStrings@TStrings] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=726 + +[External Topic Properties\JclStrings.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=61 + +[External Topic Properties\JclStructStorage.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=62 + +[External Topic Properties\JclSvcCtrl.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=63 + +[External Topic Properties\JclSynch.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=64 + +[External Topic Properties\JclSysUtils.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=65 + +[External Topic Properties\JclTask.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=66 + +[External Topic Properties\JclTD32.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=67 + +[External Topic Properties\JclThreadsHooked] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=728 + +[External Topic Properties\JclTimeZones.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=68 + +[External Topic Properties\JclTrackExceptionsFromLibraries] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=729 + +[External Topic Properties\JclTrees.pas] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.files +ETPTopicOrder0=12 + +[External Topic Properties\JclTryEnterCriticalSection@TRTLCriticalSection] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=730 + +[External Topic Properties\JclUnhookThreads] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=731 + +[External Topic Properties\JclUnicode.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=69 + +[External Topic Properties\JclUnitConv.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=70 + +[External Topic Properties\JclUnitVersioning.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=71 + +[External Topic Properties\JclUnitVersioningProviders.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=72 + +[External Topic Properties\JclUnkookExceptionsInModule@HMODULE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=732 + +[External Topic Properties\JclUsesUtils.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=73 + +[External Topic Properties\JclValidateModuleAddress@Pointer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=733 + +[External Topic Properties\JclValidation.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=74 + +[External Topic Properties\JclVclResources.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=75 + +[External Topic Properties\JclVectors.pas] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.files +ETPTopicOrder0=13 + +[External Topic Properties\JclVersion] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Version numbers +ETPTopicOrder0=0 + +[External Topic Properties\JclVersionBuild] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Version numbers +ETPTopicOrder0=1 + +[External Topic Properties\JclVersionControl.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=76 + +[External Topic Properties\JclVersionCtrlCVSImpl.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=77 + +[External Topic Properties\JclVersionCtrlSVNImpl.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=78 + +[External Topic Properties\JclVersionMajor] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Version numbers +ETPTopicOrder0=2 + +[External Topic Properties\JclVersionMinor] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Version numbers +ETPTopicOrder0=3 + +[External Topic Properties\JclVersionRelease] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Version numbers +ETPTopicOrder0=4 + +[External Topic Properties\JclwglCreateContext@HDC] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=734 + +[External Topic Properties\JclwglDeleteContext@HGLRC] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=735 + +[External Topic Properties\JclwglMakeCurrent@HDC@HGLRC] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=736 + +[External Topic Properties\JclWideFormat.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=83 + +[External Topic Properties\JclWideStrings.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=79 + +[External Topic Properties\JclWin32.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=80 + +[External Topic Properties\JclWin32Ex.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=81 + +[External Topic Properties\JclWin32ExFunctions] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=737 + +[External Topic Properties\JclWinMIDI.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=82 + +[External Topic Properties\jedi.inc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=0 + +[External Topic Properties\KelvinAbsoluteZero] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=755 + +[External Topic Properties\KelvinBoilingPoint] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=756 + +[External Topic Properties\KelvinFreezingPoint] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=757 + +[External Topic Properties\KelvinTo@TTemperatureType@Float] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=738 + +[External Topic Properties\KelvinToRankine@Float] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=739 + +[External Topic Properties\KelvinToReaumur@Float] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=740 + +[External Topic Properties\KLF_RESET] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1268 + +[External Topic Properties\KLF_SHIFTLOCK] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1269 + +[External Topic Properties\KYLIX] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=CompilerVersions +ETPTopicOrder0=1 + +[External Topic Properties\kylix.inc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=1 + +[External Topic Properties\LANA_ENUM] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=55 + +[External Topic Properties\LANGIDFROMLCID@LCID] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=575 + +[External Topic Properties\Largeint] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=18 + +[External Topic Properties\LastDayOfWeek@Integer@Integer@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=741 + +[External Topic Properties\LastWeekDay@Integer@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=742 + +[External Topic Properties\LastWeekDay@Integer@Integer@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=743 + +[External Topic Properties\LastWeekendDay@Integer@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=745 + +[External Topic Properties\LastWeekendDay@Integer@Integer@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=744 + +[External Topic Properties\LibNotLoadedHandler] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=27 + +[External Topic Properties\LibrariesProcessesandThreads] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=10 + +[External Topic Properties\LibrariesProcessesandThreads.PortableExecutableFileFormat.APIHooking] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1 + +[External Topic Properties\LibrariesProcessesandThreads.PortableExecutableFileFormat.DebugSection] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=4 + +[External Topic Properties\LibrariesProcessesandThreads.PortableExecutableFileFormat.DelphiCBuilderSpecific] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=LibrariesProcessesandThreads.PortableExecutableFileFormat +ETPTopicOrder0=19 + +[External Topic Properties\LibrariesProcessesandThreads.PortableExecutableFileFormat.ExportSection] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=5 + +[External Topic Properties\LibrariesProcessesandThreads.PortableExecutableFileFormat.Imageaccessunderdebugger] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=6 + +[External Topic Properties\LibrariesProcessesandThreads.PortableExecutableFileFormat.ImportSection] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=7 + +[External Topic Properties\LibrariesProcessesandThreads.PortableExecutableFileFormat.MappedImageRoutines] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=8 + +[External Topic Properties\LibrariesProcessesandThreads.PortableExecutableFileFormat.Miscellaneous] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=9 + +[External Topic Properties\LibrariesProcessesandThreads.PortableExecutableFileFormat.Nameunmangling] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=10 + +[External Topic Properties\LibrariesProcessesandThreads.PortableExecutableFileFormat.RelocationSection] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=11 + +[External Topic Properties\LibrariesProcessesandThreads.PortableExecutableFileFormat.ResourceSection] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=12 + +[External Topic Properties\LibrariesProcessesandThreads.PortableExecutableFileFormat.SimplePEHelpers] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=13 + +[External Topic Properties\LibrariesProcessesandThreads.PortableExecutableFileFormat.SmartNameComparison] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=14 + +[External Topic Properties\LibrariesProcessesandThreads.PortableExecutableFileFormat.ThreadedSearch] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=15 + +[External Topic Properties\LibrariesProcessesandThreads.PortableExecutableFileFormat.TJclPeImage] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=16 + +[External Topic Properties\LibrariesProcessesandThreads.PortableExecutableFileFormat.TJclPeImageBaseList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=17 + +[External Topic Properties\LibrariesProcessesandThreads.PortableExecutableFileFormat.TJclPeImagesCache] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=18 + +[External Topic Properties\ListAddItems@string@string@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=746 + +[External Topic Properties\ListDelItem@string@string@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=747 + +[External Topic Properties\LISTEN_OUTSTANDING] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1270 + +[External Topic Properties\ListGetItem@string@string@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=748 + +[External Topic Properties\ListIncludeItems@string@string@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=749 + +[External Topic Properties\ListItemCount@string@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=750 + +[External Topic Properties\ListItemIndex@string@string@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=751 + +[External Topic Properties\ListRemoveItems@string@string@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=752 + +[External Topic Properties\ListSeparator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=758 + +[External Topic Properties\ListSetItem@string@string@Integer@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=753 + +[External Topic Properties\LM20_CNLEN] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1272 + +[External Topic Properties\LM20_DEVLEN] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1273 + +[External Topic Properties\LM20_DNLEN] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1274 + +[External Topic Properties\LM20_GNLEN] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1275 + +[External Topic Properties\LM20_MAXCOMMENTSZ] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1276 + +[External Topic Properties\LM20_NNLEN] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1277 + +[External Topic Properties\LM20_PATHLEN] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1278 + +[External Topic Properties\LM20_PWLEN] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1279 + +[External Topic Properties\LM20_QNLEN] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1280 + +[External Topic Properties\LM20_RMLEN] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1281 + +[External Topic Properties\LM20_SNLEN] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1282 + +[External Topic Properties\LM20_STXTLEN] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1283 + +[External Topic Properties\LM20_UNCLEN] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1284 + +[External Topic Properties\LM20_UNLEN] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1285 + +[External Topic Properties\LMCSTR] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=57 + +[External Topic Properties\LMSTR] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=58 + +[External Topic Properties\Ln@TPolarComplex] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=754 + +[External Topic Properties\Ln10] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=759 + +[External Topic Properties\Ln2] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=760 + +[External Topic Properties\LnPi] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=761 + +[External Topic Properties\Load7zFileAttribute@IInArchive@Integer@TJclCompressionItem] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=755 + +[External Topic Properties\Load7Zip] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=756 + +[External Topic Properties\LoadBZip2] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=757 + +[External Topic Properties\LoadCaseMappingData] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=758 + +[External Topic Properties\LoadCharacterCategories] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=759 + +[External Topic Properties\LoadCombiningClassData] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=760 + +[External Topic Properties\LoadCompositionData] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=761 + +[External Topic Properties\LoadDecompositionData] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=762 + +[External Topic Properties\LOADED_IMAGE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=59 + +[External Topic Properties\LoadLibraryShim@PWideChar@PWideChar@Pointer@HMODULE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=763 + +[External Topic Properties\LoadNumberData] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=764 + +[External Topic Properties\LoadPCRE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=765 + +[External Topic Properties\LoadSnmp] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=766 + +[External Topic Properties\LoadSnmpExtension@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=767 + +[External Topic Properties\LoadZLib] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=768 + +[External Topic Properties\LOCALE_IDEFAULTEBCDICCODEPAGE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1289 + +[External Topic Properties\LOCALE_IDIGITSUBSTITUTION] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1290 + +[External Topic Properties\LOCALE_IPAPERSIZE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1291 + +[External Topic Properties\LOCALE_NOUSEROVERRIDE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1292 + +[External Topic Properties\LOCALE_RETURN_NUMBER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1293 + +[External Topic Properties\LOCALE_SENGCURRNAME] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1294 + +[External Topic Properties\LOCALE_SNATIVECURRNAME] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1295 + +[External Topic Properties\LOCALE_SSORTNAME] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1296 + +[External Topic Properties\LOCALE_SYEARMONTH] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1297 + +[External Topic Properties\LOCALE_USE_CP_ACP] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1298 + +[External Topic Properties\LOCALGROUP_INFO_0] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=60 + +[External Topic Properties\LOCALGROUP_INFO_1] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=61 + +[External Topic Properties\LOCALGROUP_INFO_1002] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=62 + +[External Topic Properties\LOCALGROUP_MEMBERS_INFO_0] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=63 + +[External Topic Properties\LOCALGROUP_MEMBERS_INFO_1] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=64 + +[External Topic Properties\LOCALGROUP_MEMBERS_INFO_2] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=65 + +[External Topic Properties\LOCALGROUP_MEMBERS_INFO_3] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=66 + +[External Topic Properties\LocalSystemAccount] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=762 + +[External Topic Properties\LocalSystemSCMDesiredAccess] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=763 + +[External Topic Properties\LockedAdd@Integer@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=769 + +[External Topic Properties\LockedCompareExchange@Integer@Integer@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=772 + +[External Topic Properties\LockedCompareExchange@Pointer@Pointer@Pointer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=770 + +[External Topic Properties\LockedCompareExchange@TObject@TObject@TObject] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=771 + +[External Topic Properties\LockedDec@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=773 + +[External Topic Properties\LockedExchange@Integer@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=774 + +[External Topic Properties\LockedExchangeAdd@Integer@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=775 + +[External Topic Properties\LockedExchangeDec@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=776 + +[External Topic Properties\LockedExchangeInc@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=777 + +[External Topic Properties\LockedExchangeSub@Integer@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=778 + +[External Topic Properties\LockedInc@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=779 + +[External Topic Properties\LockedSub@Integer@Integer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=780 + +[External Topic Properties\Log2] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=764 + +[External Topic Properties\Log3] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=765 + +[External Topic Properties\LogE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=766 + +[External Topic Properties\LogPi] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=767 + +[External Topic Properties\LONG_PTR] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=19 + +[External Topic Properties\LookupAccountBySid@PSID@WideString@WideString] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=593 + +[External Topic Properties\LookupAccountBySid@PSID@WideString@WideString@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=781 + +[External Topic Properties\LowValidNaNTag] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=768 + +[External Topic Properties\LPCSTR] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=67 + +[External Topic Properties\LPCTSTR] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=68 + +[External Topic Properties\LPCWSTR] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=69 + +[External Topic Properties\LPGROUP_INFO_0] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=70 + +[External Topic Properties\LPGROUP_INFO_1] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=71 + +[External Topic Properties\LPLOCALGROUP_INFO_0] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=72 + +[External Topic Properties\LPLOCALGROUP_INFO_1] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=73 + +[External Topic Properties\LPLOCALGROUP_INFO_1002] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=74 + +[External Topic Properties\LPLOCALGROUP_MEMBERS_INFO_0] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=75 + +[External Topic Properties\LPLOCALGROUP_MEMBERS_INFO_1] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=76 + +[External Topic Properties\LPLOCALGROUP_MEMBERS_INFO_2] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=77 + +[External Topic Properties\LPLOCALGROUP_MEMBERS_INFO_3] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=78 + +[External Topic Properties\LPOSVERSIONINFOEX] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=79 + +[External Topic Properties\LPOSVERSIONINFOEXA] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=80 + +[External Topic Properties\LPOSVERSIONINFOEXW] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=81 + +[External Topic Properties\LPSERVICE_DESCRIPTIONA] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=20 + +[External Topic Properties\LPSTR] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=83 + +[External Topic Properties\LPUSER_INFO_0] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=84 + +[External Topic Properties\LPUSER_INFO_1] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=85 + +[External Topic Properties\LPUSER_INFO_2] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=86 + +[External Topic Properties\LPWSTR] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=87 + +[External Topic Properties\LRot@Integer@TBitRange] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=782 + +[External Topic Properties\LRot@Word@TBitRange] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=783 + +[External Topic Properties\LSA_HANDLE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=88 + +[External Topic Properties\LSA_OBJECT_ATTRIBUTES] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=89 + +[External Topic Properties\LSA_STRING] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=90 + +[External Topic Properties\LSA_UNICODE_STRING] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=91 + +[External Topic Properties\LsaClose@LSA_HANDLE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=596 + +[External Topic Properties\LsaFreeMemory@Pointer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=597 + +[External Topic Properties\LsaFreeReturnBuffer@Pointer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=598 + +[External Topic Properties\LsaNtStatusToWinError@NTSTATUS] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=599 + +[External Topic Properties\LsaOpenPolicy@PLSA_UNICODE_STRING@LSA_OBJECT_ATTRIBUTES@ACCESS_MASK@LSA_HANDLE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=600 + +[External Topic Properties\LsaQueryInformationPolicy@LSA_HANDLE@POLICY_INFORMATION_CLASS@Pointer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=601 + +[External Topic Properties\lstat64@PChar@TStatBuf64] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=602 + +[External Topic Properties\MAILSLOT_NO_MESSAGE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1305 + +[External Topic Properties\MAILSLOT_WAIT_FOREVER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1306 + +[External Topic Properties\MakeExeName] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=769 + +[External Topic Properties\MAKEINTRESOURCE] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=92 + +[External Topic Properties\MAKEINTRESOURCEA] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=93 -[External Topic Properties\IJclClrMethod] +[External Topic Properties\MAKEINTRESOURCEW] Count=1 ETPCommand0=2 -ETPTopicOrder0=24 +ETPTopicOrder0=94 -[External Topic Properties\IJclCommandLineTool] +[External Topic Properties\MAKELANGID@USHORT@USHORT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1 +ETPTopicOrder0=603 -[External Topic Properties\IJclCommandLineTool.AddPathOption@string@string] +[External Topic Properties\MAKELCID@WORD@WORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=604 -[External Topic Properties\IJclCommandLineTool.Execute@string] +[External Topic Properties\MakeQuietNaN@Extended@TNaNTag] Count=1 ETPCommand0=2 -ETPTopicOrder0=1 +ETPTopicOrder0=784 -[External Topic Properties\IJclCommandLineTool.ExeName] +[External Topic Properties\MakeQuietNaN@Single@TNaNTag] Count=1 ETPCommand0=2 -ETPTopicOrder0=2 +ETPTopicOrder0=785 -[External Topic Properties\IJclCommandLineTool.GetExeName] +[External Topic Properties\MakeSignalingNaN@Extended@TNaNTag] Count=1 ETPCommand0=2 -ETPTopicOrder0=3 +ETPTopicOrder0=786 -[External Topic Properties\IJclCommandLineTool.GetOptions] +[External Topic Properties\MakeSignalingNaN@Single@TNaNTag] Count=1 ETPCommand0=2 -ETPTopicOrder0=4 +ETPTopicOrder0=787 -[External Topic Properties\IJclCommandLineTool.GetOutput] +[External Topic Properties\MAKESORTLCID@WORD@WORD@WORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=5 +ETPTopicOrder0=609 -[External Topic Properties\IJclCommandLineTool.GetOutputCallback] +[External Topic Properties\MapAndLoad@PChar@PChar@LOADED_IMAGE@BOOL@BOOL] Count=1 ETPCommand0=2 -ETPTopicOrder0=6 +ETPTopicOrder0=610 -[External Topic Properties\IJclCommandLineTool.Options] +[External Topic Properties\MapiAddressTypeFAX] Count=1 ETPCommand0=2 -ETPTopicOrder0=7 +ETPTopicOrder0=770 -[External Topic Properties\IJclCommandLineTool.Output] +[External Topic Properties\MapiAddressTypeSMTP] Count=1 ETPCommand0=2 -ETPTopicOrder0=8 +ETPTopicOrder0=771 -[External Topic Properties\IJclCommandLineTool.OutputCallback] +[External Topic Properties\MapiAddressTypeTLX] Count=1 ETPCommand0=2 -ETPTopicOrder0=9 +ETPTopicOrder0=772 -[External Topic Properties\IJclCommandLineTool.SetOutputCallback@TTextHandler] +[External Topic Properties\MapWindowRect@THandle@THandle@TRect] Count=1 ETPCommand0=2 -ETPTopicOrder0=10 +ETPTopicOrder0=788 -[External Topic Properties\IJclMsdosSys] +[External Topic Properties\MarshalInterMachineInterfaceInStream@TIID@IUnknown@IStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=2 +ETPTopicOrder0=789 -[External Topic Properties\IJclMsdosSys.AutoScan] +[External Topic Properties\MarshalInterMachineInterfaceInVarArray@TIID@IUnknown@OleVariant] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=790 -[External Topic Properties\IJclMsdosSys.BootDelay] +[External Topic Properties\MarshalInterProcessInterfaceInStream@TIID@IUnknown@IStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=1 +ETPTopicOrder0=791 -[External Topic Properties\IJclMsdosSys.BootGUI] +[External Topic Properties\MarshalInterProcessInterfaceInVarArray@TIID@IUnknown@OleVariant] Count=1 ETPCommand0=2 -ETPTopicOrder0=2 +ETPTopicOrder0=792 -[External Topic Properties\IJclMsdosSys.BootKeys] +[External Topic Properties\MarshalInterThreadInterfaceInVarArray@TIID@IUnknown@OleVariant] Count=1 ETPCommand0=2 -ETPTopicOrder0=3 +ETPTopicOrder0=793 -[External Topic Properties\IJclMsdosSys.BootMenu] +[External Topic Properties\Mask8087Exceptions] Count=1 ETPCommand0=2 +ETPTopicOrder0=794 + +[External Topic Properties\MATH_DOUBLE_PRECISION] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=2 + +[External Topic Properties\MATH_EXT_EXTREMEVALUES] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles ETPTopicOrder0=4 -[External Topic Properties\IJclMsdosSys.BootMenuDefault] +[External Topic Properties\MATH_EXTENDED_PRECISION] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=1 + +[External Topic Properties\MATH_SINGLE_PRECISION] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=3 + +[External Topic Properties\MathRoutines] Count=1 ETPCommand0=2 -ETPTopicOrder0=5 +ETPTopicOrder0=11 -[External Topic Properties\IJclMsdosSys.BootMenuDelay] +[External Topic Properties\Max@Cardinal@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=6 +ETPTopicOrder0=796 -[External Topic Properties\IJclMsdosSys.BootMulti] +[External Topic Properties\Max@Int64@Int64] Count=1 ETPCommand0=2 -ETPTopicOrder0=7 +ETPTopicOrder0=795 -[External Topic Properties\IJclMsdosSys.BootSafe] +[External Topic Properties\Max@Integer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=8 +ETPTopicOrder0=799 -[External Topic Properties\IJclMsdosSys.BootWarn] +[External Topic Properties\Max@Shortint@Shortint] Count=1 ETPCommand0=2 -ETPTopicOrder0=9 +ETPTopicOrder0=800 -[External Topic Properties\IJclMsdosSys.BootWin] +[External Topic Properties\Max@Smallint@Smallint] Count=1 ETPCommand0=2 -ETPTopicOrder0=10 +ETPTopicOrder0=797 -[External Topic Properties\IJclMsdosSys.DBLSpace] +[External Topic Properties\Max@Word@Word] Count=1 ETPCommand0=2 -ETPTopicOrder0=11 +ETPTopicOrder0=798 -[External Topic Properties\IJclMsdosSys.DoubleBuffer] +[External Topic Properties\MAX_CAPTURE_COUNT] Count=1 ETPCommand0=2 -ETPTopicOrder0=12 +ETPTopicOrder0=1310 -[External Topic Properties\IJclMsdosSys.DRVSpace] +[External Topic Properties\MAX_CLASS_NAME] Count=1 ETPCommand0=2 -ETPTopicOrder0=13 +ETPTopicOrder0=1311 -[External Topic Properties\IJclMsdosSys.GetAutoScan] +[External Topic Properties\MAX_LANMAN_MESSAGE_ID] Count=1 ETPCommand0=2 -ETPTopicOrder0=14 +ETPTopicOrder0=1312 -[External Topic Properties\IJclMsdosSys.GetBootDelay] +[External Topic Properties\MAX_NATURAL_ALIGNMENT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1313 + +[External Topic Properties\MAX_NERR] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1314 + +[External Topic Properties\MAX_NESTING_DEPTH] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1315 + +[External Topic Properties\MAX_PACKAGE_NAME] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1316 + +[External Topic Properties\MAX_PATTERN_LENGTH] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1317 + +[External Topic Properties\MAX_PREFERRED_LENGTH] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1318 + +[External Topic Properties\MAX_QUANTIFY_REPEAT] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1319 + +[External Topic Properties\MaxAngle] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=773 + +[External Topic Properties\MAXCOMMENTSZ] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1321 + +[External Topic Properties\MAXDEVENTRIES] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1322 + +[External Topic Properties\MaxFactorial] Count=1 ETPCommand0=2 +ETPTopicOrder0=774 + +[External Topic Properties\MaxFloatingPoint] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=775 + +[External Topic Properties\MAXIMUM_RESERVED_MANIFEST_RESOURCE_ID] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1325 + +[External Topic Properties\MaximumUCS2] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Unicode +ETPTopicOrder0=13 + +[External Topic Properties\MaximumUCS4] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Unicode +ETPTopicOrder0=14 + +[External Topic Properties\MaximumUTF16] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Unicode ETPTopicOrder0=15 -[External Topic Properties\IJclMsdosSys.GetBootGUI] +[External Topic Properties\MAXLONGLONG] Count=1 ETPCommand0=2 -ETPTopicOrder0=16 +ETPTopicOrder0=1329 -[External Topic Properties\IJclMsdosSys.GetBootKeys] +[External Topic Properties\MaxPrefixCut] Count=1 ETPCommand0=2 -ETPTopicOrder0=17 +ETPTopicOrder0=776 -[External Topic Properties\IJclMsdosSys.GetBootMenu] +[External Topic Properties\MaxStackTraceItems] Count=1 ETPCommand0=2 -ETPTopicOrder0=18 +ETPTopicOrder0=777 -[External Topic Properties\IJclMsdosSys.GetBootMenuDefault] +[External Topic Properties\MaxStrCharCount] Count=1 ETPCommand0=2 -ETPTopicOrder0=19 +ETPTopicOrder0=778 -[External Topic Properties\IJclMsdosSys.GetBootMenuDelay] +[External Topic Properties\MaxTanH] Count=1 ETPCommand0=2 -ETPTopicOrder0=20 +ETPTopicOrder0=779 -[External Topic Properties\IJclMsdosSys.GetBootMulti] +[External Topic Properties\MaxTerm] Count=1 ETPCommand0=2 -ETPTopicOrder0=21 +ETPTopicOrder0=780 -[External Topic Properties\IJclMsdosSys.GetBootSafe] +[External Topic Properties\MCA_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=22 +ETPTopicOrder0=781 -[External Topic Properties\IJclMsdosSys.GetBootWarn] +[External Topic Properties\MCE_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=23 +ETPTopicOrder0=782 -[External Topic Properties\IJclMsdosSys.GetBootWin] +[External Topic Properties\MemoryClassesandObjects] Count=1 ETPCommand0=2 -ETPTopicOrder0=24 +ETPTopicOrder0=12 -[External Topic Properties\IJclMsdosSys.GetDBLSpace] +[External Topic Properties\MESSAGE_FILENAME] Count=1 ETPCommand0=2 -ETPTopicOrder0=25 +ETPTopicOrder0=1336 -[External Topic Properties\IJclMsdosSys.GetDoubleBuffer] +[External Topic Properties\METHOD_DIRECT_FROM_HARDWARE] Count=1 ETPCommand0=2 -ETPTopicOrder0=26 +ETPTopicOrder0=1337 -[External Topic Properties\IJclMsdosSys.GetDRVSpace] +[External Topic Properties\METHOD_DIRECT_TO_HARDWARE] Count=1 ETPCommand0=2 -ETPTopicOrder0=27 +ETPTopicOrder0=1338 -[External Topic Properties\IJclMsdosSys.GetHostWinBootDrv] +[External Topic Properties\MIDICCAllNotesOff] Count=1 ETPCommand0=2 -ETPTopicOrder0=28 +ETPTopicOrder0=783 -[External Topic Properties\IJclMsdosSys.GetLoadTop] +[External Topic Properties\MIDICCAllSoundOff] Count=1 ETPCommand0=2 -ETPTopicOrder0=29 +ETPTopicOrder0=784 -[External Topic Properties\IJclMsdosSys.GetLogo] +[External Topic Properties\MIDICCBalance] Count=1 ETPCommand0=2 -ETPTopicOrder0=30 +ETPTopicOrder0=785 -[External Topic Properties\IJclMsdosSys.GetNetwork] +[External Topic Properties\MIDICCBalanceLSB] Count=1 ETPCommand0=2 -ETPTopicOrder0=31 +ETPTopicOrder0=786 -[External Topic Properties\IJclMsdosSys.GetUninstallDir] +[External Topic Properties\MIDICCBankSelect] Count=1 ETPCommand0=2 -ETPTopicOrder0=32 +ETPTopicOrder0=787 -[External Topic Properties\IJclMsdosSys.GetWinBootDir] +[External Topic Properties\MIDICCBankSelectLSB] Count=1 ETPCommand0=2 -ETPTopicOrder0=33 +ETPTopicOrder0=788 -[External Topic Properties\IJclMsdosSys.GetWinDir] +[External Topic Properties\MIDICCBreathControl] Count=1 ETPCommand0=2 -ETPTopicOrder0=34 +ETPTopicOrder0=789 -[External Topic Properties\IJclMsdosSys.GetWinVer] +[External Topic Properties\MIDICCBreathControlLSB] Count=1 ETPCommand0=2 -ETPTopicOrder0=35 +ETPTopicOrder0=790 -[External Topic Properties\IJclMsdosSys.HostWinBootDrv] +[External Topic Properties\MIDICCCelesteDepth] Count=1 ETPCommand0=2 -ETPTopicOrder0=36 +ETPTopicOrder0=791 -[External Topic Properties\IJclMsdosSys.LoadTop] +[External Topic Properties\MIDICCChannelVolume] Count=1 ETPCommand0=2 -ETPTopicOrder0=37 +ETPTopicOrder0=792 -[External Topic Properties\IJclMsdosSys.Logo] +[External Topic Properties\MIDICCChannelVolumeLSB] Count=1 ETPCommand0=2 -ETPTopicOrder0=38 +ETPTopicOrder0=793 -[External Topic Properties\IJclMsdosSys.Network] +[External Topic Properties\MIDICCChorusSendLevel] Count=1 ETPCommand0=2 -ETPTopicOrder0=39 +ETPTopicOrder0=794 -[External Topic Properties\IJclMsdosSys.SetAutoScan@Boolean] +[External Topic Properties\MIDICCDataEntry] Count=1 ETPCommand0=2 -ETPTopicOrder0=40 +ETPTopicOrder0=795 -[External Topic Properties\IJclMsdosSys.SetBool@Boolean@Boolean] +[External Topic Properties\MIDICCDataEntryDec] Count=1 ETPCommand0=2 -ETPTopicOrder0=41 +ETPTopicOrder0=796 -[External Topic Properties\IJclMsdosSys.SetBootDelay@Cardinal] +[External Topic Properties\MIDICCDataEntryInc] Count=1 ETPCommand0=2 -ETPTopicOrder0=42 +ETPTopicOrder0=797 -[External Topic Properties\IJclMsdosSys.SetBootGUI@Boolean] +[External Topic Properties\MIDICCDataEntryLSB] Count=1 ETPCommand0=2 -ETPTopicOrder0=43 +ETPTopicOrder0=798 -[External Topic Properties\IJclMsdosSys.SetBootKeys@Boolean] +[External Topic Properties\MIDICCEffectControl] Count=1 ETPCommand0=2 -ETPTopicOrder0=44 +ETPTopicOrder0=799 -[External Topic Properties\IJclMsdosSys.SetBootMenu@Boolean] +[External Topic Properties\MIDICCEffectControl2] Count=1 ETPCommand0=2 -ETPTopicOrder0=45 +ETPTopicOrder0=800 -[External Topic Properties\IJclMsdosSys.SetBootMenuDefault@Cardinal] +[External Topic Properties\MIDICCEffectControl2LSB] Count=1 ETPCommand0=2 -ETPTopicOrder0=46 +ETPTopicOrder0=801 -[External Topic Properties\IJclMsdosSys.SetBootMenuDelay@Cardinal] +[External Topic Properties\MIDICCEffectControlLSB] Count=1 ETPCommand0=2 -ETPTopicOrder0=47 +ETPTopicOrder0=802 -[External Topic Properties\IJclMsdosSys.SetBootMulti@Boolean] +[External Topic Properties\MIDICCEffects2Depth] Count=1 ETPCommand0=2 -ETPTopicOrder0=48 +ETPTopicOrder0=803 -[External Topic Properties\IJclMsdosSys.SetBootSafe@Boolean] +[External Topic Properties\MIDICCEffects4Depth] Count=1 ETPCommand0=2 -ETPTopicOrder0=49 +ETPTopicOrder0=804 -[External Topic Properties\IJclMsdosSys.SetBootWarn@Boolean] +[External Topic Properties\MIDICCEffects5Depth] Count=1 ETPCommand0=2 -ETPTopicOrder0=50 +ETPTopicOrder0=805 -[External Topic Properties\IJclMsdosSys.SetBootWin@Boolean] +[External Topic Properties\MIDICCExpression] Count=1 ETPCommand0=2 -ETPTopicOrder0=51 +ETPTopicOrder0=806 -[External Topic Properties\IJclMsdosSys.SetDBLSpace@Boolean] +[External Topic Properties\MIDICCExpressionLSB] Count=1 ETPCommand0=2 -ETPTopicOrder0=52 +ETPTopicOrder0=807 -[External Topic Properties\IJclMsdosSys.SetDoubleBuffer@Boolean] +[External Topic Properties\MIDICCFootController] Count=1 ETPCommand0=2 -ETPTopicOrder0=53 +ETPTopicOrder0=808 -[External Topic Properties\IJclMsdosSys.SetDRVSpace@Boolean] +[External Topic Properties\MIDICCFootControllerLSB] Count=1 ETPCommand0=2 -ETPTopicOrder0=54 +ETPTopicOrder0=809 -[External Topic Properties\IJclMsdosSys.SetHostWinBootDrv@Char] +[External Topic Properties\MIDICCGeneralPurpose1] Count=1 ETPCommand0=2 -ETPTopicOrder0=55 +ETPTopicOrder0=810 -[External Topic Properties\IJclMsdosSys.SetLoadTop@Boolean] +[External Topic Properties\MIDICCGeneralPurpose1LSB] Count=1 ETPCommand0=2 -ETPTopicOrder0=56 +ETPTopicOrder0=811 -[External Topic Properties\IJclMsdosSys.SetLogo@Boolean] +[External Topic Properties\MIDICCGeneralPurpose2] Count=1 ETPCommand0=2 -ETPTopicOrder0=57 +ETPTopicOrder0=812 -[External Topic Properties\IJclMsdosSys.SetNetwork@Boolean] +[External Topic Properties\MIDICCGeneralPurpose2LSB] Count=1 ETPCommand0=2 -ETPTopicOrder0=58 +ETPTopicOrder0=813 -[External Topic Properties\IJclMsdosSys.SetString@string@string] +[External Topic Properties\MIDICCGeneralPurpose3] Count=1 ETPCommand0=2 -ETPTopicOrder0=59 +ETPTopicOrder0=814 -[External Topic Properties\IJclMsdosSys.SetUninstallDir@Char] +[External Topic Properties\MIDICCGeneralPurpose3LSB] Count=1 ETPCommand0=2 -ETPTopicOrder0=60 +ETPTopicOrder0=815 -[External Topic Properties\IJclMsdosSys.SetWinBootDir@string] +[External Topic Properties\MIDICCGeneralPurpose4] Count=1 ETPCommand0=2 -ETPTopicOrder0=61 +ETPTopicOrder0=816 -[External Topic Properties\IJclMsdosSys.SetWinDir@string] +[External Topic Properties\MIDICCGeneralPurpose4LSB] Count=1 ETPCommand0=2 -ETPTopicOrder0=62 +ETPTopicOrder0=817 -[External Topic Properties\IJclMsdosSys.SetWinVer@string] +[External Topic Properties\MIDICCGeneralPurpose5] Count=1 ETPCommand0=2 -ETPTopicOrder0=63 +ETPTopicOrder0=818 -[External Topic Properties\IJclMsdosSys.UninstallDir] +[External Topic Properties\MIDICCGeneralPurpose6] Count=1 ETPCommand0=2 -ETPTopicOrder0=64 +ETPTopicOrder0=819 -[External Topic Properties\IJclMsdosSys.WinBootDir] +[External Topic Properties\MIDICCGeneralPurpose7] Count=1 ETPCommand0=2 -ETPTopicOrder0=65 +ETPTopicOrder0=820 -[External Topic Properties\IJclMsdosSys.WinDir] +[External Topic Properties\MIDICCGeneralPurpose8] Count=1 ETPCommand0=2 -ETPTopicOrder0=66 +ETPTopicOrder0=821 -[External Topic Properties\IJclMsdosSys.WinVer] +[External Topic Properties\MIDICCHold2] Count=1 ETPCommand0=2 -ETPTopicOrder0=67 +ETPTopicOrder0=822 -[External Topic Properties\IJclScreenTextAttribute] +[External Topic Properties\MIDICCLegato] Count=1 ETPCommand0=2 -ETPTopicOrder0=3 +ETPTopicOrder0=823 -[External Topic Properties\IJclScreenTextAttribute.BgColor] +[External Topic Properties\MIDICCLocalControl] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=824 -[External Topic Properties\IJclScreenTextAttribute.BgHighlight] +[External Topic Properties\MIDICCMainVolume] Count=1 ETPCommand0=2 -ETPTopicOrder0=1 +ETPTopicOrder0=825 -[External Topic Properties\IJclScreenTextAttribute.Color] +[External Topic Properties\MIDICCMainVolumeLSB] Count=1 ETPCommand0=2 -ETPTopicOrder0=2 +ETPTopicOrder0=826 -[External Topic Properties\IJclScreenTextAttribute.GetBgColor] +[External Topic Properties\MIDICCModulationWheel] Count=1 ETPCommand0=2 -ETPTopicOrder0=3 +ETPTopicOrder0=827 -[External Topic Properties\IJclScreenTextAttribute.GetBgHighlight] +[External Topic Properties\MIDICCModulationWheelLSB] Count=1 ETPCommand0=2 -ETPTopicOrder0=4 +ETPTopicOrder0=828 -[External Topic Properties\IJclScreenTextAttribute.GetColor] +[External Topic Properties\MIDICCMonoModeOn] Count=1 ETPCommand0=2 -ETPTopicOrder0=5 +ETPTopicOrder0=829 -[External Topic Properties\IJclScreenTextAttribute.GetHighlight] +[External Topic Properties\MIDICCNonRegParamNumLSB] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=830 + +[External Topic Properties\MIDICCNonRegParamNumMSB] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=831 + +[External Topic Properties\MIDICCOmniModeOff] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=832 + +[External Topic Properties\MIDICCOmniModeOn] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=833 + +[External Topic Properties\MIDICCPan] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=834 + +[External Topic Properties\MIDICCPanLSB] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=835 + +[External Topic Properties\MIDICCPhaserDepth] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=836 + +[External Topic Properties\MIDICCPolyModeOn] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=837 + +[External Topic Properties\MIDICCPortamento] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=838 + +[External Topic Properties\MIDICCPortamentoControl] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=839 + +[External Topic Properties\MIDICCPortamentoTime] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=840 + +[External Topic Properties\MIDICCPortamentoTimeLSB] Count=1 ETPCommand0=2 -ETPTopicOrder0=6 +ETPTopicOrder0=841 -[External Topic Properties\IJclScreenTextAttribute.GetStyle] +[External Topic Properties\MIDICCRegParamNumLSB] Count=1 ETPCommand0=2 -ETPTopicOrder0=7 +ETPTopicOrder0=842 -[External Topic Properties\IJclScreenTextAttribute.GetTextAttribute] +[External Topic Properties\MIDICCRegParamNumMSB] Count=1 ETPCommand0=2 -ETPTopicOrder0=8 +ETPTopicOrder0=843 -[External Topic Properties\IJclScreenTextAttribute.Highlight] +[External Topic Properties\MIDICCResetAllControllers] Count=1 ETPCommand0=2 -ETPTopicOrder0=9 +ETPTopicOrder0=844 -[External Topic Properties\IJclScreenTextAttribute.SetBgColor@TJclScreenBackColor] +[External Topic Properties\MIDICCReverbSendLevel] Count=1 ETPCommand0=2 -ETPTopicOrder0=10 +ETPTopicOrder0=845 -[External Topic Properties\IJclScreenTextAttribute.SetBgHighlight@Boolean] +[External Topic Properties\MIDICCSoftPedal] Count=1 ETPCommand0=2 -ETPTopicOrder0=11 +ETPTopicOrder0=846 -[External Topic Properties\IJclScreenTextAttribute.SetColor@TJclScreenFontColor] +[External Topic Properties\MIDICCSound1] Count=1 ETPCommand0=2 -ETPTopicOrder0=12 +ETPTopicOrder0=847 -[External Topic Properties\IJclScreenTextAttribute.SetHighlight@Boolean] +[External Topic Properties\MIDICCSound10] Count=1 ETPCommand0=2 -ETPTopicOrder0=13 +ETPTopicOrder0=848 -[External Topic Properties\IJclScreenTextAttribute.SetStyle@TJclScreenFontStyles] +[External Topic Properties\MIDICCSound2] Count=1 ETPCommand0=2 -ETPTopicOrder0=14 +ETPTopicOrder0=849 -[External Topic Properties\IJclScreenTextAttribute.SetTextAttribute@Word] +[External Topic Properties\MIDICCSound3] Count=1 ETPCommand0=2 -ETPTopicOrder0=15 +ETPTopicOrder0=850 -[External Topic Properties\IJclScreenTextAttribute.Style] +[External Topic Properties\MIDICCSound4] Count=1 ETPCommand0=2 -ETPTopicOrder0=16 +ETPTopicOrder0=851 -[External Topic Properties\IJclScreenTextAttribute.TextAttribute] +[External Topic Properties\MIDICCSound5] Count=1 ETPCommand0=2 -ETPTopicOrder0=17 +ETPTopicOrder0=852 -[External Topic Properties\IJclWinMidiOut] +[External Topic Properties\MIDICCSound6] Count=1 ETPCommand0=2 -ETPTopicOrder0=4 +ETPTopicOrder0=853 -[External Topic Properties\IJclWinMidiOut.ChannelVolume] +[External Topic Properties\MIDICCSound7] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=854 -[External Topic Properties\IJclWinMidiOut.GetChannelVolume@TStereoChannel] +[External Topic Properties\MIDICCSound8] Count=1 ETPCommand0=2 -ETPTopicOrder0=1 +ETPTopicOrder0=855 -[External Topic Properties\IJclWinMidiOut.GetVolume] +[External Topic Properties\MIDICCSound9] Count=1 ETPCommand0=2 -ETPTopicOrder0=2 +ETPTopicOrder0=856 -[External Topic Properties\IJclWinMidiOut.SetChannelVolume@TStereoChannel@Word] +[External Topic Properties\MIDICCSustain] Count=1 ETPCommand0=2 -ETPTopicOrder0=3 +ETPTopicOrder0=857 -[External Topic Properties\IJclWinMidiOut.SetVolume@Word] +[External Topic Properties\MIDICCSustenuto] Count=1 ETPCommand0=2 -ETPTopicOrder0=4 +ETPTopicOrder0=858 -[External Topic Properties\IJclWinMidiOut.Volume] +[External Topic Properties\MIDICCTremoloDepth] Count=1 ETPCommand0=2 -ETPTopicOrder0=5 +ETPTopicOrder0=859 -[External Topic Properties\IMAGE_ARCHITECTURE_ENTRY] +[External Topic Properties\MIDIChannelMsgMask] Count=1 ETPCommand0=2 -ETPTopicOrder0=25 +ETPTopicOrder0=860 -[External Topic Properties\IMAGE_ARCHITECTURE_HEADER] +[External Topic Properties\MIDIDataMask] Count=1 ETPCommand0=2 -ETPTopicOrder0=26 +ETPTopicOrder0=861 -[External Topic Properties\IMAGE_ARCHIVE_END] +[External Topic Properties\MIDIDataWordMask] Count=1 ETPCommand0=2 -ETPTopicOrder0=1020 +ETPTopicOrder0=862 -[External Topic Properties\IMAGE_ARCHIVE_LINKER_MEMBER] +[External Topic Properties\MidiInCheck@MMResult] Count=1 ETPCommand0=2 -ETPTopicOrder0=1021 +ETPTopicOrder0=801 -[External Topic Properties\IMAGE_ARCHIVE_LONGNAMES_MEMBER] +[External Topic Properties\MIDIInvalidStatus] Count=1 ETPCommand0=2 -ETPTopicOrder0=1022 +ETPTopicOrder0=863 -[External Topic Properties\IMAGE_ARCHIVE_MEMBER_HEADER] +[External Topic Properties\MIDIMsgActiveSensing] Count=1 ETPCommand0=2 -ETPTopicOrder0=27 +ETPTopicOrder0=864 -[External Topic Properties\IMAGE_ARCHIVE_PAD] +[External Topic Properties\MIDIMsgAftertouch] Count=1 ETPCommand0=2 -ETPTopicOrder0=1023 +ETPTopicOrder0=865 -[External Topic Properties\IMAGE_ARCHIVE_START] +[External Topic Properties\MIDIMsgChannelKeyPressure] Count=1 ETPCommand0=2 -ETPTopicOrder0=1024 +ETPTopicOrder0=866 -[External Topic Properties\IMAGE_ARCHIVE_START_SIZE] +[External Topic Properties\MIDIMsgContinueSequence] Count=1 ETPCommand0=2 -ETPTopicOrder0=1025 +ETPTopicOrder0=867 -[External Topic Properties\IMAGE_COFF_SYMBOLS_HEADER] +[External Topic Properties\MIDIMsgControlChange] Count=1 ETPCommand0=2 -ETPTopicOrder0=28 +ETPTopicOrder0=868 -[External Topic Properties\IMAGE_COR_EATJ_THUNK_SIZE] +[External Topic Properties\MIDIMsgEOX] Count=1 ETPCommand0=2 -ETPTopicOrder0=1026 +ETPTopicOrder0=869 -[External Topic Properties\IMAGE_COR_ILMETHOD_FAT] +[External Topic Properties\MIDIMsgMTCQtrFrame] Count=1 ETPCommand0=2 -ETPTopicOrder0=61 +ETPTopicOrder0=870 -[External Topic Properties\IMAGE_COR_ILMETHOD_FAT.CodeSize] +[External Topic Properties\MIDIMsgNoteOff] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=871 -[External Topic Properties\IMAGE_COR_ILMETHOD_FAT.Flags_Size] +[External Topic Properties\MIDIMsgNoteOn] Count=1 ETPCommand0=2 -ETPTopicOrder0=1 +ETPTopicOrder0=872 -[External Topic Properties\IMAGE_COR_ILMETHOD_FAT.LocalVarSigTok] +[External Topic Properties\MIDIMsgPitchWheelChange] Count=1 ETPCommand0=2 -ETPTopicOrder0=2 +ETPTopicOrder0=873 -[External Topic Properties\IMAGE_COR_ILMETHOD_FAT.MaxStack] +[External Topic Properties\MIDIMsgPolyKeyPressure] Count=1 ETPCommand0=2 -ETPTopicOrder0=3 +ETPTopicOrder0=874 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH] +[External Topic Properties\MIDIMsgProgramChange] Count=1 ETPCommand0=2 -ETPTopicOrder0=62 +ETPTopicOrder0=875 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH.Fat] +[External Topic Properties\MIDIMsgSongPositionPtr] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=876 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH.Small] +[External Topic Properties\MIDIMsgSongSelect] Count=1 ETPCommand0=2 -ETPTopicOrder0=1 +ETPTopicOrder0=877 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT] +[External Topic Properties\MIDIMsgStartSequence] Count=1 ETPCommand0=2 -ETPTopicOrder0=63 +ETPTopicOrder0=878 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.ClassToken] +[External Topic Properties\MIDIMsgStopSequence] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=879 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.FilterOffset] +[External Topic Properties\MIDIMsgSysEx] Count=1 ETPCommand0=2 -ETPTopicOrder0=1 +ETPTopicOrder0=880 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.Flags] +[External Topic Properties\MIDIMsgSystemReset] Count=1 ETPCommand0=2 -ETPTopicOrder0=2 +ETPTopicOrder0=881 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.HandlerLength] +[External Topic Properties\MIDIMsgTimingClock] Count=1 ETPCommand0=2 -ETPTopicOrder0=3 +ETPTopicOrder0=882 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.HandlerOffset] +[External Topic Properties\MIDIMsgTuneRequest] Count=1 ETPCommand0=2 -ETPTopicOrder0=4 +ETPTopicOrder0=883 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.TryLength] +[External Topic Properties\MIDINoteToStr@TMIDINote] Count=1 ETPCommand0=2 -ETPTopicOrder0=5 +ETPTopicOrder0=802 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT.TryOffset] +[External Topic Properties\MidiOut@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=6 +ETPTopicOrder0=803 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL] +[External Topic Properties\MIDIOut@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=64 +ETPTopicOrder0=804 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.ClassToken] +[External Topic Properties\MidiOutCheck@MMResult] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=805 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.FilterOffset] +[External Topic Properties\MIDIPitchWheelCenter] Count=1 ETPCommand0=2 -ETPTopicOrder0=1 +ETPTopicOrder0=884 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.Flags] +[External Topic Properties\MIDISingleNoteTuningData@TMIDINote@Single] Count=1 ETPCommand0=2 -ETPTopicOrder0=2 +ETPTopicOrder0=806 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.HandlerLength] +[External Topic Properties\MIME] Count=1 ETPCommand0=2 -ETPTopicOrder0=3 +ETPTopicOrder0=13 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.HandlerOffset] +[External Topic Properties\MIME_BUFFER_SIZE] Count=1 ETPCommand0=2 -ETPTopicOrder0=4 +ETPTopicOrder0=885 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.TryLength] +[External Topic Properties\MIME_DECODED_LINE_BREAK] Count=1 ETPCommand0=2 -ETPTopicOrder0=5 +ETPTopicOrder0=886 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL.TryOffset] +[External Topic Properties\MIME_ENCODED_LINE_BREAK] Count=1 ETPCommand0=2 -ETPTopicOrder0=6 +ETPTopicOrder0=887 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_FAT] +[External Topic Properties\MimeDecode@TDynByteArray@Cardinal@Cardinal@TDynByteArray@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=65 +ETPTopicOrder0=630 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_FAT.Clauses] +[External Topic Properties\MimeDecode@TDynByteArray@Cardinal@TDynByteArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=631 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_FAT.SectFat] +[External Topic Properties\MimeDecode@TDynByteArray@SizeInt@SizeInt@TDynByteArray@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1 +ETPTopicOrder0=808 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_SMALL] +[External Topic Properties\MimeDecode@TDynByteArray@SizeInt@TDynByteArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=66 +ETPTopicOrder0=807 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_SMALL.Clauses] +[External Topic Properties\MimeDecodeFile@AnsiString@AnsiString] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=632 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_EH_SMALL.SectSmall] +[External Topic Properties\MimeDecodeFile@TFileName@TFileName] Count=1 ETPCommand0=2 -ETPTopicOrder0=1 +ETPTopicOrder0=809 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_FAT] +[External Topic Properties\MimeDecodePartial@TDynByteArray@Cardinal@Cardinal@TDynByteArray@Cardinal@Cardinal@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=67 +ETPTopicOrder0=634 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_FAT.Kind_DataSize] +[External Topic Properties\MimeDecodePartial@TDynByteArray@Cardinal@TDynByteArray@Cardinal@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=633 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_SMALL] +[External Topic Properties\MimeDecodePartial@TDynByteArray@SizeInt@SizeInt@TDynByteArray@SizeInt@Cardinal@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=68 +ETPTopicOrder0=810 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_SMALL.Datasize] +[External Topic Properties\MimeDecodePartial@TDynByteArray@SizeInt@TDynByteArray@Cardinal@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=811 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_SMALL.Kind] +[External Topic Properties\MimeDecodePartialEnd@TDynByteArray@Cardinal@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=1 +ETPTopicOrder0=813 -[External Topic Properties\IMAGE_COR_ILMETHOD_SECT_SMALL.Padding] +[External Topic Properties\MimeDecodePartialEnd@TDynByteArray@Cardinal@Cardinal@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=2 +ETPTopicOrder0=636 -[External Topic Properties\IMAGE_COR_ILMETHOD_TINY] +[External Topic Properties\MimeDecodePartialEnd@TDynByteArray@SizeInt@Cardinal@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=69 +ETPTopicOrder0=812 -[External Topic Properties\IMAGE_COR_ILMETHOD_TINY.Flags_CodeSize] +[External Topic Properties\MimeEncode@TDynByteArray@Cardinal@Cardinal@TDynByteArray@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=638 -[External Topic Properties\IMAGE_COR_MIH_BASICBLOCK] +[External Topic Properties\MimeEncode@TDynByteArray@Cardinal@TDynByteArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=1027 +ETPTopicOrder0=637 -[External Topic Properties\IMAGE_COR_MIH_EHRVA] +[External Topic Properties\MimeEncode@TDynByteArray@SizeInt@SizeInt@TDynByteArray@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1028 +ETPTopicOrder0=815 -[External Topic Properties\IMAGE_COR_MIH_METHODRVA] +[External Topic Properties\MimeEncode@TDynByteArray@SizeInt@TDynByteArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=1029 +ETPTopicOrder0=814 -[External Topic Properties\IMAGE_COR_VTABLEFIXUP] +[External Topic Properties\MimeEncodedSizeNoCRLF@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=29 +ETPTopicOrder0=639 -[External Topic Properties\IMAGE_DATA_DIRECTORY] +[External Topic Properties\MimeEncodedSizeNoCRLF@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=30 +ETPTopicOrder0=816 -[External Topic Properties\IMAGE_DEBUG_MISC] +[External Topic Properties\MimeEncodeFile@AnsiString@AnsiString] Count=1 ETPCommand0=2 -ETPTopicOrder0=31 +ETPTopicOrder0=640 -[External Topic Properties\IMAGE_DEBUG_MISC_EXENAME] +[External Topic Properties\MimeEncodeFile@TFileName@TFileName] Count=1 ETPCommand0=2 -ETPTopicOrder0=1030 +ETPTopicOrder0=817 -[External Topic Properties\IMAGE_DIRECTORY_ENTRY_ARCHITECTURE] +[External Topic Properties\MimeEncodeFileNoCRLF@AnsiString@AnsiString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1031 +ETPTopicOrder0=641 -[External Topic Properties\IMAGE_DIRECTORY_ENTRY_BASERELOC] +[External Topic Properties\MimeEncodeFileNoCRLF@TFileName@TFileName] Count=1 ETPCommand0=2 -ETPTopicOrder0=1032 +ETPTopicOrder0=818 -[External Topic Properties\IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT] +[External Topic Properties\MimeEncodeFullLines@@Cardinal@] Count=1 ETPCommand0=2 -ETPTopicOrder0=1033 +ETPTopicOrder0=643 -[External Topic Properties\IMAGE_DIRECTORY_ENTRY_DEBUG] +[External Topic Properties\MimeEncodeFullLines@@SizeInt@] Count=1 ETPCommand0=2 -ETPTopicOrder0=1034 +ETPTopicOrder0=819 -[External Topic Properties\IMAGE_DIRECTORY_ENTRY_EXCEPTION] +[External Topic Properties\MimeEncodeFullLines@TDynByteArray@Cardinal@Cardinal@TDynByteArray@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=1035 +ETPTopicOrder0=644 -[External Topic Properties\IMAGE_DIRECTORY_ENTRY_EXPORT] +[External Topic Properties\MimeEncodeFullLines@TDynByteArray@Cardinal@TDynByteArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=1036 +ETPTopicOrder0=642 -[External Topic Properties\IMAGE_DIRECTORY_ENTRY_GLOBALPTR] +[External Topic Properties\MimeEncodeFullLines@TDynByteArray@SizeInt@SizeInt@TDynByteArray@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1037 +ETPTopicOrder0=820 -[External Topic Properties\IMAGE_DIRECTORY_ENTRY_IAT] +[External Topic Properties\MimeEncodeFullLines@TDynByteArray@SizeInt@TDynByteArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=1038 +ETPTopicOrder0=821 -[External Topic Properties\IMAGE_DIRECTORY_ENTRY_IMPORT] +[External Topic Properties\MimeEncodeNoCRLF@@Cardinal@] Count=1 ETPCommand0=2 -ETPTopicOrder0=1039 +ETPTopicOrder0=645 -[External Topic Properties\IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG] +[External Topic Properties\MimeEncodeNoCRLF@@SizeInt@] Count=1 ETPCommand0=2 -ETPTopicOrder0=1040 +ETPTopicOrder0=824 -[External Topic Properties\IMAGE_DIRECTORY_ENTRY_RESOURCE] +[External Topic Properties\MimeEncodeNoCRLF@TDynByteArray@Cardinal@Cardinal@TDynByteArray@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=1041 +ETPTopicOrder0=647 -[External Topic Properties\IMAGE_DIRECTORY_ENTRY_SECURITY] +[External Topic Properties\MimeEncodeNoCRLF@TDynByteArray@Cardinal@TDynByteArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=1042 +ETPTopicOrder0=646 -[External Topic Properties\IMAGE_DIRECTORY_ENTRY_TLS] +[External Topic Properties\MimeEncodeNoCRLF@TDynByteArray@SizeInt@SizeInt@TDynByteArray@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1043 +ETPTopicOrder0=823 -[External Topic Properties\IMAGE_DLLCHARACTERISTICS_NO_BIND] +[External Topic Properties\MimeEncodeNoCRLF@TDynByteArray@SizeInt@TDynByteArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=1044 +ETPTopicOrder0=822 -[External Topic Properties\IMAGE_DLLCHARACTERISTICS_NO_ISOLATION] +[External Topic Properties\MimeEncodeStreamNoCRLF@TStream@TStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=1045 +ETPTopicOrder0=825 -[External Topic Properties\IMAGE_DLLCHARACTERISTICS_NO_SEH] +[External Topic Properties\MimeEncodeStringNoCRLF@AnsiString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1046 +ETPTopicOrder0=826 -[External Topic Properties\IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE] +[External Topic Properties\Min@Cardinal@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=1047 +ETPTopicOrder0=832 -[External Topic Properties\IMAGE_DLLCHARACTERISTICS_WDM_DRIVER] +[External Topic Properties\Min@Int64@Int64] Count=1 ETPCommand0=2 -ETPTopicOrder0=1048 +ETPTopicOrder0=827 -[External Topic Properties\IMAGE_FILE_32BIT_MACHINE] +[External Topic Properties\Min@Integer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1049 +ETPTopicOrder0=828 -[External Topic Properties\IMAGE_FILE_AGGRESIVE_WS_TRIM] +[External Topic Properties\Min@Shortint@Shortint] Count=1 ETPCommand0=2 -ETPTopicOrder0=1050 +ETPTopicOrder0=829 -[External Topic Properties\IMAGE_FILE_BYTES_REVERSED_HI] +[External Topic Properties\Min@Smallint@Smallint] Count=1 ETPCommand0=2 -ETPTopicOrder0=1051 +ETPTopicOrder0=830 -[External Topic Properties\IMAGE_FILE_BYTES_REVERSED_LO] +[External Topic Properties\Min@Word@Word] Count=1 ETPCommand0=2 -ETPTopicOrder0=1052 +ETPTopicOrder0=831 -[External Topic Properties\IMAGE_FILE_DEBUG_STRIPPED] +[External Topic Properties\MIN_LANMAN_MESSAGE_ID] Count=1 ETPCommand0=2 -ETPTopicOrder0=1053 +ETPTopicOrder0=1444 -[External Topic Properties\IMAGE_FILE_DLL] +[External Topic Properties\MinedDoubleArray@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1054 +ETPTopicOrder0=833 -[External Topic Properties\IMAGE_FILE_EXECUTABLE_IMAGE] +[External Topic Properties\MinedSingleArray@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1055 +ETPTopicOrder0=834 -[External Topic Properties\IMAGE_FILE_HEADER] +[External Topic Properties\MinFloatingPoint] Count=1 ETPCommand0=2 -ETPTopicOrder0=32 +ETPTopicOrder0=888 -[External Topic Properties\IMAGE_FILE_LARGE_ADDRESS_AWARE] +[External Topic Properties\MINIMUM_RESERVED_MANIFEST_RESOURCE_ID] Count=1 ETPCommand0=2 -ETPTopicOrder0=1056 +ETPTopicOrder0=1446 -[External Topic Properties\IMAGE_FILE_LINE_NUMS_STRIPPED] +[External Topic Properties\Miscellaneous] Count=1 ETPCommand0=2 -ETPTopicOrder0=1057 +ETPTopicOrder0=14 -[External Topic Properties\IMAGE_FILE_LOCAL_SYMS_STRIPPED] +[External Topic Properties\MixerLeftRightToArray@Cardinal@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=1058 +ETPTopicOrder0=835 -[External Topic Properties\IMAGE_FILE_MACHINE_ALPHA] +[External Topic Properties\MMCheck@MCIERROR@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1059 +ETPTopicOrder0=836 -[External Topic Properties\IMAGE_FILE_MACHINE_ALPHA64] +[External Topic Properties\MMX_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=1060 +ETPTopicOrder0=889 -[External Topic Properties\IMAGE_FILE_MACHINE_AM33] -Count=1 +[External Topic Properties\MoveArray@TDynAnsiStringArray@SizeInt@SizeInt@SizeInt] +Count=2 ETPCommand0=2 -ETPTopicOrder0=1061 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=845 -[External Topic Properties\IMAGE_FILE_MACHINE_AMD64] -Count=1 +[External Topic Properties\MoveArray@TDynCardinalArray@SizeInt@SizeInt@SizeInt] +Count=2 ETPCommand0=2 -ETPTopicOrder0=1062 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=850 -[External Topic Properties\IMAGE_FILE_MACHINE_ARM] -Count=1 +[External Topic Properties\MoveArray@TDynDoubleArray@SizeInt@SizeInt@SizeInt] +Count=2 ETPCommand0=2 -ETPTopicOrder0=1063 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=851 -[External Topic Properties\IMAGE_FILE_MACHINE_AXP64] -Count=1 +[External Topic Properties\MoveArray@TDynExtendedArray@SizeInt@SizeInt@SizeInt] +Count=2 ETPCommand0=2 -ETPTopicOrder0=1064 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=846 -[External Topic Properties\IMAGE_FILE_MACHINE_CEE] -Count=1 +[External Topic Properties\MoveArray@TDynFloatArray@SizeInt@SizeInt@SizeInt] +Count=2 ETPCommand0=2 -ETPTopicOrder0=1065 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=847 -[External Topic Properties\IMAGE_FILE_MACHINE_CEF] +[External Topic Properties\MoveArray@TDynIInterfaceArray@Integer@Integer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1066 +ETPTopicOrder0=660 -[External Topic Properties\IMAGE_FILE_MACHINE_EBC] -Count=1 +[External Topic Properties\MoveArray@TDynIInterfaceArray@SizeInt@SizeInt@SizeInt] +Count=2 ETPCommand0=2 -ETPTopicOrder0=1067 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=844 -[External Topic Properties\IMAGE_FILE_MACHINE_I386] -Count=1 +[External Topic Properties\MoveArray@TDynInt64Array@SizeInt@SizeInt@SizeInt] +Count=2 ETPCommand0=2 -ETPTopicOrder0=1068 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=848 -[External Topic Properties\IMAGE_FILE_MACHINE_IA64] +[External Topic Properties\MoveArray@TDynIntegerArray@Integer@Integer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1069 +ETPTopicOrder0=661 -[External Topic Properties\IMAGE_FILE_MACHINE_M32R] -Count=1 +[External Topic Properties\MoveArray@TDynIntegerArray@SizeInt@SizeInt@SizeInt] +Count=2 ETPCommand0=2 -ETPTopicOrder0=1070 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=842 -[External Topic Properties\IMAGE_FILE_MACHINE_MIPS16] +[External Topic Properties\MoveArray@TDynObjectArray@Integer@Integer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1071 +ETPTopicOrder0=662 -[External Topic Properties\IMAGE_FILE_MACHINE_MIPSFPU] -Count=1 +[External Topic Properties\MoveArray@TDynObjectArray@SizeInt@SizeInt@SizeInt] +Count=2 ETPCommand0=2 -ETPTopicOrder0=1072 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=837 -[External Topic Properties\IMAGE_FILE_MACHINE_MIPSFPU16] -Count=1 +[External Topic Properties\MoveArray@TDynPointerArray@SizeInt@SizeInt@SizeInt] +Count=2 ETPCommand0=2 -ETPTopicOrder0=1073 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=840 -[External Topic Properties\IMAGE_FILE_MACHINE_POWERPC] -Count=1 +[External Topic Properties\MoveArray@TDynSingleArray@SizeInt@SizeInt@SizeInt] +Count=2 ETPCommand0=2 -ETPTopicOrder0=1074 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=841 -[External Topic Properties\IMAGE_FILE_MACHINE_POWERPCFP] -Count=1 +[External Topic Properties\MoveArray@TDynSizeIntArray@SizeInt@SizeInt@SizeInt] +Count=2 ETPCommand0=2 -ETPTopicOrder0=1075 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=843 -[External Topic Properties\IMAGE_FILE_MACHINE_R10000] +[External Topic Properties\MoveArray@TDynStringArray@Integer@Integer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1076 +ETPTopicOrder0=663 -[External Topic Properties\IMAGE_FILE_MACHINE_R3000] -Count=1 +[External Topic Properties\MoveArray@TDynStringArray@SizeInt@SizeInt@SizeInt] +Count=2 ETPCommand0=2 -ETPTopicOrder0=1077 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=849 -[External Topic Properties\IMAGE_FILE_MACHINE_R4000] -Count=1 +[External Topic Properties\MoveArray@TDynUnicodeStringArray@SizeInt@SizeInt@SizeInt] +Count=2 ETPCommand0=2 -ETPTopicOrder0=1078 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=838 -[External Topic Properties\IMAGE_FILE_MACHINE_SH3] +[External Topic Properties\MoveArray@TDynWideStringArray@SizeInt@SizeInt@SizeInt] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=839 + +[External Topic Properties\MoveChar@string@Integer@string@Integer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1079 +ETPTopicOrder0=664 -[External Topic Properties\IMAGE_FILE_MACHINE_SH3DSP] +[External Topic Properties\MoveChar@string@SizeInt@string@SizeInt@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1080 +ETPTopicOrder0=852 -[External Topic Properties\IMAGE_FILE_MACHINE_SH3E] +[External Topic Properties\MoveWideChar@@@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1081 +ETPTopicOrder0=665 -[External Topic Properties\IMAGE_FILE_MACHINE_SH4] +[External Topic Properties\MoveWideChar@@@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1082 +ETPTopicOrder0=853 -[External Topic Properties\IMAGE_FILE_MACHINE_SH5] +[External Topic Properties\MS_NBF] Count=1 ETPCommand0=2 -ETPTopicOrder0=1083 +ETPTopicOrder0=1448 -[External Topic Properties\IMAGE_FILE_MACHINE_THUMB] +[External Topic Properties\mscoree_dll] Count=1 ETPCommand0=2 -ETPTopicOrder0=1084 +ETPTopicOrder0=890 -[External Topic Properties\IMAGE_FILE_MACHINE_TRICORE] +[External Topic Properties\mscoree_TLB.pas] Count=1 ETPCommand0=2 -ETPTopicOrder0=1085 +ETPTopicOrder0=83 -[External Topic Properties\IMAGE_FILE_MACHINE_UNKNOWN] +[External Topic Properties\mscorlib_TLB.pas] Count=1 ETPCommand0=2 -ETPTopicOrder0=1086 +ETPTopicOrder0=84 -[External Topic Properties\IMAGE_FILE_MACHINE_WCEMIPSV2] +[External Topic Properties\MSHelpServices_TLB.pas] Count=1 ETPCommand0=2 -ETPTopicOrder0=1087 +ETPTopicOrder0=85 -[External Topic Properties\IMAGE_FILE_NET_RUN_FROM_SWAP] +[External Topic Properties\MSILIB] Count=1 ETPCommand0=2 -ETPTopicOrder0=1088 +ETPTopicOrder0=891 -[External Topic Properties\IMAGE_FILE_RELOCS_STRIPPED] +[External Topic Properties\MSR_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=1089 +ETPTopicOrder0=892 -[External Topic Properties\IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP] +[External Topic Properties\MSTask.pas] Count=1 ETPCommand0=2 -ETPTopicOrder0=1090 +ETPTopicOrder0=86 -[External Topic Properties\IMAGE_FILE_SYSTEM] +[External Topic Properties\MTRR_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=1091 +ETPTopicOrder0=893 -[External Topic Properties\IMAGE_FILE_UP_SYSTEM_ONLY] +[External Topic Properties\MultiMedia] Count=1 ETPCommand0=2 -ETPTopicOrder0=1092 +ETPTopicOrder0=15 -[External Topic Properties\IMAGE_FIRST_SECTION@PImageNtHeaders] +[External Topic Properties\MultiSzDup@PAnsiMultiSz] Count=1 ETPCommand0=2 -ETPTopicOrder0=428 +ETPTopicOrder0=856 -[External Topic Properties\IMAGE_FUNCTION_ENTRY] +[External Topic Properties\MultiSzDup@PMultiSz] Count=1 ETPCommand0=2 -ETPTopicOrder0=33 +ETPTopicOrder0=854 -[External Topic Properties\IMAGE_FUNCTION_ENTRY64] +[External Topic Properties\MultiSzDup@PWideMultiSz] Count=1 ETPCommand0=2 -ETPTopicOrder0=34 +ETPTopicOrder0=855 -[External Topic Properties\IMAGE_LINENUMBER] +[External Topic Properties\MultiSzLength@PAnsiMultiSz] Count=1 ETPCommand0=2 -ETPTopicOrder0=35 +ETPTopicOrder0=859 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32] +[External Topic Properties\MultiSzLength@PMultiSz] Count=1 ETPCommand0=2 -ETPTopicOrder0=70 +ETPTopicOrder0=857 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.CriticalSectionDefaultTimeout] +[External Topic Properties\MultiSzLength@PWideMultiSz] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=858 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.CSDVersion] +[External Topic Properties\MultiSzToStrings@TJclWideStrings@PWideMultiSz] Count=1 ETPCommand0=2 -ETPTopicOrder0=1 +ETPTopicOrder0=861 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.DeCommitFreeBlockThreshold] +[External Topic Properties\MultiSzToStrings@TStrings@PMultiSz] Count=1 ETPCommand0=2 -ETPTopicOrder0=2 +ETPTopicOrder0=860 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.DeCommitTotalFreeThreshold] +[External Topic Properties\MXCSR_DAZ] Count=1 ETPCommand0=2 -ETPTopicOrder0=3 +ETPTopicOrder0=894 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.EditList] +[External Topic Properties\MXCSR_DE] Count=1 ETPCommand0=2 -ETPTopicOrder0=4 +ETPTopicOrder0=895 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.GlobalFlagsClear] +[External Topic Properties\MXCSR_DM] Count=1 ETPCommand0=2 -ETPTopicOrder0=5 +ETPTopicOrder0=896 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.GlobalFlagsSet] +[External Topic Properties\MXCSR_FZ] Count=1 ETPCommand0=2 -ETPTopicOrder0=6 +ETPTopicOrder0=897 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.LockPrefixTable] +[External Topic Properties\MXCSR_IE] Count=1 ETPCommand0=2 -ETPTopicOrder0=7 +ETPTopicOrder0=898 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.MajorVersion] +[External Topic Properties\MXCSR_IM] Count=1 ETPCommand0=2 -ETPTopicOrder0=8 +ETPTopicOrder0=899 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.MaximumAllocationSize] +[External Topic Properties\MXCSR_OE] Count=1 ETPCommand0=2 -ETPTopicOrder0=9 +ETPTopicOrder0=900 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.MinorVersion] +[External Topic Properties\MXCSR_OM] Count=1 ETPCommand0=2 -ETPTopicOrder0=10 +ETPTopicOrder0=901 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.ProcessAffinityMask] +[External Topic Properties\MXCSR_PE] Count=1 ETPCommand0=2 -ETPTopicOrder0=11 +ETPTopicOrder0=902 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.ProcessHeapFlags] +[External Topic Properties\MXCSR_PM] Count=1 ETPCommand0=2 -ETPTopicOrder0=12 +ETPTopicOrder0=903 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.Reserved1] +[External Topic Properties\MXCSR_RC] Count=1 ETPCommand0=2 -ETPTopicOrder0=13 +ETPTopicOrder0=904 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.SecurityCookie] +[External Topic Properties\MXCSR_RC1] Count=1 ETPCommand0=2 -ETPTopicOrder0=14 +ETPTopicOrder0=905 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.SEHandlerCount] +[External Topic Properties\MXCSR_RC2] Count=1 ETPCommand0=2 -ETPTopicOrder0=15 +ETPTopicOrder0=906 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.SEHandlerTable] +[External Topic Properties\MXCSR_UE] Count=1 ETPCommand0=2 -ETPTopicOrder0=16 +ETPTopicOrder0=907 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.Size] +[External Topic Properties\MXCSR_UM] Count=1 ETPCommand0=2 -ETPTopicOrder0=17 +ETPTopicOrder0=908 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.TimeDateStamp] +[External Topic Properties\MXCSR_ZE] Count=1 ETPCommand0=2 -ETPTopicOrder0=18 +ETPTopicOrder0=909 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY32.VirtualMemoryThreshold] +[External Topic Properties\MXCSR_ZM] Count=1 ETPCommand0=2 -ETPTopicOrder0=19 +ETPTopicOrder0=910 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64] +[External Topic Properties\NA_LoopId] Count=1 ETPCommand0=2 -ETPTopicOrder0=71 +ETPTopicOrder0=1470 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.CriticalSectionDefaultTimeout] +[External Topic Properties\NAME_BUFFER] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=95 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.CSDVersion] +[External Topic Properties\NAME_FLAGS_MASK] Count=1 ETPCommand0=2 -ETPTopicOrder0=1 +ETPTopicOrder0=1471 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.DeCommitFreeBlockThreshold] +[External Topic Properties\NaN] Count=1 ETPCommand0=2 -ETPTopicOrder0=2 +ETPTopicOrder0=911 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.DeCommitTotalFreeThreshold] +[External Topic Properties\NATIVE_TYPE_MAX_CB] Count=1 ETPCommand0=2 -ETPTopicOrder0=3 +ETPTopicOrder0=1473 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.EditList] +[External Topic Properties\NativeAck] Count=1 ETPCommand0=2 -ETPTopicOrder0=4 +ETPTopicOrder0=912 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.GlobalFlagsClear] +[External Topic Properties\NativeBackslash] Count=1 ETPCommand0=2 -ETPTopicOrder0=5 +ETPTopicOrder0=913 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.GlobalFlagsSet] +[External Topic Properties\NativeBackspace] Count=1 ETPCommand0=2 -ETPTopicOrder0=6 +ETPTopicOrder0=914 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.LockPrefixTable] +[External Topic Properties\NativeBell] Count=1 ETPCommand0=2 -ETPTopicOrder0=7 +ETPTopicOrder0=915 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.MajorVersion] +[External Topic Properties\NativeCan] Count=1 ETPCommand0=2 -ETPTopicOrder0=8 +ETPTopicOrder0=916 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.MaximumAllocationSize] +[External Topic Properties\NativeCarriageReturn] Count=1 ETPCommand0=2 -ETPTopicOrder0=9 +ETPTopicOrder0=917 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.MinorVersion] +[External Topic Properties\NativeComma] Count=1 ETPCommand0=2 -ETPTopicOrder0=10 +ETPTopicOrder0=918 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.ProcessAffinityMask] +[External Topic Properties\NativeCrLf] Count=1 ETPCommand0=2 -ETPTopicOrder0=11 +ETPTopicOrder0=919 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.ProcessHeapFlags] +[External Topic Properties\NativeDc1] Count=1 ETPCommand0=2 -ETPTopicOrder0=12 +ETPTopicOrder0=920 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.Reserved1] +[External Topic Properties\NativeDc2] Count=1 ETPCommand0=2 -ETPTopicOrder0=13 +ETPTopicOrder0=921 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.SecurityCookie] +[External Topic Properties\NativeDc3] Count=1 ETPCommand0=2 -ETPTopicOrder0=14 +ETPTopicOrder0=922 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.SEHandlerCount] +[External Topic Properties\NativeDc4] Count=1 ETPCommand0=2 -ETPTopicOrder0=15 +ETPTopicOrder0=923 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.SEHandlerTable] +[External Topic Properties\NativeDle] Count=1 ETPCommand0=2 -ETPTopicOrder0=16 +ETPTopicOrder0=924 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.Size] +[External Topic Properties\NativeDoubleQuote] Count=1 ETPCommand0=2 -ETPTopicOrder0=17 +ETPTopicOrder0=925 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.TimeDateStamp] +[External Topic Properties\NativeEm] Count=1 ETPCommand0=2 -ETPTopicOrder0=18 +ETPTopicOrder0=926 -[External Topic Properties\IMAGE_LOAD_CONFIG_DIRECTORY64.VirtualMemoryThreshold] +[External Topic Properties\NativeEndOfFile] Count=1 ETPCommand0=2 -ETPTopicOrder0=19 +ETPTopicOrder0=927 -[External Topic Properties\IMAGE_NT_HEADERS] +[External Topic Properties\NativeEnq] Count=1 ETPCommand0=2 -ETPTopicOrder0=36 +ETPTopicOrder0=928 -[External Topic Properties\IMAGE_NT_HEADERS32] +[External Topic Properties\NativeEot] Count=1 ETPCommand0=2 -ETPTopicOrder0=37 +ETPTopicOrder0=929 -[External Topic Properties\IMAGE_NT_HEADERS64] +[External Topic Properties\NativeEscape] Count=1 ETPCommand0=2 -ETPTopicOrder0=38 +ETPTopicOrder0=930 -[External Topic Properties\IMAGE_NT_OPTIONAL_HDR_MAGIC] +[External Topic Properties\NativeEtb] Count=1 ETPCommand0=2 -ETPTopicOrder0=1093 +ETPTopicOrder0=931 -[External Topic Properties\IMAGE_NT_OPTIONAL_HDR32_MAGIC] +[External Topic Properties\NativeEtx] Count=1 ETPCommand0=2 -ETPTopicOrder0=1094 +ETPTopicOrder0=932 -[External Topic Properties\IMAGE_NT_OPTIONAL_HDR64_MAGIC] +[External Topic Properties\NativeFormFeed] Count=1 ETPCommand0=2 -ETPTopicOrder0=1095 +ETPTopicOrder0=933 -[External Topic Properties\IMAGE_NUMBEROF_DIRECTORY_ENTRIES] +[External Topic Properties\NativeForwardSlash] Count=1 ETPCommand0=2 -ETPTopicOrder0=1096 +ETPTopicOrder0=934 -[External Topic Properties\IMAGE_OPTIONAL_HEADER32] +[External Topic Properties\NativeFs] Count=1 ETPCommand0=2 -ETPTopicOrder0=39 +ETPTopicOrder0=935 -[External Topic Properties\IMAGE_OPTIONAL_HEADER64] +[External Topic Properties\NativeGs] Count=1 ETPCommand0=2 -ETPTopicOrder0=40 +ETPTopicOrder0=936 -[External Topic Properties\IMAGE_ORDINAL@DWORD] +[External Topic Properties\NativeLineBreak] Count=1 ETPCommand0=2 -ETPTopicOrder0=429 +ETPTopicOrder0=937 -[External Topic Properties\IMAGE_ORDINAL_FLAG32] +[External Topic Properties\NativeLineFeed] Count=1 ETPCommand0=2 -ETPTopicOrder0=1097 +ETPTopicOrder0=938 -[External Topic Properties\IMAGE_ORDINAL_FLAG64] +[External Topic Properties\NativeNak] Count=1 ETPCommand0=2 -ETPTopicOrder0=1098 +ETPTopicOrder0=939 -[External Topic Properties\IMAGE_ORDINAL32@DWORD] +[External Topic Properties\NativeNull] Count=1 ETPCommand0=2 -ETPTopicOrder0=430 +ETPTopicOrder0=940 -[External Topic Properties\IMAGE_ORDINAL64@ULONGLONG] +[External Topic Properties\NativeRs] Count=1 ETPCommand0=2 -ETPTopicOrder0=431 +ETPTopicOrder0=941 -[External Topic Properties\IMAGE_RESOURCE_DIRECTORY_STRING] +[External Topic Properties\NativeSi] Count=1 ETPCommand0=2 -ETPTopicOrder0=41 +ETPTopicOrder0=942 -[External Topic Properties\IMAGE_ROM_HEADERS] +[External Topic Properties\NativeSingleQuote] Count=1 ETPCommand0=2 -ETPTopicOrder0=42 +ETPTopicOrder0=943 -[External Topic Properties\IMAGE_ROM_OPTIONAL_HDR_MAGIC] +[External Topic Properties\NativeSo] Count=1 ETPCommand0=2 -ETPTopicOrder0=1099 +ETPTopicOrder0=944 -[External Topic Properties\IMAGE_ROM_OPTIONAL_HEADER] +[External Topic Properties\NativeSoh] Count=1 ETPCommand0=2 -ETPTopicOrder0=43 +ETPTopicOrder0=945 -[External Topic Properties\IMAGE_SCN_ALIGN_1024BYTES] +[External Topic Properties\NativeSpace] Count=1 ETPCommand0=2 -ETPTopicOrder0=1100 +ETPTopicOrder0=946 -[External Topic Properties\IMAGE_SCN_ALIGN_128BYTES] +[External Topic Properties\NativeStx] Count=1 ETPCommand0=2 -ETPTopicOrder0=1101 +ETPTopicOrder0=947 -[External Topic Properties\IMAGE_SCN_ALIGN_16BYTES] +[External Topic Properties\NativeSyn] Count=1 ETPCommand0=2 -ETPTopicOrder0=1102 +ETPTopicOrder0=948 -[External Topic Properties\IMAGE_SCN_ALIGN_1BYTES] +[External Topic Properties\NativeTab] Count=1 ETPCommand0=2 -ETPTopicOrder0=1103 +ETPTopicOrder0=949 -[External Topic Properties\IMAGE_SCN_ALIGN_2048BYTES] +[External Topic Properties\NativeUs] Count=1 ETPCommand0=2 -ETPTopicOrder0=1104 +ETPTopicOrder0=950 -[External Topic Properties\IMAGE_SCN_ALIGN_256BYTES] +[External Topic Properties\NativeVerticalTab] Count=1 ETPCommand0=2 -ETPTopicOrder0=1105 +ETPTopicOrder0=951 -[External Topic Properties\IMAGE_SCN_ALIGN_2BYTES] +[External Topic Properties\NCB] Count=1 ETPCommand0=2 -ETPTopicOrder0=1106 +ETPTopicOrder0=96 -[External Topic Properties\IMAGE_SCN_ALIGN_32BYTES] +[External Topic Properties\NCBACTION] Count=1 ETPCommand0=2 -ETPTopicOrder0=1107 +ETPTopicOrder0=1474 -[External Topic Properties\IMAGE_SCN_ALIGN_4096BYTES] +[External Topic Properties\NCBADDGRNAME] Count=1 ETPCommand0=2 -ETPTopicOrder0=1108 +ETPTopicOrder0=1475 -[External Topic Properties\IMAGE_SCN_ALIGN_4BYTES] +[External Topic Properties\NCBADDNAME] Count=1 ETPCommand0=2 -ETPTopicOrder0=1109 +ETPTopicOrder0=1476 -[External Topic Properties\IMAGE_SCN_ALIGN_512BYTES] +[External Topic Properties\NCBCALL] Count=1 ETPCommand0=2 -ETPTopicOrder0=1110 +ETPTopicOrder0=1477 -[External Topic Properties\IMAGE_SCN_ALIGN_64BYTES] +[External Topic Properties\NCBCANCEL] Count=1 ETPCommand0=2 -ETPTopicOrder0=1111 +ETPTopicOrder0=1478 -[External Topic Properties\IMAGE_SCN_ALIGN_8192BYTES] +[External Topic Properties\NCBCHAINSEND] Count=1 ETPCommand0=2 -ETPTopicOrder0=1112 +ETPTopicOrder0=1479 -[External Topic Properties\IMAGE_SCN_ALIGN_8BYTES] +[External Topic Properties\NCBCHAINSENDNA] Count=1 ETPCommand0=2 -ETPTopicOrder0=1113 +ETPTopicOrder0=1480 -[External Topic Properties\IMAGE_SCN_ALIGN_MASK] +[External Topic Properties\NCBDELNAME] Count=1 ETPCommand0=2 -ETPTopicOrder0=1114 +ETPTopicOrder0=1481 -[External Topic Properties\IMAGE_SCN_CNT_CODE] +[External Topic Properties\NCBDGRECV] Count=1 ETPCommand0=2 -ETPTopicOrder0=1115 +ETPTopicOrder0=1482 -[External Topic Properties\IMAGE_SCN_CNT_INITIALIZED_DATA] +[External Topic Properties\NCBDGRECVBC] Count=1 ETPCommand0=2 -ETPTopicOrder0=1116 +ETPTopicOrder0=1483 -[External Topic Properties\IMAGE_SCN_CNT_UNINITIALIZED_DATA] +[External Topic Properties\NCBDGSEND] Count=1 ETPCommand0=2 -ETPTopicOrder0=1117 +ETPTopicOrder0=1484 -[External Topic Properties\IMAGE_SCN_GPREL] +[External Topic Properties\NCBDGSENDBC] Count=1 ETPCommand0=2 -ETPTopicOrder0=1118 +ETPTopicOrder0=1485 -[External Topic Properties\IMAGE_SCN_LNK_COMDAT] +[External Topic Properties\NCBFINDNAME] Count=1 ETPCommand0=2 -ETPTopicOrder0=1119 +ETPTopicOrder0=1486 -[External Topic Properties\IMAGE_SCN_LNK_INFO] +[External Topic Properties\NCBHANGUP] Count=1 ETPCommand0=2 -ETPTopicOrder0=1120 +ETPTopicOrder0=1487 -[External Topic Properties\IMAGE_SCN_LNK_NRELOC_OVFL] +[External Topic Properties\NCBLANSTALERT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1121 +ETPTopicOrder0=1488 -[External Topic Properties\IMAGE_SCN_LNK_OTHER] +[External Topic Properties\NCBLISTEN] Count=1 ETPCommand0=2 -ETPTopicOrder0=1122 +ETPTopicOrder0=1489 -[External Topic Properties\IMAGE_SCN_LNK_REMOVE] +[External Topic Properties\NCBRECV] Count=1 ETPCommand0=2 -ETPTopicOrder0=1123 +ETPTopicOrder0=1490 -[External Topic Properties\IMAGE_SCN_MEM_16BIT] +[External Topic Properties\NCBRECVANY] Count=1 ETPCommand0=2 -ETPTopicOrder0=1124 +ETPTopicOrder0=1491 -[External Topic Properties\IMAGE_SCN_MEM_DISCARDABLE] +[External Topic Properties\NCBSEND] Count=1 ETPCommand0=2 -ETPTopicOrder0=1125 +ETPTopicOrder0=1492 -[External Topic Properties\IMAGE_SCN_MEM_EXECUTE] +[External Topic Properties\NCBSENDNA] Count=1 ETPCommand0=2 -ETPTopicOrder0=1126 +ETPTopicOrder0=1493 -[External Topic Properties\IMAGE_SCN_MEM_FARDATA] +[External Topic Properties\NCBSSTAT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1127 +ETPTopicOrder0=1494 -[External Topic Properties\IMAGE_SCN_MEM_LOCKED] +[External Topic Properties\NCBTRACE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1128 +ETPTopicOrder0=1495 -[External Topic Properties\IMAGE_SCN_MEM_NOT_CACHED] +[External Topic Properties\NCBUNLINK] Count=1 ETPCommand0=2 -ETPTopicOrder0=1129 +ETPTopicOrder0=1496 -[External Topic Properties\IMAGE_SCN_MEM_NOT_PAGED] +[External Topic Properties\Neg@TPolarComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=1130 +ETPTopicOrder0=863 -[External Topic Properties\IMAGE_SCN_MEM_PRELOAD] +[External Topic Properties\Neg@TRectComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=1131 +ETPTopicOrder0=862 -[External Topic Properties\IMAGE_SCN_MEM_PURGEABLE] +[External Topic Properties\NegInfinity] Count=1 ETPCommand0=2 -ETPTopicOrder0=1132 +ETPTopicOrder0=952 -[External Topic Properties\IMAGE_SCN_MEM_READ] +[External Topic Properties\NERR_AccountExpired] Count=1 ETPCommand0=2 -ETPTopicOrder0=1133 +ETPTopicOrder0=1498 -[External Topic Properties\IMAGE_SCN_MEM_SHARED] +[External Topic Properties\NERR_AccountLockedOut] Count=1 ETPCommand0=2 -ETPTopicOrder0=1134 +ETPTopicOrder0=1499 -[External Topic Properties\IMAGE_SCN_MEM_WRITE] +[External Topic Properties\NERR_AccountUndefined] Count=1 ETPCommand0=2 -ETPTopicOrder0=1135 +ETPTopicOrder0=1500 -[External Topic Properties\IMAGE_SCN_NO_DEFER_SPEC_EXC] +[External Topic Properties\NERR_AcctLimitExceeded] Count=1 ETPCommand0=2 -ETPTopicOrder0=1136 +ETPTopicOrder0=1501 -[External Topic Properties\IMAGE_SCN_TYPE_NO_PAD] +[External Topic Properties\NERR_ACFFileIOFail] Count=1 ETPCommand0=2 -ETPTopicOrder0=1137 +ETPTopicOrder0=1502 -[External Topic Properties\IMAGE_SECTION_HEADER] +[External Topic Properties\NERR_ACFNoParent] Count=1 ETPCommand0=2 -ETPTopicOrder0=44 +ETPTopicOrder0=1503 -[External Topic Properties\IMAGE_SEPARATE_DEBUG_FLAGS_MASK] +[External Topic Properties\NERR_ACFNoRoom] Count=1 ETPCommand0=2 -ETPTopicOrder0=1138 +ETPTopicOrder0=1504 -[External Topic Properties\IMAGE_SEPARATE_DEBUG_HEADER] +[External Topic Properties\NERR_ACFNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=45 +ETPTopicOrder0=1505 -[External Topic Properties\IMAGE_SEPARATE_DEBUG_MISMATCH] +[External Topic Properties\NERR_ACFNotLoaded] Count=1 ETPCommand0=2 -ETPTopicOrder0=1139 +ETPTopicOrder0=1506 -[External Topic Properties\IMAGE_SEPARATE_DEBUG_SIGNATURE] +[External Topic Properties\NERR_ACFTooManyLists] Count=1 ETPCommand0=2 -ETPTopicOrder0=1140 +ETPTopicOrder0=1507 -[External Topic Properties\IMAGE_SEPARATION] +[External Topic Properties\NERR_ActiveConns] Count=1 ETPCommand0=2 -ETPTopicOrder0=1141 +ETPTopicOrder0=1508 -[External Topic Properties\IMAGE_SIZEOF_ARCHIVE_MEMBER_HDR] +[External Topic Properties\NERR_AddForwarded] Count=1 ETPCommand0=2 -ETPTopicOrder0=1142 +ETPTopicOrder0=1509 -[External Topic Properties\IMAGE_SIZEOF_FILE_HEADER] +[External Topic Properties\NERR_AlertExists] Count=1 ETPCommand0=2 -ETPTopicOrder0=1143 +ETPTopicOrder0=1510 -[External Topic Properties\IMAGE_SIZEOF_LINENUMBER] +[External Topic Properties\NERR_AlreadyExists] Count=1 ETPCommand0=2 -ETPTopicOrder0=1144 +ETPTopicOrder0=1511 -[External Topic Properties\IMAGE_SIZEOF_NT_OPTIONAL_HEADER] +[External Topic Properties\NERR_AlreadyForwarded] Count=1 ETPCommand0=2 -ETPTopicOrder0=1145 +ETPTopicOrder0=1512 -[External Topic Properties\IMAGE_SIZEOF_NT_OPTIONAL32_HEADER] +[External Topic Properties\NERR_AlreadyLoggedOn] Count=1 ETPCommand0=2 -ETPTopicOrder0=1146 +ETPTopicOrder0=1513 -[External Topic Properties\IMAGE_SIZEOF_NT_OPTIONAL64_HEADER] +[External Topic Properties\NERR_BadAsgType] Count=1 ETPCommand0=2 -ETPTopicOrder0=1147 +ETPTopicOrder0=1514 -[External Topic Properties\IMAGE_SIZEOF_ROM_OPTIONAL_HEADER] +[External Topic Properties\NERR_BadComponent] Count=1 ETPCommand0=2 -ETPTopicOrder0=1148 +ETPTopicOrder0=1515 -[External Topic Properties\IMAGE_SIZEOF_SECTION_HEADER] +[External Topic Properties\NERR_BadControlRecv] Count=1 ETPCommand0=2 -ETPTopicOrder0=1149 +ETPTopicOrder0=1516 -[External Topic Properties\IMAGE_SIZEOF_SHORT_NAME] +[External Topic Properties\NERR_BadDest] Count=1 ETPCommand0=2 -ETPTopicOrder0=1150 +ETPTopicOrder0=1517 -[External Topic Properties\IMAGE_SIZEOF_STD_OPTIONAL_HEADER] +[External Topic Properties\NERR_BadDev] Count=1 ETPCommand0=2 -ETPTopicOrder0=1151 +ETPTopicOrder0=1518 -[External Topic Properties\IMAGE_SNAP_BY_ORDINAL@DWORD] +[External Topic Properties\NERR_BadDevString] Count=1 ETPCommand0=2 -ETPTopicOrder0=432 +ETPTopicOrder0=1519 -[External Topic Properties\IMAGE_SNAP_BY_ORDINAL32@DWORD] +[External Topic Properties\NERR_BadDosFunction] Count=1 ETPCommand0=2 -ETPTopicOrder0=433 +ETPTopicOrder0=1520 -[External Topic Properties\IMAGE_SNAP_BY_ORDINAL64@ULONGLONG] +[External Topic Properties\NERR_BadDosRetCode] Count=1 ETPCommand0=2 -ETPTopicOrder0=434 +ETPTopicOrder0=1521 -[External Topic Properties\IMAGE_SUBSYSTEM_EFI_APPLICATION] +[External Topic Properties\NERR_BadEventName] Count=1 ETPCommand0=2 -ETPTopicOrder0=1152 +ETPTopicOrder0=1522 -[External Topic Properties\IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER] +[External Topic Properties\NERR_BadFileCheckSum] Count=1 ETPCommand0=2 -ETPTopicOrder0=1153 +ETPTopicOrder0=1523 -[External Topic Properties\IMAGE_SUBSYSTEM_EFI_ROM] +[External Topic Properties\NERR_BadPassword] Count=1 ETPCommand0=2 -ETPTopicOrder0=1154 +ETPTopicOrder0=1524 -[External Topic Properties\IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER] +[External Topic Properties\NERR_BadPasswordCore] Count=1 ETPCommand0=2 -ETPTopicOrder0=1155 +ETPTopicOrder0=1525 -[External Topic Properties\IMAGE_SUBSYSTEM_NATIVE] +[External Topic Properties\NERR_BadQueueDevString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1156 +ETPTopicOrder0=1526 -[External Topic Properties\IMAGE_SUBSYSTEM_NATIVE_WINDOWS] +[External Topic Properties\NERR_BadQueuePriority] Count=1 ETPCommand0=2 -ETPTopicOrder0=1157 +ETPTopicOrder0=1527 -[External Topic Properties\IMAGE_SUBSYSTEM_OS2_CUI] +[External Topic Properties\NERR_BadReceive] Count=1 ETPCommand0=2 -ETPTopicOrder0=1158 +ETPTopicOrder0=1528 -[External Topic Properties\IMAGE_SUBSYSTEM_POSIX_CUI] +[External Topic Properties\NERR_BadRecipient] Count=1 ETPCommand0=2 -ETPTopicOrder0=1159 +ETPTopicOrder0=1529 -[External Topic Properties\IMAGE_SUBSYSTEM_UNKNOWN] +[External Topic Properties\NERR_BadServiceName] Count=1 ETPCommand0=2 -ETPTopicOrder0=1160 +ETPTopicOrder0=1530 -[External Topic Properties\IMAGE_SUBSYSTEM_WINDOWS_CE_GUI] +[External Topic Properties\NERR_BadServiceProgName] Count=1 ETPCommand0=2 -ETPTopicOrder0=1161 +ETPTopicOrder0=1531 -[External Topic Properties\IMAGE_SUBSYSTEM_WINDOWS_CUI] +[External Topic Properties\NERR_BadSource] Count=1 ETPCommand0=2 -ETPTopicOrder0=1162 +ETPTopicOrder0=1532 -[External Topic Properties\IMAGE_SUBSYSTEM_WINDOWS_GUI] +[External Topic Properties\NERR_BadTransactConfig] Count=1 ETPCommand0=2 -ETPTopicOrder0=1163 +ETPTopicOrder0=1533 -[External Topic Properties\IMAGE_SUBSYSTEM_XBOX] +[External Topic Properties\NERR_BadUasConfig] Count=1 ETPCommand0=2 -ETPTopicOrder0=1164 +ETPTopicOrder0=1534 -[External Topic Properties\IMAGE_THUNK_DATA32] +[External Topic Properties\NERR_BadUsername] Count=1 ETPCommand0=2 -ETPTopicOrder0=46 +ETPTopicOrder0=1535 -[External Topic Properties\IMAGE_THUNK_DATA64] +[External Topic Properties\NERR_BASE] Count=1 ETPCommand0=2 -ETPTopicOrder0=47 +ETPTopicOrder0=1536 -[External Topic Properties\IMAGE_TLS_DIRECTORY32] +[External Topic Properties\NERR_BrowserConfiguredToNotRun] Count=1 ETPCommand0=2 -ETPTopicOrder0=48 +ETPTopicOrder0=1537 -[External Topic Properties\IMAGE_TLS_DIRECTORY64] +[External Topic Properties\NERR_BrowserNotStarted] Count=1 ETPCommand0=2 -ETPTopicOrder0=49 +ETPTopicOrder0=1538 -[External Topic Properties\ImageDirectoryEntryToData@Pointer@ByteBool@USHORT@ULONG] +[External Topic Properties\NERR_BrowserTableIncomplete] Count=1 ETPCommand0=2 -ETPTopicOrder0=435 +ETPTopicOrder0=1539 -[External Topic Properties\IMAGEHLP_LINE] +[External Topic Properties\NERR_BufTooSmall] Count=1 ETPCommand0=2 -ETPTopicOrder0=50 +ETPTopicOrder0=1540 -[External Topic Properties\ImageRvaToSection@PImageNtHeaders@Pointer@ULONG] +[External Topic Properties\NERR_CallingRplSrvr] Count=1 ETPCommand0=2 -ETPTopicOrder0=436 +ETPTopicOrder0=1541 -[External Topic Properties\ImageRvaToVa@PImageNtHeaders@Pointer@ULONG@PPImageSectionHeader] +[External Topic Properties\NERR_CanNotGrowSegment] Count=1 ETPCommand0=2 -ETPTopicOrder0=437 +ETPTopicOrder0=1542 -[External Topic Properties\ImgDelayDescrV1] +[External Topic Properties\NERR_CanNotGrowUASFile] Count=1 ETPCommand0=2 -ETPTopicOrder0=72 +ETPTopicOrder0=1543 -[External Topic Properties\ImgDelayDescrV1.dwTimeStamp] +[External Topic Properties\NERR_CantConnectRplSrvr] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=1544 -[External Topic Properties\ImgDelayDescrV1.grAttrs] +[External Topic Properties\NERR_CantOpenImageFile] Count=1 ETPCommand0=2 -ETPTopicOrder0=1 +ETPTopicOrder0=1545 -[External Topic Properties\ImgDelayDescrV1.pBoundIAT] +[External Topic Properties\NERR_CantType] Count=1 ETPCommand0=2 -ETPTopicOrder0=2 +ETPTopicOrder0=1546 -[External Topic Properties\ImgDelayDescrV1.phmod] +[External Topic Properties\NERR_CfgCompNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=3 +ETPTopicOrder0=1547 -[External Topic Properties\ImgDelayDescrV1.pIAT] +[External Topic Properties\NERR_CfgParamNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=4 +ETPTopicOrder0=1548 -[External Topic Properties\ImgDelayDescrV1.pINT] +[External Topic Properties\NERR_ClientNameNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=5 +ETPTopicOrder0=1549 -[External Topic Properties\ImgDelayDescrV1.pUnloadIAT] +[External Topic Properties\NERR_CommDevInUse] Count=1 ETPCommand0=2 -ETPTopicOrder0=6 +ETPTopicOrder0=1550 -[External Topic Properties\ImgDelayDescrV1.szName] +[External Topic Properties\NERR_ComputerAccountNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=7 +ETPTopicOrder0=1551 -[External Topic Properties\ImgDelayDescrV2] +[External Topic Properties\NERR_DatabaseUpToDate] Count=1 ETPCommand0=2 -ETPTopicOrder0=73 +ETPTopicOrder0=1552 -[External Topic Properties\ImgDelayDescrV2.dwTimeStamp] +[External Topic Properties\NERR_DataTypeInvalid] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=1553 -[External Topic Properties\ImgDelayDescrV2.grAttrs] +[External Topic Properties\NERR_DCNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=1 +ETPTopicOrder0=1554 -[External Topic Properties\ImgDelayDescrV2.rvaBoundIAT] +[External Topic Properties\NERR_DefaultJoinRequired] Count=1 ETPCommand0=2 -ETPTopicOrder0=2 +ETPTopicOrder0=1555 -[External Topic Properties\ImgDelayDescrV2.rvaDLLName] +[External Topic Properties\NERR_DelComputerName] Count=1 ETPCommand0=2 -ETPTopicOrder0=3 +ETPTopicOrder0=1556 -[External Topic Properties\ImgDelayDescrV2.rvaHmod] +[External Topic Properties\NERR_DeleteLater] Count=1 ETPCommand0=2 -ETPTopicOrder0=4 +ETPTopicOrder0=1557 -[External Topic Properties\ImgDelayDescrV2.rvaIAT] +[External Topic Properties\NERR_DestExists] Count=1 ETPCommand0=2 -ETPTopicOrder0=5 +ETPTopicOrder0=1558 -[External Topic Properties\ImgDelayDescrV2.rvaINT] +[External Topic Properties\NERR_DestIdle] Count=1 ETPCommand0=2 -ETPTopicOrder0=6 +ETPTopicOrder0=1559 -[External Topic Properties\ImgDelayDescrV2.rvaUnloadIAT] +[External Topic Properties\NERR_DestInvalidOp] Count=1 ETPCommand0=2 -ETPTopicOrder0=7 +ETPTopicOrder0=1560 -[External Topic Properties\IMPORT_OBJECT_HDR_SIG2] +[External Topic Properties\NERR_DestInvalidState] Count=1 ETPCommand0=2 -ETPTopicOrder0=1165 +ETPTopicOrder0=1561 -[External Topic Properties\IMPORT_OBJECT_HEADER] +[External Topic Properties\NERR_DestNoRoom] Count=1 ETPCommand0=2 -ETPTopicOrder0=74 +ETPTopicOrder0=1562 -[External Topic Properties\IMPORT_OBJECT_HEADER.Flags] +[External Topic Properties\NERR_DestNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=1563 -[External Topic Properties\IMPORT_OBJECT_HEADER.Machine] +[External Topic Properties\NERR_DeviceIsShared] Count=1 ETPCommand0=2 -ETPTopicOrder0=1 +ETPTopicOrder0=1564 -[External Topic Properties\IMPORT_OBJECT_HEADER.OrdinalOrHint] +[External Topic Properties\NERR_DeviceNotShared] Count=1 ETPCommand0=2 -ETPTopicOrder0=2 +ETPTopicOrder0=1565 -[External Topic Properties\IMPORT_OBJECT_HEADER.Sig1] +[External Topic Properties\NERR_DeviceShareConflict] Count=1 ETPCommand0=2 -ETPTopicOrder0=3 +ETPTopicOrder0=1566 -[External Topic Properties\IMPORT_OBJECT_HEADER.Sig2] +[External Topic Properties\NERR_DevInUse] Count=1 ETPCommand0=2 -ETPTopicOrder0=4 +ETPTopicOrder0=1567 -[External Topic Properties\IMPORT_OBJECT_HEADER.SizeOfData] +[External Topic Properties\NERR_DevInvalidOpCode] Count=1 ETPCommand0=2 -ETPTopicOrder0=5 +ETPTopicOrder0=1568 -[External Topic Properties\IMPORT_OBJECT_HEADER.TimeDateStamp] +[External Topic Properties\NERR_DevNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=6 +ETPTopicOrder0=1569 -[External Topic Properties\IMPORT_OBJECT_HEADER.Version] +[External Topic Properties\NERR_DevNotOpen] Count=1 ETPCommand0=2 -ETPTopicOrder0=7 +ETPTopicOrder0=1570 -[External Topic Properties\IMPORT_OBJECT_NAME_TYPE] +[External Topic Properties\NERR_DevNotRedirected] Count=1 ETPCommand0=2 -ETPTopicOrder0=75 +ETPTopicOrder0=1571 -[External Topic Properties\IMPORT_OBJECT_NAME_TYPE.IMPORT_OBJECT_NAME] +[External Topic Properties\NERR_DfsAlreadyShared] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=1572 -[External Topic Properties\IMPORT_OBJECT_NAME_TYPE.IMPORT_OBJECT_NAME_NO_PREFIX] +[External Topic Properties\NERR_DfsBadRenamePath] Count=1 ETPCommand0=2 -ETPTopicOrder0=1 +ETPTopicOrder0=1573 -[External Topic Properties\IMPORT_OBJECT_NAME_TYPE.IMPORT_OBJECT_NAME_UNDECORATE] +[External Topic Properties\NERR_DfsCantCreateJunctionPoint] Count=1 ETPCommand0=2 -ETPTopicOrder0=2 +ETPTopicOrder0=1574 -[External Topic Properties\IMPORT_OBJECT_NAME_TYPE.IMPORT_OBJECT_ORDINAL] +[External Topic Properties\NERR_DfsCantRemoveDfsRoot] Count=1 ETPCommand0=2 -ETPTopicOrder0=3 +ETPTopicOrder0=1575 -[External Topic Properties\IMPORT_OBJECT_TYPE] +[External Topic Properties\NERR_DfsCantRemoveLastServerShare] Count=1 ETPCommand0=2 -ETPTopicOrder0=76 +ETPTopicOrder0=1576 -[External Topic Properties\IMPORT_OBJECT_TYPE.IMPORT_OBJECT_CODE] +[External Topic Properties\NERR_DfsChildOrParentInDfs] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=1577 -[External Topic Properties\IMPORT_OBJECT_TYPE.IMPORT_OBJECT_CONST] +[External Topic Properties\NERR_DfsCyclicalName] Count=1 ETPCommand0=2 -ETPTopicOrder0=1 +ETPTopicOrder0=1578 -[External Topic Properties\IMPORT_OBJECT_TYPE.IMPORT_OBJECT_DATA] +[External Topic Properties\NERR_DfsDataIsIdentical] Count=1 ETPCommand0=2 -ETPTopicOrder0=2 +ETPTopicOrder0=1579 -[External Topic Properties\IncLimit@Cardinal@Cardinal@Cardinal] +[External Topic Properties\NERR_DfsDuplicateService] Count=1 ETPCommand0=2 -ETPTopicOrder0=442 +ETPTopicOrder0=1580 -[External Topic Properties\IncLimit@Int64@Int64@Int64] +[External Topic Properties\NERR_DfsInconsistent] Count=1 ETPCommand0=2 -ETPTopicOrder0=443 +ETPTopicOrder0=1581 -[External Topic Properties\IncLimit@Integer@Integer@Integer] +[External Topic Properties\NERR_DfsInternalCorruption] Count=1 ETPCommand0=2 -ETPTopicOrder0=440 +ETPTopicOrder0=1582 -[External Topic Properties\IncLimit@Shortint@Shortint@Shortint] +[External Topic Properties\NERR_DfsInternalError] Count=1 ETPCommand0=2 -ETPTopicOrder0=439 +ETPTopicOrder0=1583 -[External Topic Properties\IncLimit@Smallint@Smallint@Smallint] +[External Topic Properties\NERR_DfsLeafVolume] Count=1 ETPCommand0=2 -ETPTopicOrder0=438 +ETPTopicOrder0=1584 -[External Topic Properties\IncLimit@Word@Word@Word] +[External Topic Properties\NERR_DfsNoSuchServer] Count=1 ETPCommand0=2 -ETPTopicOrder0=441 +ETPTopicOrder0=1585 -[External Topic Properties\IncLimitClamp@Cardinal@Cardinal@Cardinal] +[External Topic Properties\NERR_DfsNoSuchShare] Count=1 ETPCommand0=2 -ETPTopicOrder0=446 +ETPTopicOrder0=1586 -[External Topic Properties\IncLimitClamp@Int64@Int64@Int64] +[External Topic Properties\NERR_DfsNoSuchVolume] Count=1 ETPCommand0=2 -ETPTopicOrder0=447 +ETPTopicOrder0=1587 -[External Topic Properties\IncLimitClamp@Integer@Integer@Integer] +[External Topic Properties\NERR_DfsNotALeafVolume] Count=1 ETPCommand0=2 -ETPTopicOrder0=445 +ETPTopicOrder0=1588 -[External Topic Properties\IncLimitClamp@Shortint@Shortint@Shortint] +[External Topic Properties\NERR_DfsNotSupportedInServerDfs] Count=1 ETPCommand0=2 -ETPTopicOrder0=448 +ETPTopicOrder0=1589 -[External Topic Properties\IncLimitClamp@Smallint@Smallint@Smallint] +[External Topic Properties\NERR_DfsServerNotDfsAware] Count=1 ETPCommand0=2 -ETPTopicOrder0=449 +ETPTopicOrder0=1590 -[External Topic Properties\IncLimitClamp@Word@Word@Word] +[External Topic Properties\NERR_DfsServerUpgraded] Count=1 ETPCommand0=2 -ETPTopicOrder0=444 +ETPTopicOrder0=1591 -[External Topic Properties\IndexedDayOfWeek@Integer@Integer@Integer@Integer] +[External Topic Properties\NERR_DfsVolumeAlreadyExists] Count=1 ETPCommand0=2 -ETPTopicOrder0=450 +ETPTopicOrder0=1592 -[External Topic Properties\IndexedWeekDay@Integer@Integer@Integer] +[External Topic Properties\NERR_DfsVolumeDataCorrupt] Count=1 ETPCommand0=2 -ETPTopicOrder0=451 +ETPTopicOrder0=1593 -[External Topic Properties\IndexedWeekendDay@Integer@Integer@Integer] +[External Topic Properties\NERR_DfsVolumeHasMultipleServers] Count=1 ETPCommand0=2 -ETPTopicOrder0=452 +ETPTopicOrder0=1594 -[External Topic Properties\InfiniteTime] +[External Topic Properties\NERR_DfsVolumeIsInterDfs] Count=1 ETPCommand0=2 -ETPTopicOrder0=1166 +ETPTopicOrder0=1595 -[External Topic Properties\Infinity] +[External Topic Properties\NERR_DfsVolumeIsOffline] Count=1 ETPCommand0=2 -ETPTopicOrder0=1167 +ETPTopicOrder0=1596 -[External Topic Properties\IniReadStrings@TCustomIniFile@string@TStrings] +[External Topic Properties\NERR_DifferentServers] Count=1 ETPCommand0=2 -ETPTopicOrder0=453 +ETPTopicOrder0=1597 -[External Topic Properties\InitializeLocaleSupport] +[External Topic Properties\NERR_DriverNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=454 +ETPTopicOrder0=1598 -[External Topic Properties\IniWriteStrings@TCustomIniFile@string@TStrings] +[External Topic Properties\NERR_DuplicateName] Count=1 ETPCommand0=2 -ETPTopicOrder0=455 +ETPTopicOrder0=1599 -[External Topic Properties\InsertCompositeElementInto@TEDISEFDataObjectGroup@TEDISEFCompositeElement@TEDISEFDataObject] +[External Topic Properties\NERR_DuplicateShare] Count=1 ETPCommand0=2 -ETPTopicOrder0=456 +ETPTopicOrder0=1600 -[External Topic Properties\InsertCompositeElementInto@TEDISEFDataObjectGroup@TEDISEFDataObject] +[External Topic Properties\NERR_DupNameReboot] Count=1 ETPCommand0=2 -ETPTopicOrder0=457 +ETPTopicOrder0=1601 -[External Topic Properties\InsertDebugDataIntoExecutableFile@TFileName@TFileName@string@Integer@Integer] +[External Topic Properties\NERR_ErrCommRunSrv] Count=1 ETPCommand0=2 -ETPTopicOrder0=460 +ETPTopicOrder0=1602 -[External Topic Properties\InsertDebugDataIntoExecutableFile@TFileName@TFileName@string@Integer@Integer@Integer] +[External Topic Properties\NERR_ErrorExecingGhost] Count=1 ETPCommand0=2 -ETPTopicOrder0=461 +ETPTopicOrder0=1603 -[External Topic Properties\InsertDebugDataIntoExecutableFile@TFileName@TJclBinDebugGenerator@string@Integer@Integer] +[External Topic Properties\NERR_ExecFailure] Count=1 ETPCommand0=2 -ETPTopicOrder0=458 +ETPTopicOrder0=1604 -[External Topic Properties\InsertDebugDataIntoExecutableFile@TFileName@TJclBinDebugGenerator@string@Integer@Integer@Integer] +[External Topic Properties\NERR_FileIdNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=459 +ETPTopicOrder0=1605 -[External Topic Properties\InsertElementInto@TEDISEFDataObjectGroup@TEDISEFDataObject] +[External Topic Properties\NERR_GroupExists] Count=1 ETPCommand0=2 -ETPTopicOrder0=463 +ETPTopicOrder0=1606 -[External Topic Properties\InsertElementInto@TEDISEFDataObjectGroup@TEDISEFElement@TEDISEFDataObject] +[External Topic Properties\NERR_GroupNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=462 +ETPTopicOrder0=1607 -[External Topic Properties\InsertLoopInto@TEDISEFDataObjectGroup@TEDISEFDataObject] +[External Topic Properties\NERR_GrpMsgProcessor] Count=1 ETPCommand0=2 -ETPTopicOrder0=465 +ETPTopicOrder0=1608 -[External Topic Properties\InsertLoopInto@TEDISEFDataObjectGroup@TEDISEFLoop@TEDISEFDataObject] +[External Topic Properties\NERR_ImageParamErr] Count=1 ETPCommand0=2 -ETPTopicOrder0=464 +ETPTopicOrder0=1609 -[External Topic Properties\InsertRepeatingPatternInto@TEDISEFDataObjectGroup@TEDISEFDataObject] +[External Topic Properties\NERR_IncompleteDel] Count=1 ETPCommand0=2 -ETPTopicOrder0=466 +ETPTopicOrder0=1610 -[External Topic Properties\InsertRepeatingPatternInto@TEDISEFDataObjectGroup@TEDISEFRepeatingPattern@TEDISEFDataObject] +[External Topic Properties\NERR_InternalError] Count=1 ETPCommand0=2 -ETPTopicOrder0=467 +ETPTopicOrder0=1611 -[External Topic Properties\InsertSegmentInto@TEDISEFDataObjectGroup@TEDISEFDataObject] +[External Topic Properties\NERR_InUseBySpooler] Count=1 ETPCommand0=2 -ETPTopicOrder0=468 +ETPTopicOrder0=1612 -[External Topic Properties\InsertSegmentInto@TEDISEFDataObjectGroup@TEDISEFSegment@TEDISEFDataObject] +[External Topic Properties\NERR_InvalidAPI] Count=1 ETPCommand0=2 -ETPTopicOrder0=469 +ETPTopicOrder0=1613 -[External Topic Properties\InsertSubElementInto@TEDISEFDataObjectGroup@TEDISEFDataObject] +[External Topic Properties\NERR_InvalidComputer] Count=1 ETPCommand0=2 -ETPTopicOrder0=470 +ETPTopicOrder0=1614 -[External Topic Properties\InsertSubElementInto@TEDISEFDataObjectGroup@TEDISEFSubElement@TEDISEFDataObject] +[External Topic Properties\NERR_InvalidDatabase] Count=1 ETPCommand0=2 -ETPTopicOrder0=471 +ETPTopicOrder0=1615 -[External Topic Properties\InsertTableInto@TEDISEFDataObjectGroup@TEDISEFDataObject] +[External Topic Properties\NERR_InvalidDevice] Count=1 ETPCommand0=2 -ETPTopicOrder0=473 +ETPTopicOrder0=1616 -[External Topic Properties\InsertTableInto@TEDISEFDataObjectGroup@TEDISEFTable@TEDISEFDataObject] +[External Topic Properties\NERR_InvalidLana] Count=1 ETPCommand0=2 -ETPTopicOrder0=472 +ETPTopicOrder0=1617 -[External Topic Properties\InsertUnitVersioningSection@TFileName@TJclUnitVersioningList] +[External Topic Properties\NERR_InvalidLogonHours] Count=1 ETPCommand0=2 -ETPTopicOrder0=474 +ETPTopicOrder0=1618 -[External Topic Properties\INSTALLSTATE] +[External Topic Properties\NERR_InvalidLogSeek] Count=1 ETPCommand0=2 -ETPTopicOrder0=51 +ETPTopicOrder0=1619 -[External Topic Properties\InstructionDumpILAllOption] +[External Topic Properties\NERR_InvalidMaxUsers] Count=1 ETPCommand0=2 -ETPTopicOrder0=1168 +ETPTopicOrder0=1620 -[External Topic Properties\Int16] +[External Topic Properties\NERR_InvalidUASOp] Count=1 ETPCommand0=2 -ETPTopicOrder0=52 +ETPTopicOrder0=1621 -[External Topic Properties\Int32] +[External Topic Properties\NERR_InvalidWorkgroupName] Count=1 ETPCommand0=2 -ETPTopicOrder0=53 +ETPTopicOrder0=1622 -[External Topic Properties\Int64Mask] +[External Topic Properties\NERR_InvalidWorkstation] Count=1 ETPCommand0=2 -ETPTopicOrder0=1169 +ETPTopicOrder0=1623 -[External Topic Properties\Int8] +[External Topic Properties\NERR_IsDfsShare] Count=1 ETPCommand0=2 -ETPTopicOrder0=54 +ETPTopicOrder0=1624 -[External Topic Properties\IntegerCompare@TObject@TObject] +[External Topic Properties\NERR_ItemNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=475 +ETPTopicOrder0=1625 -[External Topic Properties\IntegerMask] +[External Topic Properties\NERR_JobInvalidState] Count=1 ETPCommand0=2 -ETPTopicOrder0=1170 +ETPTopicOrder0=1626 -[External Topic Properties\INTEL_ACPI] +[External Topic Properties\NERR_JobNoRoom] Count=1 ETPCommand0=2 -ETPTopicOrder0=1171 +ETPTopicOrder0=1627 -[External Topic Properties\INTEL_APIC] +[External Topic Properties\NERR_JobNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=1172 +ETPTopicOrder0=1628 -[External Topic Properties\INTEL_BIT_10] +[External Topic Properties\NERR_LanmanIniError] Count=1 ETPCommand0=2 -ETPTopicOrder0=1173 +ETPTopicOrder0=1629 -[External Topic Properties\INTEL_BIT_20] +[External Topic Properties\NERR_LastAdmin] Count=1 ETPCommand0=2 -ETPTopicOrder0=1174 +ETPTopicOrder0=1630 -[External Topic Properties\INTEL_BIT_30] +[External Topic Properties\NERR_LineTooLong] Count=1 ETPCommand0=2 -ETPTopicOrder0=1175 +ETPTopicOrder0=1631 -[External Topic Properties\INTEL_CLFLSH] +[External Topic Properties\NERR_LocalDrive] Count=1 ETPCommand0=2 -ETPTopicOrder0=1176 +ETPTopicOrder0=1632 -[External Topic Properties\INTEL_CMOV] +[External Topic Properties\NERR_LocalForward] Count=1 ETPCommand0=2 -ETPTopicOrder0=1177 +ETPTopicOrder0=1633 -[External Topic Properties\INTEL_CX8] +[External Topic Properties\NERR_LogFileChanged] Count=1 ETPCommand0=2 -ETPTopicOrder0=1178 +ETPTopicOrder0=1634 -[External Topic Properties\INTEL_DE] +[External Topic Properties\NERR_LogFileCorrupt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1179 +ETPTopicOrder0=1635 -[External Topic Properties\INTEL_DS] +[External Topic Properties\NERR_LogonDomainExists] Count=1 ETPCommand0=2 -ETPTopicOrder0=1180 +ETPTopicOrder0=1636 -[External Topic Properties\INTEL_FPU] +[External Topic Properties\NERR_LogonNoUserPath] Count=1 ETPCommand0=2 -ETPTopicOrder0=1181 +ETPTopicOrder0=1637 -[External Topic Properties\INTEL_FXSR] +[External Topic Properties\NERR_LogonScriptError] Count=1 ETPCommand0=2 -ETPTopicOrder0=1182 +ETPTopicOrder0=1638 -[External Topic Properties\INTEL_HTT] +[External Topic Properties\NERR_LogonServerConflict] Count=1 ETPCommand0=2 -ETPTopicOrder0=1183 +ETPTopicOrder0=1639 -[External Topic Properties\INTEL_MCA] +[External Topic Properties\NERR_LogonServerNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=1184 +ETPTopicOrder0=1640 -[External Topic Properties\INTEL_MCE] +[External Topic Properties\NERR_LogonsPaused] Count=1 ETPCommand0=2 -ETPTopicOrder0=1185 +ETPTopicOrder0=1641 -[External Topic Properties\INTEL_MMX] +[External Topic Properties\NERR_LogonTrackingError] Count=1 ETPCommand0=2 -ETPTopicOrder0=1186 +ETPTopicOrder0=1642 -[External Topic Properties\INTEL_MSR] +[External Topic Properties\NERR_LogOverflow] Count=1 ETPCommand0=2 -ETPTopicOrder0=1187 +ETPTopicOrder0=1643 -[External Topic Properties\INTEL_MTRR] +[External Topic Properties\NERR_MaxLenExceeded] Count=1 ETPCommand0=2 -ETPTopicOrder0=1188 +ETPTopicOrder0=1644 -[External Topic Properties\INTEL_PAE] +[External Topic Properties\NERR_MsgAlreadyStarted] Count=1 ETPCommand0=2 -ETPTopicOrder0=1189 +ETPTopicOrder0=1645 -[External Topic Properties\INTEL_PAT] +[External Topic Properties\NERR_MsgInitFailed] Count=1 ETPCommand0=2 -ETPTopicOrder0=1190 +ETPTopicOrder0=1646 -[External Topic Properties\INTEL_PBE] +[External Topic Properties\NERR_MsgNotStarted] Count=1 ETPCommand0=2 -ETPTopicOrder0=1191 +ETPTopicOrder0=1647 -[External Topic Properties\INTEL_PGE] +[External Topic Properties\NERR_MultipleNets] Count=1 ETPCommand0=2 -ETPTopicOrder0=1192 +ETPTopicOrder0=1648 -[External Topic Properties\INTEL_PSE] +[External Topic Properties\NERR_NameInUse] Count=1 ETPCommand0=2 -ETPTopicOrder0=1193 +ETPTopicOrder0=1649 -[External Topic Properties\INTEL_PSE36] +[External Topic Properties\NERR_NameNotForwarded] Count=1 ETPCommand0=2 -ETPTopicOrder0=1194 +ETPTopicOrder0=1650 -[External Topic Properties\INTEL_PSN] +[External Topic Properties\NERR_NameNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=1195 +ETPTopicOrder0=1651 -[External Topic Properties\INTEL_SEP] +[External Topic Properties\NERR_NameUsesIncompatibleCodePage] Count=1 ETPCommand0=2 -ETPTopicOrder0=1196 +ETPTopicOrder0=1652 -[External Topic Properties\INTEL_SS] +[External Topic Properties\NERR_NetlogonNotStarted] Count=1 ETPCommand0=2 -ETPTopicOrder0=1197 +ETPTopicOrder0=1653 -[External Topic Properties\INTEL_SSE] +[External Topic Properties\NERR_NetNameNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=1198 +ETPTopicOrder0=1654 -[External Topic Properties\INTEL_SSE2] +[External Topic Properties\NERR_NetNotStarted] Count=1 ETPCommand0=2 -ETPTopicOrder0=1199 +ETPTopicOrder0=1655 -[External Topic Properties\INTEL_TM] +[External Topic Properties\NERR_NetworkError] Count=1 ETPCommand0=2 -ETPTopicOrder0=1200 +ETPTopicOrder0=1656 -[External Topic Properties\INTEL_TSC] +[External Topic Properties\NERR_NoAlternateServers] Count=1 ETPCommand0=2 -ETPTopicOrder0=1201 +ETPTopicOrder0=1657 -[External Topic Properties\INTEL_VME] +[External Topic Properties\NERR_NoCommDevs] Count=1 ETPCommand0=2 -ETPTopicOrder0=1202 +ETPTopicOrder0=1658 -[External Topic Properties\IntelCacheDescription] +[External Topic Properties\NERR_NoComputerName] Count=1 ETPCommand0=2 -ETPTopicOrder0=1203 +ETPTopicOrder0=1659 -[External Topic Properties\Intensity@Single@Single@Single] +[External Topic Properties\NERR_NoForwardName] Count=1 ETPCommand0=2 -ETPTopicOrder0=477 +ETPTopicOrder0=1660 -[External Topic Properties\Intensity@TColor32] +[External Topic Properties\NERR_NonDosFloppyUsed] Count=1 ETPCommand0=2 -ETPTopicOrder0=476 +ETPTopicOrder0=1661 -[External Topic Properties\Internationalisation] +[External Topic Properties\NERR_NoNetworkResource] Count=1 ETPCommand0=2 -ETPTopicOrder0=9 +ETPTopicOrder0=1662 -[External Topic Properties\InternetandE-mail] +[External Topic Properties\NERR_NonValidatedLogon] Count=1 ETPCommand0=2 -ETPTopicOrder0=10 +ETPTopicOrder0=1663 -[External Topic Properties\IntfSimpleCompare@IInterface@IInterface] +[External Topic Properties\NERR_NoRoom] Count=1 ETPCommand0=2 -ETPTopicOrder0=478 +ETPTopicOrder0=1664 -[External Topic Properties\IntfSortProc] +[External Topic Properties\NERR_NoRplBootSystem] Count=1 ETPCommand0=2 -ETPTopicOrder0=22 +ETPTopicOrder0=1665 -[External Topic Properties\IntToBool] +[External Topic Properties\NERR_NoSuchAlert] Count=1 ETPCommand0=2 -ETPTopicOrder0=479 +ETPTopicOrder0=1666 -[External Topic Properties\Inv@TPolarComplex] +[External Topic Properties\NERR_NoSuchConnection] Count=1 ETPCommand0=2 -ETPTopicOrder0=480 +ETPTopicOrder0=1667 -[External Topic Properties\Inv@TRectComplex] +[External Topic Properties\NERR_NoSuchServer] Count=1 ETPCommand0=2 -ETPTopicOrder0=481 +ETPTopicOrder0=1668 -[External Topic Properties\inv2Pi] +[External Topic Properties\NERR_NoSuchSession] Count=1 ETPCommand0=2 -ETPTopicOrder0=1204 +ETPTopicOrder0=1669 -[External Topic Properties\IO_COMPLETION_ALL_ACCESS] +[External Topic Properties\NERR_NotInCache] Count=1 ETPCommand0=2 -ETPTopicOrder0=1205 +ETPTopicOrder0=1670 -[External Topic Properties\IO_COMPLETION_MODIFY_STATE] +[External Topic Properties\NERR_NotInDispatchTbl] Count=1 ETPCommand0=2 -ETPTopicOrder0=1206 +ETPTopicOrder0=1671 -[External Topic Properties\IO_REPARSE_TAG_DFS] +[External Topic Properties\NERR_NotLocalDomain] Count=1 ETPCommand0=2 -ETPTopicOrder0=1207 +ETPTopicOrder0=1672 -[External Topic Properties\IO_REPARSE_TAG_FILTER_MANAGER] +[External Topic Properties\NERR_NotLocalName] Count=1 ETPCommand0=2 -ETPTopicOrder0=1208 +ETPTopicOrder0=1673 -[External Topic Properties\IOHFLAGS_TYPE] +[External Topic Properties\NERR_NotLoggedOn] Count=1 ETPCommand0=2 -ETPTopicOrder0=1209 +ETPTopicOrder0=1674 -[External Topic Properties\IsAccessInstalled] +[External Topic Properties\NERR_NotPrimary] Count=1 ETPCommand0=2 -ETPTopicOrder0=482 +ETPTopicOrder0=1675 -[External Topic Properties\IsBackupFileName] +[External Topic Properties\NERR_OpenFiles] Count=1 ETPCommand0=2 -ETPTopicOrder0=483 +ETPTopicOrder0=1676 -[External Topic Properties\IsBCBPackage@string] +[External Topic Properties\NERR_PasswordCantChange] Count=1 ETPCommand0=2 -ETPTopicOrder0=484 +ETPTopicOrder0=1677 -[External Topic Properties\IsBCBProject@string] +[External Topic Properties\NERR_PasswordExpired] Count=1 ETPCommand0=2 -ETPTopicOrder0=485 +ETPTopicOrder0=1678 -[External Topic Properties\IsCompiledWithPackages] +[External Topic Properties\NERR_PasswordFilterError] Count=1 ETPCommand0=2 -ETPTopicOrder0=486 +ETPTopicOrder0=1679 -[External Topic Properties\IsDelphiPackage@string] +[External Topic Properties\NERR_PasswordHistConflict] Count=1 ETPCommand0=2 -ETPTopicOrder0=487 +ETPTopicOrder0=1680 -[External Topic Properties\IsDelphiProject@string] +[External Topic Properties\NERR_PasswordMismatch] Count=1 ETPCommand0=2 -ETPTopicOrder0=488 +ETPTopicOrder0=1681 -[External Topic Properties\IsExcelInstalled] +[External Topic Properties\NERR_PasswordMustChange] Count=1 ETPCommand0=2 -ETPTopicOrder0=489 +ETPTopicOrder0=1682 -[External Topic Properties\IsFrontPageInstalled] +[External Topic Properties\NERR_PasswordNotComplexEnough] Count=1 ETPCommand0=2 -ETPTopicOrder0=490 +ETPTopicOrder0=1683 -[External Topic Properties\IsIgnoredException@TClass] +[External Topic Properties\NERR_PasswordTooLong] Count=1 ETPCommand0=2 -ETPTopicOrder0=491 +ETPTopicOrder0=1684 -[External Topic Properties\IsInfinite@Extended] +[External Topic Properties\NERR_PasswordTooRecent] Count=1 ETPCommand0=2 -ETPTopicOrder0=495 +ETPTopicOrder0=1685 -[External Topic Properties\IsInfinite@Single] +[External Topic Properties\NERR_PasswordTooShort] Count=1 ETPCommand0=2 -ETPTopicOrder0=492 +ETPTopicOrder0=1686 -[External Topic Properties\IsInfinite@TPolarComplex] +[External Topic Properties\NERR_PausedRemote] Count=1 ETPCommand0=2 -ETPTopicOrder0=494 +ETPTopicOrder0=1687 -[External Topic Properties\IsInfinite@TRectComplex] +[External Topic Properties\NERR_PersonalSku] Count=1 ETPCommand0=2 -ETPTopicOrder0=493 +ETPTopicOrder0=1688 -[External Topic Properties\IsInternetExplorerInstalled] +[External Topic Properties\NERR_ProcNoRespond] Count=1 ETPCommand0=2 -ETPTopicOrder0=496 +ETPTopicOrder0=1689 -[External Topic Properties\IsISOLongYear@TDateTime] +[External Topic Properties\NERR_ProcNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=498 +ETPTopicOrder0=1690 -[External Topic Properties\IsISOLongYear@Word] +[External Topic Properties\NERR_ProfileCleanup] Count=1 ETPCommand0=2 -ETPTopicOrder0=497 +ETPTopicOrder0=1691 -[External Topic Properties\IsLeapYear@TDateTime] +[External Topic Properties\NERR_ProfileFileTooBig] Count=1 ETPCommand0=2 -ETPTopicOrder0=499 +ETPTopicOrder0=1692 -[External Topic Properties\IsMainAppWindow@THandle] +[External Topic Properties\NERR_ProfileLoadErr] Count=1 ETPCommand0=2 -ETPTopicOrder0=500 +ETPTopicOrder0=1693 -[External Topic Properties\IsMediaPresentInDrive@Char] +[External Topic Properties\NERR_ProfileOffset] Count=1 ETPCommand0=2 -ETPTopicOrder0=501 +ETPTopicOrder0=1694 -[External Topic Properties\IsMSProjectInstalled] +[External Topic Properties\NERR_ProfileSaveErr] Count=1 ETPCommand0=2 -ETPTopicOrder0=502 +ETPTopicOrder0=1695 -[External Topic Properties\IsNaN@Extended] +[External Topic Properties\NERR_ProfileUnknownCmd] Count=1 ETPCommand0=2 -ETPTopicOrder0=504 +ETPTopicOrder0=1696 -[External Topic Properties\IsNaN@Single] +[External Topic Properties\NERR_ProgNeedsExtraMem] Count=1 ETPCommand0=2 -ETPTopicOrder0=503 +ETPTopicOrder0=1697 -[External Topic Properties\ISODayOfWeek@TDateTime] +[External Topic Properties\NERR_QExists] Count=1 ETPCommand0=2 -ETPTopicOrder0=505 +ETPTopicOrder0=1698 -[External Topic Properties\ISOLATIONAWARE_MANIFEST_RESOURCE_ID] +[External Topic Properties\NERR_QInvalidState] Count=1 ETPCommand0=2 -ETPTopicOrder0=1210 +ETPTopicOrder0=1699 -[External Topic Properties\ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID] +[External Topic Properties\NERR_QNoRoom] Count=1 ETPCommand0=2 -ETPTopicOrder0=1211 +ETPTopicOrder0=1700 -[External Topic Properties\IsOpenOfficeInstalled] +[External Topic Properties\NERR_QNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=506 +ETPTopicOrder0=1701 -[External Topic Properties\IsOutlookInstalled] +[External Topic Properties\NERR_QueueNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=507 +ETPTopicOrder0=1702 -[External Topic Properties\ISOWeekNumber@TDateTime@Integer] +[External Topic Properties\NERR_RedirectedPath] Count=1 ETPCommand0=2 -ETPTopicOrder0=509 +ETPTopicOrder0=1703 -[External Topic Properties\ISOWeekNumber@TDateTime@Integer@Integer] +[External Topic Properties\NERR_RemoteBootFailed] Count=1 ETPCommand0=2 -ETPTopicOrder0=508 +ETPTopicOrder0=1704 -[External Topic Properties\IsPCRELoaded] +[External Topic Properties\NERR_RemoteErr] Count=1 ETPCommand0=2 -ETPTopicOrder0=510 +ETPTopicOrder0=1705 -[External Topic Properties\IsPowerPointInstalled] +[External Topic Properties\NERR_RemoteFull] Count=1 ETPCommand0=2 -ETPTopicOrder0=511 +ETPTopicOrder0=1706 -[External Topic Properties\IsPwrHibernateAllowed] +[External Topic Properties\NERR_RemoteOnly] Count=1 ETPCommand0=2 -ETPTopicOrder0=512 +ETPTopicOrder0=1707 -[External Topic Properties\IsPwrShutdownAllowed] +[External Topic Properties\NERR_ResourceExists] Count=1 ETPCommand0=2 -ETPTopicOrder0=513 +ETPTopicOrder0=1708 -[External Topic Properties\IsPwrSuspendAllowed] +[External Topic Properties\NERR_ResourceNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=514 +ETPTopicOrder0=1709 -[External Topic Properties\IsReparseTagHighLatency@ULONG] +[External Topic Properties\NERR_RPL_CONNECTED] Count=1 ETPCommand0=2 -ETPTopicOrder0=515 +ETPTopicOrder0=1710 -[External Topic Properties\IsReparseTagMicrosoft@ULONG] +[External Topic Properties\NERR_RplAdapterInfoCorrupted] Count=1 ETPCommand0=2 -ETPTopicOrder0=516 +ETPTopicOrder0=1711 -[External Topic Properties\IsReparseTagNameSurrogate@ULONG] +[External Topic Properties\NERR_RplAdapterNameUnavailable] Count=1 ETPCommand0=2 -ETPTopicOrder0=517 +ETPTopicOrder0=1712 -[External Topic Properties\IsRootDirectory@string] +[External Topic Properties\NERR_RplAdapterNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=518 +ETPTopicOrder0=1713 -[External Topic Properties\IsSystemResourcesMeterPresent] +[External Topic Properties\NERR_RplBackupDatabase] Count=1 ETPCommand0=2 -ETPTopicOrder0=519 +ETPTopicOrder0=1714 -[External Topic Properties\IsValidISBN@AnsiString] +[External Topic Properties\NERR_RplBadDatabase] Count=1 ETPCommand0=2 -ETPTopicOrder0=520 +ETPTopicOrder0=1715 -[External Topic Properties\IsWin2003R2] +[External Topic Properties\NERR_RplBadRegistry] Count=1 ETPCommand0=2 -ETPTopicOrder0=23 +ETPTopicOrder0=1716 -[External Topic Properties\IsWindows64] +[External Topic Properties\NERR_RplBootInfoCorrupted] Count=1 ETPCommand0=2 -ETPTopicOrder0=521 +ETPTopicOrder0=1717 -[External Topic Properties\IsWinXP64] +[External Topic Properties\NERR_RplBootInUse] Count=1 ETPCommand0=2 -ETPTopicOrder0=24 +ETPTopicOrder0=1718 -[External Topic Properties\IsWordInstalled] +[External Topic Properties\NERR_RplBootNameUnavailable] Count=1 ETPCommand0=2 -ETPTopicOrder0=522 +ETPTopicOrder0=1719 -[External Topic Properties\IsZero@TPolarComplex] +[External Topic Properties\NERR_RplBootNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=523 +ETPTopicOrder0=1720 -[External Topic Properties\IsZero@TRectComplex] +[External Topic Properties\NERR_RplBootRestart] Count=1 ETPCommand0=2 -ETPTopicOrder0=524 +ETPTopicOrder0=1721 -[External Topic Properties\ITableCanDumpIL] +[External Topic Properties\NERR_RplBootServiceTerm] Count=1 ETPCommand0=2 -ETPTopicOrder0=5 +ETPTopicOrder0=1722 -[External Topic Properties\IToString] +[External Topic Properties\NERR_RplBootStartFailed] Count=1 ETPCommand0=2 -ETPTopicOrder0=6 +ETPTopicOrder0=1723 -[External Topic Properties\IToString.ToString] +[External Topic Properties\NERR_RplCannotEnum] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=1724 -[External Topic Properties\jcl.inc] -Count=2 +[External Topic Properties\NERR_RplConfigInfoCorrupted] +Count=1 ETPCommand0=2 -ETPCommand1=3 -ETPGroup1=SourceFiles -ETPTopicOrder0=9 +ETPTopicOrder0=1725 -[External Topic Properties\JCL_GZIP_CM_DEFLATE] +[External Topic Properties\NERR_RplConfigNameUnavailable] Count=1 ETPCommand0=2 -ETPTopicOrder0=1212 +ETPTopicOrder0=1726 -[External Topic Properties\JCL_GZIP_EFLAG_FAST] +[External Topic Properties\NERR_RplConfigNotEmpty] Count=1 ETPCommand0=2 -ETPTopicOrder0=1213 +ETPTopicOrder0=1727 -[External Topic Properties\JCL_GZIP_EFLAG_MAX] +[External Topic Properties\NERR_RplConfigNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=1214 +ETPTopicOrder0=1728 -[External Topic Properties\JCL_GZIP_FLAG_COMMENT] +[External Topic Properties\NERR_RplIncompatibleProfile] Count=1 ETPCommand0=2 -ETPTopicOrder0=1215 +ETPTopicOrder0=1729 -[External Topic Properties\JCL_GZIP_FLAG_CRC] +[External Topic Properties\NERR_RplInternal] Count=1 ETPCommand0=2 -ETPTopicOrder0=1216 +ETPTopicOrder0=1730 -[External Topic Properties\JCL_GZIP_FLAG_EXTRA] +[External Topic Properties\NERR_RplLoadrDiskErr] Count=1 ETPCommand0=2 -ETPTopicOrder0=1217 +ETPTopicOrder0=1731 -[External Topic Properties\JCL_GZIP_FLAG_NAME] +[External Topic Properties\NERR_RplLoadrNetBiosErr] Count=1 ETPCommand0=2 -ETPTopicOrder0=1218 +ETPTopicOrder0=1732 -[External Topic Properties\JCL_GZIP_FLAG_TEXT] +[External Topic Properties\NERR_RplNeedsRPLUSERAcct] Count=1 ETPCommand0=2 -ETPTopicOrder0=1219 +ETPTopicOrder0=1733 -[External Topic Properties\JCL_GZIP_ID1] +[External Topic Properties\NERR_RplNoAdaptersStarted] Count=1 ETPCommand0=2 -ETPTopicOrder0=1220 +ETPTopicOrder0=1734 -[External Topic Properties\JCL_GZIP_ID2] +[External Topic Properties\NERR_RplNotRplServer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1221 +ETPTopicOrder0=1735 -[External Topic Properties\JCL_GZIP_OS_ACORN] +[External Topic Properties\NERR_RplProfileInfoCorrupted] Count=1 ETPCommand0=2 -ETPTopicOrder0=1222 +ETPTopicOrder0=1736 -[External Topic Properties\JCL_GZIP_OS_AMIGA] +[External Topic Properties\NERR_RplProfileNameUnavailable] Count=1 ETPCommand0=2 -ETPTopicOrder0=1223 +ETPTopicOrder0=1737 -[External Topic Properties\JCL_GZIP_OS_ATARI] +[External Topic Properties\NERR_RplProfileNotEmpty] Count=1 ETPCommand0=2 -ETPTopicOrder0=1224 +ETPTopicOrder0=1738 -[External Topic Properties\JCL_GZIP_OS_CPM] +[External Topic Properties\NERR_RplProfileNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=1225 +ETPTopicOrder0=1739 -[External Topic Properties\JCL_GZIP_OS_FAT] +[External Topic Properties\NERR_RplRplfilesShare] Count=1 ETPCommand0=2 -ETPTopicOrder0=1226 +ETPTopicOrder0=1740 -[External Topic Properties\JCL_GZIP_OS_HPFS] +[External Topic Properties\NERR_RplSrvrCallFailed] Count=1 ETPCommand0=2 -ETPTopicOrder0=1227 +ETPTopicOrder0=1741 -[External Topic Properties\JCL_GZIP_OS_MAC] +[External Topic Properties\NERR_RplVendorInfoCorrupted] Count=1 ETPCommand0=2 -ETPTopicOrder0=1228 +ETPTopicOrder0=1742 -[External Topic Properties\JCL_GZIP_OS_NTFS] +[External Topic Properties\NERR_RplVendorNameUnavailable] Count=1 ETPCommand0=2 -ETPTopicOrder0=1229 +ETPTopicOrder0=1743 -[External Topic Properties\JCL_GZIP_OS_QDOS] +[External Topic Properties\NERR_RplVendorNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=1230 +ETPTopicOrder0=1744 -[External Topic Properties\JCL_GZIP_OS_TOPS] +[External Topic Properties\NERR_RplWkstaInfoCorrupted] Count=1 ETPCommand0=2 -ETPTopicOrder0=1231 +ETPTopicOrder0=1745 -[External Topic Properties\JCL_GZIP_OS_UNIX] +[External Topic Properties\NERR_RplWkstaNameUnavailable] Count=1 ETPCommand0=2 -ETPTopicOrder0=1232 +ETPTopicOrder0=1746 -[External Topic Properties\JCL_GZIP_OS_UNKNOWN] +[External Topic Properties\NERR_RplWkstaNeedsUserAcct] Count=1 ETPCommand0=2 -ETPTopicOrder0=1233 +ETPTopicOrder0=1747 -[External Topic Properties\JCL_GZIP_OS_VM] +[External Topic Properties\NERR_RplWkstaNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=1234 +ETPTopicOrder0=1748 -[External Topic Properties\JCL_GZIP_OS_VMS] +[External Topic Properties\NERR_RunSrvPaused] Count=1 ETPCommand0=2 -ETPTopicOrder0=1235 +ETPTopicOrder0=1749 -[External Topic Properties\JCL_GZIP_OS_Z] +[External Topic Properties\NERR_ServerNotStarted] Count=1 ETPCommand0=2 -ETPTopicOrder0=1236 +ETPTopicOrder0=1750 -[External Topic Properties\JCL_GZIP_X_AC1] +[External Topic Properties\NERR_ServiceCtlBusy] Count=1 ETPCommand0=2 -ETPTopicOrder0=1237 +ETPTopicOrder0=1751 -[External Topic Properties\JCL_GZIP_X_AC2] +[External Topic Properties\NERR_ServiceCtlNotValid] Count=1 ETPCommand0=2 -ETPTopicOrder0=1238 +ETPTopicOrder0=1752 -[External Topic Properties\JCL_GZIP_X_Ap1] +[External Topic Properties\NERR_ServiceCtlTimeout] Count=1 ETPCommand0=2 -ETPTopicOrder0=1239 +ETPTopicOrder0=1753 -[External Topic Properties\JCL_GZIP_X_Ap2] +[External Topic Properties\NERR_ServiceEntryLocked] Count=1 ETPCommand0=2 -ETPTopicOrder0=1240 +ETPTopicOrder0=1754 -[External Topic Properties\JCL_GZIP_X_cp1] +[External Topic Properties\NERR_ServiceInstalled] Count=1 ETPCommand0=2 -ETPTopicOrder0=1241 +ETPTopicOrder0=1755 -[External Topic Properties\JCL_GZIP_X_cp2] +[External Topic Properties\NERR_ServiceKillProc] Count=1 ETPCommand0=2 -ETPTopicOrder0=1242 +ETPTopicOrder0=1756 -[External Topic Properties\JCL_GZIP_X_GS1] +[External Topic Properties\NERR_ServiceNotCtrl] Count=1 ETPCommand0=2 -ETPTopicOrder0=1243 +ETPTopicOrder0=1757 -[External Topic Properties\JCL_GZIP_X_GS2] +[External Topic Properties\NERR_ServiceNotInstalled] Count=1 ETPCommand0=2 -ETPTopicOrder0=1244 +ETPTopicOrder0=1758 -[External Topic Properties\JCL_GZIP_X_KN1] +[External Topic Properties\NERR_ServiceNotStarting] Count=1 ETPCommand0=2 -ETPTopicOrder0=1245 +ETPTopicOrder0=1759 -[External Topic Properties\JCL_GZIP_X_KN2] +[External Topic Properties\NERR_ServiceTableFull] Count=1 ETPCommand0=2 -ETPTopicOrder0=1246 +ETPTopicOrder0=1760 -[External Topic Properties\JCL_GZIP_X_Mc1] +[External Topic Properties\NERR_ServiceTableLocked] Count=1 ETPCommand0=2 -ETPTopicOrder0=1247 +ETPTopicOrder0=1761 -[External Topic Properties\JCL_GZIP_X_Mc2] +[External Topic Properties\NERR_SetupAlreadyJoined] Count=1 ETPCommand0=2 -ETPTopicOrder0=1248 +ETPTopicOrder0=1762 -[External Topic Properties\JCL_GZIP_X_RO1] +[External Topic Properties\NERR_SetupDomainController] Count=1 ETPCommand0=2 -ETPTopicOrder0=1249 +ETPTopicOrder0=1763 -[External Topic Properties\JCL_GZIP_X_RO2] +[External Topic Properties\NERR_SetupNotJoined] Count=1 ETPCommand0=2 -ETPTopicOrder0=1250 +ETPTopicOrder0=1764 -[External Topic Properties\JCL_PCRE_CALLOUT_FAILCONTINUE] +[External Topic Properties\NERR_ShareMem] Count=1 ETPCommand0=2 -ETPTopicOrder0=1251 +ETPTopicOrder0=1765 -[External Topic Properties\JCL_PCRE_CALLOUT_NOERROR] +[External Topic Properties\NERR_ShareNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=1252 +ETPTopicOrder0=1766 -[External Topic Properties\JCL_PCRE_ERROR_CALLOUTERROR] +[External Topic Properties\NERR_SourceIsDir] Count=1 ETPCommand0=2 -ETPTopicOrder0=1253 +ETPTopicOrder0=1767 -[External Topic Properties\JCL_PCRE_ERROR_STUDYFAILED] +[External Topic Properties\NERR_SpeGroupOp] Count=1 ETPCommand0=2 -ETPTopicOrder0=1254 +ETPTopicOrder0=1768 -[External Topic Properties\Jcl8087.pas] +[External Topic Properties\NERR_SpoolerNotLoaded] Count=1 ETPCommand0=2 -ETPTopicOrder0=3 +ETPTopicOrder0=1769 -[External Topic Properties\JclAbstractContainers.pas] +[External Topic Properties\NERR_SpoolNoMemory] Count=1 ETPCommand0=2 -ETPTopicOrder0=4 +ETPTopicOrder0=1770 -[External Topic Properties\JclAddExceptNotifier@TJclExceptNotifyMethod@TJclExceptNotifyPriority] +[External Topic Properties\NERR_StandaloneLogon] Count=1 ETPCommand0=2 -ETPTopicOrder0=526 +ETPTopicOrder0=1771 -[External Topic Properties\JclAddExceptNotifier@TJclExceptNotifyProc@TJclExceptNotifyPriority] +[External Topic Properties\NERR_StartingRplBoot] Count=1 ETPCommand0=2 -ETPTopicOrder0=525 +ETPTopicOrder0=1772 -[External Topic Properties\JclAddExceptNotifier@TJclExceptNotifyProcEx@TJclExceptNotifyPriority] +[External Topic Properties\NERR_Success] Count=1 ETPCommand0=2 -ETPTopicOrder0=527 +ETPTopicOrder0=1773 -[External Topic Properties\JclAlgorithms.pas] +[External Topic Properties\NERR_SyncRequired] Count=1 ETPCommand0=2 -ETPTopicOrder0=5 +ETPTopicOrder0=1774 -[External Topic Properties\JclAnsiStrings.pas] +[External Topic Properties\NERR_TimeDiffAtDC] Count=1 ETPCommand0=2 -ETPTopicOrder0=6 +ETPTopicOrder0=1775 -[External Topic Properties\JclAppInst.pas] +[External Topic Properties\NERR_TmpFile] Count=1 ETPCommand0=2 -ETPTopicOrder0=7 +ETPTopicOrder0=1776 -[External Topic Properties\JclAppInstances] +[External Topic Properties\NERR_TooManyAlerts] Count=1 ETPCommand0=2 -ETPTopicOrder0=528 +ETPTopicOrder0=1777 -[External Topic Properties\JclAppInstances@string] +[External Topic Properties\NERR_TooManyConnections] Count=1 ETPCommand0=2 -ETPTopicOrder0=529 +ETPTopicOrder0=1778 -[External Topic Properties\JclArrayLists.pas] +[External Topic Properties\NERR_TooManyEntries] Count=1 ETPCommand0=2 -ETPTopicOrder0=8 +ETPTopicOrder0=1779 -[External Topic Properties\JclArraySets.pas] +[External Topic Properties\NERR_TooManyFiles] Count=1 ETPCommand0=2 -ETPTopicOrder0=9 +ETPTopicOrder0=1780 -[External Topic Properties\JclBase.pas] +[External Topic Properties\NERR_TooManyImageParams] Count=1 ETPCommand0=2 -ETPTopicOrder0=10 +ETPTopicOrder0=1781 -[External Topic Properties\JclBelongsHookedCode@Pointer] +[External Topic Properties\NERR_TooManyItems] Count=1 ETPCommand0=2 -ETPTopicOrder0=530 +ETPTopicOrder0=1782 -[External Topic Properties\JclBinaryTrees.pas] +[External Topic Properties\NERR_TooManyNames] Count=1 ETPCommand0=2 -ETPTopicOrder0=11 +ETPTopicOrder0=1783 -[External Topic Properties\JclBorDesignerDescription] +[External Topic Properties\NERR_TooManyServers] Count=1 ETPCommand0=2 -ETPTopicOrder0=1255 +ETPTopicOrder0=1784 -[External Topic Properties\JclBorDesignerFormExtension] +[External Topic Properties\NERR_TooManySessions] Count=1 ETPCommand0=2 -ETPTopicOrder0=1256 +ETPTopicOrder0=1785 -[External Topic Properties\JclBorlandTools.pas] +[External Topic Properties\NERR_TooMuchData] Count=1 ETPCommand0=2 -ETPTopicOrder0=12 +ETPTopicOrder0=1786 -[External Topic Properties\JclBorPersonalityDescription] +[External Topic Properties\NERR_TruncatedBroadcast] Count=1 ETPCommand0=2 -ETPTopicOrder0=1257 +ETPTopicOrder0=1787 -[External Topic Properties\JclCancelWaitableTimer@THandle] +[External Topic Properties\NERR_TryDownLevel] Count=1 ETPCommand0=2 -ETPTopicOrder0=531 +ETPTopicOrder0=1788 -[External Topic Properties\JclCheckAndInitializeOpenGL] +[External Topic Properties\NERR_UnableToAddName_F] Count=1 ETPCommand0=2 -ETPTopicOrder0=532 +ETPTopicOrder0=1789 -[External Topic Properties\JclCIL.pas] +[External Topic Properties\NERR_UnableToAddName_W] Count=1 ETPCommand0=2 -ETPTopicOrder0=13 +ETPTopicOrder0=1790 -[External Topic Properties\JclCLR.pas] +[External Topic Properties\NERR_UnableToDelName_F] Count=1 ETPCommand0=2 -ETPTopicOrder0=14 +ETPTopicOrder0=1791 -[External Topic Properties\JclCOM.pas] +[External Topic Properties\NERR_UnableToDelName_W] Count=1 ETPCommand0=2 -ETPTopicOrder0=15 +ETPTopicOrder0=1792 -[External Topic Properties\JclComplex.pas] +[External Topic Properties\NERR_UnknownDevDir] Count=1 ETPCommand0=2 -ETPTopicOrder0=16 +ETPTopicOrder0=1793 -[External Topic Properties\JclCompression.pas] +[External Topic Properties\NERR_UnknownServer] Count=1 ETPCommand0=2 -ETPTopicOrder0=17 +ETPTopicOrder0=1794 -[External Topic Properties\JclConsole.pas] +[External Topic Properties\NERR_UPSDriverNotStarted] Count=1 ETPCommand0=2 -ETPTopicOrder0=18 +ETPTopicOrder0=1795 -[External Topic Properties\JclContainerIntf.pas] +[External Topic Properties\NERR_UPSInvalidCommPort] Count=1 ETPCommand0=2 -ETPTopicOrder0=19 +ETPTopicOrder0=1796 -[External Topic Properties\JclCounter.pas] +[External Topic Properties\NERR_UPSInvalidConfig] Count=1 ETPCommand0=2 -ETPTopicOrder0=20 +ETPTopicOrder0=1797 -[External Topic Properties\JclCreateStackList@Boolean@DWORD@Pointer@Boolean] +[External Topic Properties\NERR_UPSShutdownFailed] Count=1 ETPCommand0=2 -ETPTopicOrder0=534 +ETPTopicOrder0=1798 -[External Topic Properties\JclCreateStackList@Boolean@DWORD@Pointer@Boolean@Pointer] +[External Topic Properties\NERR_UPSSignalAsserted] Count=1 ETPCommand0=2 -ETPTopicOrder0=535 +ETPTopicOrder0=1799 -[External Topic Properties\JclCreateStackList@Boolean@DWORD@Pointer@Boolean@Pointer@Pointer] +[External Topic Properties\NERR_UseNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=533 +ETPTopicOrder0=1800 -[External Topic Properties\JclCreateThreadStackTrace@Boolean@THandle] +[External Topic Properties\NERR_UserExists] Count=1 ETPCommand0=2 -ETPTopicOrder0=536 +ETPTopicOrder0=1801 -[External Topic Properties\JclCreateThreadStackTraceFromID@Boolean@DWORD] +[External Topic Properties\NERR_UserInGroup] Count=1 ETPCommand0=2 -ETPTopicOrder0=537 +ETPTopicOrder0=1802 -[External Topic Properties\JclCreateWaitableTimer@PSecurityAttributes@Boolean@string] +[External Topic Properties\NERR_UserLogon] Count=1 ETPCommand0=2 -ETPTopicOrder0=538 +ETPTopicOrder0=1803 -[External Topic Properties\jclcs1.inc] -Count=2 +[External Topic Properties\NERR_UserNotFound] +Count=1 ETPCommand0=2 -ETPCommand1=3 -ETPGroup1=SourceFiles -ETPTopicOrder0=0 +ETPTopicOrder0=1804 -[External Topic Properties\jcld10.inc] -Count=2 +[External Topic Properties\NERR_UserNotInGroup] +Count=1 ETPCommand0=2 -ETPCommand1=3 -ETPGroup1=SourceFiles -ETPTopicOrder0=8 +ETPTopicOrder0=1805 -[External Topic Properties\jcld10.net.inc] -Count=2 +[External Topic Properties\NERR_WkstaInconsistentState] +Count=1 ETPCommand0=2 -ETPCommand1=3 -ETPGroup1=SourceFiles -ETPTopicOrder0=7 +ETPTopicOrder0=1806 -[External Topic Properties\jcld11.inc] +[External Topic Properties\NERR_WkstaNotStarted] Count=1 ETPCommand0=2 -ETPTopicOrder0=21 +ETPTopicOrder0=1807 -[External Topic Properties\jcld5.inc] -Count=2 +[External Topic Properties\NERR_WriteFault] +Count=1 ETPCommand0=2 -ETPCommand1=3 -ETPGroup1=SourceFiles -ETPTopicOrder0=1 +ETPTopicOrder0=1808 -[External Topic Properties\jcld6.inc] -Count=2 +[External Topic Properties\NET_API_STATUS] +Count=1 ETPCommand0=2 -ETPCommand1=3 -ETPGroup1=SourceFiles -ETPTopicOrder0=2 +ETPTopicOrder0=97 -[External Topic Properties\jcld7.inc] -Count=2 +[External Topic Properties\NetApi32] +Count=1 ETPCommand0=2 -ETPCommand1=3 -ETPGroup1=SourceFiles -ETPTopicOrder0=3 +ETPTopicOrder0=1809 -[External Topic Properties\jcld8.inc] -Count=2 +[External Topic Properties\NetApiBufferFree@Pointer] +Count=1 ETPCommand0=2 -ETPCommand1=3 -ETPGroup1=SourceFiles -ETPTopicOrder0=4 +ETPTopicOrder0=670 -[External Topic Properties\jcld9.inc] -Count=2 +[External Topic Properties\Netbios@PNCB] +Count=1 ETPCommand0=2 -ETPCommand1=3 -ETPGroup1=SourceFiles -ETPTopicOrder0=5 +ETPTopicOrder0=671 -[External Topic Properties\jcld9.net.inc] -Count=2 +[External Topic Properties\NETBIOS_NAME_LEN] +Count=1 ETPCommand0=2 -ETPCommand1=3 -ETPGroup1=SourceFiles -ETPTopicOrder0=6 +ETPTopicOrder0=1810 -[External Topic Properties\JclDateTime.pas] +[External Topic Properties\NetGroupAdd@LPCWSTR@DWORD@PByte@LPDWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=22 +ETPTopicOrder0=672 -[External Topic Properties\JclDbgHeaderVersion] +[External Topic Properties\NetGroupAddUser@LPCWSTR@LPCWSTR@LPCWSTR] Count=1 ETPCommand0=2 -ETPTopicOrder0=1258 +ETPTopicOrder0=673 -[External Topic Properties\JclDebug.pas] +[External Topic Properties\NetGroupDel@LPCWSTR@LPCWSTR] Count=1 ETPCommand0=2 -ETPTopicOrder0=23 +ETPTopicOrder0=674 -[External Topic Properties\JclDebugInfoSymbolPaths] +[External Topic Properties\NetGroupDelUser@LPCWSTR@LPCWSTR@LPCWSTR] Count=1 ETPCommand0=2 -ETPTopicOrder0=25 +ETPTopicOrder0=675 -[External Topic Properties\JclDebugThreadList] +[External Topic Properties\NetGroupEnum@LPCWSTR@DWORD@PByte@DWORD@DWORD@DWORD@PDWORD_PTR] Count=1 ETPCommand0=2 -ETPTopicOrder0=539 +ETPTopicOrder0=676 -[External Topic Properties\JclDotNet.pas] +[External Topic Properties\NetGroupGetInfo@LPCWSTR@LPCWSTR@DWORD@PByte] Count=1 ETPCommand0=2 -ETPTopicOrder0=24 +ETPTopicOrder0=677 -[External Topic Properties\JclEDI.pas] +[External Topic Properties\NetGroupGetUsers@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD@LPDWORD@LPDWORD@PDWORD_PTR] Count=1 ETPCommand0=2 -ETPTopicOrder0=25 +ETPTopicOrder0=678 -[External Topic Properties\JclEDI_ANSIX12.pas] +[External Topic Properties\NetGroupSetInfo@LPCWSTR@LPCWSTR@DWORD@PByte@LPDWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=26 +ETPTopicOrder0=679 -[External Topic Properties\JclEDI_ANSIX12_Ext.pas] +[External Topic Properties\NetGroupSetUsers@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=27 +ETPTopicOrder0=680 -[External Topic Properties\JclEDI_UNEDIFACT.pas] +[External Topic Properties\NetLocalGroupAdd@LPCWSTR@DWORD@PByte@LPDWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=28 +ETPTopicOrder0=681 -[External Topic Properties\JclEDI_UNEDIFACT_Ext.pas] +[External Topic Properties\NetLocalGroupAddMember@LPCWSTR@LPCWSTR@PSID] Count=1 ETPCommand0=2 -ETPTopicOrder0=29 +ETPTopicOrder0=682 -[External Topic Properties\JclEDISEF.pas] +[External Topic Properties\NetLocalGroupAddMembers@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=30 +ETPTopicOrder0=683 -[External Topic Properties\JclEDITranslators.pas] +[External Topic Properties\NetLocalGroupDel@LPCWSTR@LPCWSTR] Count=1 ETPCommand0=2 -ETPTopicOrder0=31 +ETPTopicOrder0=684 -[External Topic Properties\JclEDIXML.pas] +[External Topic Properties\NetLocalGroupDelMember@LPCWSTR@LPCWSTR@PSID] Count=1 ETPCommand0=2 -ETPTopicOrder0=32 +ETPTopicOrder0=685 -[External Topic Properties\JclExceptionTrackingActive] +[External Topic Properties\NetLocalGroupDelMembers@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=540 +ETPTopicOrder0=686 -[External Topic Properties\JclFileUtils.pas] +[External Topic Properties\NetLocalGroupEnum@LPCWSTR@DWORD@PByte@DWORD@DWORD@DWORD@PDWORD_PTR] Count=1 ETPCommand0=2 -ETPTopicOrder0=33 +ETPTopicOrder0=687 -[External Topic Properties\JclFont.pas] +[External Topic Properties\NetLocalGroupGetInfo@LPCWSTR@LPCWSTR@DWORD@PByte] Count=1 ETPCommand0=2 -ETPTopicOrder0=34 +ETPTopicOrder0=688 -[External Topic Properties\JclGetExceptFrameList@DWORD] +[External Topic Properties\NetLocalGroupGetMembers@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD@LPDWORD@LPDWORD@PDWORD_PTR] Count=1 ETPCommand0=2 -ETPTopicOrder0=541 +ETPTopicOrder0=689 -[External Topic Properties\JclGetExceptStackList@DWORD] +[External Topic Properties\NetLocalGroupSetInfo@LPCWSTR@LPCWSTR@DWORD@PByte@LPDWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=542 +ETPTopicOrder0=690 -[External Topic Properties\JclGetExceptStackListToStrings@DWORD@TStrings@Boolean@Boolean@Boolean@Boolean] +[External Topic Properties\NetLocalGroupSetMembers@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=543 +ETPTopicOrder0=691 -[External Topic Properties\JclGetFileAttributesEx@string@TGetFileExInfoLevels@Pointer] +[External Topic Properties\NetUserAdd@LPCWSTR@DWORD@PByte@LPDWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=544 +ETPTopicOrder0=692 -[External Topic Properties\JclglGetError] +[External Topic Properties\NetUserChangePassword@LPCWSTR@LPCWSTR@LPCWSTR@LPCWSTR] Count=1 ETPCommand0=2 -ETPTopicOrder0=545 +ETPTopicOrder0=693 -[External Topic Properties\JclglGetString@Cardinal] +[External Topic Properties\NetUserDel@LPCWSTR@LPCWSTR] Count=1 ETPCommand0=2 -ETPTopicOrder0=546 +ETPTopicOrder0=694 -[External Topic Properties\JclgluErrorString@Cardinal] +[External Topic Properties\NetUserEnum@LPCWSTR@DWORD@DWORD@PByte@DWORD@LPDWORD@LPDWORD@LPDWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=547 +ETPTopicOrder0=695 -[External Topic Properties\JclGraphics.pas] +[External Topic Properties\NetUserGetGroups@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD@LPDWORD@LPDWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=35 +ETPTopicOrder0=696 -[External Topic Properties\JclGraphUtils.pas] +[External Topic Properties\NetUserGetInfo@LPCWSTR@LPCWSTR@DWORD@PByte] Count=1 ETPCommand0=2 -ETPTopicOrder0=36 +ETPTopicOrder0=697 -[External Topic Properties\JclHashMaps.pas] +[External Topic Properties\NetUserGetLocalGroups@LPCWSTR@LPCWSTR@DWORD@DWORD@PByte@DWORD@LPDWORD@LPDWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=37 +ETPTopicOrder0=698 -[External Topic Properties\JclHashSets.pas] +[External Topic Properties\NetUserModalsGet@LPCWSTR@DWORD@PByte] Count=1 ETPCommand0=2 -ETPTopicOrder0=38 +ETPTopicOrder0=699 -[External Topic Properties\JclHookedExceptModulesList@TJclModuleArray] +[External Topic Properties\NetUserModalsSet@LPCWSTR@DWORD@PByte@LPDWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=548 +ETPTopicOrder0=700 -[External Topic Properties\JclHookExcept.pas] +[External Topic Properties\NetUserSetGroups@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=39 +ETPTopicOrder0=701 -[External Topic Properties\JclHookExceptionsInModule@HMODULE] +[External Topic Properties\NetUserSetInfo@LPCWSTR@LPCWSTR@DWORD@PByte@LPDWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=549 +ETPTopicOrder0=702 -[External Topic Properties\JclIniFiles.pas] +[External Topic Properties\NibbleMask] Count=1 ETPCommand0=2 -ETPTopicOrder0=40 +ETPTopicOrder0=953 -[External Topic Properties\JclInitializeCriticalSectionAndSpinCount@TRTLCriticalSection@Cardinal] +[External Topic Properties\NibblesPerByte] Count=1 ETPCommand0=2 -ETPTopicOrder0=550 +ETPTopicOrder0=954 -[External Topic Properties\JclInitializeLibrariesHookExcept] +[External Topic Properties\NibblesPerCardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=551 +ETPTopicOrder0=955 -[External Topic Properties\JclLANMan.pas] +[External Topic Properties\NibblesPerInt64] Count=1 ETPCommand0=2 -ETPTopicOrder0=41 +ETPTopicOrder0=956 -[External Topic Properties\JclLastExceptStackListToStrings@TStrings@Boolean@Boolean@Boolean@Boolean] +[External Topic Properties\NibblesPerInteger] Count=1 ETPCommand0=2 -ETPTopicOrder0=552 +ETPTopicOrder0=957 -[External Topic Properties\JclLinkedLists.pas] +[External Topic Properties\NibblesPerShortint] Count=1 ETPCommand0=2 -ETPTopicOrder0=42 +ETPTopicOrder0=958 -[External Topic Properties\JclLocales.pas] +[External Topic Properties\NibblesPerSmallint] Count=1 ETPCommand0=2 -ETPTopicOrder0=43 +ETPTopicOrder0=959 -[External Topic Properties\JclLocalesInfoList@TStrings@Integer] +[External Topic Properties\NibblesPerWord] Count=1 ETPCommand0=2 -ETPTopicOrder0=553 +ETPTopicOrder0=960 -[External Topic Properties\JclLogic.pas] +[External Topic Properties\NLS_VALID_LOCALE_MASK] Count=1 ETPCommand0=2 -ETPTopicOrder0=44 +ETPTopicOrder0=1819 -[External Topic Properties\JclMapFileExtension] +[External Topic Properties\NNLEN] Count=1 ETPCommand0=2 -ETPTopicOrder0=1259 +ETPTopicOrder0=1820 -[External Topic Properties\JclMapi.pas] +[External Topic Properties\NON_PAGED_DEBUG_INFO] Count=1 ETPCommand0=2 -ETPTopicOrder0=45 +ETPTopicOrder0=98 -[External Topic Properties\JclMath.pas] +[External Topic Properties\NON_PAGED_DEBUG_SIGNATURE] Count=1 ETPCommand0=2 -ETPTopicOrder0=46 +ETPTopicOrder0=1821 -[External Topic Properties\JclMetadata.pas] +[External Topic Properties\Norm@TPolarComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=47 +ETPTopicOrder0=865 -[External Topic Properties\JclMIDI.pas] +[External Topic Properties\Norm@TRectComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=48 +ETPTopicOrder0=864 -[External Topic Properties\JclMime.pas] +[External Topic Properties\NotCrc16HighBit] Count=1 ETPCommand0=2 -ETPTopicOrder0=49 +ETPTopicOrder0=961 -[External Topic Properties\JclMiscel.pas] +[External Topic Properties\NotCrc32HighBit] Count=1 ETPCommand0=2 -ETPTopicOrder0=50 +ETPTopicOrder0=962 -[External Topic Properties\JclMsdosSys.pas] +[External Topic Properties\NRC_ACTSES] Count=1 ETPCommand0=2 -ETPTopicOrder0=51 +ETPTopicOrder0=1822 -[External Topic Properties\JclMultimedia.pas] +[External Topic Properties\NRC_BADDR] Count=1 ETPCommand0=2 -ETPTopicOrder0=52 +ETPTopicOrder0=1823 -[External Topic Properties\JclNTFS.pas] +[External Topic Properties\NRC_BRIDGE] Count=1 ETPCommand0=2 -ETPTopicOrder0=53 +ETPTopicOrder0=1824 -[External Topic Properties\JclOpenWaitableTimer@Cardinal@Boolean@string] +[External Topic Properties\NRC_BUFLEN] Count=1 ETPCommand0=2 -ETPTopicOrder0=554 +ETPTopicOrder0=1825 -[External Topic Properties\JclPCRE] -Count=2 +[External Topic Properties\NRC_CANCEL] +Count=1 ETPCommand0=2 -ETPCommand1=3 -ETPGroup1=pcre -ETPTopicOrder0=0 +ETPTopicOrder0=1826 -[External Topic Properties\JclPCRE.pas] +[External Topic Properties\NRC_CANOCCR] Count=1 ETPCommand0=2 -ETPTopicOrder0=54 +ETPTopicOrder0=1827 -[External Topic Properties\JclPCRE_Intro] -Count=2 +[External Topic Properties\NRC_CMDCAN] +Count=1 ETPCommand0=2 -ETPCommand1=3 -ETPGroup1=pcre -ETPTopicOrder0=6 +ETPTopicOrder0=1828 -[External Topic Properties\JclPCRE_Using] -Count=2 +[External Topic Properties\NRC_CMDTMO] +Count=1 ETPCommand0=2 -ETPCommand1=3 -ETPGroup1=pcre -ETPTopicOrder0=7 +ETPTopicOrder0=1829 -[External Topic Properties\JclPeImage.pas] +[External Topic Properties\NRC_DUPENV] Count=1 ETPCommand0=2 -ETPTopicOrder0=55 +ETPTopicOrder0=1830 -[External Topic Properties\JclPrint.pas] +[External Topic Properties\NRC_DUPNAME] Count=1 ETPCommand0=2 -ETPTopicOrder0=56 +ETPTopicOrder0=1831 -[External Topic Properties\JclQGraphics.pas] +[External Topic Properties\NRC_ENVNOTDEF] Count=1 ETPCommand0=2 -ETPTopicOrder0=57 +ETPTopicOrder0=1832 -[External Topic Properties\JclQGraphUtils.pas] +[External Topic Properties\NRC_IFBUSY] Count=1 ETPCommand0=2 -ETPTopicOrder0=58 +ETPTopicOrder0=1833 -[External Topic Properties\JclQueues.pas] +[External Topic Properties\NRC_ILLCMD] Count=1 ETPCommand0=2 -ETPTopicOrder0=59 +ETPTopicOrder0=1834 -[External Topic Properties\JclRegistry.pas] +[External Topic Properties\NRC_ILLNN] Count=1 ETPCommand0=2 -ETPTopicOrder0=60 +ETPTopicOrder0=1835 -[External Topic Properties\JclRemoveExceptNotifier@TJclExceptNotifyMethod] +[External Topic Properties\NRC_INCOMP] Count=1 ETPCommand0=2 -ETPTopicOrder0=556 +ETPTopicOrder0=1836 -[External Topic Properties\JclRemoveExceptNotifier@TJclExceptNotifyProc] +[External Topic Properties\NRC_INUSE] Count=1 ETPCommand0=2 -ETPTopicOrder0=557 +ETPTopicOrder0=1837 -[External Topic Properties\JclRemoveExceptNotifier@TJclExceptNotifyProcEx] +[External Topic Properties\NRC_INVADDRESS] Count=1 ETPCommand0=2 -ETPTopicOrder0=555 +ETPTopicOrder0=1838 -[External Topic Properties\JclReplaceExceptObj@Exception] +[External Topic Properties\NRC_INVDDID] Count=1 ETPCommand0=2 -ETPTopicOrder0=558 +ETPTopicOrder0=1839 -[External Topic Properties\JclResources.pas] +[External Topic Properties\NRC_LOCKFAIL] Count=1 ETPCommand0=2 -ETPTopicOrder0=61 +ETPTopicOrder0=1840 -[External Topic Properties\JclRTTI.pas] +[External Topic Properties\NRC_LOCTFUL] Count=1 ETPCommand0=2 -ETPTopicOrder0=62 +ETPTopicOrder0=1841 -[External Topic Properties\JclSchedule.pas] +[External Topic Properties\NRC_MAXAPPS] Count=1 ETPCommand0=2 -ETPTopicOrder0=63 +ETPTopicOrder0=1842 -[External Topic Properties\JclScheduleTaskAllPages] +[External Topic Properties\NRC_NAMCONF] Count=1 ETPCommand0=2 -ETPTopicOrder0=1260 +ETPTopicOrder0=1843 -[External Topic Properties\JclSecurity.pas] +[External Topic Properties\NRC_NAMERR] Count=1 ETPCommand0=2 -ETPTopicOrder0=64 +ETPTopicOrder0=1844 -[External Topic Properties\JclSetCriticalSectionSpinCount@TRTLCriticalSection@Cardinal] +[External Topic Properties\NRC_NAMTFUL] Count=1 ETPCommand0=2 -ETPTopicOrder0=559 +ETPTopicOrder0=1845 -[External Topic Properties\JclShell.pas] +[External Topic Properties\NRC_NOCALL] Count=1 ETPCommand0=2 -ETPTopicOrder0=65 +ETPTopicOrder0=1846 -[External Topic Properties\JclSignalObjectAndWait@THandle@THandle@Cardinal@Boolean] +[External Topic Properties\NRC_NORES] Count=1 ETPCommand0=2 -ETPTopicOrder0=560 +ETPTopicOrder0=1847 -[External Topic Properties\JclSimpleSendFax@string@string@string@string@string@Boolean@THandle@string@string] +[External Topic Properties\NRC_NORESOURCES] Count=1 ETPCommand0=2 -ETPTopicOrder0=561 +ETPTopicOrder0=1848 -[External Topic Properties\JclStacks.pas] +[External Topic Properties\NRC_NOSAPS] Count=1 ETPCommand0=2 -ETPTopicOrder0=66 +ETPTopicOrder0=1849 -[External Topic Properties\JclStackTrackingOptions] +[External Topic Properties\NRC_NOWILD] Count=1 ETPCommand0=2 -ETPTopicOrder0=26 +ETPTopicOrder0=1850 -[External Topic Properties\JclStartExceptionTracking] +[External Topic Properties\NRC_OPENERR] Count=1 ETPCommand0=2 -ETPTopicOrder0=562 +ETPTopicOrder0=1851 -[External Topic Properties\JclStatistics.pas] +[External Topic Properties\NRC_OSRESNOTAV] Count=1 ETPCommand0=2 -ETPTopicOrder0=67 +ETPTopicOrder0=1852 -[External Topic Properties\JclStopExceptionTracking] +[External Topic Properties\NRC_PENDING] Count=1 ETPCommand0=2 -ETPTopicOrder0=563 +ETPTopicOrder0=1853 -[External Topic Properties\JclStreams.pas] +[External Topic Properties\NRC_REMTFUL] Count=1 ETPCommand0=2 -ETPTopicOrder0=68 +ETPTopicOrder0=1854 -[External Topic Properties\JclStrHashMap.pas] +[External Topic Properties\NRC_SABORT] Count=1 ETPCommand0=2 -ETPTopicOrder0=69 +ETPTopicOrder0=1855 -[External Topic Properties\JclStrings.pas] +[External Topic Properties\NRC_SCLOSED] Count=1 ETPCommand0=2 -ETPTopicOrder0=70 +ETPTopicOrder0=1856 -[External Topic Properties\JclStructStorage.pas] +[External Topic Properties\NRC_SNUMOUT] Count=1 ETPCommand0=2 -ETPTopicOrder0=71 +ETPTopicOrder0=1857 -[External Topic Properties\JclSvcCtrl.pas] +[External Topic Properties\NRC_SYSTEM] Count=1 ETPCommand0=2 -ETPTopicOrder0=72 +ETPTopicOrder0=1858 -[External Topic Properties\JclSynch.pas] +[External Topic Properties\NRC_TOOMANY] Count=1 ETPCommand0=2 -ETPTopicOrder0=73 +ETPTopicOrder0=1859 -[External Topic Properties\JclSysUtils.pas] +[External Topic Properties\NT_TIB32] Count=1 ETPCommand0=2 -ETPTopicOrder0=74 +ETPTopicOrder0=77 -[External Topic Properties\JclTask.pas] +[External Topic Properties\NT_TIB32.ArbitraryUserPointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=75 +ETPTopicOrder0=0 -[External Topic Properties\JclTD32.pas] +[External Topic Properties\NT_TIB32.ExceptionList] Count=1 ETPCommand0=2 -ETPTopicOrder0=76 +ETPTopicOrder0=1 -[External Topic Properties\JclTrackExceptionsFromLibraries] +[External Topic Properties\NT_TIB32.FiberData] Count=1 ETPCommand0=2 -ETPTopicOrder0=564 +ETPTopicOrder0=2 -[External Topic Properties\JclTryEnterCriticalSection@TRTLCriticalSection] +[External Topic Properties\NT_TIB32.Self] Count=1 ETPCommand0=2 -ETPTopicOrder0=565 +ETPTopicOrder0=3 -[External Topic Properties\JclUnicode.pas] +[External Topic Properties\NT_TIB32.StackBase] Count=1 ETPCommand0=2 -ETPTopicOrder0=77 +ETPTopicOrder0=4 -[External Topic Properties\JclUnitConv.pas] +[External Topic Properties\NT_TIB32.StackLimit] Count=1 ETPCommand0=2 -ETPTopicOrder0=78 +ETPTopicOrder0=5 -[External Topic Properties\JclUnitVersioning.pas] +[External Topic Properties\NT_TIB32.SubSystemTib] Count=1 ETPCommand0=2 -ETPTopicOrder0=79 +ETPTopicOrder0=6 -[External Topic Properties\JclUnitVersioningProviders.pas] +[External Topic Properties\NT_TIB32.Version] Count=1 ETPCommand0=2 -ETPTopicOrder0=80 +ETPTopicOrder0=7 -[External Topic Properties\JclUnkookExceptionsInModule@HMODULE] +[External Topic Properties\NT_TIB64] Count=1 ETPCommand0=2 -ETPTopicOrder0=566 +ETPTopicOrder0=78 -[External Topic Properties\JclValidateModuleAddress@Pointer] +[External Topic Properties\NT_TIB64.ArbitraryUserPointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=567 +ETPTopicOrder0=0 -[External Topic Properties\JclValidation.pas] +[External Topic Properties\NT_TIB64.ExceptionList] Count=1 ETPCommand0=2 -ETPTopicOrder0=81 +ETPTopicOrder0=1 -[External Topic Properties\JclVectors.pas] +[External Topic Properties\NT_TIB64.FiberData] Count=1 ETPCommand0=2 -ETPTopicOrder0=82 +ETPTopicOrder0=2 -[External Topic Properties\JclVersionBuild] +[External Topic Properties\NT_TIB64.Self] Count=1 ETPCommand0=2 -ETPTopicOrder0=1261 +ETPTopicOrder0=3 -[External Topic Properties\JclVersionMajor] +[External Topic Properties\NT_TIB64.StackBase] Count=1 ETPCommand0=2 -ETPTopicOrder0=1262 +ETPTopicOrder0=4 -[External Topic Properties\JclVersionMinor] +[External Topic Properties\NT_TIB64.StackLimit] Count=1 ETPCommand0=2 -ETPTopicOrder0=1263 +ETPTopicOrder0=5 -[External Topic Properties\JclVersionRelease] +[External Topic Properties\NT_TIB64.SubSystemTib] Count=1 ETPCommand0=2 -ETPTopicOrder0=1264 +ETPTopicOrder0=6 -[External Topic Properties\JclwglCreateContext@HDC] +[External Topic Properties\NT_TIB64.Version] Count=1 ETPCommand0=2 -ETPTopicOrder0=568 +ETPTopicOrder0=7 -[External Topic Properties\JclwglDeleteContext@HGLRC] +[External Topic Properties\NtfsCreateHardLink] Count=1 ETPCommand0=2 -ETPTopicOrder0=569 +ETPTopicOrder0=866 -[External Topic Properties\JclwglMakeCurrent@HDC@HGLRC] +[External Topic Properties\NtfsCreateHardLinkA@AnsiString@AnsiString] Count=1 ETPCommand0=2 -ETPTopicOrder0=570 +ETPTopicOrder0=867 -[External Topic Properties\JclWideFormat.pas] +[External Topic Properties\NtfsCreateHardLinkW@WideString@WideString] Count=1 ETPCommand0=2 -ETPTopicOrder0=83 +ETPTopicOrder0=868 -[External Topic Properties\JclWideStrings.pas] +[External Topic Properties\NtfsDeleteHardLinks] Count=1 ETPCommand0=2 -ETPTopicOrder0=84 +ETPTopicOrder0=869 -[External Topic Properties\JclWin32.pas] +[External Topic Properties\NtfsFindHardLinks] Count=1 ETPCommand0=2 -ETPTopicOrder0=85 +ETPTopicOrder0=870 -[External Topic Properties\JclWin32Ex.pas] +[External Topic Properties\NtfsGetCompression@string@Short] Count=1 ETPCommand0=2 -ETPTopicOrder0=86 +ETPTopicOrder0=710 -[External Topic Properties\JclWin32ExFunctions] +[External Topic Properties\NtfsGetCompression@TFileName@Short] Count=1 ETPCommand0=2 -ETPTopicOrder0=571 +ETPTopicOrder0=871 -[External Topic Properties\JclWinMIDI.pas] +[External Topic Properties\NtfsGetHardLinkInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=87 +ETPTopicOrder0=872 -[External Topic Properties\jedi.inc] +[External Topic Properties\NtfsOpLockAckClosePending@THandle@TOverlapped] Count=1 ETPCommand0=2 -ETPTopicOrder0=88 +ETPTopicOrder0=873 -[External Topic Properties\KelvinAbsoluteZero] +[External Topic Properties\NtfsOpLockBreakAckNo2@THandle@TOverlapped] Count=1 ETPCommand0=2 -ETPTopicOrder0=1265 +ETPTopicOrder0=874 -[External Topic Properties\KelvinBoilingPoint] +[External Topic Properties\NtfsOpLockBreakAcknowledge@THandle@TOverlapped] Count=1 ETPCommand0=2 -ETPTopicOrder0=1266 +ETPTopicOrder0=875 -[External Topic Properties\KelvinFreezingPoint] +[External Topic Properties\NtfsOpLockBreakNotify@THandle@TOverlapped] Count=1 ETPCommand0=2 -ETPTopicOrder0=1267 +ETPTopicOrder0=876 -[External Topic Properties\KelvinTo@TTemperatureType@Float] +[External Topic Properties\NtfsRequestOpLock@THandle@TOpLock@TOverlapped] Count=1 ETPCommand0=2 -ETPTopicOrder0=572 +ETPTopicOrder0=877 -[External Topic Properties\KelvinToRankine@Float] +[External Topic Properties\NTSTATUS] Count=1 ETPCommand0=2 -ETPTopicOrder0=573 +ETPTopicOrder0=99 -[External Topic Properties\KelvinToReaumur@Float] +[External Topic Properties\NULL_USERSETINFO_PASSWD] Count=1 ETPCommand0=2 -ETPTopicOrder0=574 +ETPTopicOrder0=1860 -[External Topic Properties\KLF_RESET] +[External Topic Properties\NullReferenceException] Count=1 ETPCommand0=2 -ETPTopicOrder0=1268 +ETPTopicOrder0=66 -[External Topic Properties\KLF_SHIFTLOCK] +[External Topic Properties\OpenCdMciDevice@TMCI_Open_Parms@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=1269 +ETPTopicOrder0=878 -[External Topic Properties\kylix.inc] +[External Topic Properties\OpenGLColorToWinColor@Float@Float@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=89 +ETPTopicOrder0=879 -[External Topic Properties\LANA_ENUM] +[External Topic Properties\OrdinalMathandLogic] Count=1 ETPCommand0=2 -ETPTopicOrder0=55 +ETPTopicOrder0=16 -[External Topic Properties\LANGIDFROMLCID@LCID] +[External Topic Properties\OrdToBinary@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=575 +ETPTopicOrder0=883 -[External Topic Properties\Largeint] +[External Topic Properties\OrdToBinary@Int64] Count=1 ETPCommand0=2 -ETPTopicOrder0=56 +ETPTopicOrder0=884 -[External Topic Properties\LastDayOfWeek@Integer@Integer@Integer] +[External Topic Properties\OrdToBinary@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=576 +ETPTopicOrder0=885 -[External Topic Properties\LastWeekDay@Integer@Integer] +[External Topic Properties\OrdToBinary@ShortInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=578 +ETPTopicOrder0=880 -[External Topic Properties\LastWeekDay@Integer@Integer@Integer] +[External Topic Properties\OrdToBinary@SmallInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=577 +ETPTopicOrder0=881 -[External Topic Properties\LastWeekendDay@Integer@Integer] +[External Topic Properties\OrdToBinary@Word] Count=1 ETPCommand0=2 -ETPTopicOrder0=580 +ETPTopicOrder0=882 -[External Topic Properties\LastWeekendDay@Integer@Integer@Integer] +[External Topic Properties\OS2MSG_FILENAME] Count=1 ETPCommand0=2 -ETPTopicOrder0=579 +ETPTopicOrder0=1861 -[External Topic Properties\LibNotLoadedHandler] +[External Topic Properties\OSVERSIONINFOEX] Count=1 ETPCommand0=2 -ETPTopicOrder0=27 +ETPTopicOrder0=100 -[External Topic Properties\LibrariesProcessesandThreads] +[External Topic Properties\OSVERSIONINFOEXA] Count=1 ETPCommand0=2 -ETPTopicOrder0=11 +ETPTopicOrder0=101 -[External Topic Properties\ListAddItems@string@string@string] +[External Topic Properties\OSVERSIONINFOEXW] Count=1 ETPCommand0=2 -ETPTopicOrder0=581 +ETPTopicOrder0=102 -[External Topic Properties\ListDelItem@string@string@Integer] +[External Topic Properties\PACTION_HEADER] Count=1 ETPCommand0=2 -ETPTopicOrder0=582 +ETPTopicOrder0=103 -[External Topic Properties\LISTEN_OUTSTANDING] +[External Topic Properties\PActionHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=1270 +ETPTopicOrder0=104 -[External Topic Properties\ListGetItem@string@string@Integer] +[External Topic Properties\PADAPTER_STATUS] Count=1 ETPCommand0=2 -ETPTopicOrder0=583 +ETPTopicOrder0=105 -[External Topic Properties\ListIncludeItems@string@string@string] +[External Topic Properties\PAE_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=584 +ETPTopicOrder0=963 -[External Topic Properties\ListItemCount@string@string] +[External Topic Properties\PAMD_100MHZSTEP] Count=1 ETPCommand0=2 -ETPTopicOrder0=585 +ETPTopicOrder0=964 -[External Topic Properties\ListItemIndex@string@string@string] +[External Topic Properties\PAMD_BIT_10] Count=1 ETPCommand0=2 -ETPTopicOrder0=586 +ETPTopicOrder0=965 -[External Topic Properties\ListRemoveItems@string@string@string] +[External Topic Properties\PAMD_BIT_11] Count=1 ETPCommand0=2 -ETPTopicOrder0=587 +ETPTopicOrder0=966 -[External Topic Properties\ListSeparator] +[External Topic Properties\PAMD_BIT_12] Count=1 ETPCommand0=2 -ETPTopicOrder0=1271 +ETPTopicOrder0=967 -[External Topic Properties\ListSetItem@string@string@Integer@string] +[External Topic Properties\PAMD_BIT_13] Count=1 ETPCommand0=2 -ETPTopicOrder0=588 +ETPTopicOrder0=968 -[External Topic Properties\LM20_CNLEN] +[External Topic Properties\PAMD_BIT_14] Count=1 ETPCommand0=2 -ETPTopicOrder0=1272 +ETPTopicOrder0=969 -[External Topic Properties\LM20_DEVLEN] +[External Topic Properties\PAMD_BIT_15] Count=1 ETPCommand0=2 -ETPTopicOrder0=1273 +ETPTopicOrder0=970 -[External Topic Properties\LM20_DNLEN] +[External Topic Properties\PAMD_BIT_16] Count=1 ETPCommand0=2 -ETPTopicOrder0=1274 +ETPTopicOrder0=971 -[External Topic Properties\LM20_GNLEN] +[External Topic Properties\PAMD_BIT_17] Count=1 ETPCommand0=2 -ETPTopicOrder0=1275 +ETPTopicOrder0=972 -[External Topic Properties\LM20_MAXCOMMENTSZ] +[External Topic Properties\PAMD_BIT_18] Count=1 ETPCommand0=2 -ETPTopicOrder0=1276 +ETPTopicOrder0=973 -[External Topic Properties\LM20_NNLEN] +[External Topic Properties\PAMD_BIT_19] Count=1 ETPCommand0=2 -ETPTopicOrder0=1277 +ETPTopicOrder0=974 -[External Topic Properties\LM20_PATHLEN] +[External Topic Properties\PAMD_BIT_20] Count=1 ETPCommand0=2 -ETPTopicOrder0=1278 +ETPTopicOrder0=975 -[External Topic Properties\LM20_PWLEN] +[External Topic Properties\PAMD_BIT_21] Count=1 ETPCommand0=2 -ETPTopicOrder0=1279 +ETPTopicOrder0=976 -[External Topic Properties\LM20_QNLEN] +[External Topic Properties\PAMD_BIT_22] Count=1 ETPCommand0=2 -ETPTopicOrder0=1280 +ETPTopicOrder0=977 -[External Topic Properties\LM20_RMLEN] +[External Topic Properties\PAMD_BIT_23] Count=1 ETPCommand0=2 -ETPTopicOrder0=1281 +ETPTopicOrder0=978 -[External Topic Properties\LM20_SNLEN] +[External Topic Properties\PAMD_BIT_24] Count=1 ETPCommand0=2 -ETPTopicOrder0=1282 +ETPTopicOrder0=979 -[External Topic Properties\LM20_STXTLEN] +[External Topic Properties\PAMD_BIT_25] Count=1 ETPCommand0=2 -ETPTopicOrder0=1283 +ETPTopicOrder0=980 -[External Topic Properties\LM20_UNCLEN] +[External Topic Properties\PAMD_BIT_26] Count=1 ETPCommand0=2 -ETPTopicOrder0=1284 +ETPTopicOrder0=981 -[External Topic Properties\LM20_UNLEN] +[External Topic Properties\PAMD_BIT_27] Count=1 ETPCommand0=2 -ETPTopicOrder0=1285 +ETPTopicOrder0=982 -[External Topic Properties\LMCSTR] +[External Topic Properties\PAMD_BIT_28] Count=1 ETPCommand0=2 -ETPTopicOrder0=57 +ETPTopicOrder0=983 -[External Topic Properties\LMSTR] +[External Topic Properties\PAMD_BIT_29] Count=1 ETPCommand0=2 -ETPTopicOrder0=58 +ETPTopicOrder0=984 -[External Topic Properties\Ln@TPolarComplex] +[External Topic Properties\PAMD_BIT_30] Count=1 ETPCommand0=2 -ETPTopicOrder0=589 +ETPTopicOrder0=985 -[External Topic Properties\Ln10] +[External Topic Properties\PAMD_BIT_31] Count=1 ETPCommand0=2 -ETPTopicOrder0=1286 +ETPTopicOrder0=986 -[External Topic Properties\Ln2] +[External Topic Properties\PAMD_BIT_6] Count=1 ETPCommand0=2 -ETPTopicOrder0=1287 +ETPTopicOrder0=1885 -[External Topic Properties\LnPi] +[External Topic Properties\PAMD_BIT_7] Count=1 ETPCommand0=2 -ETPTopicOrder0=1288 +ETPTopicOrder0=1886 -[External Topic Properties\LOADED_IMAGE] +[External Topic Properties\PAMD_BIT_9] Count=1 ETPCommand0=2 -ETPTopicOrder0=59 +ETPTopicOrder0=987 -[External Topic Properties\LoadLibraryShim@PWideChar@PWideChar@Pointer@HMODULE] +[External Topic Properties\PAMD_FREQUENCYID] Count=1 ETPCommand0=2 -ETPTopicOrder0=590 +ETPTopicOrder0=988 -[External Topic Properties\LoadPCRE] +[External Topic Properties\PAMD_HWPSTATE] Count=1 ETPCommand0=2 -ETPTopicOrder0=591 +ETPTopicOrder0=989 -[External Topic Properties\LOCALE_IDEFAULTEBCDICCODEPAGE] +[External Topic Properties\PAMD_SOFTTHERMCONTROL] Count=1 ETPCommand0=2 -ETPTopicOrder0=1289 +ETPTopicOrder0=990 -[External Topic Properties\LOCALE_IDIGITSUBSTITUTION] +[External Topic Properties\PAMD_TEMPSENSOR] Count=1 ETPCommand0=2 -ETPTopicOrder0=1290 +ETPTopicOrder0=991 -[External Topic Properties\LOCALE_IPAPERSIZE] +[External Topic Properties\PAMD_THERMALMONITOR] Count=1 ETPCommand0=2 -ETPTopicOrder0=1291 +ETPTopicOrder0=992 -[External Topic Properties\LOCALE_NOUSEROVERRIDE] +[External Topic Properties\PAMD_THERMALTRIP] Count=1 ETPCommand0=2 -ETPTopicOrder0=1292 +ETPTopicOrder0=993 -[External Topic Properties\LOCALE_RETURN_NUMBER] +[External Topic Properties\PAMD_TSC_INVARIANT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1293 +ETPTopicOrder0=994 -[External Topic Properties\LOCALE_SENGCURRNAME] +[External Topic Properties\PAMD_VOLTAGEID] Count=1 ETPCommand0=2 -ETPTopicOrder0=1294 +ETPTopicOrder0=995 -[External Topic Properties\LOCALE_SNATIVECURRNAME] +[External Topic Properties\PAnonObjectHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=1295 +ETPTopicOrder0=106 -[External Topic Properties\LOCALE_SSORTNAME] +[External Topic Properties\PAnsiCharOrNil@AnsiString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1296 +ETPTopicOrder0=886 -[External Topic Properties\LOCALE_SYEARMONTH] +[External Topic Properties\PAnsiCharVector] Count=1 ETPCommand0=2 -ETPTopicOrder0=1297 +ETPTopicOrder0=21 -[External Topic Properties\LOCALE_USE_CP_ACP] +[External Topic Properties\PAnsiMultiSz] Count=1 ETPCommand0=2 -ETPTopicOrder0=1298 +ETPTopicOrder0=22 -[External Topic Properties\LOCALGROUP_INFO_0] +[External Topic Properties\ParamName@Integer@string@string@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=60 +ETPTopicOrder0=887 -[External Topic Properties\LOCALGROUP_INFO_1] +[External Topic Properties\ParamPos@string@string@Boolean@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=61 +ETPTopicOrder0=888 -[External Topic Properties\LOCALGROUP_INFO_1002] +[External Topic Properties\ParamValue@Integer@string@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=62 +ETPTopicOrder0=890 -[External Topic Properties\LOCALGROUP_MEMBERS_INFO_0] +[External Topic Properties\ParamValue@string@string@Boolean@string@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=63 +ETPTopicOrder0=889 -[External Topic Properties\LOCALGROUP_MEMBERS_INFO_1] +[External Topic Properties\PARM_ERROR_NONE] Count=1 ETPCommand0=2 -ETPTopicOrder0=64 +ETPTopicOrder0=1895 -[External Topic Properties\LOCALGROUP_MEMBERS_INFO_2] +[External Topic Properties\PARM_ERROR_UNKNOWN] Count=1 ETPCommand0=2 -ETPTopicOrder0=65 +ETPTopicOrder0=1896 -[External Topic Properties\LOCALGROUP_MEMBERS_INFO_3] +[External Topic Properties\PARMNUM_ALL] Count=1 ETPCommand0=2 -ETPTopicOrder0=66 +ETPTopicOrder0=1897 -[External Topic Properties\LocalSystemAccount] +[External Topic Properties\PARMNUM_BASE_INFOLEVEL] Count=1 ETPCommand0=2 -ETPTopicOrder0=1299 +ETPTopicOrder0=1898 -[External Topic Properties\LocalSystemSCMDesiredAccess] +[External Topic Properties\ParseCOMSDataOfCOMSDefinition@string@TEDISEFCompositeElement@TEDISEFDataObjectList] Count=1 ETPCommand0=2 -ETPTopicOrder0=1300 +ETPTopicOrder0=726 -[External Topic Properties\LockedCompareExchange@Pointer@Pointer@Pointer] +[External Topic Properties\ParseCOMSDataOfSEGSDefinition@string@TEDISEFCompositeElement@TEDISEFDataObjectList] Count=1 ETPCommand0=2 -ETPTopicOrder0=592 +ETPTopicOrder0=727 -[External Topic Properties\Log2] +[External Topic Properties\ParseELMSDataOfCOMSDefinition@string@TEDISEFElement@TEDISEFDataObjectList] Count=1 ETPCommand0=2 -ETPTopicOrder0=1301 +ETPTopicOrder0=728 -[External Topic Properties\Log3] +[External Topic Properties\ParseELMSDataOfELMSDefinition@string@TEDISEFElement] Count=1 ETPCommand0=2 -ETPTopicOrder0=1302 +ETPTopicOrder0=729 -[External Topic Properties\LogE] +[External Topic Properties\ParseELMSDataOfSEGSDefinition@string@TEDISEFElement@TEDISEFDataObjectList] Count=1 ETPCommand0=2 -ETPTopicOrder0=1303 +ETPTopicOrder0=730 -[External Topic Properties\LogPi] +[External Topic Properties\ParseLoopDataOfSETSDefinition@string@TEDISEFLoop@TEDISEFFile] Count=1 ETPCommand0=2 -ETPTopicOrder0=1304 +ETPTopicOrder0=731 -[External Topic Properties\LookupAccountBySid@PSID@WideString@WideString] +[External Topic Properties\ParseSEGSDataOfSEGSDefinition@string@TEDISEFSegment@TEDISEFFile] Count=1 ETPCommand0=2 -ETPTopicOrder0=593 +ETPTopicOrder0=732 -[External Topic Properties\LPCSTR] +[External Topic Properties\ParseSEGSDataOfSETSDefinition@string@TEDISEFSegment@TEDISEFFile] Count=1 ETPCommand0=2 -ETPTopicOrder0=67 +ETPTopicOrder0=733 -[External Topic Properties\LPCTSTR] +[External Topic Properties\ParseSetsDataOfSETSDefinition@string@TEDISEFSet@TEDISEFFile] Count=1 ETPCommand0=2 -ETPTopicOrder0=68 +ETPTopicOrder0=734 -[External Topic Properties\LPCWSTR] +[External Topic Properties\ParseTableDataOfSETSDefinition@string@TEDISEFTable@TEDISEFFile] Count=1 ETPCommand0=2 -ETPTopicOrder0=69 +ETPTopicOrder0=735 -[External Topic Properties\LPGROUP_INFO_0] +[External Topic Properties\PAT_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=70 +ETPTopicOrder0=996 -[External Topic Properties\LPGROUP_INFO_1] +[External Topic Properties\PathCanonicalize] Count=1 ETPCommand0=2 -ETPTopicOrder0=71 +ETPTopicOrder0=891 -[External Topic Properties\LPLOCALGROUP_INFO_0] +[External Topic Properties\PathExtractPathDepth] Count=1 ETPCommand0=2 -ETPTopicOrder0=72 +ETPTopicOrder0=892 -[External Topic Properties\LPLOCALGROUP_INFO_1] +[External Topic Properties\PathGetDepth] Count=1 ETPCommand0=2 -ETPTopicOrder0=73 +ETPTopicOrder0=893 -[External Topic Properties\LPLOCALGROUP_INFO_1002] +[External Topic Properties\PathGetLocalizedPath@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=74 +ETPTopicOrder0=894 -[External Topic Properties\LPLOCALGROUP_MEMBERS_INFO_0] +[External Topic Properties\PathGetPhysicalPath@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=75 +ETPTopicOrder0=895 -[External Topic Properties\LPLOCALGROUP_MEMBERS_INFO_1] +[External Topic Properties\PATHLEN] Count=1 ETPCommand0=2 -ETPTopicOrder0=76 +ETPTopicOrder0=1900 -[External Topic Properties\LPLOCALGROUP_MEMBERS_INFO_2] +[External Topic Properties\PathListAddItems@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=77 +ETPTopicOrder0=896 -[External Topic Properties\LPLOCALGROUP_MEMBERS_INFO_3] +[External Topic Properties\PathListDelItem@string@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=78 +ETPTopicOrder0=897 -[External Topic Properties\LPOSVERSIONINFOEX] +[External Topic Properties\PathListDelItems@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=79 +ETPTopicOrder0=898 -[External Topic Properties\LPOSVERSIONINFOEXA] +[External Topic Properties\PathListGetItem@string@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=80 +ETPTopicOrder0=899 -[External Topic Properties\LPOSVERSIONINFOEXW] +[External Topic Properties\PathListIncludeItems@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=81 +ETPTopicOrder0=900 -[External Topic Properties\LPSERVICE_DESCRIPTIONA] +[External Topic Properties\PathListItemCount@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=82 +ETPTopicOrder0=901 -[External Topic Properties\LPSTR] +[External Topic Properties\PathListItemIndex@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=83 +ETPTopicOrder0=902 -[External Topic Properties\LPUSER_INFO_0] +[External Topic Properties\PathListSetItem@string@Integer@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=84 +ETPTopicOrder0=903 -[External Topic Properties\LPUSER_INFO_1] +[External Topic Properties\PBE_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=85 +ETPTopicOrder0=997 -[External Topic Properties\LPUSER_INFO_2] +[External Topic Properties\PBoolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=86 +ETPTopicOrder0=107 -[External Topic Properties\LPWSTR] +[External Topic Properties\PByte] Count=1 ETPCommand0=2 -ETPTopicOrder0=87 +ETPTopicOrder0=23 -[External Topic Properties\LRot@Integer@TBitRange] +[External Topic Properties\PCardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=594 +ETPTopicOrder0=24 -[External Topic Properties\LRot@Word@TBitRange] +[External Topic Properties\PCharVector] Count=1 ETPCommand0=2 -ETPTopicOrder0=595 +ETPTopicOrder0=25 -[External Topic Properties\LSA_HANDLE] +[External Topic Properties\PCharVectorCount@PCharVector] Count=1 ETPCommand0=2 -ETPTopicOrder0=88 +ETPTopicOrder0=904 -[External Topic Properties\LSA_OBJECT_ATTRIBUTES] +[External Topic Properties\PCharVectorToStrings@TStrings@PCharVector] Count=1 ETPCommand0=2 -ETPTopicOrder0=89 +ETPTopicOrder0=905 -[External Topic Properties\LSA_STRING] +[External Topic Properties\PCLEANUI] Count=1 ETPCommand0=2 -ETPTopicOrder0=90 +ETPTopicOrder0=1902 -[External Topic Properties\LSA_UNICODE_STRING] +[External Topic Properties\PClipCodes] Count=1 ETPCommand0=2 -ETPTopicOrder0=91 +ETPTopicOrder0=26 -[External Topic Properties\LsaClose@LSA_HANDLE] +[External Topic Properties\PClrMetadataHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=596 +ETPTopicOrder0=27 -[External Topic Properties\LsaFreeMemory@Pointer] +[External Topic Properties\PClrStreamHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=597 +ETPTopicOrder0=28 -[External Topic Properties\LsaFreeReturnBuffer@Pointer] +[External Topic Properties\PClrTableStreamHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=598 +ETPTopicOrder0=29 -[External Topic Properties\LsaNtStatusToWinError@NTSTATUS] +[External Topic Properties\PColor32] Count=1 ETPCommand0=2 -ETPTopicOrder0=599 +ETPTopicOrder0=30 -[External Topic Properties\LsaOpenPolicy@PLSA_UNICODE_STRING@LSA_OBJECT_ATTRIBUTES@ACCESS_MASK@LSA_HANDLE] +[External Topic Properties\PColor32Array] Count=1 ETPCommand0=2 -ETPTopicOrder0=600 +ETPTopicOrder0=31 -[External Topic Properties\LsaQueryInformationPolicy@LSA_HANDLE@POLICY_INFORMATION_CLASS@Pointer] -Count=1 +[External Topic Properties\pcre] +Count=2 ETPCommand0=2 -ETPTopicOrder0=601 +ETPCommand1=3 +ETPGroup1=RegularExpressions +ETPTopicOrder0=28 -[External Topic Properties\lstat64@PChar@TStatBuf64] +[External Topic Properties\pcre.pas] Count=1 ETPCommand0=2 -ETPTopicOrder0=602 +ETPTopicOrder0=87 -[External Topic Properties\MAILSLOT_NO_MESSAGE] +[External Topic Properties\PCRE_ANCHORED] Count=1 ETPCommand0=2 -ETPTopicOrder0=1305 +ETPTopicOrder0=1903 -[External Topic Properties\MAILSLOT_WAIT_FOREVER] +[External Topic Properties\PCRE_AUTO_CALLOUT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1306 +ETPTopicOrder0=1904 -[External Topic Properties\MAKEINTRESOURCE] +[External Topic Properties\pcre_callout_block] Count=1 ETPCommand0=2 -ETPTopicOrder0=92 +ETPTopicOrder0=79 -[External Topic Properties\MAKEINTRESOURCEA] +[External Topic Properties\pcre_callout_block.callout_data] Count=1 ETPCommand0=2 -ETPTopicOrder0=93 +ETPTopicOrder0=0 -[External Topic Properties\MAKEINTRESOURCEW] +[External Topic Properties\pcre_callout_block.callout_number] Count=1 ETPCommand0=2 -ETPTopicOrder0=94 +ETPTopicOrder0=1 -[External Topic Properties\MAKELANGID@USHORT@USHORT] +[External Topic Properties\pcre_callout_block.capture_last] Count=1 ETPCommand0=2 -ETPTopicOrder0=603 +ETPTopicOrder0=2 -[External Topic Properties\MAKELCID@WORD@WORD] +[External Topic Properties\pcre_callout_block.capture_top] Count=1 ETPCommand0=2 -ETPTopicOrder0=604 +ETPTopicOrder0=3 -[External Topic Properties\MakeQuietNaN@Extended@TNaNTag] +[External Topic Properties\pcre_callout_block.current_position] Count=1 ETPCommand0=2 -ETPTopicOrder0=606 +ETPTopicOrder0=4 -[External Topic Properties\MakeQuietNaN@Single@TNaNTag] +[External Topic Properties\pcre_callout_block.next_item_length] Count=1 ETPCommand0=2 -ETPTopicOrder0=605 +ETPTopicOrder0=5 -[External Topic Properties\MakeSignalingNaN@Extended@TNaNTag] +[External Topic Properties\pcre_callout_block.offset_vector] Count=1 ETPCommand0=2 -ETPTopicOrder0=608 +ETPTopicOrder0=6 -[External Topic Properties\MakeSignalingNaN@Single@TNaNTag] +[External Topic Properties\pcre_callout_block.pattern_position] Count=1 ETPCommand0=2 -ETPTopicOrder0=607 +ETPTopicOrder0=7 -[External Topic Properties\MAKESORTLCID@WORD@WORD@WORD] +[External Topic Properties\pcre_callout_block.start_match] Count=1 ETPCommand0=2 -ETPTopicOrder0=609 +ETPTopicOrder0=8 -[External Topic Properties\MapAndLoad@PChar@PChar@LOADED_IMAGE@BOOL@BOOL] +[External Topic Properties\pcre_callout_block.subject] Count=1 ETPCommand0=2 -ETPTopicOrder0=610 +ETPTopicOrder0=9 -[External Topic Properties\MapiAddressTypeFAX] +[External Topic Properties\pcre_callout_block.subject_length] Count=1 ETPCommand0=2 -ETPTopicOrder0=1307 +ETPTopicOrder0=10 -[External Topic Properties\MapiAddressTypeSMTP] +[External Topic Properties\pcre_callout_block.version] Count=1 ETPCommand0=2 -ETPTopicOrder0=1308 +ETPTopicOrder0=11 -[External Topic Properties\MapiAddressTypeTLX] +[External Topic Properties\pcre_callout_callback] Count=1 ETPCommand0=2 -ETPTopicOrder0=1309 +ETPTopicOrder0=117 -[External Topic Properties\MapWindowRect@THandle@THandle@TRect] +[External Topic Properties\pcre_callout_func] Count=1 ETPCommand0=2 -ETPTopicOrder0=611 +ETPTopicOrder0=28 -[External Topic Properties\MarshalInterMachineInterfaceInStream@TIID@IUnknown@IStream] +[External Topic Properties\PCRE_CASELESS] Count=1 ETPCommand0=2 -ETPTopicOrder0=612 +ETPTopicOrder0=1905 -[External Topic Properties\MarshalInterMachineInterfaceInVarArray@TIID@IUnknown@OleVariant] +[External Topic Properties\pcre_compile] Count=1 ETPCommand0=2 -ETPTopicOrder0=613 +ETPTopicOrder0=29 -[External Topic Properties\MarshalInterProcessInterfaceInStream@TIID@IUnknown@IStream] +[External Topic Properties\pcre_compile@PChar@Integer@PPChar@PInteger@PChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=614 +ETPTopicOrder0=747 -[External Topic Properties\MarshalInterProcessInterfaceInVarArray@TIID@IUnknown@OleVariant] +[External Topic Properties\pcre_compile_func] Count=1 ETPCommand0=2 -ETPTopicOrder0=615 +ETPTopicOrder0=118 -[External Topic Properties\MarshalInterThreadInterfaceInVarArray@TIID@IUnknown@OleVariant] +[External Topic Properties\pcre_compile2] Count=1 ETPCommand0=2 -ETPTopicOrder0=616 +ETPTopicOrder0=30 -[External Topic Properties\Mask8087Exceptions] +[External Topic Properties\pcre_compile2@PChar@Integer@PInteger@PPChar@PInteger@PChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=617 +ETPTopicOrder0=748 -[External Topic Properties\MathRoutines] +[External Topic Properties\pcre_compile2_func] Count=1 ETPCommand0=2 -ETPTopicOrder0=12 +ETPTopicOrder0=119 -[External Topic Properties\Max@Cardinal@Cardinal] +[External Topic Properties\pcre_config] Count=1 ETPCommand0=2 -ETPTopicOrder0=619 +ETPTopicOrder0=31 -[External Topic Properties\Max@Int64@Int64] +[External Topic Properties\pcre_config@Integer@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=620 +ETPTopicOrder0=749 -[External Topic Properties\Max@Integer@Integer] +[External Topic Properties\pcre_config_func] Count=1 ETPCommand0=2 -ETPTopicOrder0=622 +ETPTopicOrder0=120 -[External Topic Properties\Max@Shortint@Shortint] +[External Topic Properties\PCRE_CONFIG_LINK_SIZE] Count=1 ETPCommand0=2 -ETPTopicOrder0=621 +ETPTopicOrder0=1906 -[External Topic Properties\Max@Smallint@Smallint] +[External Topic Properties\PCRE_CONFIG_MATCH_LIMIT] Count=1 ETPCommand0=2 -ETPTopicOrder0=618 +ETPTopicOrder0=1907 -[External Topic Properties\Max@Word@Word] +[External Topic Properties\PCRE_CONFIG_MATCH_LIMIT_RECURSION] Count=1 ETPCommand0=2 -ETPTopicOrder0=623 +ETPTopicOrder0=1908 -[External Topic Properties\MAX_CAPTURE_COUNT] +[External Topic Properties\PCRE_CONFIG_NEWLINE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1310 +ETPTopicOrder0=1909 -[External Topic Properties\MAX_CLASS_NAME] +[External Topic Properties\PCRE_CONFIG_POSIX_MALLOC_THRESHOLD] Count=1 ETPCommand0=2 -ETPTopicOrder0=1311 +ETPTopicOrder0=1910 -[External Topic Properties\MAX_LANMAN_MESSAGE_ID] +[External Topic Properties\PCRE_CONFIG_STACKRECURSE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1312 +ETPTopicOrder0=1911 -[External Topic Properties\MAX_NATURAL_ALIGNMENT] +[External Topic Properties\PCRE_CONFIG_UNICODE_PROPERTIES] Count=1 ETPCommand0=2 -ETPTopicOrder0=1313 +ETPTopicOrder0=1912 -[External Topic Properties\MAX_NERR] +[External Topic Properties\PCRE_CONFIG_UTF8] Count=1 ETPCommand0=2 -ETPTopicOrder0=1314 +ETPTopicOrder0=1913 -[External Topic Properties\MAX_NESTING_DEPTH] +[External Topic Properties\pcre_copy_named_substring] Count=1 ETPCommand0=2 -ETPTopicOrder0=1315 +ETPTopicOrder0=32 -[External Topic Properties\MAX_PACKAGE_NAME] +[External Topic Properties\pcre_copy_named_substring@PPCRE@PChar@PInteger@Integer@PChar@PChar@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1316 +ETPTopicOrder0=750 -[External Topic Properties\MAX_PATTERN_LENGTH] +[External Topic Properties\pcre_copy_named_substring_func] Count=1 ETPCommand0=2 -ETPTopicOrder0=1317 +ETPTopicOrder0=121 -[External Topic Properties\MAX_PREFERRED_LENGTH] +[External Topic Properties\pcre_copy_substring] Count=1 ETPCommand0=2 -ETPTopicOrder0=1318 +ETPTopicOrder0=33 -[External Topic Properties\MAX_QUANTIFY_REPEAT] +[External Topic Properties\pcre_copy_substring@PChar@PInteger@Integer@Integer@PChar@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1319 +ETPTopicOrder0=751 -[External Topic Properties\MaxAngle] +[External Topic Properties\pcre_copy_substring_func] Count=1 ETPCommand0=2 -ETPTopicOrder0=1320 +ETPTopicOrder0=122 -[External Topic Properties\MAXCOMMENTSZ] +[External Topic Properties\pcre_dfa_exec] Count=1 ETPCommand0=2 -ETPTopicOrder0=1321 +ETPTopicOrder0=34 -[External Topic Properties\MAXDEVENTRIES] +[External Topic Properties\pcre_dfa_exec@PPCRE@PPCREExtra@PChar@Integer@Integer@Integer@PInteger@Integer@PInteger@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1322 +ETPTopicOrder0=752 -[External Topic Properties\MaxFactorial] +[External Topic Properties\pcre_dfa_exec_func] Count=1 ETPCommand0=2 -ETPTopicOrder0=1323 +ETPTopicOrder0=123 -[External Topic Properties\MaxFloatingPoint] +[External Topic Properties\PCRE_DFA_RESTART] Count=1 ETPCommand0=2 -ETPTopicOrder0=1324 +ETPTopicOrder0=1914 -[External Topic Properties\MAXIMUM_RESERVED_MANIFEST_RESOURCE_ID] +[External Topic Properties\PCRE_DFA_SHORTEST] Count=1 ETPCommand0=2 -ETPTopicOrder0=1325 +ETPTopicOrder0=1915 -[External Topic Properties\MaximumUCS2] +[External Topic Properties\PCRE_DOLLAR_ENDONLY] Count=1 ETPCommand0=2 -ETPTopicOrder0=1326 +ETPTopicOrder0=1916 -[External Topic Properties\MaximumUCS4] +[External Topic Properties\PCRE_DOTALL] Count=1 ETPCommand0=2 -ETPTopicOrder0=1327 +ETPTopicOrder0=1917 -[External Topic Properties\MaximumUTF16] +[External Topic Properties\PCRE_DUPNAMES] Count=1 ETPCommand0=2 -ETPTopicOrder0=1328 +ETPTopicOrder0=1918 -[External Topic Properties\MAXLONGLONG] +[External Topic Properties\PCRE_ERROR_BADCOUNT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1329 +ETPTopicOrder0=1919 -[External Topic Properties\MaxPrefixCut] +[External Topic Properties\PCRE_ERROR_BADMAGIC] Count=1 ETPCommand0=2 -ETPTopicOrder0=1330 +ETPTopicOrder0=1920 -[External Topic Properties\MaxStackTraceItems] +[External Topic Properties\PCRE_ERROR_BADOPTION] Count=1 ETPCommand0=2 -ETPTopicOrder0=1331 +ETPTopicOrder0=1921 -[External Topic Properties\MaxTanH] +[External Topic Properties\PCRE_ERROR_BADPARTIAL] Count=1 ETPCommand0=2 -ETPTopicOrder0=1332 +ETPTopicOrder0=1922 -[External Topic Properties\MaxTerm] +[External Topic Properties\PCRE_ERROR_BADUTF8] Count=1 ETPCommand0=2 -ETPTopicOrder0=1333 +ETPTopicOrder0=1923 -[External Topic Properties\MCA_FLAG] +[External Topic Properties\PCRE_ERROR_BADUTF8_OFFSET] Count=1 ETPCommand0=2 -ETPTopicOrder0=1334 +ETPTopicOrder0=1924 -[External Topic Properties\MCE_FLAG] +[External Topic Properties\PCRE_ERROR_CALLOUT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1335 +ETPTopicOrder0=1925 -[External Topic Properties\MemoryClassesandObjects] +[External Topic Properties\PCRE_ERROR_DFA_RECURSE] Count=1 ETPCommand0=2 -ETPTopicOrder0=13 +ETPTopicOrder0=1926 -[External Topic Properties\MESSAGE_FILENAME] +[External Topic Properties\PCRE_ERROR_DFA_UCOND] Count=1 ETPCommand0=2 -ETPTopicOrder0=1336 +ETPTopicOrder0=1927 -[External Topic Properties\METHOD_DIRECT_FROM_HARDWARE] +[External Topic Properties\PCRE_ERROR_DFA_UITEM] Count=1 ETPCommand0=2 -ETPTopicOrder0=1337 +ETPTopicOrder0=1928 -[External Topic Properties\METHOD_DIRECT_TO_HARDWARE] +[External Topic Properties\PCRE_ERROR_DFA_UMLIMIT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1338 +ETPTopicOrder0=1929 -[External Topic Properties\MIDICCAllNotesOff] +[External Topic Properties\PCRE_ERROR_DFA_WSSIZE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1339 +ETPTopicOrder0=1930 -[External Topic Properties\MIDICCAllSoundOff] +[External Topic Properties\PCRE_ERROR_INTERNAL] Count=1 ETPCommand0=2 -ETPTopicOrder0=1340 +ETPTopicOrder0=1931 -[External Topic Properties\MIDICCBalance] +[External Topic Properties\PCRE_ERROR_MATCHLIMIT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1341 +ETPTopicOrder0=1932 -[External Topic Properties\MIDICCBalanceLSB] +[External Topic Properties\PCRE_ERROR_NOMATCH] Count=1 ETPCommand0=2 -ETPTopicOrder0=1342 +ETPTopicOrder0=1933 -[External Topic Properties\MIDICCBankSelect] +[External Topic Properties\PCRE_ERROR_NOMEMORY] Count=1 ETPCommand0=2 -ETPTopicOrder0=1343 +ETPTopicOrder0=1934 -[External Topic Properties\MIDICCBankSelectLSB] +[External Topic Properties\PCRE_ERROR_NOSUBSTRING] Count=1 ETPCommand0=2 -ETPTopicOrder0=1344 +ETPTopicOrder0=1935 -[External Topic Properties\MIDICCBreathControl] +[External Topic Properties\PCRE_ERROR_NULL] Count=1 ETPCommand0=2 -ETPTopicOrder0=1345 +ETPTopicOrder0=1936 -[External Topic Properties\MIDICCBreathControlLSB] +[External Topic Properties\PCRE_ERROR_PARTIAL] Count=1 ETPCommand0=2 -ETPTopicOrder0=1346 +ETPTopicOrder0=1937 -[External Topic Properties\MIDICCCelesteDepth] +[External Topic Properties\PCRE_ERROR_RECURSIONLIMIT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1347 +ETPTopicOrder0=1938 -[External Topic Properties\MIDICCChannelVolume] +[External Topic Properties\PCRE_ERROR_UNKNOWN_NODE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1348 +ETPTopicOrder0=1939 -[External Topic Properties\MIDICCChannelVolumeLSB] +[External Topic Properties\pcre_exec] Count=1 ETPCommand0=2 -ETPTopicOrder0=1349 +ETPTopicOrder0=35 -[External Topic Properties\MIDICCChorusSendLevel] +[External Topic Properties\pcre_exec@PPCRE@PPCREExtra@PChar@Integer@Integer@Integer@PInteger@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1350 +ETPTopicOrder0=753 -[External Topic Properties\MIDICCDataEntry] +[External Topic Properties\pcre_exec_func] Count=1 ETPCommand0=2 -ETPTopicOrder0=1351 +ETPTopicOrder0=124 -[External Topic Properties\MIDICCDataEntryDec] +[External Topic Properties\PCRE_EXTENDED] Count=1 ETPCommand0=2 -ETPTopicOrder0=1352 +ETPTopicOrder0=1940 -[External Topic Properties\MIDICCDataEntryInc] +[External Topic Properties\PCRE_EXTRA] Count=1 ETPCommand0=2 -ETPTopicOrder0=1353 +ETPTopicOrder0=1941 -[External Topic Properties\MIDICCDataEntryLSB] +[External Topic Properties\PCRE_EXTRA_CALLOUT_DATA] Count=1 ETPCommand0=2 -ETPTopicOrder0=1354 +ETPTopicOrder0=1942 -[External Topic Properties\MIDICCEffectControl] +[External Topic Properties\PCRE_EXTRA_MATCH_LIMIT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1355 +ETPTopicOrder0=1943 -[External Topic Properties\MIDICCEffectControl2] +[External Topic Properties\PCRE_EXTRA_MATCH_LIMIT_RECURSION] Count=1 ETPCommand0=2 -ETPTopicOrder0=1356 +ETPTopicOrder0=1944 -[External Topic Properties\MIDICCEffectControl2LSB] +[External Topic Properties\PCRE_EXTRA_STUDY_DATA] Count=1 ETPCommand0=2 -ETPTopicOrder0=1357 +ETPTopicOrder0=1945 -[External Topic Properties\MIDICCEffectControlLSB] +[External Topic Properties\PCRE_EXTRA_TABLES] Count=1 ETPCommand0=2 -ETPTopicOrder0=1358 +ETPTopicOrder0=1946 -[External Topic Properties\MIDICCEffects2Depth] +[External Topic Properties\PCRE_FIRSTLINE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1359 +ETPTopicOrder0=1947 -[External Topic Properties\MIDICCEffects4Depth] +[External Topic Properties\pcre_free_callback] Count=1 ETPCommand0=2 -ETPTopicOrder0=1360 +ETPTopicOrder0=125 -[External Topic Properties\MIDICCEffects5Depth] +[External Topic Properties\pcre_free_func] Count=1 ETPCommand0=2 -ETPTopicOrder0=1361 +ETPTopicOrder0=36 -[External Topic Properties\MIDICCExpression] +[External Topic Properties\pcre_free_substring] Count=1 ETPCommand0=2 -ETPTopicOrder0=1362 +ETPTopicOrder0=37 -[External Topic Properties\MIDICCExpressionLSB] +[External Topic Properties\pcre_free_substring@PChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=1363 +ETPTopicOrder0=754 -[External Topic Properties\MIDICCFootController] +[External Topic Properties\pcre_free_substring_func] Count=1 ETPCommand0=2 -ETPTopicOrder0=1364 +ETPTopicOrder0=126 -[External Topic Properties\MIDICCFootControllerLSB] +[External Topic Properties\pcre_free_substring_list] Count=1 ETPCommand0=2 -ETPTopicOrder0=1365 +ETPTopicOrder0=38 -[External Topic Properties\MIDICCGeneralPurpose1] +[External Topic Properties\pcre_free_substring_list@PChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=1366 +ETPTopicOrder0=755 -[External Topic Properties\MIDICCGeneralPurpose1LSB] +[External Topic Properties\pcre_free_substring_list_func] Count=1 ETPCommand0=2 -ETPTopicOrder0=1367 +ETPTopicOrder0=127 -[External Topic Properties\MIDICCGeneralPurpose2] +[External Topic Properties\pcre_fullinfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=1368 +ETPTopicOrder0=39 -[External Topic Properties\MIDICCGeneralPurpose2LSB] +[External Topic Properties\pcre_fullinfo@PPCRE@PPCREExtra@Integer@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1369 +ETPTopicOrder0=756 -[External Topic Properties\MIDICCGeneralPurpose3] +[External Topic Properties\pcre_fullinfo_func] Count=1 ETPCommand0=2 -ETPTopicOrder0=1370 +ETPTopicOrder0=128 -[External Topic Properties\MIDICCGeneralPurpose3LSB] +[External Topic Properties\pcre_get_named_substring] Count=1 ETPCommand0=2 -ETPTopicOrder0=1371 +ETPTopicOrder0=40 -[External Topic Properties\MIDICCGeneralPurpose4] +[External Topic Properties\pcre_get_named_substring@PPCRE@PChar@PInteger@Integer@PChar@PPChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=1372 +ETPTopicOrder0=757 -[External Topic Properties\MIDICCGeneralPurpose4LSB] +[External Topic Properties\pcre_get_named_substring_func] Count=1 ETPCommand0=2 -ETPTopicOrder0=1373 +ETPTopicOrder0=129 -[External Topic Properties\MIDICCGeneralPurpose5] +[External Topic Properties\pcre_get_stringnumber] Count=1 ETPCommand0=2 -ETPTopicOrder0=1374 +ETPTopicOrder0=41 -[External Topic Properties\MIDICCGeneralPurpose6] +[External Topic Properties\pcre_get_stringnumber@PPCRE@PChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=1375 +ETPTopicOrder0=758 -[External Topic Properties\MIDICCGeneralPurpose7] +[External Topic Properties\pcre_get_stringnumber_func] Count=1 ETPCommand0=2 -ETPTopicOrder0=1376 +ETPTopicOrder0=130 -[External Topic Properties\MIDICCGeneralPurpose8] +[External Topic Properties\pcre_get_stringtable_entries] Count=1 ETPCommand0=2 -ETPTopicOrder0=1377 +ETPTopicOrder0=42 -[External Topic Properties\MIDICCHold2] +[External Topic Properties\pcre_get_stringtable_entries@PPCRE@PChar@PPChar@PPChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=1378 +ETPTopicOrder0=759 -[External Topic Properties\MIDICCLegato] +[External Topic Properties\pcre_get_stringtable_entries_func] Count=1 ETPCommand0=2 -ETPTopicOrder0=1379 +ETPTopicOrder0=131 -[External Topic Properties\MIDICCLocalControl] +[External Topic Properties\pcre_get_substring] Count=1 ETPCommand0=2 -ETPTopicOrder0=1380 +ETPTopicOrder0=43 -[External Topic Properties\MIDICCMainVolume] +[External Topic Properties\pcre_get_substring@PChar@PInteger@Integer@Integer@PPChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=1381 +ETPTopicOrder0=760 -[External Topic Properties\MIDICCMainVolumeLSB] +[External Topic Properties\pcre_get_substring_func] Count=1 ETPCommand0=2 -ETPTopicOrder0=1382 +ETPTopicOrder0=132 -[External Topic Properties\MIDICCModulationWheel] +[External Topic Properties\pcre_get_substring_list] Count=1 ETPCommand0=2 -ETPTopicOrder0=1383 +ETPTopicOrder0=44 -[External Topic Properties\MIDICCModulationWheelLSB] +[External Topic Properties\pcre_get_substring_list@PChar@PInteger@Integer@PPPChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=1384 +ETPTopicOrder0=761 -[External Topic Properties\MIDICCMonoModeOn] +[External Topic Properties\pcre_get_substring_list_func] Count=1 ETPCommand0=2 -ETPTopicOrder0=1385 +ETPTopicOrder0=133 -[External Topic Properties\MIDICCNonRegParamNumLSB] +[External Topic Properties\pcre_info] Count=1 ETPCommand0=2 -ETPTopicOrder0=1386 +ETPTopicOrder0=45 -[External Topic Properties\MIDICCNonRegParamNumMSB] +[External Topic Properties\pcre_info@PPCRE@PInteger@PInteger] Count=1 ETPCommand0=2 -ETPTopicOrder0=1387 +ETPTopicOrder0=762 -[External Topic Properties\MIDICCOmniModeOff] +[External Topic Properties\PCRE_INFO_BACKREFMAX] Count=1 ETPCommand0=2 -ETPTopicOrder0=1388 +ETPTopicOrder0=1948 -[External Topic Properties\MIDICCOmniModeOn] +[External Topic Properties\PCRE_INFO_CAPTURECOUNT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1389 +ETPTopicOrder0=1949 -[External Topic Properties\MIDICCPan] +[External Topic Properties\PCRE_INFO_DEFAULT_TABLES] Count=1 ETPCommand0=2 -ETPTopicOrder0=1390 +ETPTopicOrder0=1950 -[External Topic Properties\MIDICCPanLSB] +[External Topic Properties\PCRE_INFO_FIRSTCHAR] Count=1 ETPCommand0=2 -ETPTopicOrder0=1391 +ETPTopicOrder0=1951 -[External Topic Properties\MIDICCPhaserDepth] +[External Topic Properties\PCRE_INFO_FIRSTTABLE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1392 +ETPTopicOrder0=1952 -[External Topic Properties\MIDICCPolyModeOn] +[External Topic Properties\pcre_info_func] Count=1 ETPCommand0=2 -ETPTopicOrder0=1393 +ETPTopicOrder0=134 -[External Topic Properties\MIDICCPortamento] +[External Topic Properties\PCRE_INFO_LASTLITERAL] Count=1 ETPCommand0=2 -ETPTopicOrder0=1394 +ETPTopicOrder0=1953 -[External Topic Properties\MIDICCPortamentoControl] +[External Topic Properties\PCRE_INFO_NAMECOUNT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1395 +ETPTopicOrder0=1954 -[External Topic Properties\MIDICCPortamentoTime] +[External Topic Properties\PCRE_INFO_NAMEENTRYSIZE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1396 +ETPTopicOrder0=1955 -[External Topic Properties\MIDICCPortamentoTimeLSB] +[External Topic Properties\PCRE_INFO_NAMETABLE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1397 +ETPTopicOrder0=1956 -[External Topic Properties\MIDICCRegParamNumLSB] +[External Topic Properties\PCRE_INFO_OPTIONS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1398 +ETPTopicOrder0=1957 -[External Topic Properties\MIDICCRegParamNumMSB] +[External Topic Properties\PCRE_INFO_SIZE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1399 +ETPTopicOrder0=1958 -[External Topic Properties\MIDICCResetAllControllers] +[External Topic Properties\PCRE_INFO_STUDYSIZE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1400 +ETPTopicOrder0=1959 -[External Topic Properties\MIDICCReverbSendLevel] -Count=1 +[External Topic Properties\PCRE_LINKDLL] +Count=2 ETPCommand0=2 -ETPTopicOrder0=1401 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=15 -[External Topic Properties\MIDICCSoftPedal] -Count=1 +[External Topic Properties\PCRE_LINKONREQUEST] +Count=2 ETPCommand0=2 -ETPTopicOrder0=1402 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=16 -[External Topic Properties\MIDICCSound1] +[External Topic Properties\pcre_maketables] Count=1 ETPCommand0=2 -ETPTopicOrder0=1403 +ETPTopicOrder0=763 -[External Topic Properties\MIDICCSound10] +[External Topic Properties\pcre_maketables_func] Count=1 ETPCommand0=2 -ETPTopicOrder0=1404 +ETPTopicOrder0=135 -[External Topic Properties\MIDICCSound2] +[External Topic Properties\pcre_malloc_callback] Count=1 ETPCommand0=2 -ETPTopicOrder0=1405 +ETPTopicOrder0=136 -[External Topic Properties\MIDICCSound3] +[External Topic Properties\pcre_malloc_func] Count=1 ETPCommand0=2 -ETPTopicOrder0=1406 +ETPTopicOrder0=46 -[External Topic Properties\MIDICCSound4] +[External Topic Properties\PCRE_MULTILINE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1407 +ETPTopicOrder0=1960 -[External Topic Properties\MIDICCSound5] +[External Topic Properties\PCRE_NEWLINE_ANY] Count=1 ETPCommand0=2 -ETPTopicOrder0=1408 +ETPTopicOrder0=1961 -[External Topic Properties\MIDICCSound6] +[External Topic Properties\PCRE_NEWLINE_CR] Count=1 ETPCommand0=2 -ETPTopicOrder0=1409 +ETPTopicOrder0=1962 -[External Topic Properties\MIDICCSound7] +[External Topic Properties\PCRE_NEWLINE_CRLF] Count=1 ETPCommand0=2 -ETPTopicOrder0=1410 +ETPTopicOrder0=1963 -[External Topic Properties\MIDICCSound8] +[External Topic Properties\PCRE_NEWLINE_LF] Count=1 ETPCommand0=2 -ETPTopicOrder0=1411 +ETPTopicOrder0=1964 -[External Topic Properties\MIDICCSound9] +[External Topic Properties\PCRE_NO_AUTO_CAPTURE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1412 +ETPTopicOrder0=1965 -[External Topic Properties\MIDICCSustain] +[External Topic Properties\PCRE_NO_UTF8_CHECK] Count=1 ETPCommand0=2 -ETPTopicOrder0=1413 +ETPTopicOrder0=1966 -[External Topic Properties\MIDICCSustenuto] +[External Topic Properties\PCRE_NOTBOL] Count=1 ETPCommand0=2 -ETPTopicOrder0=1414 +ETPTopicOrder0=1967 -[External Topic Properties\MIDICCTremoloDepth] +[External Topic Properties\PCRE_NOTEMPTY] Count=1 ETPCommand0=2 -ETPTopicOrder0=1415 +ETPTopicOrder0=1968 -[External Topic Properties\MIDIChannelMsgMask] +[External Topic Properties\PCRE_NOTEOL] Count=1 ETPCommand0=2 -ETPTopicOrder0=1416 +ETPTopicOrder0=1969 -[External Topic Properties\MIDIDataMask] +[External Topic Properties\PCRE_PARTIAL] Count=1 ETPCommand0=2 -ETPTopicOrder0=1417 +ETPTopicOrder0=1970 -[External Topic Properties\MIDIDataWordMask] +[External Topic Properties\pcre_refcount] Count=1 ETPCommand0=2 -ETPTopicOrder0=1418 +ETPTopicOrder0=47 -[External Topic Properties\MidiInCheck@MMResult] +[External Topic Properties\pcre_refcount@PPCRE@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=624 +ETPTopicOrder0=764 -[External Topic Properties\MIDIInvalidStatus] +[External Topic Properties\pcre_refcount_func] Count=1 ETPCommand0=2 -ETPTopicOrder0=1419 +ETPTopicOrder0=137 -[External Topic Properties\MIDIMsgActiveSensing] +[External Topic Properties\pcre_stack_free_callback] Count=1 ETPCommand0=2 -ETPTopicOrder0=1420 +ETPTopicOrder0=138 -[External Topic Properties\MIDIMsgAftertouch] +[External Topic Properties\pcre_stack_free_func] Count=1 ETPCommand0=2 -ETPTopicOrder0=1421 +ETPTopicOrder0=48 -[External Topic Properties\MIDIMsgChannelKeyPressure] +[External Topic Properties\pcre_stack_malloc_callback] Count=1 ETPCommand0=2 -ETPTopicOrder0=1422 +ETPTopicOrder0=139 -[External Topic Properties\MIDIMsgContinueSequence] +[External Topic Properties\pcre_stack_malloc_func] Count=1 ETPCommand0=2 -ETPTopicOrder0=1423 +ETPTopicOrder0=49 -[External Topic Properties\MIDIMsgControlChange] +[External Topic Properties\PCRE_STATICLINK] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=14 + +[External Topic Properties\pcre_study] Count=1 ETPCommand0=2 -ETPTopicOrder0=1424 +ETPTopicOrder0=50 -[External Topic Properties\MIDIMsgEOX] +[External Topic Properties\pcre_study@PPCRE@Integer@PPChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=1425 +ETPTopicOrder0=765 -[External Topic Properties\MIDIMsgMTCQtrFrame] +[External Topic Properties\pcre_study_func] Count=1 ETPCommand0=2 -ETPTopicOrder0=1426 +ETPTopicOrder0=140 -[External Topic Properties\MIDIMsgNoteOff] +[External Topic Properties\PCRE_UNGREEDY] Count=1 ETPCommand0=2 -ETPTopicOrder0=1427 +ETPTopicOrder0=1971 -[External Topic Properties\MIDIMsgNoteOn] +[External Topic Properties\PCRE_UTF8] Count=1 ETPCommand0=2 -ETPTopicOrder0=1428 +ETPTopicOrder0=1972 -[External Topic Properties\MIDIMsgPitchWheelChange] +[External Topic Properties\pcre_version] Count=1 ETPCommand0=2 -ETPTopicOrder0=1429 +ETPTopicOrder0=766 -[External Topic Properties\MIDIMsgPolyKeyPressure] +[External Topic Properties\pcre_version_func] Count=1 ETPCommand0=2 -ETPTopicOrder0=1430 +ETPTopicOrder0=141 -[External Topic Properties\MIDIMsgProgramChange] +[External Topic Properties\PData] Count=1 ETPCommand0=2 -ETPTopicOrder0=1431 +ETPTopicOrder0=32 -[External Topic Properties\MIDIMsgSongPositionPtr] +[External Topic Properties\PDelphiSet] Count=1 ETPCommand0=2 -ETPTopicOrder0=1432 +ETPTopicOrder0=33 -[External Topic Properties\MIDIMsgSongSelect] +[External Topic Properties\PDFAState] Count=1 ETPCommand0=2 -ETPTopicOrder0=1433 +ETPTopicOrder0=34 -[External Topic Properties\MIDIMsgStartSequence] +[External Topic Properties\PDirectoryEntry] Count=1 ETPCommand0=2 -ETPTopicOrder0=1434 +ETPTopicOrder0=35 -[External Topic Properties\MIDIMsgStopSequence] +[External Topic Properties\PDirectoryHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=1435 +ETPTopicOrder0=36 -[External Topic Properties\MIDIMsgSysEx] +[External Topic Properties\PDIRTYUI] Count=1 ETPCommand0=2 -ETPTopicOrder0=1436 +ETPTopicOrder0=1973 -[External Topic Properties\MIDIMsgSystemReset] +[External Topic Properties\PDllVersionInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=1437 +ETPTopicOrder0=147 -[External Topic Properties\MIDIMsgTimingClock] +[External Topic Properties\PDWORD_PTR] Count=1 ETPCommand0=2 -ETPTopicOrder0=1438 +ETPTopicOrder0=37 -[External Topic Properties\MIDIMsgTuneRequest] +[External Topic Properties\PDWORD_PTRArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=1439 +ETPTopicOrder0=38 -[External Topic Properties\MIDINoteToStr@TMIDINote] +[External Topic Properties\PDWORDArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=625 +ETPTopicOrder0=149 -[External Topic Properties\MidiOut@Cardinal] +[External Topic Properties\PeBorDependedPackages@TFileName@TStrings@Boolean@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=626 +ETPTopicOrder0=906 -[External Topic Properties\MIDIOut@Cardinal] +[External Topic Properties\PeBorFormNames@TFileName@TStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=627 +ETPTopicOrder0=907 -[External Topic Properties\MidiOutCheck@MMResult] +[External Topic Properties\PeBorUnmangleName@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=628 +ETPTopicOrder0=910 -[External Topic Properties\MIDIPitchWheelCenter] +[External Topic Properties\PeBorUnmangleName@string@string@TJclBorUmDescription] Count=1 ETPCommand0=2 -ETPTopicOrder0=1440 +ETPTopicOrder0=908 -[External Topic Properties\MIDISingleNoteTuningData@TMIDINote@Single] +[External Topic Properties\PeBorUnmangleName@string@string@TJclBorUmDescription@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=629 +ETPTopicOrder0=909 -[External Topic Properties\MIME] +[External Topic Properties\PeClearCheckSum@TFileName] Count=1 ETPCommand0=2 -ETPTopicOrder0=14 +ETPTopicOrder0=911 -[External Topic Properties\MIME_BUFFER_SIZE] +[External Topic Properties\PeCreateRequiredImportList@TFileName@TStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=1441 +ETPTopicOrder0=912 -[External Topic Properties\MIME_DECODED_LINE_BREAK] +[External Topic Properties\PeDbgImgLibraryName32@THandle@TJclAddr32@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1442 +ETPTopicOrder0=913 -[External Topic Properties\MIME_ENCODED_LINE_BREAK] +[External Topic Properties\PeDbgImgNtHeaders32@THandle@TJclAddr32@TImageNtHeaders32] Count=1 ETPCommand0=2 -ETPTopicOrder0=1443 +ETPTopicOrder0=914 -[External Topic Properties\MimeDecode@TDynByteArray@Cardinal@Cardinal@TDynByteArray@Cardinal] +[External Topic Properties\PeExportedNames@TFileName@TStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=630 +ETPTopicOrder0=915 -[External Topic Properties\MimeDecode@TDynByteArray@Cardinal@TDynByteArray] +[External Topic Properties\PeExportedVariables@TFileName@TStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=631 +ETPTopicOrder0=916 -[External Topic Properties\MimeDecodeFile@AnsiString@AnsiString] +[External Topic Properties\PeFindMissingImports@TFileName@TStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=632 +ETPTopicOrder0=918 -[External Topic Properties\MimeDecodePartial@TDynByteArray@Cardinal@Cardinal@TDynByteArray@Cardinal@Cardinal@Cardinal] +[External Topic Properties\PeFindMissingImports@TStrings@TStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=634 +ETPTopicOrder0=917 -[External Topic Properties\MimeDecodePartial@TDynByteArray@Cardinal@TDynByteArray@Cardinal@Cardinal] +[External Topic Properties\PeGetNtHeaders32@TFileName@TImageNtHeaders32] Count=1 ETPCommand0=2 -ETPTopicOrder0=633 +ETPTopicOrder0=919 -[External Topic Properties\MimeDecodePartialEnd@TDynByteArray@Cardinal@Cardinal] +[External Topic Properties\PeGetNtHeaders64@TFileName@TImageNtHeaders64] Count=1 ETPCommand0=2 -ETPTopicOrder0=635 +ETPTopicOrder0=920 -[External Topic Properties\MimeDecodePartialEnd@TDynByteArray@Cardinal@Cardinal@Cardinal] +[External Topic Properties\PeInsertSection@TFileName@TStream@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=636 +ETPTopicOrder0=921 -[External Topic Properties\MimeEncode@TDynByteArray@Cardinal@Cardinal@TDynByteArray@Cardinal] +[External Topic Properties\PeMapFindResource@HMODULE@PChar@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=638 +ETPTopicOrder0=922 -[External Topic Properties\MimeEncode@TDynByteArray@Cardinal@TDynByteArray] +[External Topic Properties\PeMapImgExportedVariables@HMODULE@TStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=637 +ETPTopicOrder0=923 -[External Topic Properties\MimeEncodedSizeNoCRLF@Cardinal] +[External Topic Properties\PeMapImgFindSection32@PImageNtHeaders32@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=639 +ETPTopicOrder0=924 -[External Topic Properties\MimeEncodeFile@AnsiString@AnsiString] +[External Topic Properties\PeMapImgFindSection64@PImageNtHeaders64@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=640 +ETPTopicOrder0=925 -[External Topic Properties\MimeEncodeFileNoCRLF@AnsiString@AnsiString] +[External Topic Properties\PeMapImgFindSectionFromModule@Pointer@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=641 +ETPTopicOrder0=926 -[External Topic Properties\MimeEncodeFullLines@@Cardinal@] +[External Topic Properties\PeMapImgNtHeaders32@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=643 +ETPTopicOrder0=927 -[External Topic Properties\MimeEncodeFullLines@TDynByteArray@Cardinal@Cardinal@TDynByteArray@Cardinal] +[External Topic Properties\PeMapImgNtHeaders64@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=644 +ETPTopicOrder0=928 -[External Topic Properties\MimeEncodeFullLines@TDynByteArray@Cardinal@TDynByteArray] +[External Topic Properties\PeMapImgResolvePackageThunk@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=642 +ETPTopicOrder0=929 -[External Topic Properties\MimeEncodeNoCRLF@@Cardinal@] +[External Topic Properties\PeMapImgSections32@PImageNtHeaders32] Count=1 ETPCommand0=2 -ETPTopicOrder0=645 +ETPTopicOrder0=930 -[External Topic Properties\MimeEncodeNoCRLF@TDynByteArray@Cardinal@Cardinal@TDynByteArray@Cardinal] +[External Topic Properties\PeMapImgSections64@PImageNtHeaders64] Count=1 ETPCommand0=2 -ETPTopicOrder0=647 +ETPTopicOrder0=931 -[External Topic Properties\MimeEncodeNoCRLF@TDynByteArray@Cardinal@TDynByteArray] +[External Topic Properties\PeMapImgSize@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=646 +ETPTopicOrder0=932 -[External Topic Properties\MimeEncodeStreamNoCRLF@TStream@TStream] +[External Topic Properties\PeMapImgTarget@Pointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=648 +ETPTopicOrder0=933 -[External Topic Properties\MimeEncodeStringNoCRLF@AnsiString] +[External Topic Properties\PeReadLinkerTimeStamp@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=649 +ETPTopicOrder0=795 -[External Topic Properties\Min@Cardinal@Cardinal] +[External Topic Properties\PeReadLinkerTimeStamp@TFileName] Count=1 ETPCommand0=2 -ETPTopicOrder0=652 +ETPTopicOrder0=934 -[External Topic Properties\Min@Int64@Int64] +[External Topic Properties\PeRebaseImage32@TFileName@TJclAddr32@DWORD@DWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=654 +ETPTopicOrder0=935 -[External Topic Properties\Min@Integer@Integer] +[External Topic Properties\PeRebaseImage64@TFileName@TJclAddr64@DWORD@DWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=655 +ETPTopicOrder0=936 -[External Topic Properties\Min@Shortint@Shortint] +[External Topic Properties\PeResourceKindNames@TFileName@TJclPeResourceKind@TStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=650 +ETPTopicOrder0=937 -[External Topic Properties\Min@Smallint@Smallint] +[External Topic Properties\Personality32Bit] Count=1 ETPCommand0=2 -ETPTopicOrder0=651 +ETPTopicOrder0=998 -[External Topic Properties\Min@Word@Word] +[External Topic Properties\Personality64Bit] Count=1 ETPCommand0=2 -ETPTopicOrder0=653 +ETPTopicOrder0=999 -[External Topic Properties\MIN_LANMAN_MESSAGE_ID] +[External Topic Properties\PersonalityBCB] Count=1 ETPCommand0=2 -ETPTopicOrder0=1444 +ETPTopicOrder0=1000 -[External Topic Properties\MinedDoubleArray@Integer] +[External Topic Properties\PersonalityBDS] Count=1 ETPCommand0=2 -ETPTopicOrder0=656 +ETPTopicOrder0=1001 -[External Topic Properties\MinedSingleArray@Integer] +[External Topic Properties\PersonalityCSB] Count=1 ETPCommand0=2 -ETPTopicOrder0=657 +ETPTopicOrder0=1002 -[External Topic Properties\MinFloatingPoint] +[External Topic Properties\PersonalityDelphi] Count=1 ETPCommand0=2 -ETPTopicOrder0=1445 +ETPTopicOrder0=1003 -[External Topic Properties\MINIMUM_RESERVED_MANIFEST_RESOURCE_ID] +[External Topic Properties\PersonalityDelphiDotNet] Count=1 ETPCommand0=2 -ETPTopicOrder0=1446 +ETPTopicOrder0=1004 -[External Topic Properties\Miscellaneous] +[External Topic Properties\PersonalityDesign] Count=1 ETPCommand0=2 -ETPTopicOrder0=15 +ETPTopicOrder0=1005 -[External Topic Properties\MixerLeftRightToArray@Cardinal@Cardinal] +[External Topic Properties\PersonalityUnknown] Count=1 ETPCommand0=2 -ETPTopicOrder0=658 +ETPTopicOrder0=1006 -[External Topic Properties\MMCheck@MCIERROR@string] +[External Topic Properties\PersonalityVB] Count=1 ETPCommand0=2 -ETPTopicOrder0=659 +ETPTopicOrder0=1007 -[External Topic Properties\MMX_FLAG] +[External Topic Properties\PeUpdateLinkerTimeStamp@string@TDateTime] Count=1 ETPCommand0=2 -ETPTopicOrder0=1447 +ETPTopicOrder0=799 -[External Topic Properties\MoveArray@TDynIInterfaceArray@Integer@Integer@Integer] +[External Topic Properties\PeUpdateLinkerTimeStamp@TFileName@TDateTime] Count=1 ETPCommand0=2 -ETPTopicOrder0=660 +ETPTopicOrder0=938 -[External Topic Properties\MoveArray@TDynIntegerArray@Integer@Integer@Integer] +[External Topic Properties\PFILE_ALLOCATED_RANGE_BUFFER] Count=1 ETPCommand0=2 -ETPTopicOrder0=661 +ETPTopicOrder0=150 -[External Topic Properties\MoveArray@TDynObjectArray@Integer@Integer@Integer] +[External Topic Properties\PFILE_ZERO_DATA_INFORMATION] Count=1 ETPCommand0=2 -ETPTopicOrder0=662 +ETPTopicOrder0=151 -[External Topic Properties\MoveArray@TDynStringArray@Integer@Integer@Integer] +[External Topic Properties\PFIND_NAME_BUFFER] Count=1 ETPCommand0=2 -ETPTopicOrder0=663 +ETPTopicOrder0=152 -[External Topic Properties\MoveChar@string@Integer@string@Integer@Integer] +[External Topic Properties\PFIND_NAME_HEADER] Count=1 ETPCommand0=2 -ETPTopicOrder0=664 +ETPTopicOrder0=153 -[External Topic Properties\MoveWideChar@@@Integer] +[External Topic Properties\PFindNameBuffer] Count=1 ETPCommand0=2 -ETPTopicOrder0=665 +ETPTopicOrder0=154 -[External Topic Properties\MS_NBF] +[External Topic Properties\PFindNameHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=1448 +ETPTopicOrder0=155 -[External Topic Properties\mscoree_dll] +[External Topic Properties\PFloat] Count=1 ETPCommand0=2 -ETPTopicOrder0=1449 +ETPTopicOrder0=39 -[External Topic Properties\MSILIB] +[External Topic Properties\PFloat32] Count=1 ETPCommand0=2 -ETPTopicOrder0=1450 +ETPTopicOrder0=40 -[External Topic Properties\MSR_FLAG] +[External Topic Properties\PFloat64] Count=1 ETPCommand0=2 -ETPTopicOrder0=1451 +ETPTopicOrder0=41 -[External Topic Properties\MTRR_FLAG] +[External Topic Properties\PFloat80] Count=1 ETPCommand0=2 -ETPTopicOrder0=1452 +ETPTopicOrder0=42 -[External Topic Properties\MultiMedia] +[External Topic Properties\PFPO_DATA] Count=1 ETPCommand0=2 -ETPTopicOrder0=16 +ETPTopicOrder0=160 -[External Topic Properties\MultiSzDup@PMultiSz] +[External Topic Properties\PFpoData] Count=1 ETPCommand0=2 -ETPTopicOrder0=666 +ETPTopicOrder0=161 -[External Topic Properties\MultiSzLength@PMultiSz] +[External Topic Properties\PGE_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=667 +ETPTopicOrder0=1008 -[External Topic Properties\MXCSR_DAZ] +[External Topic Properties\PGlobalTypeInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=1453 +ETPTopicOrder0=43 -[External Topic Properties\MXCSR_DE] +[External Topic Properties\PGROUP_INFO_0] Count=1 ETPCommand0=2 -ETPTopicOrder0=1454 +ETPTopicOrder0=163 -[External Topic Properties\MXCSR_DM] +[External Topic Properties\PGROUP_INFO_1] Count=1 ETPCommand0=2 -ETPTopicOrder0=1455 +ETPTopicOrder0=164 -[External Topic Properties\MXCSR_FZ] +[External Topic Properties\PGroupInfo0] Count=1 ETPCommand0=2 -ETPTopicOrder0=1456 +ETPTopicOrder0=165 -[External Topic Properties\MXCSR_IE] +[External Topic Properties\PGroupInfo1] Count=1 ETPCommand0=2 -ETPTopicOrder0=1457 +ETPTopicOrder0=166 -[External Topic Properties\MXCSR_IM] +[External Topic Properties\PHashArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=1458 +ETPTopicOrder0=44 -[External Topic Properties\MXCSR_OE] +[External Topic Properties\PHashNode] Count=1 ETPCommand0=2 -ETPTopicOrder0=1459 +ETPTopicOrder0=45 -[External Topic Properties\MXCSR_OM] +[External Topic Properties\PHMODULE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1460 +ETPTopicOrder0=169 -[External Topic Properties\MXCSR_PE] +[External Topic Properties\Pi] Count=1 ETPCommand0=2 -ETPTopicOrder0=1461 +ETPTopicOrder0=1009 -[External Topic Properties\MXCSR_PM] +[External Topic Properties\PID_BEHAVIOR] Count=1 ETPCommand0=2 -ETPTopicOrder0=1462 +ETPTopicOrder0=1986 -[External Topic Properties\MXCSR_RC] +[External Topic Properties\PID_CODEPAGE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1463 +ETPTopicOrder0=1987 -[External Topic Properties\MXCSR_RC1] +[External Topic Properties\PID_COMPUTERNAME] Count=1 ETPCommand0=2 -ETPTopicOrder0=1464 +ETPTopicOrder0=1988 -[External Topic Properties\MXCSR_RC2] +[External Topic Properties\PID_CONTROLPANEL_CATEGORY] Count=1 ETPCommand0=2 -ETPTopicOrder0=1465 +ETPTopicOrder0=1989 -[External Topic Properties\MXCSR_UE] +[External Topic Properties\PID_DESCRIPTIONID] Count=1 ETPCommand0=2 -ETPTopicOrder0=1466 +ETPTopicOrder0=1990 -[External Topic Properties\MXCSR_UM] +[External Topic Properties\PID_DICTIONARY] Count=1 ETPCommand0=2 -ETPTopicOrder0=1467 +ETPTopicOrder0=1991 -[External Topic Properties\MXCSR_ZE] +[External Topic Properties\PID_DISPLACED_DATE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1468 +ETPTopicOrder0=1992 -[External Topic Properties\MXCSR_ZM] +[External Topic Properties\PID_DISPLACED_FROM] Count=1 ETPCommand0=2 -ETPTopicOrder0=1469 +ETPTopicOrder0=1993 -[External Topic Properties\NA_LoopId] +[External Topic Properties\PID_DISPLAY_PROPERTIES] Count=1 ETPCommand0=2 -ETPTopicOrder0=1470 +ETPTopicOrder0=1994 -[External Topic Properties\NAME_BUFFER] +[External Topic Properties\PID_FINDDATA] Count=1 ETPCommand0=2 -ETPTopicOrder0=95 +ETPTopicOrder0=1995 -[External Topic Properties\NAME_FLAGS_MASK] +[External Topic Properties\PID_FIRST_NAME_DEFAULT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1471 +ETPTopicOrder0=1996 -[External Topic Properties\NaN] +[External Topic Properties\PID_FIRST_USABLE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1472 +ETPTopicOrder0=1997 -[External Topic Properties\NATIVE_TYPE_MAX_CB] +[External Topic Properties\PID_HTMLINFOTIPFILE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1473 +ETPTopicOrder0=1998 -[External Topic Properties\NCB] +[External Topic Properties\PID_ILLEGAL] Count=1 ETPCommand0=2 -ETPTopicOrder0=96 +ETPTopicOrder0=1999 -[External Topic Properties\NCBACTION] +[External Topic Properties\PID_INTROTEXT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1474 +ETPTopicOrder0=2000 -[External Topic Properties\NCBADDGRNAME] +[External Topic Properties\PID_LINK_TARGET] Count=1 ETPCommand0=2 -ETPTopicOrder0=1475 +ETPTopicOrder0=2001 -[External Topic Properties\NCBADDNAME] +[External Topic Properties\PID_LOCALE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1476 +ETPTopicOrder0=2002 -[External Topic Properties\NCBCALL] +[External Topic Properties\PID_MAX_READONLY] Count=1 ETPCommand0=2 -ETPTopicOrder0=1477 +ETPTopicOrder0=2003 -[External Topic Properties\NCBCANCEL] +[External Topic Properties\PID_MIN_READONLY] Count=1 ETPCommand0=2 -ETPTopicOrder0=1478 +ETPTopicOrder0=2004 -[External Topic Properties\NCBCHAINSEND] +[External Topic Properties\PID_MISC_ACCESSCOUNT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1479 +ETPTopicOrder0=2005 -[External Topic Properties\NCBCHAINSENDNA] +[External Topic Properties\PID_MISC_OWNER] Count=1 ETPCommand0=2 -ETPTopicOrder0=1480 +ETPTopicOrder0=2006 -[External Topic Properties\NCBDELNAME] +[External Topic Properties\PID_MISC_PICS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1481 +ETPTopicOrder0=2007 -[External Topic Properties\NCBDGRECV] +[External Topic Properties\PID_MISC_STATUS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1482 +ETPTopicOrder0=2008 -[External Topic Properties\NCBDGRECVBC] +[External Topic Properties\PID_MODIFY_TIME] Count=1 ETPCommand0=2 -ETPTopicOrder0=1483 +ETPTopicOrder0=2009 -[External Topic Properties\NCBDGSEND] +[External Topic Properties\PID_MSIRESTRICT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1484 +ETPTopicOrder0=2010 -[External Topic Properties\NCBDGSENDBC] +[External Topic Properties\PID_MSISOURCE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1485 +ETPTopicOrder0=2011 -[External Topic Properties\NCBFINDNAME] +[External Topic Properties\PID_MSIVERSION] Count=1 ETPCommand0=2 -ETPTopicOrder0=1486 +ETPTopicOrder0=2012 -[External Topic Properties\NCBHANGUP] +[External Topic Properties\PID_NETRESOURCE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1487 +ETPTopicOrder0=2013 -[External Topic Properties\NCBLANSTALERT] +[External Topic Properties\PID_NETWORKLOCATION] Count=1 ETPCommand0=2 -ETPTopicOrder0=1488 +ETPTopicOrder0=2014 -[External Topic Properties\NCBLISTEN] +[External Topic Properties\PID_QUERY_RANK] Count=1 ETPCommand0=2 -ETPTopicOrder0=1489 +ETPTopicOrder0=2015 -[External Topic Properties\NCBRECV] +[External Topic Properties\PID_SECURITY] Count=1 ETPCommand0=2 -ETPTopicOrder0=1490 +ETPTopicOrder0=2016 -[External Topic Properties\NCBRECVANY] +[External Topic Properties\PID_SHARE_CSC_STATUS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1491 +ETPTopicOrder0=2017 -[External Topic Properties\NCBSEND] +[External Topic Properties\PID_SYNC_COPY_IN] Count=1 ETPCommand0=2 -ETPTopicOrder0=1492 +ETPTopicOrder0=2018 -[External Topic Properties\NCBSENDNA] +[External Topic Properties\PID_VOLUME_CAPACITY] Count=1 ETPCommand0=2 -ETPTopicOrder0=1493 +ETPTopicOrder0=2019 -[External Topic Properties\NCBSSTAT] +[External Topic Properties\PID_VOLUME_FILESYSTEM] Count=1 ETPCommand0=2 -ETPTopicOrder0=1494 +ETPTopicOrder0=2020 -[External Topic Properties\NCBTRACE] +[External Topic Properties\PID_VOLUME_FREE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1495 +ETPTopicOrder0=2021 -[External Topic Properties\NCBUNLINK] +[External Topic Properties\PID_WHICHFOLDER] Count=1 ETPCommand0=2 -ETPTopicOrder0=1496 +ETPTopicOrder0=2022 -[External Topic Properties\Neg@TPolarComplex] +[External Topic Properties\PIDASI_AVG_DATA_RATE] Count=1 ETPCommand0=2 -ETPTopicOrder0=668 +ETPTopicOrder0=2023 -[External Topic Properties\Neg@TRectComplex] +[External Topic Properties\PIDASI_CHANNEL_COUNT] Count=1 ETPCommand0=2 -ETPTopicOrder0=669 +ETPTopicOrder0=2024 -[External Topic Properties\NegInfinity] +[External Topic Properties\PIDASI_COMPRESSION] Count=1 ETPCommand0=2 -ETPTopicOrder0=1497 +ETPTopicOrder0=2025 -[External Topic Properties\NERR_AccountExpired] +[External Topic Properties\PIDASI_FORMAT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1498 +ETPTopicOrder0=2026 -[External Topic Properties\NERR_AccountLockedOut] +[External Topic Properties\PIDASI_SAMPLE_RATE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1499 +ETPTopicOrder0=2027 -[External Topic Properties\NERR_AccountUndefined] +[External Topic Properties\PIDASI_SAMPLE_SIZE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1500 +ETPTopicOrder0=2028 -[External Topic Properties\NERR_AcctLimitExceeded] +[External Topic Properties\PIDASI_STREAM_NAME] Count=1 ETPCommand0=2 -ETPTopicOrder0=1501 +ETPTopicOrder0=2029 -[External Topic Properties\NERR_ACFFileIOFail] +[External Topic Properties\PIDASI_STREAM_NUMBER] Count=1 ETPCommand0=2 -ETPTopicOrder0=1502 +ETPTopicOrder0=2030 -[External Topic Properties\NERR_ACFNoParent] +[External Topic Properties\PIDASI_TIMELENGTH] Count=1 ETPCommand0=2 -ETPTopicOrder0=1503 +ETPTopicOrder0=2031 -[External Topic Properties\NERR_ACFNoRoom] +[External Topic Properties\PIDDI_THUMBNAIL] Count=1 ETPCommand0=2 -ETPTopicOrder0=1504 +ETPTopicOrder0=2032 -[External Topic Properties\NERR_ACFNotFound] +[External Topic Properties\PIDDRSI_DESCRIPTION] Count=1 ETPCommand0=2 -ETPTopicOrder0=1505 +ETPTopicOrder0=2033 -[External Topic Properties\NERR_ACFNotLoaded] +[External Topic Properties\PIDDRSI_PLAYCOUNT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1506 +ETPTopicOrder0=2034 -[External Topic Properties\NERR_ACFTooManyLists] +[External Topic Properties\PIDDRSI_PLAYEXPIRES] Count=1 ETPCommand0=2 -ETPTopicOrder0=1507 +ETPTopicOrder0=2035 -[External Topic Properties\NERR_ActiveConns] +[External Topic Properties\PIDDRSI_PLAYSTARTS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1508 +ETPTopicOrder0=2036 -[External Topic Properties\NERR_AddForwarded] +[External Topic Properties\PIDDRSI_PROTECTED] Count=1 ETPCommand0=2 -ETPTopicOrder0=1509 +ETPTopicOrder0=2037 -[External Topic Properties\NERR_AlertExists] +[External Topic Properties\PIDDSI_BYTECOUNT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1510 +ETPTopicOrder0=2038 -[External Topic Properties\NERR_AlreadyExists] +[External Topic Properties\PIDDSI_CATEGORY] Count=1 ETPCommand0=2 -ETPTopicOrder0=1511 +ETPTopicOrder0=2039 -[External Topic Properties\NERR_AlreadyForwarded] +[External Topic Properties\PIDDSI_COMPANY] Count=1 ETPCommand0=2 -ETPTopicOrder0=1512 +ETPTopicOrder0=2040 -[External Topic Properties\NERR_AlreadyLoggedOn] +[External Topic Properties\PIDDSI_DOCPARTS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1513 +ETPTopicOrder0=2041 -[External Topic Properties\NERR_BadAsgType] +[External Topic Properties\PIDDSI_HEADINGPAIR] Count=1 ETPCommand0=2 -ETPTopicOrder0=1514 +ETPTopicOrder0=2042 -[External Topic Properties\NERR_BadComponent] +[External Topic Properties\PIDDSI_HIDDENCOUNT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1515 +ETPTopicOrder0=2043 -[External Topic Properties\NERR_BadControlRecv] +[External Topic Properties\PIDDSI_LINECOUNT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1516 +ETPTopicOrder0=2044 -[External Topic Properties\NERR_BadDest] +[External Topic Properties\PIDDSI_LINKSDIRTY] Count=1 ETPCommand0=2 -ETPTopicOrder0=1517 +ETPTopicOrder0=2045 -[External Topic Properties\NERR_BadDev] +[External Topic Properties\PIDDSI_MANAGER] Count=1 ETPCommand0=2 -ETPTopicOrder0=1518 +ETPTopicOrder0=2046 -[External Topic Properties\NERR_BadDevString] +[External Topic Properties\PIDDSI_MMCLIPCOUNT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1519 +ETPTopicOrder0=2047 -[External Topic Properties\NERR_BadDosFunction] +[External Topic Properties\PIDDSI_NOTECOUNT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1520 +ETPTopicOrder0=2048 -[External Topic Properties\NERR_BadDosRetCode] +[External Topic Properties\PIDDSI_PARCOUNT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1521 +ETPTopicOrder0=2049 -[External Topic Properties\NERR_BadEventName] +[External Topic Properties\PIDDSI_PRESFORMAT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1522 +ETPTopicOrder0=2050 -[External Topic Properties\NERR_BadFileCheckSum] +[External Topic Properties\PIDDSI_SCALE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1523 +ETPTopicOrder0=2051 -[External Topic Properties\NERR_BadPassword] +[External Topic Properties\PIDDSI_SLIDECOUNT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1524 +ETPTopicOrder0=2052 -[External Topic Properties\NERR_BadPasswordCore] +[External Topic Properties\PIDMSI_COPYRIGHT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1525 +ETPTopicOrder0=2053 -[External Topic Properties\NERR_BadQueueDevString] +[External Topic Properties\PIDMSI_EDITOR] Count=1 ETPCommand0=2 -ETPTopicOrder0=1526 +ETPTopicOrder0=2054 -[External Topic Properties\NERR_BadQueuePriority] +[External Topic Properties\PIDMSI_OWNER] Count=1 ETPCommand0=2 -ETPTopicOrder0=1527 +ETPTopicOrder0=2055 -[External Topic Properties\NERR_BadReceive] +[External Topic Properties\PIDMSI_PRODUCTION] Count=1 ETPCommand0=2 -ETPTopicOrder0=1528 +ETPTopicOrder0=2056 -[External Topic Properties\NERR_BadRecipient] +[External Topic Properties\PIDMSI_PROJECT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1529 +ETPTopicOrder0=2057 -[External Topic Properties\NERR_BadServiceName] +[External Topic Properties\PIDMSI_RATING] Count=1 ETPCommand0=2 -ETPTopicOrder0=1530 +ETPTopicOrder0=2058 -[External Topic Properties\NERR_BadServiceProgName] +[External Topic Properties\PIDMSI_SEQUENCE_NO] Count=1 ETPCommand0=2 -ETPTopicOrder0=1531 +ETPTopicOrder0=2059 -[External Topic Properties\NERR_BadSource] +[External Topic Properties\PIDMSI_SOURCE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1532 +ETPTopicOrder0=2060 -[External Topic Properties\NERR_BadTransactConfig] +[External Topic Properties\PIDMSI_STATUS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1533 +ETPTopicOrder0=2061 -[External Topic Properties\NERR_BadUasConfig] +[External Topic Properties\PIDMSI_SUPPLIER] Count=1 ETPCommand0=2 -ETPTopicOrder0=1534 +ETPTopicOrder0=2062 -[External Topic Properties\NERR_BadUsername] +[External Topic Properties\PIDSI_ALBUM] Count=1 ETPCommand0=2 -ETPTopicOrder0=1535 +ETPTopicOrder0=2063 -[External Topic Properties\NERR_BASE] +[External Topic Properties\PIDSI_APPNAME] Count=1 ETPCommand0=2 -ETPTopicOrder0=1536 +ETPTopicOrder0=2064 -[External Topic Properties\NERR_BrowserConfiguredToNotRun] +[External Topic Properties\PIDSI_ARTIST] Count=1 ETPCommand0=2 -ETPTopicOrder0=1537 +ETPTopicOrder0=2065 -[External Topic Properties\NERR_BrowserNotStarted] +[External Topic Properties\PIDSI_AUTHOR] Count=1 ETPCommand0=2 -ETPTopicOrder0=1538 +ETPTopicOrder0=2066 -[External Topic Properties\NERR_BrowserTableIncomplete] +[External Topic Properties\PIDSI_CHARCOUNT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1539 +ETPTopicOrder0=2067 -[External Topic Properties\NERR_BufTooSmall] +[External Topic Properties\PIDSI_COMMENT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1540 +ETPTopicOrder0=2068 -[External Topic Properties\NERR_CallingRplSrvr] +[External Topic Properties\PIDSI_COMMENTS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1541 +ETPTopicOrder0=2069 -[External Topic Properties\NERR_CanNotGrowSegment] +[External Topic Properties\PIDSI_CREATE_DTM] Count=1 ETPCommand0=2 -ETPTopicOrder0=1542 +ETPTopicOrder0=2070 -[External Topic Properties\NERR_CanNotGrowUASFile] +[External Topic Properties\PIDSI_DOC_SECURITY] Count=1 ETPCommand0=2 -ETPTopicOrder0=1543 +ETPTopicOrder0=2071 -[External Topic Properties\NERR_CantConnectRplSrvr] +[External Topic Properties\PIDSI_EDITTIME] Count=1 ETPCommand0=2 -ETPTopicOrder0=1544 +ETPTopicOrder0=2072 -[External Topic Properties\NERR_CantOpenImageFile] +[External Topic Properties\PIDSI_GENRE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1545 +ETPTopicOrder0=2073 -[External Topic Properties\NERR_CantType] +[External Topic Properties\PIDSI_KEYWORDS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1546 +ETPTopicOrder0=2074 -[External Topic Properties\NERR_CfgCompNotFound] +[External Topic Properties\PIDSI_LASTAUTHOR] Count=1 ETPCommand0=2 -ETPTopicOrder0=1547 +ETPTopicOrder0=2075 -[External Topic Properties\NERR_CfgParamNotFound] +[External Topic Properties\PIDSI_LASTPRINTED] Count=1 ETPCommand0=2 -ETPTopicOrder0=1548 +ETPTopicOrder0=2076 -[External Topic Properties\NERR_ClientNameNotFound] +[External Topic Properties\PIDSI_LASTSAVE_DTM] Count=1 ETPCommand0=2 -ETPTopicOrder0=1549 +ETPTopicOrder0=2077 -[External Topic Properties\NERR_CommDevInUse] +[External Topic Properties\PIDSI_LYRICS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1550 +ETPTopicOrder0=2078 -[External Topic Properties\NERR_ComputerAccountNotFound] +[External Topic Properties\PIDSI_PAGECOUNT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1551 +ETPTopicOrder0=2079 -[External Topic Properties\NERR_DatabaseUpToDate] +[External Topic Properties\PIDSI_REVNUMBER] Count=1 ETPCommand0=2 -ETPTopicOrder0=1552 +ETPTopicOrder0=2080 -[External Topic Properties\NERR_DataTypeInvalid] +[External Topic Properties\PIDSI_SONGTITLE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1553 +ETPTopicOrder0=2081 -[External Topic Properties\NERR_DCNotFound] +[External Topic Properties\PIDSI_SUBJECT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1554 +ETPTopicOrder0=2082 -[External Topic Properties\NERR_DefaultJoinRequired] +[External Topic Properties\PIDSI_TEMPLATE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1555 +ETPTopicOrder0=2083 -[External Topic Properties\NERR_DelComputerName] +[External Topic Properties\PIDSI_THUMBNAIL] Count=1 ETPCommand0=2 -ETPTopicOrder0=1556 +ETPTopicOrder0=2084 -[External Topic Properties\NERR_DeleteLater] +[External Topic Properties\PIDSI_TITLE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1557 +ETPTopicOrder0=2085 -[External Topic Properties\NERR_DestExists] +[External Topic Properties\PIDSI_TRACK] Count=1 ETPCommand0=2 -ETPTopicOrder0=1558 +ETPTopicOrder0=2086 -[External Topic Properties\NERR_DestIdle] +[External Topic Properties\PIDSI_WORDCOUNT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1559 +ETPTopicOrder0=2087 -[External Topic Properties\NERR_DestInvalidOp] +[External Topic Properties\PIDSI_YEAR] Count=1 ETPCommand0=2 -ETPTopicOrder0=1560 +ETPTopicOrder0=2088 -[External Topic Properties\NERR_DestInvalidState] +[External Topic Properties\PIDVSI_COMPRESSION] Count=1 ETPCommand0=2 -ETPTopicOrder0=1561 +ETPTopicOrder0=2089 -[External Topic Properties\NERR_DestNoRoom] +[External Topic Properties\PIDVSI_DATA_RATE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1562 +ETPTopicOrder0=2090 -[External Topic Properties\NERR_DestNotFound] +[External Topic Properties\PIDVSI_FRAME_COUNT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1563 +ETPTopicOrder0=2091 -[External Topic Properties\NERR_DeviceIsShared] +[External Topic Properties\PIDVSI_FRAME_HEIGHT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1564 +ETPTopicOrder0=2092 -[External Topic Properties\NERR_DeviceNotShared] +[External Topic Properties\PIDVSI_FRAME_RATE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1565 +ETPTopicOrder0=2093 -[External Topic Properties\NERR_DeviceShareConflict] +[External Topic Properties\PIDVSI_FRAME_WIDTH] Count=1 ETPCommand0=2 -ETPTopicOrder0=1566 +ETPTopicOrder0=2094 -[External Topic Properties\NERR_DevInUse] +[External Topic Properties\PIDVSI_SAMPLE_SIZE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1567 +ETPTopicOrder0=2095 -[External Topic Properties\NERR_DevInvalidOpCode] +[External Topic Properties\PIDVSI_STREAM_NAME] Count=1 ETPCommand0=2 -ETPTopicOrder0=1568 +ETPTopicOrder0=2096 -[External Topic Properties\NERR_DevNotFound] +[External Topic Properties\PIDVSI_STREAM_NUMBER] Count=1 ETPCommand0=2 -ETPTopicOrder0=1569 +ETPTopicOrder0=2097 -[External Topic Properties\NERR_DevNotOpen] +[External Topic Properties\PIDVSI_TIMELENGTH] Count=1 ETPCommand0=2 -ETPTopicOrder0=1570 +ETPTopicOrder0=2098 -[External Topic Properties\NERR_DevNotRedirected] +[External Topic Properties\PiExt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1571 +ETPTopicOrder0=1010 -[External Topic Properties\NERR_DfsAlreadyShared] +[External Topic Properties\PIMAGE_ARCHITECTURE_ENTRY] Count=1 ETPCommand0=2 -ETPTopicOrder0=1572 +ETPTopicOrder0=170 -[External Topic Properties\NERR_DfsBadRenamePath] +[External Topic Properties\PIMAGE_ARCHITECTURE_HEADER] Count=1 ETPCommand0=2 -ETPTopicOrder0=1573 +ETPTopicOrder0=171 -[External Topic Properties\NERR_DfsCantCreateJunctionPoint] +[External Topic Properties\PIMAGE_ARCHIVE_MEMBER_HEADER] Count=1 ETPCommand0=2 -ETPTopicOrder0=1574 +ETPTopicOrder0=172 -[External Topic Properties\NERR_DfsCantRemoveDfsRoot] +[External Topic Properties\PIMAGE_BASE_RELOCATION] Count=1 ETPCommand0=2 -ETPTopicOrder0=1575 +ETPTopicOrder0=173 -[External Topic Properties\NERR_DfsCantRemoveLastServerShare] +[External Topic Properties\PIMAGE_BOUND_FORWARDER_REF] Count=1 ETPCommand0=2 -ETPTopicOrder0=1576 +ETPTopicOrder0=174 -[External Topic Properties\NERR_DfsChildOrParentInDfs] +[External Topic Properties\PIMAGE_BOUND_IMPORT_DESCRIPTOR] Count=1 ETPCommand0=2 -ETPTopicOrder0=1577 +ETPTopicOrder0=175 -[External Topic Properties\NERR_DfsCyclicalName] +[External Topic Properties\PIMAGE_COFF_SYMBOLS_HEADER] Count=1 ETPCommand0=2 -ETPTopicOrder0=1578 +ETPTopicOrder0=176 -[External Topic Properties\NERR_DfsDataIsIdentical] +[External Topic Properties\PIMAGE_COR20_HEADER] Count=1 ETPCommand0=2 -ETPTopicOrder0=1579 +ETPTopicOrder0=177 -[External Topic Properties\NERR_DfsDuplicateService] +[External Topic Properties\PIMAGE_DATA_DIRECTORY] Count=1 ETPCommand0=2 -ETPTopicOrder0=1580 +ETPTopicOrder0=178 -[External Topic Properties\NERR_DfsInconsistent] +[External Topic Properties\PIMAGE_DEBUG_MISC] Count=1 ETPCommand0=2 -ETPTopicOrder0=1581 +ETPTopicOrder0=179 -[External Topic Properties\NERR_DfsInternalCorruption] +[External Topic Properties\PIMAGE_EXPORT_DIRECTORY] Count=1 ETPCommand0=2 -ETPTopicOrder0=1582 +ETPTopicOrder0=180 -[External Topic Properties\NERR_DfsInternalError] +[External Topic Properties\PIMAGE_FILE_HEADER] Count=1 ETPCommand0=2 -ETPTopicOrder0=1583 +ETPTopicOrder0=181 -[External Topic Properties\NERR_DfsLeafVolume] +[External Topic Properties\PIMAGE_FUNCTION_ENTRY] Count=1 ETPCommand0=2 -ETPTopicOrder0=1584 +ETPTopicOrder0=182 -[External Topic Properties\NERR_DfsNoSuchServer] +[External Topic Properties\PIMAGE_FUNCTION_ENTRY64] Count=1 ETPCommand0=2 -ETPTopicOrder0=1585 +ETPTopicOrder0=183 -[External Topic Properties\NERR_DfsNoSuchShare] +[External Topic Properties\PIMAGE_IMPORT_BY_NAME] Count=1 ETPCommand0=2 -ETPTopicOrder0=1586 +ETPTopicOrder0=184 -[External Topic Properties\NERR_DfsNoSuchVolume] +[External Topic Properties\PIMAGE_IMPORT_DESCRIPTOR] Count=1 ETPCommand0=2 -ETPTopicOrder0=1587 +ETPTopicOrder0=185 -[External Topic Properties\NERR_DfsNotALeafVolume] +[External Topic Properties\PIMAGE_LINENUMBER] Count=1 ETPCommand0=2 -ETPTopicOrder0=1588 +ETPTopicOrder0=186 -[External Topic Properties\NERR_DfsNotSupportedInServerDfs] +[External Topic Properties\PIMAGE_LOAD_CONFIG_DIRECTORY] Count=1 ETPCommand0=2 -ETPTopicOrder0=1589 +ETPTopicOrder0=187 -[External Topic Properties\NERR_DfsServerNotDfsAware] +[External Topic Properties\PIMAGE_LOAD_CONFIG_DIRECTORY32] Count=1 ETPCommand0=2 -ETPTopicOrder0=1590 +ETPTopicOrder0=188 -[External Topic Properties\NERR_DfsServerUpgraded] +[External Topic Properties\PIMAGE_LOAD_CONFIG_DIRECTORY64] Count=1 ETPCommand0=2 -ETPTopicOrder0=1591 +ETPTopicOrder0=189 -[External Topic Properties\NERR_DfsVolumeAlreadyExists] +[External Topic Properties\PIMAGE_NT_HEADERS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1592 +ETPTopicOrder0=190 -[External Topic Properties\NERR_DfsVolumeDataCorrupt] +[External Topic Properties\PIMAGE_NT_HEADERS32] Count=1 ETPCommand0=2 -ETPTopicOrder0=1593 +ETPTopicOrder0=191 -[External Topic Properties\NERR_DfsVolumeHasMultipleServers] +[External Topic Properties\PIMAGE_NT_HEADERS64] Count=1 ETPCommand0=2 -ETPTopicOrder0=1594 +ETPTopicOrder0=192 -[External Topic Properties\NERR_DfsVolumeIsInterDfs] +[External Topic Properties\PIMAGE_OPTIONAL_HEADER32] Count=1 ETPCommand0=2 -ETPTopicOrder0=1595 +ETPTopicOrder0=193 -[External Topic Properties\NERR_DfsVolumeIsOffline] +[External Topic Properties\PIMAGE_OPTIONAL_HEADER64] Count=1 ETPCommand0=2 -ETPTopicOrder0=1596 +ETPTopicOrder0=194 -[External Topic Properties\NERR_DifferentServers] +[External Topic Properties\PIMAGE_RESOURCE_DATA_ENTRY] Count=1 ETPCommand0=2 -ETPTopicOrder0=1597 +ETPTopicOrder0=195 -[External Topic Properties\NERR_DriverNotFound] +[External Topic Properties\PIMAGE_RESOURCE_DIR_STRING_U] Count=1 ETPCommand0=2 -ETPTopicOrder0=1598 +ETPTopicOrder0=196 -[External Topic Properties\NERR_DuplicateName] +[External Topic Properties\PIMAGE_RESOURCE_DIRECTORY] Count=1 ETPCommand0=2 -ETPTopicOrder0=1599 +ETPTopicOrder0=197 -[External Topic Properties\NERR_DuplicateShare] +[External Topic Properties\PIMAGE_RESOURCE_DIRECTORY_ENTRY] Count=1 ETPCommand0=2 -ETPTopicOrder0=1600 +ETPTopicOrder0=198 -[External Topic Properties\NERR_DupNameReboot] +[External Topic Properties\PIMAGE_RESOURCE_DIRECTORY_STRING] Count=1 ETPCommand0=2 -ETPTopicOrder0=1601 +ETPTopicOrder0=199 -[External Topic Properties\NERR_ErrCommRunSrv] +[External Topic Properties\PIMAGE_ROM_HEADERS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1602 +ETPTopicOrder0=200 -[External Topic Properties\NERR_ErrorExecingGhost] +[External Topic Properties\PIMAGE_ROM_OPTIONAL_HEADER] Count=1 ETPCommand0=2 -ETPTopicOrder0=1603 +ETPTopicOrder0=201 -[External Topic Properties\NERR_ExecFailure] +[External Topic Properties\PIMAGE_SECTION_HEADER] Count=1 ETPCommand0=2 -ETPTopicOrder0=1604 +ETPTopicOrder0=202 -[External Topic Properties\NERR_FileIdNotFound] +[External Topic Properties\PIMAGE_SEPARATE_DEBUG_HEADER] Count=1 ETPCommand0=2 -ETPTopicOrder0=1605 +ETPTopicOrder0=203 -[External Topic Properties\NERR_GroupExists] +[External Topic Properties\PIMAGE_THUNK_DATA] Count=1 ETPCommand0=2 -ETPTopicOrder0=1606 +ETPTopicOrder0=204 -[External Topic Properties\NERR_GroupNotFound] +[External Topic Properties\PIMAGE_THUNK_DATA32] Count=1 ETPCommand0=2 -ETPTopicOrder0=1607 +ETPTopicOrder0=205 -[External Topic Properties\NERR_GrpMsgProcessor] +[External Topic Properties\PIMAGE_THUNK_DATA64] Count=1 ETPCommand0=2 -ETPTopicOrder0=1608 +ETPTopicOrder0=206 -[External Topic Properties\NERR_ImageParamErr] +[External Topic Properties\PIMAGE_TLS_CALLBACK] Count=1 ETPCommand0=2 -ETPTopicOrder0=1609 +ETPTopicOrder0=207 -[External Topic Properties\NERR_IncompleteDel] +[External Topic Properties\PIMAGE_TLS_DIRECTORY] Count=1 ETPCommand0=2 -ETPTopicOrder0=1610 +ETPTopicOrder0=208 -[External Topic Properties\NERR_InternalError] +[External Topic Properties\PIMAGE_TLS_DIRECTORY32] Count=1 ETPCommand0=2 -ETPTopicOrder0=1611 +ETPTopicOrder0=209 -[External Topic Properties\NERR_InUseBySpooler] +[External Topic Properties\PIMAGE_TLS_DIRECTORY64] Count=1 ETPCommand0=2 -ETPTopicOrder0=1612 +ETPTopicOrder0=210 -[External Topic Properties\NERR_InvalidAPI] +[External Topic Properties\PImageArchitectureEntry] Count=1 ETPCommand0=2 -ETPTopicOrder0=1613 +ETPTopicOrder0=211 -[External Topic Properties\NERR_InvalidComputer] +[External Topic Properties\PImageArchitectureHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=1614 +ETPTopicOrder0=212 -[External Topic Properties\NERR_InvalidDatabase] +[External Topic Properties\PImageArchiveMemberHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=1615 +ETPTopicOrder0=213 -[External Topic Properties\NERR_InvalidDevice] +[External Topic Properties\PImageCoffSymbolsHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=1616 +ETPTopicOrder0=214 -[External Topic Properties\NERR_InvalidLana] +[External Topic Properties\PImageCorILMethodFat] Count=1 ETPCommand0=2 -ETPTopicOrder0=1617 +ETPTopicOrder0=46 -[External Topic Properties\NERR_InvalidLogonHours] +[External Topic Properties\PImageCorILMethodHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=1618 +ETPTopicOrder0=47 -[External Topic Properties\NERR_InvalidLogSeek] +[External Topic Properties\PImageCorILMethodSectEH] Count=1 ETPCommand0=2 -ETPTopicOrder0=1619 +ETPTopicOrder0=48 -[External Topic Properties\NERR_InvalidMaxUsers] +[External Topic Properties\PImageCorILMethodSectEHClauseFat] Count=1 ETPCommand0=2 -ETPTopicOrder0=1620 +ETPTopicOrder0=49 -[External Topic Properties\NERR_InvalidUASOp] +[External Topic Properties\PImageCorILMethodSectEHClauseSmall] Count=1 ETPCommand0=2 -ETPTopicOrder0=1621 +ETPTopicOrder0=50 -[External Topic Properties\NERR_InvalidWorkgroupName] +[External Topic Properties\PImageCorILMethodSectEHFat] Count=1 ETPCommand0=2 -ETPTopicOrder0=1622 +ETPTopicOrder0=51 -[External Topic Properties\NERR_InvalidWorkstation] +[External Topic Properties\PImageCorILMethodSectEHSmall] Count=1 ETPCommand0=2 -ETPTopicOrder0=1623 +ETPTopicOrder0=52 -[External Topic Properties\NERR_IsDfsShare] +[External Topic Properties\PImageCorILMethodSectFat] Count=1 ETPCommand0=2 -ETPTopicOrder0=1624 +ETPTopicOrder0=53 -[External Topic Properties\NERR_ItemNotFound] +[External Topic Properties\PImageCorILMethodSectHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=1625 +ETPTopicOrder0=54 -[External Topic Properties\NERR_JobInvalidState] +[External Topic Properties\PImageCorILMethodSectSmall] Count=1 ETPCommand0=2 -ETPTopicOrder0=1626 +ETPTopicOrder0=55 -[External Topic Properties\NERR_JobNoRoom] +[External Topic Properties\PImageCorILMethodTiny] Count=1 ETPCommand0=2 -ETPTopicOrder0=1627 +ETPTopicOrder0=56 -[External Topic Properties\NERR_JobNotFound] +[External Topic Properties\PImageCorVTableFixup] Count=1 ETPCommand0=2 -ETPTopicOrder0=1628 +ETPTopicOrder0=57 -[External Topic Properties\NERR_LanmanIniError] +[External Topic Properties\PImageCorVTableFixupArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=1629 +ETPTopicOrder0=58 -[External Topic Properties\NERR_LastAdmin] +[External Topic Properties\PImageDataDirectory] Count=1 ETPCommand0=2 -ETPTopicOrder0=1630 +ETPTopicOrder0=228 -[External Topic Properties\NERR_LineTooLong] +[External Topic Properties\PImageDebugMisc] Count=1 ETPCommand0=2 -ETPTopicOrder0=1631 +ETPTopicOrder0=229 -[External Topic Properties\NERR_LocalDrive] +[External Topic Properties\PImageFileHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=1632 +ETPTopicOrder0=230 -[External Topic Properties\NERR_LocalForward] +[External Topic Properties\PImageFunctionEntry] Count=1 ETPCommand0=2 -ETPTopicOrder0=1633 +ETPTopicOrder0=231 -[External Topic Properties\NERR_LogFileChanged] +[External Topic Properties\PImageFunctionEntry64] Count=1 ETPCommand0=2 -ETPTopicOrder0=1634 +ETPTopicOrder0=232 -[External Topic Properties\NERR_LogFileCorrupt] +[External Topic Properties\PIMAGEHLP_LINE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1635 +ETPTopicOrder0=233 -[External Topic Properties\NERR_LogonDomainExists] +[External Topic Properties\PImageHlpLine] Count=1 ETPCommand0=2 -ETPTopicOrder0=1636 +ETPTopicOrder0=234 -[External Topic Properties\NERR_LogonNoUserPath] +[External Topic Properties\PImageLineNumber] Count=1 ETPCommand0=2 -ETPTopicOrder0=1637 +ETPTopicOrder0=235 -[External Topic Properties\NERR_LogonScriptError] +[External Topic Properties\PImageLoadConfigDirectory32] Count=1 ETPCommand0=2 -ETPTopicOrder0=1638 +ETPTopicOrder0=236 -[External Topic Properties\NERR_LogonServerConflict] +[External Topic Properties\PImageLoadConfigDirectory64] Count=1 ETPCommand0=2 -ETPTopicOrder0=1639 +ETPTopicOrder0=237 -[External Topic Properties\NERR_LogonServerNotFound] +[External Topic Properties\PImageNtHeaders] Count=1 ETPCommand0=2 -ETPTopicOrder0=1640 +ETPTopicOrder0=238 -[External Topic Properties\NERR_LogonsPaused] +[External Topic Properties\PImageNtHeaders32] Count=1 ETPCommand0=2 -ETPTopicOrder0=1641 +ETPTopicOrder0=239 -[External Topic Properties\NERR_LogonTrackingError] +[External Topic Properties\PImageNtHeaders64] Count=1 ETPCommand0=2 -ETPTopicOrder0=1642 +ETPTopicOrder0=240 -[External Topic Properties\NERR_LogOverflow] +[External Topic Properties\PImageOptionalHeader32] Count=1 ETPCommand0=2 -ETPTopicOrder0=1643 +ETPTopicOrder0=241 -[External Topic Properties\NERR_MaxLenExceeded] +[External Topic Properties\PImageOptionalHeader64] Count=1 ETPCommand0=2 -ETPTopicOrder0=1644 +ETPTopicOrder0=242 -[External Topic Properties\NERR_MsgAlreadyStarted] +[External Topic Properties\PImageResourceDirectoryString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1645 +ETPTopicOrder0=243 -[External Topic Properties\NERR_MsgInitFailed] +[External Topic Properties\PImageRomHeaders] Count=1 ETPCommand0=2 -ETPTopicOrder0=1646 +ETPTopicOrder0=244 -[External Topic Properties\NERR_MsgNotStarted] +[External Topic Properties\PImageRomOptionalHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=1647 +ETPTopicOrder0=245 -[External Topic Properties\NERR_MultipleNets] +[External Topic Properties\PImageSectionHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=1648 +ETPTopicOrder0=246 -[External Topic Properties\NERR_NameInUse] +[External Topic Properties\PImageSeparateDebugHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=1649 +ETPTopicOrder0=247 -[External Topic Properties\NERR_NameNotForwarded] +[External Topic Properties\PImageThunkData32] Count=1 ETPCommand0=2 -ETPTopicOrder0=1650 +ETPTopicOrder0=248 -[External Topic Properties\NERR_NameNotFound] +[External Topic Properties\PImageThunkData64] Count=1 ETPCommand0=2 -ETPTopicOrder0=1651 +ETPTopicOrder0=249 -[External Topic Properties\NERR_NameUsesIncompatibleCodePage] +[External Topic Properties\PImageTlsDirectory32] Count=1 ETPCommand0=2 -ETPTopicOrder0=1652 +ETPTopicOrder0=250 -[External Topic Properties\NERR_NetlogonNotStarted] +[External Topic Properties\PImageTlsDirectory64] Count=1 ETPCommand0=2 -ETPTopicOrder0=1653 +ETPTopicOrder0=251 -[External Topic Properties\NERR_NetNameNotFound] +[External Topic Properties\PImgDelayDescrV1] Count=1 ETPCommand0=2 -ETPTopicOrder0=1654 +ETPTopicOrder0=252 -[External Topic Properties\NERR_NetNotStarted] +[External Topic Properties\PImgDelayDescrV2] Count=1 ETPCommand0=2 -ETPTopicOrder0=1655 +ETPTopicOrder0=253 -[External Topic Properties\NERR_NetworkError] +[External Topic Properties\PImportObjectHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=1656 +ETPTopicOrder0=254 -[External Topic Properties\NERR_NoAlternateServers] +[External Topic Properties\PInt64] Count=1 ETPCommand0=2 -ETPTopicOrder0=1657 +ETPTopicOrder0=59 -[External Topic Properties\NERR_NoCommDevs] +[External Topic Properties\PInteger] Count=1 ETPCommand0=2 -ETPTopicOrder0=1658 +ETPTopicOrder0=255 -[External Topic Properties\NERR_NoComputerName] +[External Topic Properties\PINTEL_ARAT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1659 +ETPTopicOrder0=1011 -[External Topic Properties\NERR_NoForwardName] +[External Topic Properties\PINTEL_BIT_10] Count=1 ETPCommand0=2 -ETPTopicOrder0=1660 +ETPTopicOrder0=1012 -[External Topic Properties\NERR_NonDosFloppyUsed] +[External Topic Properties\PINTEL_BIT_11] Count=1 ETPCommand0=2 -ETPTopicOrder0=1661 +ETPTopicOrder0=1013 -[External Topic Properties\NERR_NoNetworkResource] +[External Topic Properties\PINTEL_BIT_12] Count=1 ETPCommand0=2 -ETPTopicOrder0=1662 +ETPTopicOrder0=1014 -[External Topic Properties\NERR_NonValidatedLogon] +[External Topic Properties\PINTEL_BIT_13] Count=1 ETPCommand0=2 -ETPTopicOrder0=1663 +ETPTopicOrder0=1015 -[External Topic Properties\NERR_NoRoom] +[External Topic Properties\PINTEL_BIT_14] Count=1 ETPCommand0=2 -ETPTopicOrder0=1664 +ETPTopicOrder0=1016 -[External Topic Properties\NERR_NoRplBootSystem] +[External Topic Properties\PINTEL_BIT_15] Count=1 ETPCommand0=2 -ETPTopicOrder0=1665 +ETPTopicOrder0=1017 -[External Topic Properties\NERR_NoSuchAlert] +[External Topic Properties\PINTEL_BIT_16] Count=1 ETPCommand0=2 -ETPTopicOrder0=1666 +ETPTopicOrder0=1018 -[External Topic Properties\NERR_NoSuchConnection] +[External Topic Properties\PINTEL_BIT_17] Count=1 ETPCommand0=2 -ETPTopicOrder0=1667 +ETPTopicOrder0=1019 -[External Topic Properties\NERR_NoSuchServer] +[External Topic Properties\PINTEL_BIT_18] Count=1 ETPCommand0=2 -ETPTopicOrder0=1668 +ETPTopicOrder0=1020 -[External Topic Properties\NERR_NoSuchSession] +[External Topic Properties\PINTEL_BIT_19] Count=1 ETPCommand0=2 -ETPTopicOrder0=1669 +ETPTopicOrder0=1021 -[External Topic Properties\NERR_NotInCache] +[External Topic Properties\PINTEL_BIT_20] Count=1 ETPCommand0=2 -ETPTopicOrder0=1670 +ETPTopicOrder0=1022 -[External Topic Properties\NERR_NotInDispatchTbl] +[External Topic Properties\PINTEL_BIT_21] Count=1 ETPCommand0=2 -ETPTopicOrder0=1671 +ETPTopicOrder0=1023 -[External Topic Properties\NERR_NotLocalDomain] +[External Topic Properties\PINTEL_BIT_22] Count=1 ETPCommand0=2 -ETPTopicOrder0=1672 +ETPTopicOrder0=1024 -[External Topic Properties\NERR_NotLocalName] +[External Topic Properties\PINTEL_BIT_23] Count=1 ETPCommand0=2 -ETPTopicOrder0=1673 +ETPTopicOrder0=1025 -[External Topic Properties\NERR_NotLoggedOn] +[External Topic Properties\PINTEL_BIT_24] Count=1 ETPCommand0=2 -ETPTopicOrder0=1674 +ETPTopicOrder0=1026 -[External Topic Properties\NERR_NotPrimary] +[External Topic Properties\PINTEL_BIT_25] Count=1 ETPCommand0=2 -ETPTopicOrder0=1675 +ETPTopicOrder0=1027 -[External Topic Properties\NERR_OpenFiles] +[External Topic Properties\PINTEL_BIT_26] Count=1 ETPCommand0=2 -ETPTopicOrder0=1676 +ETPTopicOrder0=1028 -[External Topic Properties\NERR_PasswordCantChange] +[External Topic Properties\PINTEL_BIT_27] Count=1 ETPCommand0=2 -ETPTopicOrder0=1677 +ETPTopicOrder0=1029 -[External Topic Properties\NERR_PasswordExpired] +[External Topic Properties\PINTEL_BIT_28] Count=1 ETPCommand0=2 -ETPTopicOrder0=1678 +ETPTopicOrder0=1030 -[External Topic Properties\NERR_PasswordFilterError] +[External Topic Properties\PINTEL_BIT_29] Count=1 ETPCommand0=2 -ETPTopicOrder0=1679 +ETPTopicOrder0=1031 -[External Topic Properties\NERR_PasswordHistConflict] +[External Topic Properties\PINTEL_BIT_3] Count=1 ETPCommand0=2 -ETPTopicOrder0=1680 +ETPTopicOrder0=1032 -[External Topic Properties\NERR_PasswordMismatch] +[External Topic Properties\PINTEL_BIT_30] Count=1 ETPCommand0=2 -ETPTopicOrder0=1681 +ETPTopicOrder0=1033 -[External Topic Properties\NERR_PasswordMustChange] +[External Topic Properties\PINTEL_BIT_31] Count=1 ETPCommand0=2 -ETPTopicOrder0=1682 +ETPTopicOrder0=1034 -[External Topic Properties\NERR_PasswordNotComplexEnough] +[External Topic Properties\PINTEL_BIT_7] Count=1 ETPCommand0=2 -ETPTopicOrder0=1683 +ETPTopicOrder0=1035 -[External Topic Properties\NERR_PasswordTooLong] +[External Topic Properties\PINTEL_BIT_8] Count=1 ETPCommand0=2 -ETPTopicOrder0=1684 +ETPTopicOrder0=1036 -[External Topic Properties\NERR_PasswordTooRecent] +[External Topic Properties\PINTEL_BIT_9] Count=1 ETPCommand0=2 -ETPTopicOrder0=1685 +ETPTopicOrder0=1037 -[External Topic Properties\NERR_PasswordTooShort] +[External Topic Properties\PINTEL_ECMD] Count=1 ETPCommand0=2 -ETPTopicOrder0=1686 +ETPTopicOrder0=1038 -[External Topic Properties\NERR_PausedRemote] +[External Topic Properties\PINTEL_PLN] Count=1 ETPCommand0=2 -ETPTopicOrder0=1687 +ETPTopicOrder0=1039 -[External Topic Properties\NERR_PersonalSku] +[External Topic Properties\PINTEL_PTM] Count=1 ETPCommand0=2 -ETPTopicOrder0=1688 +ETPTopicOrder0=1040 -[External Topic Properties\NERR_ProcNoRespond] +[External Topic Properties\PINTEL_TEMPSENSOR] Count=1 ETPCommand0=2 -ETPTopicOrder0=1689 +ETPTopicOrder0=1041 -[External Topic Properties\NERR_ProcNotFound] +[External Topic Properties\PINTEL_TURBOBOOST] Count=1 ETPCommand0=2 -ETPTopicOrder0=1690 +ETPTopicOrder0=1042 -[External Topic Properties\NERR_ProfileCleanup] +[External Topic Properties\PiOn2] Count=1 ETPCommand0=2 -ETPTopicOrder0=1691 +ETPTopicOrder0=1043 -[External Topic Properties\NERR_ProfileFileTooBig] +[External Topic Properties\PiOn3] Count=1 ETPCommand0=2 -ETPTopicOrder0=1692 +ETPTopicOrder0=1044 -[External Topic Properties\NERR_ProfileLoadErr] +[External Topic Properties\PiOn4] Count=1 ETPCommand0=2 -ETPTopicOrder0=1693 +ETPTopicOrder0=1045 -[External Topic Properties\NERR_ProfileOffset] +[External Topic Properties\PixelsToDialogUnitsX@Word] Count=1 ETPCommand0=2 -ETPTopicOrder0=1694 +ETPTopicOrder0=939 -[External Topic Properties\NERR_ProfileSaveErr] +[External Topic Properties\PixelsToDialogUnitsY@Word] Count=1 ETPCommand0=2 -ETPTopicOrder0=1695 +ETPTopicOrder0=940 -[External Topic Properties\NERR_ProfileUnknownCmd] +[External Topic Properties\PJclAddr] Count=1 ETPCommand0=2 -ETPTopicOrder0=1696 +ETPTopicOrder0=60 -[External Topic Properties\NERR_ProgNeedsExtraMem] +[External Topic Properties\PJclBinaryNode] Count=1 ETPCommand0=2 -ETPTopicOrder0=1697 +ETPTopicOrder0=256 -[External Topic Properties\NERR_QExists] +[External Topic Properties\PJclBucket] Count=1 ETPCommand0=2 -ETPTopicOrder0=1698 +ETPTopicOrder0=257 -[External Topic Properties\NERR_QInvalidState] +[External Topic Properties\PJclByteArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=1699 +ETPTopicOrder0=61 -[External Topic Properties\NERR_QNoRoom] +[External Topic Properties\PJclClrToken] Count=1 ETPCommand0=2 -ETPTopicOrder0=1700 +ETPTopicOrder0=62 -[External Topic Properties\NERR_QNotFound] +[External Topic Properties\PJclDbgHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=1701 +ETPTopicOrder0=63 -[External Topic Properties\NERR_QueueNotFound] +[External Topic Properties\PJclHashElem] Count=1 ETPCommand0=2 -ETPTopicOrder0=1702 +ETPTopicOrder0=64 -[External Topic Properties\NERR_RedirectedPath] +[External Topic Properties\PJclHashList] Count=1 ETPCommand0=2 -ETPTopicOrder0=1703 +ETPTopicOrder0=65 -[External Topic Properties\NERR_RemoteBootFailed] +[External Topic Properties\PJclHashRecord] Count=1 ETPCommand0=2 -ETPTopicOrder0=1704 +ETPTopicOrder0=66 -[External Topic Properties\NERR_RemoteErr] +[External Topic Properties\PJclIntfBinaryNode] Count=1 ETPCommand0=2 -ETPTopicOrder0=1705 +ETPTopicOrder0=261 -[External Topic Properties\NERR_RemoteFull] +[External Topic Properties\PJclIntfIntfBucket] Count=1 ETPCommand0=2 -ETPTopicOrder0=1706 +ETPTopicOrder0=262 -[External Topic Properties\NERR_RemoteOnly] +[External Topic Properties\PJclIntfLinkedListItem] Count=1 ETPCommand0=2 -ETPTopicOrder0=1707 +ETPTopicOrder0=263 -[External Topic Properties\NERR_ResourceExists] +[External Topic Properties\PJclLinkedListItem] Count=1 ETPCommand0=2 -ETPTopicOrder0=1708 +ETPTopicOrder0=264 -[External Topic Properties\NERR_ResourceNotFound] +[External Topic Properties\PJclLocationInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=1709 +ETPTopicOrder0=67 -[External Topic Properties\NERR_RPL_CONNECTED] +[External Topic Properties\PJclMapAddress] Count=1 ETPCommand0=2 -ETPTopicOrder0=1710 +ETPTopicOrder0=68 -[External Topic Properties\NERR_RplAdapterInfoCorrupted] +[External Topic Properties\PJclMapLineNumber] Count=1 ETPCommand0=2 -ETPTopicOrder0=1711 +ETPTopicOrder0=69 -[External Topic Properties\NERR_RplAdapterNameUnavailable] +[External Topic Properties\PJclMapProcName] Count=1 ETPCommand0=2 -ETPTopicOrder0=1712 +ETPTopicOrder0=70 -[External Topic Properties\NERR_RplAdapterNotFound] +[External Topic Properties\PJclMapSegment] Count=1 ETPCommand0=2 -ETPTopicOrder0=1713 +ETPTopicOrder0=71 -[External Topic Properties\NERR_RplBackupDatabase] +[External Topic Properties\PJclMapSegmentClass] Count=1 ETPCommand0=2 -ETPTopicOrder0=1714 +ETPTopicOrder0=72 -[External Topic Properties\NERR_RplBadDatabase] +[External Topic Properties\PJclStrBinaryNode] Count=1 ETPCommand0=2 -ETPTopicOrder0=1715 +ETPTopicOrder0=271 -[External Topic Properties\NERR_RplBadRegistry] +[External Topic Properties\PJclStrBucket] Count=1 ETPCommand0=2 -ETPTopicOrder0=1716 +ETPTopicOrder0=272 -[External Topic Properties\NERR_RplBootInfoCorrupted] +[External Topic Properties\PJclStrIntfBucket] Count=1 ETPCommand0=2 -ETPTopicOrder0=1717 +ETPTopicOrder0=273 -[External Topic Properties\NERR_RplBootInUse] +[External Topic Properties\PJclStrLinkedListItem] Count=1 ETPCommand0=2 -ETPTopicOrder0=1718 +ETPTopicOrder0=274 -[External Topic Properties\NERR_RplBootNameUnavailable] +[External Topic Properties\PJclStrStrBucket] Count=1 ETPCommand0=2 -ETPTopicOrder0=1719 +ETPTopicOrder0=275 -[External Topic Properties\NERR_RplBootNotFound] +[External Topic Properties\PJclTD32FileSignature] Count=1 ETPCommand0=2 -ETPTopicOrder0=1720 +ETPTopicOrder0=73 -[External Topic Properties\NERR_RplBootRestart] +[External Topic Properties\PJclTimeZoneRegInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=1721 +ETPTopicOrder0=74 -[External Topic Properties\NERR_RplBootServiceTerm] +[External Topic Properties\PJclULargeInteger] Count=1 ETPCommand0=2 -ETPTopicOrder0=1722 +ETPTopicOrder0=75 -[External Topic Properties\NERR_RplBootStartFailed] +[External Topic Properties\PJmpTable] Count=1 ETPCommand0=2 -ETPTopicOrder0=1723 +ETPTopicOrder0=76 -[External Topic Properties\NERR_RplCannotEnum] +[External Topic Properties\PKeyboardState] Count=1 ETPCommand0=2 -ETPTopicOrder0=1724 +ETPTopicOrder0=278 -[External Topic Properties\NERR_RplConfigInfoCorrupted] +[External Topic Properties\PLANA_ENUM] Count=1 ETPCommand0=2 -ETPTopicOrder0=1725 +ETPTopicOrder0=279 -[External Topic Properties\NERR_RplConfigNameUnavailable] +[External Topic Properties\PLangIdRec] Count=1 ETPCommand0=2 -ETPTopicOrder0=1726 +ETPTopicOrder0=77 -[External Topic Properties\NERR_RplConfigNotEmpty] +[External Topic Properties\PLargeInteger] Count=1 ETPCommand0=2 -ETPTopicOrder0=1727 +ETPTopicOrder0=78 -[External Topic Properties\NERR_RplConfigNotFound] +[External Topic Properties\PLATFORM_ID_DOS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1728 +ETPTopicOrder0=2103 -[External Topic Properties\NERR_RplIncompatibleProfile] +[External Topic Properties\PLATFORM_ID_NT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1729 +ETPTopicOrder0=2104 -[External Topic Properties\NERR_RplInternal] +[External Topic Properties\PLATFORM_ID_OS2] Count=1 ETPCommand0=2 -ETPTopicOrder0=1730 +ETPTopicOrder0=2105 -[External Topic Properties\NERR_RplLoadrDiskErr] +[External Topic Properties\PLATFORM_ID_OSF] Count=1 ETPCommand0=2 -ETPTopicOrder0=1731 +ETPTopicOrder0=2106 -[External Topic Properties\NERR_RplLoadrNetBiosErr] +[External Topic Properties\PLATFORM_ID_VMS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1732 +ETPTopicOrder0=2107 -[External Topic Properties\NERR_RplNeedsRPLUSERAcct] +[External Topic Properties\PLineMappingEntry] Count=1 ETPCommand0=2 -ETPTopicOrder0=1733 +ETPTopicOrder0=79 -[External Topic Properties\NERR_RplNoAdaptersStarted] +[External Topic Properties\PLMSTR] Count=1 ETPCommand0=2 -ETPTopicOrder0=1734 +ETPTopicOrder0=283 -[External Topic Properties\NERR_RplNotRplServer] +[External Topic Properties\PLOADED_IMAGE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1735 +ETPTopicOrder0=284 -[External Topic Properties\NERR_RplProfileInfoCorrupted] +[External Topic Properties\PLoadedImage] Count=1 ETPCommand0=2 -ETPTopicOrder0=1736 +ETPTopicOrder0=285 -[External Topic Properties\NERR_RplProfileNameUnavailable] +[External Topic Properties\PLOCALGROUP_INFO_0] Count=1 ETPCommand0=2 -ETPTopicOrder0=1737 +ETPTopicOrder0=286 -[External Topic Properties\NERR_RplProfileNotEmpty] +[External Topic Properties\PLOCALGROUP_INFO_1] Count=1 ETPCommand0=2 -ETPTopicOrder0=1738 +ETPTopicOrder0=287 -[External Topic Properties\NERR_RplProfileNotFound] +[External Topic Properties\PLOCALGROUP_INFO_1002] Count=1 ETPCommand0=2 -ETPTopicOrder0=1739 +ETPTopicOrder0=288 -[External Topic Properties\NERR_RplRplfilesShare] +[External Topic Properties\PLOCALGROUP_MEMBERS_INFO_0] Count=1 ETPCommand0=2 -ETPTopicOrder0=1740 +ETPTopicOrder0=289 -[External Topic Properties\NERR_RplSrvrCallFailed] +[External Topic Properties\PLOCALGROUP_MEMBERS_INFO_1] Count=1 ETPCommand0=2 -ETPTopicOrder0=1741 +ETPTopicOrder0=290 -[External Topic Properties\NERR_RplVendorInfoCorrupted] +[External Topic Properties\PLOCALGROUP_MEMBERS_INFO_2] Count=1 ETPCommand0=2 -ETPTopicOrder0=1742 +ETPTopicOrder0=291 -[External Topic Properties\NERR_RplVendorNameUnavailable] +[External Topic Properties\PLOCALGROUP_MEMBERS_INFO_3] Count=1 ETPCommand0=2 -ETPTopicOrder0=1743 +ETPTopicOrder0=292 -[External Topic Properties\NERR_RplVendorNotFound] +[External Topic Properties\PLocalGroupInfo0] Count=1 ETPCommand0=2 -ETPTopicOrder0=1744 +ETPTopicOrder0=293 -[External Topic Properties\NERR_RplWkstaInfoCorrupted] +[External Topic Properties\PLocalGroupInfo1] Count=1 ETPCommand0=2 -ETPTopicOrder0=1745 +ETPTopicOrder0=294 -[External Topic Properties\NERR_RplWkstaNameUnavailable] +[External Topic Properties\PLocalGroupInfo1002] Count=1 ETPCommand0=2 -ETPTopicOrder0=1746 +ETPTopicOrder0=295 -[External Topic Properties\NERR_RplWkstaNeedsUserAcct] +[External Topic Properties\PLocalGroupMembersInfo0] Count=1 ETPCommand0=2 -ETPTopicOrder0=1747 +ETPTopicOrder0=296 -[External Topic Properties\NERR_RplWkstaNotFound] +[External Topic Properties\PLocalGroupMembersInfo1] Count=1 ETPCommand0=2 -ETPTopicOrder0=1748 +ETPTopicOrder0=297 -[External Topic Properties\NERR_RunSrvPaused] +[External Topic Properties\PLocalGroupMembersInfo2] Count=1 ETPCommand0=2 -ETPTopicOrder0=1749 +ETPTopicOrder0=298 -[External Topic Properties\NERR_ServerNotStarted] +[External Topic Properties\PLocalGroupMembersInfo3] Count=1 ETPCommand0=2 -ETPTopicOrder0=1750 +ETPTopicOrder0=299 -[External Topic Properties\NERR_ServiceCtlBusy] +[External Topic Properties\PLONGLONG] Count=1 ETPCommand0=2 -ETPTopicOrder0=1751 +ETPTopicOrder0=300 -[External Topic Properties\NERR_ServiceCtlNotValid] +[External Topic Properties\PLongWord] Count=1 ETPCommand0=2 -ETPTopicOrder0=1752 +ETPTopicOrder0=301 -[External Topic Properties\NERR_ServiceCtlTimeout] +[External Topic Properties\PLSA_HANDLE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1753 +ETPTopicOrder0=302 -[External Topic Properties\NERR_ServiceEntryLocked] +[External Topic Properties\PLSA_OBJECT_ATTRIBUTES] Count=1 ETPCommand0=2 -ETPTopicOrder0=1754 +ETPTopicOrder0=303 -[External Topic Properties\NERR_ServiceInstalled] +[External Topic Properties\PLSA_STRING] Count=1 ETPCommand0=2 -ETPTopicOrder0=1755 +ETPTopicOrder0=304 -[External Topic Properties\NERR_ServiceKillProc] +[External Topic Properties\PLSA_UNICODE_STRING] Count=1 ETPCommand0=2 -ETPTopicOrder0=1756 +ETPTopicOrder0=305 -[External Topic Properties\NERR_ServiceNotCtrl] +[External Topic Properties\PLsaObjectAttributes] Count=1 ETPCommand0=2 -ETPTopicOrder0=1757 +ETPTopicOrder0=306 -[External Topic Properties\NERR_ServiceNotInstalled] +[External Topic Properties\PLsaString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1758 +ETPTopicOrder0=307 -[External Topic Properties\NERR_ServiceNotStarting] +[External Topic Properties\PLsaUnicodeString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1759 +ETPTopicOrder0=308 -[External Topic Properties\NERR_ServiceTableFull] +[External Topic Properties\PMeteredSection] Count=1 ETPCommand0=2 -ETPTopicOrder0=1760 +ETPTopicOrder0=80 -[External Topic Properties\NERR_ServiceTableLocked] +[External Topic Properties\PMetSectSharedInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=1761 +ETPTopicOrder0=81 -[External Topic Properties\NERR_SetupAlreadyJoined] +[External Topic Properties\PMultiSz] Count=1 ETPCommand0=2 -ETPTopicOrder0=1762 +ETPTopicOrder0=82 -[External Topic Properties\NERR_SetupDomainController] +[External Topic Properties\PNAME_BUFFER] Count=1 ETPCommand0=2 -ETPTopicOrder0=1763 +ETPTopicOrder0=312 -[External Topic Properties\NERR_SetupNotJoined] +[External Topic Properties\PngToBitmap@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1764 +ETPTopicOrder0=941 -[External Topic Properties\NERR_ShareMem] +[External Topic Properties\PNON_PAGED_DEBUG_INFO] Count=1 ETPCommand0=2 -ETPTopicOrder0=1765 +ETPTopicOrder0=313 -[External Topic Properties\NERR_ShareNotFound] +[External Topic Properties\PNT_TIB32] Count=1 ETPCommand0=2 -ETPTopicOrder0=1766 +ETPTopicOrder0=314 -[External Topic Properties\NERR_SourceIsDir] +[External Topic Properties\PNT_TIB64] Count=1 ETPCommand0=2 -ETPTopicOrder0=1767 +ETPTopicOrder0=315 -[External Topic Properties\NERR_SpeGroupOp] +[External Topic Properties\POffsetPairArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=1768 +ETPTopicOrder0=83 -[External Topic Properties\NERR_SpoolerNotLoaded] +[External Topic Properties\PolarComplex@Float@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=1769 +ETPTopicOrder0=943 -[External Topic Properties\NERR_SpoolNoMemory] +[External Topic Properties\PolarComplex@TRectComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=1770 +ETPTopicOrder0=942 -[External Topic Properties\NERR_StandaloneLogon] +[External Topic Properties\POLICY_ACCOUNT_DOMAIN_INFO] Count=1 ETPCommand0=2 -ETPTopicOrder0=1771 +ETPTopicOrder0=317 -[External Topic Properties\NERR_StartingRplBoot] +[External Topic Properties\POLICY_ALL_ACCESS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1772 +ETPTopicOrder0=2108 -[External Topic Properties\NERR_Success] +[External Topic Properties\POLICY_AUDIT_LOG_ADMIN] Count=1 ETPCommand0=2 -ETPTopicOrder0=1773 +ETPTopicOrder0=2109 -[External Topic Properties\NERR_SyncRequired] +[External Topic Properties\POLICY_CREATE_ACCOUNT] Count=1 ETPCommand0=2 -ETPTopicOrder0=1774 +ETPTopicOrder0=2110 -[External Topic Properties\NERR_TimeDiffAtDC] +[External Topic Properties\POLICY_CREATE_PRIVILEGE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1775 +ETPTopicOrder0=2111 -[External Topic Properties\NERR_TmpFile] +[External Topic Properties\POLICY_CREATE_SECRET] Count=1 ETPCommand0=2 -ETPTopicOrder0=1776 +ETPTopicOrder0=2112 -[External Topic Properties\NERR_TooManyAlerts] +[External Topic Properties\POLICY_EXECUTE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1777 +ETPTopicOrder0=2113 -[External Topic Properties\NERR_TooManyConnections] +[External Topic Properties\POLICY_GET_PRIVATE_INFORMATION] Count=1 ETPCommand0=2 -ETPTopicOrder0=1778 +ETPTopicOrder0=2114 -[External Topic Properties\NERR_TooManyEntries] +[External Topic Properties\POLICY_INFORMATION_CLASS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1779 +ETPTopicOrder0=318 -[External Topic Properties\NERR_TooManyFiles] +[External Topic Properties\POLICY_LOOKUP_NAMES] Count=1 ETPCommand0=2 -ETPTopicOrder0=1780 +ETPTopicOrder0=2115 -[External Topic Properties\NERR_TooManyImageParams] +[External Topic Properties\POLICY_NOTIFICATION] Count=1 ETPCommand0=2 -ETPTopicOrder0=1781 +ETPTopicOrder0=2116 -[External Topic Properties\NERR_TooManyItems] +[External Topic Properties\POLICY_READ] Count=1 ETPCommand0=2 -ETPTopicOrder0=1782 +ETPTopicOrder0=2117 -[External Topic Properties\NERR_TooManyNames] +[External Topic Properties\POLICY_SERVER_ADMIN] Count=1 ETPCommand0=2 -ETPTopicOrder0=1783 +ETPTopicOrder0=2118 -[External Topic Properties\NERR_TooManyServers] +[External Topic Properties\POLICY_SET_AUDIT_REQUIREMENTS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1784 +ETPTopicOrder0=2119 -[External Topic Properties\NERR_TooManySessions] +[External Topic Properties\POLICY_SET_DEFAULT_QUOTA_LIMITS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1785 +ETPTopicOrder0=2120 -[External Topic Properties\NERR_TooMuchData] +[External Topic Properties\POLICY_TRUST_ADMIN] Count=1 ETPCommand0=2 -ETPTopicOrder0=1786 +ETPTopicOrder0=2121 -[External Topic Properties\NERR_TruncatedBroadcast] +[External Topic Properties\POLICY_VIEW_AUDIT_INFORMATION] Count=1 ETPCommand0=2 -ETPTopicOrder0=1787 +ETPTopicOrder0=2122 -[External Topic Properties\NERR_TryDownLevel] +[External Topic Properties\POLICY_VIEW_LOCAL_INFORMATION] Count=1 ETPCommand0=2 -ETPTopicOrder0=1788 +ETPTopicOrder0=2123 -[External Topic Properties\NERR_UnableToAddName_F] +[External Topic Properties\POLICY_WRITE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1789 +ETPTopicOrder0=2124 -[External Topic Properties\NERR_UnableToAddName_W] +[External Topic Properties\PolygonAS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1790 +ETPTopicOrder0=944 -[External Topic Properties\NERR_UnableToDelName_F] +[External Topic Properties\PolygonFS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1791 +ETPTopicOrder0=945 -[External Topic Properties\NERR_UnableToDelName_W] +[External Topic Properties\PolygonTS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1792 +ETPTopicOrder0=946 -[External Topic Properties\NERR_UnknownDevDir] +[External Topic Properties\PolyLineAS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1793 +ETPTopicOrder0=947 -[External Topic Properties\NERR_UnknownServer] +[External Topic Properties\PolyLineFS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1794 +ETPTopicOrder0=948 -[External Topic Properties\NERR_UPSDriverNotStarted] +[External Topic Properties\PolyLineTS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1795 +ETPTopicOrder0=949 -[External Topic Properties\NERR_UPSInvalidCommPort] +[External Topic Properties\PolyPolygonAS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1796 +ETPTopicOrder0=950 -[External Topic Properties\NERR_UPSInvalidConfig] +[External Topic Properties\PolyPolygonFS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1797 +ETPTopicOrder0=951 -[External Topic Properties\NERR_UPSShutdownFailed] +[External Topic Properties\PolyPolygonTS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1798 +ETPTopicOrder0=952 -[External Topic Properties\NERR_UPSSignalAsserted] +[External Topic Properties\POptexSharedInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=1799 +ETPTopicOrder0=84 -[External Topic Properties\NERR_UseNotFound] +[External Topic Properties\POSVERSIONINFOEX] Count=1 ETPCommand0=2 -ETPTopicOrder0=1800 +ETPTopicOrder0=320 -[External Topic Properties\NERR_UserExists] +[External Topic Properties\POSVERSIONINFOEXA] Count=1 ETPCommand0=2 -ETPTopicOrder0=1801 +ETPTopicOrder0=321 -[External Topic Properties\NERR_UserInGroup] +[External Topic Properties\POSVERSIONINFOEXW] Count=1 ETPCommand0=2 -ETPTopicOrder0=1802 +ETPTopicOrder0=322 -[External Topic Properties\NERR_UserLogon] +[External Topic Properties\Power@TPolarComplex@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=1803 +ETPTopicOrder0=954 -[External Topic Properties\NERR_UserNotFound] +[External Topic Properties\Power@TPolarComplex@TRectComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=1804 +ETPTopicOrder0=953 -[External Topic Properties\NERR_UserNotInGroup] +[External Topic Properties\PowerInt@TPolarComplex@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1805 +ETPTopicOrder0=955 -[External Topic Properties\NERR_WkstaInconsistentState] +[External Topic Properties\PPalette32] Count=1 ETPCommand0=2 -ETPTopicOrder0=1806 +ETPTopicOrder0=85 -[External Topic Properties\NERR_WkstaNotStarted] +[External Topic Properties\PPAnsiChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=1807 +ETPTopicOrder0=86 -[External Topic Properties\NERR_WriteFault] +[External Topic Properties\PPAnsiCharArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=1808 +ETPTopicOrder0=87 -[External Topic Properties\NET_API_STATUS] +[External Topic Properties\PPChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=97 +ETPTopicOrder0=324 -[External Topic Properties\NetApi32] +[External Topic Properties\PPCharArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=1809 +ETPTopicOrder0=325 -[External Topic Properties\NetApiBufferFree@Pointer] +[External Topic Properties\PPCRE] Count=1 ETPCommand0=2 -ETPTopicOrder0=670 +ETPTopicOrder0=326 -[External Topic Properties\Netbios@PNCB] +[External Topic Properties\PPCREExtra] Count=1 ETPCommand0=2 -ETPTopicOrder0=671 +ETPTopicOrder0=327 -[External Topic Properties\NETBIOS_NAME_LEN] +[External Topic Properties\PPCREIntArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=1810 +ETPTopicOrder0=88 -[External Topic Properties\NetGroupAdd@LPCWSTR@DWORD@PByte@LPDWORD] +[External Topic Properties\PPHashNode] Count=1 ETPCommand0=2 -ETPTopicOrder0=672 +ETPTopicOrder0=89 -[External Topic Properties\NetGroupAddUser@LPCWSTR@LPCWSTR@LPCWSTR] +[External Topic Properties\PPInt64] Count=1 ETPCommand0=2 -ETPTopicOrder0=673 +ETPTopicOrder0=90 -[External Topic Properties\NetGroupDel@LPCWSTR@LPCWSTR] +[External Topic Properties\PPointArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=674 +ETPTopicOrder0=91 -[External Topic Properties\NetGroupDelUser@LPCWSTR@LPCWSTR@LPCWSTR] +[External Topic Properties\PPointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=675 +ETPTopicOrder0=92 -[External Topic Properties\NetGroupEnum@LPCWSTR@DWORD@PByte@DWORD@DWORD@DWORD@PDWORD_PTR] +[External Topic Properties\PPointerArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=676 +ETPTopicOrder0=93 -[External Topic Properties\NetGroupGetInfo@LPCWSTR@LPCWSTR@DWORD@PByte] +[External Topic Properties\PPOLICY_ACCOUNT_DOMAIN_INFO] Count=1 ETPCommand0=2 -ETPTopicOrder0=677 +ETPTopicOrder0=333 -[External Topic Properties\NetGroupGetUsers@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD@LPDWORD@LPDWORD@PDWORD_PTR] +[External Topic Properties\PPOLICY_INFORMATION_CLASS] Count=1 ETPCommand0=2 -ETPTopicOrder0=678 +ETPTopicOrder0=334 -[External Topic Properties\NetGroupSetInfo@LPCWSTR@LPCWSTR@DWORD@PByte@LPDWORD] +[External Topic Properties\PPolicyAccountDomainInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=679 +ETPTopicOrder0=335 -[External Topic Properties\NetGroupSetUsers@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD] +[External Topic Properties\PPolicyInformationClass] Count=1 ETPCommand0=2 -ETPTopicOrder0=680 +ETPTopicOrder0=336 -[External Topic Properties\NetLocalGroupAdd@LPCWSTR@DWORD@PByte@LPDWORD] +[External Topic Properties\PPPAnsiChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=681 +ETPTopicOrder0=94 -[External Topic Properties\NetLocalGroupAddMember@LPCWSTR@LPCWSTR@PSID] +[External Topic Properties\PPPChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=682 +ETPTopicOrder0=337 -[External Topic Properties\NetLocalGroupAddMembers@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD] +[External Topic Properties\PPWideChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=683 +ETPTopicOrder0=95 -[External Topic Properties\NetLocalGroupDel@LPCWSTR@LPCWSTR] +[External Topic Properties\PPWideCharArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=684 +ETPTopicOrder0=96 -[External Topic Properties\NetLocalGroupDelMember@LPCWSTR@LPCWSTR@PSID] +[External Topic Properties\PRasDialDlg] Count=1 ETPCommand0=2 -ETPTopicOrder0=685 +ETPTopicOrder0=338 -[External Topic Properties\NetLocalGroupDelMembers@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD] +[External Topic Properties\PREFIX_CUT_EQUAL] Count=1 ETPCommand0=2 -ETPTopicOrder0=686 +ETPTopicOrder0=1046 -[External Topic Properties\NetLocalGroupEnum@LPCWSTR@DWORD@PByte@DWORD@DWORD@DWORD@PDWORD_PTR] +[External Topic Properties\PREFIX_CUT_LOWERCASE] Count=1 ETPCommand0=2 -ETPTopicOrder0=687 +ETPTopicOrder0=1047 -[External Topic Properties\NetLocalGroupGetInfo@LPCWSTR@LPCWSTR@DWORD@PByte] +[External Topic Properties\PREPARSE_DATA_BUFFER] Count=1 ETPCommand0=2 -ETPTopicOrder0=688 +ETPTopicOrder0=339 -[External Topic Properties\NetLocalGroupGetMembers@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD@LPDWORD@LPDWORD@PDWORD_PTR] +[External Topic Properties\PREPARSE_GUID_DATA_BUFFER] Count=1 ETPCommand0=2 -ETPTopicOrder0=689 +ETPTopicOrder0=340 -[External Topic Properties\NetLocalGroupSetInfo@LPCWSTR@LPCWSTR@DWORD@PByte@LPDWORD] +[External Topic Properties\PREPARSE_POINT_INFORMATION] Count=1 ETPCommand0=2 -ETPTopicOrder0=690 +ETPTopicOrder0=341 -[External Topic Properties\NetLocalGroupSetMembers@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD] +[External Topic Properties\PRIMARYLANGID@WORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=691 +ETPTopicOrder0=816 -[External Topic Properties\NetUserAdd@LPCWSTR@DWORD@PByte@LPDWORD] +[External Topic Properties\PrintMemo@TMemo@TRect] Count=1 ETPCommand0=2 -ETPTopicOrder0=692 +ETPTopicOrder0=956 -[External Topic Properties\NetUserChangePassword@LPCWSTR@LPCWSTR@LPCWSTR@LPCWSTR] +[External Topic Properties\ProcByLevel] Count=1 ETPCommand0=2 -ETPTopicOrder0=693 +ETPTopicOrder0=957 -[External Topic Properties\NetUserDel@LPCWSTR@LPCWSTR] +[External Topic Properties\PROCESSOR_ARCHITECTURE_AMD64] Count=1 ETPCommand0=2 -ETPTopicOrder0=694 +ETPTopicOrder0=1048 -[External Topic Properties\NetUserEnum@LPCWSTR@DWORD@DWORD@PByte@DWORD@LPDWORD@LPDWORD@LPDWORD] +[External Topic Properties\PROCESSOR_ARCHITECTURE_IA32_ON_WIN64] Count=1 ETPCommand0=2 -ETPTopicOrder0=695 +ETPTopicOrder0=1049 -[External Topic Properties\NetUserGetGroups@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD@LPDWORD@LPDWORD] +[External Topic Properties\PROCESSOR_ARCHITECTURE_IA64] Count=1 ETPCommand0=2 -ETPTopicOrder0=696 +ETPTopicOrder0=1050 -[External Topic Properties\NetUserGetInfo@LPCWSTR@LPCWSTR@DWORD@PByte] +[External Topic Properties\PROCESSOR_ARCHITECTURE_INTEL] Count=1 ETPCommand0=2 -ETPTopicOrder0=697 +ETPTopicOrder0=1051 -[External Topic Properties\NetUserGetLocalGroups@LPCWSTR@LPCWSTR@DWORD@DWORD@PByte@DWORD@LPDWORD@LPDWORD] +[External Topic Properties\Product@array of TPolarComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=698 +ETPTopicOrder0=958 -[External Topic Properties\NetUserModalsGet@LPCWSTR@DWORD@PByte] +[External Topic Properties\Product@TPolarComplex@TPolarComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=699 +ETPTopicOrder0=959 -[External Topic Properties\NetUserModalsSet@LPCWSTR@DWORD@PByte@LPDWORD] +[External Topic Properties\Product@TRectComplex@TRectComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=700 +ETPTopicOrder0=960 -[External Topic Properties\NetUserSetGroups@LPCWSTR@LPCWSTR@DWORD@PByte@DWORD] +[External Topic Properties\ProgIDExists@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=701 +ETPTopicOrder0=961 -[External Topic Properties\NetUserSetInfo@LPCWSTR@LPCWSTR@DWORD@PByte@LPDWORD] +[External Topic Properties\ProjectTypeLibrary] Count=1 ETPCommand0=2 -ETPTopicOrder0=702 +ETPTopicOrder0=1052 -[External Topic Properties\NibbleMask] +[External Topic Properties\ProjectTypePackage] Count=1 ETPCommand0=2 -ETPTopicOrder0=1811 +ETPTopicOrder0=1053 -[External Topic Properties\NibblesPerByte] +[External Topic Properties\ProjectTypeProgram] Count=1 ETPCommand0=2 -ETPTopicOrder0=1812 +ETPTopicOrder0=1054 -[External Topic Properties\NibblesPerCardinal] +[External Topic Properties\PRTL_OSVERSIONINFOEXW] Count=1 ETPCommand0=2 -ETPTopicOrder0=1813 +ETPTopicOrder0=342 -[External Topic Properties\NibblesPerInt64] +[External Topic Properties\PSE_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=1814 +ETPTopicOrder0=1055 -[External Topic Properties\NibblesPerInteger] +[External Topic Properties\PSE36_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=1815 +ETPTopicOrder0=1056 -[External Topic Properties\NibblesPerShortint] +[External Topic Properties\PSegmentInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=1816 +ETPTopicOrder0=97 -[External Topic Properties\NibblesPerSmallint] +[External Topic Properties\PSegmentInfoArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=1817 +ETPTopicOrder0=98 -[External Topic Properties\NibblesPerWord] +[External Topic Properties\PServiceDescriptionA] Count=1 ETPCommand0=2 -ETPTopicOrder0=1818 +ETPTopicOrder0=99 -[External Topic Properties\NLS_VALID_LOCALE_MASK] +[External Topic Properties\PSESSION_BUFFER] Count=1 ETPCommand0=2 -ETPTopicOrder0=1819 +ETPTopicOrder0=346 -[External Topic Properties\NNLEN] +[External Topic Properties\PSESSION_HEADER] Count=1 ETPCommand0=2 -ETPTopicOrder0=1820 +ETPTopicOrder0=347 -[External Topic Properties\NON_PAGED_DEBUG_INFO] +[External Topic Properties\PSessionBuffer] Count=1 ETPCommand0=2 -ETPTopicOrder0=98 +ETPTopicOrder0=348 -[External Topic Properties\NON_PAGED_DEBUG_SIGNATURE] +[External Topic Properties\PSessionHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=1821 +ETPTopicOrder0=349 -[External Topic Properties\Norm@TPolarComplex] +[External Topic Properties\PSID_AND_ATTRIBUTES] Count=1 ETPCommand0=2 -ETPTopicOrder0=704 +ETPTopicOrder0=350 -[External Topic Properties\Norm@TRectComplex] +[External Topic Properties\PSID_AND_ATTRIBUTES_ARRAY] Count=1 ETPCommand0=2 -ETPTopicOrder0=703 +ETPTopicOrder0=351 -[External Topic Properties\NRC_ACTSES] +[External Topic Properties\PSID_IDENTIFIER_AUTHORITY] Count=1 ETPCommand0=2 -ETPTopicOrder0=1822 +ETPTopicOrder0=352 -[External Topic Properties\NRC_BADDR] +[External Topic Properties\PSID_NAME_USE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1823 +ETPTopicOrder0=353 -[External Topic Properties\NRC_BRIDGE] +[External Topic Properties\PSidAndAttributes] Count=1 ETPCommand0=2 -ETPTopicOrder0=1824 +ETPTopicOrder0=354 -[External Topic Properties\NRC_BUFLEN] +[External Topic Properties\PSidAndAttributesArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=1825 +ETPTopicOrder0=355 -[External Topic Properties\NRC_CANCEL] +[External Topic Properties\PSidNameUSe] Count=1 ETPCommand0=2 -ETPTopicOrder0=1826 +ETPTopicOrder0=356 -[External Topic Properties\NRC_CANOCCR] +[External Topic Properties\PSizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1827 +ETPTopicOrder0=100 -[External Topic Properties\NRC_CMDCAN] +[External Topic Properties\PSN_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=1828 +ETPTopicOrder0=1057 -[External Topic Properties\NRC_CMDTMO] +[External Topic Properties\PSourceFileEntry] Count=1 ETPCommand0=2 -ETPTopicOrder0=1829 +ETPTopicOrder0=101 -[External Topic Properties\NRC_DUPENV] +[External Topic Properties\PSourceModuleInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=1830 +ETPTopicOrder0=102 -[External Topic Properties\NRC_DUPNAME] +[External Topic Properties\PsPePkgLibrary] Count=1 ETPCommand0=2 -ETPTopicOrder0=1831 +ETPTopicOrder0=1058 -[External Topic Properties\NRC_ENVNOTDEF] +[External Topic Properties\PStackInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=1832 +ETPTopicOrder0=103 -[External Topic Properties\NRC_IFBUSY] +[External Topic Properties\PSTGOPTIONS] Count=1 ETPCommand0=2 -ETPTopicOrder0=1833 +ETPTopicOrder0=360 -[External Topic Properties\NRC_ILLCMD] +[External Topic Properties\PSymbolInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=1834 +ETPTopicOrder0=104 -[External Topic Properties\NRC_ILLNN] +[External Topic Properties\PSymbolInfos] Count=1 ETPCommand0=2 -ETPTopicOrder0=1835 +ETPTopicOrder0=105 -[External Topic Properties\NRC_INCOMP] +[External Topic Properties\PTOKEN_USER] Count=1 ETPCommand0=2 -ETPTopicOrder0=1836 +ETPTopicOrder0=363 -[External Topic Properties\NRC_INUSE] +[External Topic Properties\PTokenUser] Count=1 ETPCommand0=2 -ETPTopicOrder0=1837 +ETPTopicOrder0=364 -[External Topic Properties\NRC_INVADDRESS] -Count=1 +[External Topic Properties\PtrSimpleCompare@Pointer@Pointer] +Count=2 ETPCommand0=2 -ETPTopicOrder0=1838 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=962 -[External Topic Properties\NRC_INVDDID] -Count=1 +[External Topic Properties\PtrSimpleEqualityCompare@Pointer@Pointer] +Count=2 ETPCommand0=2 -ETPTopicOrder0=1839 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=963 -[External Topic Properties\NRC_LOCKFAIL] -Count=1 +[External Topic Properties\PtrSimpleHashConvert@Pointer] +Count=2 ETPCommand0=2 -ETPTopicOrder0=1840 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=964 -[External Topic Properties\NRC_LOCTFUL] +[External Topic Properties\PtrSortProc] Count=1 ETPCommand0=2 -ETPTopicOrder0=1841 +ETPTopicOrder0=31 -[External Topic Properties\NRC_MAXAPPS] +[External Topic Properties\PUcRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=1842 +ETPTopicOrder0=106 -[External Topic Properties\NRC_NAMCONF] +[External Topic Properties\PUCS2] Count=1 ETPCommand0=2 -ETPTopicOrder0=1843 +ETPTopicOrder0=12 -[External Topic Properties\NRC_NAMERR] +[External Topic Properties\PUCS4] Count=1 ETPCommand0=2 -ETPTopicOrder0=1844 +ETPTopicOrder0=11 -[External Topic Properties\NRC_NAMTFUL] +[External Topic Properties\PUcState] Count=1 ETPCommand0=2 -ETPTopicOrder0=1845 +ETPTopicOrder0=107 -[External Topic Properties\NRC_NOCALL] +[External Topic Properties\PUcStateList] Count=1 ETPCommand0=2 -ETPTopicOrder0=1846 +ETPTopicOrder0=108 -[External Topic Properties\NRC_NORES] +[External Topic Properties\PUcSymbolTableEntry] Count=1 ETPCommand0=2 -ETPTopicOrder0=1847 +ETPTopicOrder0=109 -[External Topic Properties\NRC_NORESOURCES] +[External Topic Properties\PULARGE_INTEGER] Count=1 ETPCommand0=2 -ETPTopicOrder0=1848 +ETPTopicOrder0=110 -[External Topic Properties\NRC_NOSAPS] +[External Topic Properties\PULargeInteger] Count=1 ETPCommand0=2 -ETPTopicOrder0=1849 +ETPTopicOrder0=369 -[External Topic Properties\NRC_NOWILD] +[External Topic Properties\PULONGLONG] Count=1 ETPCommand0=2 -ETPTopicOrder0=1850 +ETPTopicOrder0=370 -[External Topic Properties\NRC_OPENERR] +[External Topic Properties\PUnicodeBlockData] Count=1 ETPCommand0=2 -ETPTopicOrder0=1851 +ETPTopicOrder0=111 -[External Topic Properties\NRC_OSRESNOTAV] +[External Topic Properties\PUnitVersionInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=1852 +ETPTopicOrder0=112 -[External Topic Properties\NRC_PENDING] +[External Topic Properties\PUREBuffer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1853 +ETPTopicOrder0=113 -[External Topic Properties\NRC_REMTFUL] +[External Topic Properties\PUSER_INFO_0] Count=1 ETPCommand0=2 -ETPTopicOrder0=1854 +ETPTopicOrder0=373 -[External Topic Properties\NRC_SABORT] +[External Topic Properties\PUSER_INFO_1] Count=1 ETPCommand0=2 -ETPTopicOrder0=1855 +ETPTopicOrder0=374 -[External Topic Properties\NRC_SCLOSED] +[External Topic Properties\PUSER_INFO_2] Count=1 ETPCommand0=2 -ETPTopicOrder0=1856 +ETPTopicOrder0=375 -[External Topic Properties\NRC_SNUMOUT] +[External Topic Properties\PUserData] Count=1 ETPCommand0=2 -ETPTopicOrder0=1857 +ETPTopicOrder0=114 -[External Topic Properties\NRC_SYSTEM] +[External Topic Properties\PUserInfo0] Count=1 ETPCommand0=2 -ETPTopicOrder0=1858 +ETPTopicOrder0=377 -[External Topic Properties\NRC_TOOMANY] +[External Topic Properties\PUserInfo1] Count=1 ETPCommand0=2 -ETPTopicOrder0=1859 +ETPTopicOrder0=378 -[External Topic Properties\NT_TIB32] +[External Topic Properties\PUserInfo2] Count=1 ETPCommand0=2 -ETPTopicOrder0=77 +ETPTopicOrder0=379 -[External Topic Properties\NT_TIB32.ArbitraryUserPointer] +[External Topic Properties\PUTBMChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=115 -[External Topic Properties\NT_TIB32.ExceptionList] +[External Topic Properties\PUTBMSkip] Count=1 ETPCommand0=2 -ETPTopicOrder0=1 +ETPTopicOrder0=116 -[External Topic Properties\NT_TIB32.FiberData] +[External Topic Properties\PUTF16] Count=1 ETPCommand0=2 -ETPTopicOrder0=2 +ETPTopicOrder0=7 -[External Topic Properties\NT_TIB32.Self] +[External Topic Properties\PUTF32] Count=1 ETPCommand0=2 -ETPTopicOrder0=3 +ETPTopicOrder0=9 -[External Topic Properties\NT_TIB32.StackBase] +[External Topic Properties\PUTF7] Count=1 ETPCommand0=2 -ETPTopicOrder0=4 +ETPTopicOrder0=3 -[External Topic Properties\NT_TIB32.StackLimit] +[External Topic Properties\PUTF8] Count=1 ETPCommand0=2 ETPTopicOrder0=5 -[External Topic Properties\NT_TIB32.SubSystemTib] +[External Topic Properties\PWideChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=6 +ETPTopicOrder0=117 -[External Topic Properties\NT_TIB32.Version] +[External Topic Properties\PWideMultiSz] Count=1 ETPCommand0=2 -ETPTopicOrder0=7 +ETPTopicOrder0=118 -[External Topic Properties\NT_TIB64] +[External Topic Properties\PWLEN] Count=1 ETPCommand0=2 -ETPTopicOrder0=78 +ETPTopicOrder0=2138 -[External Topic Properties\NT_TIB64.ArbitraryUserPointer] +[External Topic Properties\PWordArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=119 -[External Topic Properties\NT_TIB64.ExceptionList] +[External Topic Properties\PWStringItem] Count=1 ETPCommand0=2 -ETPTopicOrder0=1 +ETPTopicOrder0=120 -[External Topic Properties\NT_TIB64.FiberData] +[External Topic Properties\QNLEN] Count=1 ETPCommand0=2 -ETPTopicOrder0=2 +ETPTopicOrder0=2139 -[External Topic Properties\NT_TIB64.Self] -Count=1 +[External Topic Properties\QuickSort@IJclAnsiStrList@Integer@Integer@TAnsiStrCompare] +Count=2 ETPCommand0=2 -ETPTopicOrder0=3 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=968 -[External Topic Properties\NT_TIB64.StackBase] -Count=1 +[External Topic Properties\QuickSort@IJclCardinalList@Integer@Integer@TCardinalCompare] +Count=2 ETPCommand0=2 -ETPTopicOrder0=4 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=967 -[External Topic Properties\NT_TIB64.StackLimit] -Count=1 +[External Topic Properties\QuickSort@IJclDoubleList@Integer@Integer@TDoubleCompare] +Count=2 ETPCommand0=2 -ETPTopicOrder0=5 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=970 -[External Topic Properties\NT_TIB64.SubSystemTib] -Count=1 +[External Topic Properties\QuickSort@IJclExtendedList@Integer@Integer@TExtendedCompare] +Count=2 ETPCommand0=2 -ETPTopicOrder0=6 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=969 -[External Topic Properties\NT_TIB64.Version] -Count=1 +[External Topic Properties\QuickSort@IJclInt64List@Integer@Integer@TInt64Compare] +Count=2 ETPCommand0=2 -ETPTopicOrder0=7 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=971 -[External Topic Properties\NtfsCreateHardLink] -Count=1 +[External Topic Properties\QuickSort@IJclIntegerList@Integer@Integer@TIntegerCompare] +Count=2 ETPCommand0=2 -ETPTopicOrder0=705 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=976 -[External Topic Properties\NtfsCreateHardLinkA@AnsiString@AnsiString] -Count=1 +[External Topic Properties\QuickSort@IJclIntfList@Integer@Integer@TIntfCompare] +Count=2 ETPCommand0=2 -ETPTopicOrder0=706 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=975 -[External Topic Properties\NtfsCreateHardLinkW@WideString@WideString] -Count=1 +[External Topic Properties\QuickSort@IJclList@Integer@Integer@TCompare] +Count=2 ETPCommand0=2 -ETPTopicOrder0=707 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=972 -[External Topic Properties\NtfsDeleteHardLinks] -Count=1 +[External Topic Properties\QuickSort@IJclPtrList@Integer@Integer@TPtrCompare] +Count=2 ETPCommand0=2 -ETPTopicOrder0=708 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=965 -[External Topic Properties\NtfsFindHardLinks] -Count=1 +[External Topic Properties\QuickSort@IJclSingleList@Integer@Integer@TSingleCompare] +Count=2 ETPCommand0=2 -ETPTopicOrder0=709 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=974 -[External Topic Properties\NtfsGetCompression@string@Short] +[External Topic Properties\QuickSort@IJclStrList@Integer@Integer@TStrCompare] Count=1 ETPCommand0=2 -ETPTopicOrder0=710 +ETPTopicOrder0=823 -[External Topic Properties\NtfsGetHardLinkInfo] -Count=1 +[External Topic Properties\QuickSort@IJclUnicodeStrList@Integer@Integer@TUnicodeStrCompare] +Count=2 ETPCommand0=2 -ETPTopicOrder0=711 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=973 -[External Topic Properties\NtfsOpLockAckClosePending@THandle@TOverlapped] -Count=1 +[External Topic Properties\QuickSort@IJclWideStrList@Integer@Integer@TWideStrCompare] +Count=2 ETPCommand0=2 -ETPTopicOrder0=712 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=966 -[External Topic Properties\NtfsOpLockBreakAckNo2@THandle@TOverlapped] +[External Topic Properties\Quotient@TPolarComplex@TPolarComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=713 +ETPTopicOrder0=977 -[External Topic Properties\NtfsOpLockBreakAcknowledge@THandle@TOverlapped] +[External Topic Properties\Quotient@TRectComplex@TRectComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=714 +ETPTopicOrder0=978 -[External Topic Properties\NtfsOpLockBreakNotify@THandle@TOverlapped] +[External Topic Properties\RadPerCycle] Count=1 ETPCommand0=2 -ETPTopicOrder0=715 +ETPTopicOrder0=1059 -[External Topic Properties\NtfsRequestOpLock@THandle@TOpLock@TOverlapped] +[External Topic Properties\RadPerDeg] Count=1 ETPCommand0=2 -ETPTopicOrder0=716 +ETPTopicOrder0=1060 -[External Topic Properties\NTSTATUS] +[External Topic Properties\RadPerGrad] Count=1 ETPCommand0=2 -ETPTopicOrder0=99 +ETPTopicOrder0=1061 -[External Topic Properties\NULL_USERSETINFO_PASSWD] +[External Topic Properties\RadToDeg@Extended] Count=1 ETPCommand0=2 -ETPTopicOrder0=1860 +ETPTopicOrder0=981 -[External Topic Properties\OpenCdMciDevice@TMCI_Open_Parms@Char] +[External Topic Properties\RadToDeg@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=717 +ETPTopicOrder0=980 -[External Topic Properties\OpenGLColorToWinColor@Float@Float@Float] +[External Topic Properties\RadToDeg@Single] Count=1 ETPCommand0=2 -ETPTopicOrder0=718 +ETPTopicOrder0=979 -[External Topic Properties\OrdinalMathandLogic] +[External Topic Properties\RadToGrad@Extended] Count=1 ETPCommand0=2 -ETPTopicOrder0=17 +ETPTopicOrder0=984 -[External Topic Properties\OrdToBinary@Cardinal] +[External Topic Properties\RadToGrad@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=719 +ETPTopicOrder0=982 -[External Topic Properties\OrdToBinary@Int64] +[External Topic Properties\RadToGrad@Single] Count=1 ETPCommand0=2 -ETPTopicOrder0=720 +ETPTopicOrder0=983 -[External Topic Properties\OrdToBinary@Integer] +[External Topic Properties\RankineAbsoluteZero] Count=1 ETPCommand0=2 -ETPTopicOrder0=721 +ETPTopicOrder0=1062 -[External Topic Properties\OrdToBinary@ShortInt] +[External Topic Properties\RankineAtFahrenheitZero] Count=1 ETPCommand0=2 -ETPTopicOrder0=722 +ETPTopicOrder0=1063 -[External Topic Properties\OrdToBinary@SmallInt] +[External Topic Properties\RankineBoilingPoint] Count=1 ETPCommand0=2 -ETPTopicOrder0=723 +ETPTopicOrder0=1064 -[External Topic Properties\OrdToBinary@Word] +[External Topic Properties\RankineFreezingPoint] Count=1 ETPCommand0=2 -ETPTopicOrder0=724 +ETPTopicOrder0=1065 -[External Topic Properties\OS2MSG_FILENAME] +[External Topic Properties\RankineTo@TTemperatureType@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=1861 +ETPTopicOrder0=985 -[External Topic Properties\OSVERSIONINFOEX] +[External Topic Properties\RankineToCelsius@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=100 +ETPTopicOrder0=986 -[External Topic Properties\OSVERSIONINFOEXA] +[External Topic Properties\RankineToFahrenheit@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=101 +ETPTopicOrder0=987 -[External Topic Properties\OSVERSIONINFOEXW] +[External Topic Properties\RankineToKelvin@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=102 +ETPTopicOrder0=988 -[External Topic Properties\PACTION_HEADER] +[External Topic Properties\RankineToReaumur@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=103 +ETPTopicOrder0=989 -[External Topic Properties\PActionHeader] +[External Topic Properties\RASDIALDLG] Count=1 ETPCommand0=2 -ETPTopicOrder0=104 +ETPTopicOrder0=385 -[External Topic Properties\PADAPTER_STATUS] +[External Topic Properties\RatioDegToGrad] Count=1 ETPCommand0=2 -ETPTopicOrder0=105 +ETPTopicOrder0=1066 -[External Topic Properties\PAE_FLAG] +[External Topic Properties\RatioDegToRad] Count=1 ETPCommand0=2 -ETPTopicOrder0=1862 +ETPTopicOrder0=1067 -[External Topic Properties\PAMD_BIT_10] +[External Topic Properties\RatioGradToDeg] Count=1 ETPCommand0=2 -ETPTopicOrder0=1863 +ETPTopicOrder0=1068 -[External Topic Properties\PAMD_BIT_11] +[External Topic Properties\RatioGradToRad] Count=1 ETPCommand0=2 -ETPTopicOrder0=1864 +ETPTopicOrder0=1069 -[External Topic Properties\PAMD_BIT_12] +[External Topic Properties\RatioRadToDeg] Count=1 ETPCommand0=2 -ETPTopicOrder0=1865 +ETPTopicOrder0=1070 -[External Topic Properties\PAMD_BIT_13] +[External Topic Properties\RatioRadToGrad] Count=1 ETPCommand0=2 -ETPTopicOrder0=1866 +ETPTopicOrder0=1071 -[External Topic Properties\PAMD_BIT_14] +[External Topic Properties\RDFN_AgencyCodeId] Count=1 ETPCommand0=2 -ETPTopicOrder0=1867 +ETPTopicOrder0=2153 -[External Topic Properties\PAMD_BIT_15] +[External Topic Properties\RDFN_Description] Count=1 ETPCommand0=2 -ETPTopicOrder0=1868 +ETPTopicOrder0=2154 -[External Topic Properties\PAMD_BIT_16] +[External Topic Properties\RDFN_FGDescription] Count=1 ETPCommand0=2 -ETPTopicOrder0=1869 +ETPTopicOrder0=2155 -[External Topic Properties\PAMD_BIT_17] +[External Topic Properties\RDFN_FunctionalGroupId] Count=1 ETPCommand0=2 -ETPTopicOrder0=1870 +ETPTopicOrder0=2156 -[External Topic Properties\PAMD_BIT_18] +[External Topic Properties\RDFN_ICDescription] Count=1 ETPCommand0=2 -ETPTopicOrder0=1871 +ETPTopicOrder0=2157 -[External Topic Properties\PAMD_BIT_19] +[External Topic Properties\RDFN_Id] Count=1 ETPCommand0=2 -ETPTopicOrder0=1872 +ETPTopicOrder0=2158 -[External Topic Properties\PAMD_BIT_20] +[External Topic Properties\RDFN_MaximumLength] Count=1 ETPCommand0=2 -ETPTopicOrder0=1873 +ETPTopicOrder0=2159 -[External Topic Properties\PAMD_BIT_21] +[External Topic Properties\RDFN_MaximumLoopRepeat] Count=1 ETPCommand0=2 -ETPTopicOrder0=1874 +ETPTopicOrder0=2160 -[External Topic Properties\PAMD_BIT_22] +[External Topic Properties\RDFN_MaximumUsage] Count=1 ETPCommand0=2 -ETPTopicOrder0=1875 +ETPTopicOrder0=2161 -[External Topic Properties\PAMD_BIT_23] +[External Topic Properties\RDFN_MinimumLength] Count=1 ETPCommand0=2 -ETPTopicOrder0=1876 +ETPTopicOrder0=2162 -[External Topic Properties\PAMD_BIT_24] +[External Topic Properties\RDFN_Notes] Count=1 ETPCommand0=2 -ETPTopicOrder0=1877 +ETPTopicOrder0=2163 -[External Topic Properties\PAMD_BIT_25] +[External Topic Properties\RDFN_OwnerLoopId] Count=1 ETPCommand0=2 -ETPTopicOrder0=1878 +ETPTopicOrder0=2164 -[External Topic Properties\PAMD_BIT_26] +[External Topic Properties\RDFN_ParentLoopId] Count=1 ETPCommand0=2 -ETPTopicOrder0=1879 +ETPTopicOrder0=2165 -[External Topic Properties\PAMD_BIT_27] +[External Topic Properties\RDFN_Position] Count=1 ETPCommand0=2 -ETPTopicOrder0=1880 +ETPTopicOrder0=2166 -[External Topic Properties\PAMD_BIT_28] +[External Topic Properties\RDFN_RequirementDesignator] Count=1 ETPCommand0=2 -ETPTopicOrder0=1881 +ETPTopicOrder0=2167 -[External Topic Properties\PAMD_BIT_29] +[External Topic Properties\RDFN_Section] Count=1 ETPCommand0=2 -ETPTopicOrder0=1882 +ETPTopicOrder0=2168 -[External Topic Properties\PAMD_BIT_30] +[External Topic Properties\RDFN_StandardId] Count=1 ETPCommand0=2 -ETPTopicOrder0=1883 +ETPTopicOrder0=2169 -[External Topic Properties\PAMD_BIT_31] +[External Topic Properties\RDFN_TransSetDesc] Count=1 ETPCommand0=2 -ETPTopicOrder0=1884 +ETPTopicOrder0=2170 -[External Topic Properties\PAMD_BIT_6] +[External Topic Properties\RDFN_TransSetId] Count=1 ETPCommand0=2 -ETPTopicOrder0=1885 +ETPTopicOrder0=2171 -[External Topic Properties\PAMD_BIT_7] +[External Topic Properties\RDFN_Type] Count=1 ETPCommand0=2 -ETPTopicOrder0=1886 +ETPTopicOrder0=2172 -[External Topic Properties\PAMD_BIT_9] +[External Topic Properties\RDFN_VersionId] Count=1 ETPCommand0=2 -ETPTopicOrder0=1887 +ETPTopicOrder0=2173 -[External Topic Properties\PAMD_FREQUENCYID] +[External Topic Properties\RDFN_VersionReleaseId] Count=1 ETPCommand0=2 -ETPTopicOrder0=1888 +ETPTopicOrder0=2174 -[External Topic Properties\PAMD_SOFTTHERMCONTROL] +[External Topic Properties\ReadKey] Count=1 ETPCommand0=2 -ETPTopicOrder0=1889 +ETPTopicOrder0=990 -[External Topic Properties\PAMD_TEMPSENSOR] +[External Topic Properties\ReadMessageCheck] Count=1 ETPCommand0=2 -ETPTopicOrder0=1890 +ETPTopicOrder0=991 -[External Topic Properties\PAMD_THERMALMONITOR] +[External Topic Properties\ReadMessageData] Count=1 ETPCommand0=2 -ETPTopicOrder0=1891 +ETPTopicOrder0=992 -[External Topic Properties\PAMD_THERMALTRIP] +[External Topic Properties\ReadMessageStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=1892 +ETPTopicOrder0=993 -[External Topic Properties\PAMD_TSC_INVARIANT] +[External Topic Properties\real_pcre] Count=1 ETPCommand0=2 -ETPTopicOrder0=1893 +ETPTopicOrder0=80 -[External Topic Properties\PAMD_VOLTAGEID] +[External Topic Properties\real_pcre_extra] Count=1 ETPCommand0=2 -ETPTopicOrder0=1894 +ETPTopicOrder0=81 -[External Topic Properties\PAnonObjectHeader] +[External Topic Properties\real_pcre_extra.callout_data] Count=1 ETPCommand0=2 -ETPTopicOrder0=106 +ETPTopicOrder0=0 -[External Topic Properties\PAnsiCharOrNil@AnsiString] +[External Topic Properties\real_pcre_extra.flags] Count=1 ETPCommand0=2 -ETPTopicOrder0=725 +ETPTopicOrder0=1 -[External Topic Properties\PARM_ERROR_NONE] +[External Topic Properties\real_pcre_extra.match_limit] Count=1 ETPCommand0=2 -ETPTopicOrder0=1895 +ETPTopicOrder0=2 -[External Topic Properties\PARM_ERROR_UNKNOWN] +[External Topic Properties\real_pcre_extra.match_limit_recursion] Count=1 ETPCommand0=2 -ETPTopicOrder0=1896 +ETPTopicOrder0=3 -[External Topic Properties\PARMNUM_ALL] +[External Topic Properties\real_pcre_extra.study_data] Count=1 ETPCommand0=2 -ETPTopicOrder0=1897 +ETPTopicOrder0=4 -[External Topic Properties\PARMNUM_BASE_INFOLEVEL] +[External Topic Properties\real_pcre_extra.tables] Count=1 ETPCommand0=2 -ETPTopicOrder0=1898 +ETPTopicOrder0=5 -[External Topic Properties\ParseCOMSDataOfCOMSDefinition@string@TEDISEFCompositeElement@TEDISEFDataObjectList] +[External Topic Properties\ReaumurAbsoluteZero] Count=1 ETPCommand0=2 -ETPTopicOrder0=726 +ETPTopicOrder0=1072 -[External Topic Properties\ParseCOMSDataOfSEGSDefinition@string@TEDISEFCompositeElement@TEDISEFDataObjectList] +[External Topic Properties\ReaumurBoilingPoint] Count=1 ETPCommand0=2 -ETPTopicOrder0=727 +ETPTopicOrder0=1073 -[External Topic Properties\ParseELMSDataOfCOMSDefinition@string@TEDISEFElement@TEDISEFDataObjectList] +[External Topic Properties\ReaumurFreezingPoint] Count=1 ETPCommand0=2 -ETPTopicOrder0=728 +ETPTopicOrder0=1074 -[External Topic Properties\ParseELMSDataOfELMSDefinition@string@TEDISEFElement] +[External Topic Properties\ReaumurTo@TTemperatureType@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=729 +ETPTopicOrder0=994 -[External Topic Properties\ParseELMSDataOfSEGSDefinition@string@TEDISEFElement@TEDISEFDataObjectList] +[External Topic Properties\ReaumurToCelsius@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=730 +ETPTopicOrder0=995 -[External Topic Properties\ParseLoopDataOfSETSDefinition@string@TEDISEFLoop@TEDISEFFile] +[External Topic Properties\ReaumurToFahrenheit@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=731 +ETPTopicOrder0=996 -[External Topic Properties\ParseSEGSDataOfSEGSDefinition@string@TEDISEFSegment@TEDISEFFile] +[External Topic Properties\ReaumurToKelvin@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=732 +ETPTopicOrder0=997 -[External Topic Properties\ParseSEGSDataOfSETSDefinition@string@TEDISEFSegment@TEDISEFFile] +[External Topic Properties\ReaumurToRankine@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=733 +ETPTopicOrder0=998 -[External Topic Properties\ParseSetsDataOfSETSDefinition@string@TEDISEFSet@TEDISEFFile] +[External Topic Properties\ReBaseImage@PAnsiChar@PAnsiChar@BOOL@BOOL@BOOL@ULONG@ULONG@ULONG_PTR@ULONG@ULONG_PTR@ULONG] Count=1 ETPCommand0=2 -ETPTopicOrder0=734 +ETPTopicOrder0=846 -[External Topic Properties\ParseTableDataOfSETSDefinition@string@TEDISEFTable@TEDISEFFile] +[External Topic Properties\ReBaseImage64@PAnsiChar@PAnsiChar@BOOL@BOOL@BOOL@ULONG@ULONG@TJclAddr64@ULONG@TJclAddr64@ULONG] Count=1 ETPCommand0=2 -ETPTopicOrder0=735 +ETPTopicOrder0=847 -[External Topic Properties\PAT_FLAG] +[External Topic Properties\RectComplex@Float@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=1899 +ETPTopicOrder0=999 -[External Topic Properties\PathCanonicalize] +[External Topic Properties\RectComplex@TPolarComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=736 +ETPTopicOrder0=1000 -[External Topic Properties\PathExtractPathDepth] +[External Topic Properties\RectFitToScreen@TRect] Count=1 ETPCommand0=2 -ETPTopicOrder0=737 +ETPTopicOrder0=1001 -[External Topic Properties\PathGetDepth] +[External Topic Properties\RedComponent@TColor32] Count=1 ETPCommand0=2 -ETPTopicOrder0=738 +ETPTopicOrder0=1002 -[External Topic Properties\PATHLEN] -Count=1 +[External Topic Properties\RefUnique] +Count=2 ETPCommand0=2 -ETPTopicOrder0=1900 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1003 -[External Topic Properties\PathListAddItems@string@string] +[External Topic Properties\REG_BINARY] Count=1 ETPCommand0=2 -ETPTopicOrder0=739 +ETPTopicOrder0=2178 -[External Topic Properties\PathListDelItem@string@Integer] +[External Topic Properties\REG_DWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=740 +ETPTopicOrder0=2179 -[External Topic Properties\PathListDelItems@string@string] +[External Topic Properties\REG_DWORD_BIG_ENDIAN] Count=1 ETPCommand0=2 -ETPTopicOrder0=741 +ETPTopicOrder0=2180 -[External Topic Properties\PathListGetItem@string@Integer] +[External Topic Properties\REG_DWORD_LITTLE_ENDIAN] Count=1 ETPCommand0=2 -ETPTopicOrder0=742 +ETPTopicOrder0=2181 -[External Topic Properties\PathListIncludeItems@string@string] +[External Topic Properties\REG_EXPAND_SZ] Count=1 ETPCommand0=2 -ETPTopicOrder0=743 +ETPTopicOrder0=2182 -[External Topic Properties\PathListItemCount@string] +[External Topic Properties\REG_FULL_RESOURCE_DESCRIPTOR] Count=1 ETPCommand0=2 -ETPTopicOrder0=744 +ETPTopicOrder0=2183 -[External Topic Properties\PathListItemIndex@string@string] +[External Topic Properties\REG_LINK] Count=1 ETPCommand0=2 -ETPTopicOrder0=745 +ETPTopicOrder0=2184 -[External Topic Properties\PathListSetItem@string@Integer@string] +[External Topic Properties\REG_MULTI_SZ] Count=1 ETPCommand0=2 -ETPTopicOrder0=746 +ETPTopicOrder0=2185 -[External Topic Properties\PBE_FLAG] +[External Topic Properties\REG_NONE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1901 +ETPTopicOrder0=2186 -[External Topic Properties\PBoolean] +[External Topic Properties\REG_QWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=107 +ETPTopicOrder0=2187 -[External Topic Properties\PByte] +[External Topic Properties\REG_QWORD_LITTLE_ENDIAN] Count=1 ETPCommand0=2 -ETPTopicOrder0=108 +ETPTopicOrder0=2188 -[External Topic Properties\PCardinal] +[External Topic Properties\REG_RESOURCE_LIST] Count=1 ETPCommand0=2 -ETPTopicOrder0=109 +ETPTopicOrder0=2189 -[External Topic Properties\PCharVector] +[External Topic Properties\REG_RESOURCE_REQUIREMENTS_LIST] Count=1 ETPCommand0=2 -ETPTopicOrder0=110 +ETPTopicOrder0=2190 -[External Topic Properties\PCLEANUI] +[External Topic Properties\REG_SZ] Count=1 ETPCommand0=2 -ETPTopicOrder0=1902 +ETPTopicOrder0=2191 -[External Topic Properties\PClipCodes] +[External Topic Properties\RegAutoExecEnabled@TExecKind@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=111 +ETPTopicOrder0=1004 -[External Topic Properties\PClrMetadataHeader] +[External Topic Properties\RegCreateKey@DelphiHKEY@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=112 +ETPTopicOrder0=1005 -[External Topic Properties\PClrStreamHeader] +[External Topic Properties\RegGetValueNamesAndValues@HKEY@string@TStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=113 +ETPTopicOrder0=1006 -[External Topic Properties\PClrTableStreamHeader] +[External Topic Properties\RegGetWOW64AccessMode] Count=1 ETPCommand0=2 -ETPTopicOrder0=114 +ETPTopicOrder0=1007 -[External Topic Properties\PColor32] +[External Topic Properties\RegisterCLSIDInCategory@TGUID@TGUID] Count=1 ETPCommand0=2 -ETPTopicOrder0=115 +ETPTopicOrder0=1008 -[External Topic Properties\PColor32Array] +[External Topic Properties\REGISTERED] Count=1 ETPCommand0=2 -ETPTopicOrder0=116 +ETPTopicOrder0=2192 -[External Topic Properties\pcre] -Count=2 +[External Topic Properties\REGISTERING] +Count=1 ETPCommand0=2 -ETPCommand1=3 -ETPGroup1=RegularExpressions -ETPTopicOrder0=28 +ETPTopicOrder0=2193 -[External Topic Properties\pcre.pas] +[External Topic Properties\RegisterUnitVersion@THandle@TUnitVersionInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=90 +ETPTopicOrder0=1009 -[External Topic Properties\PCRE_ANCHORED] +[External Topic Properties\RegisterVersionControlPluginClass@TJclVersionControlPluginClass] Count=1 ETPCommand0=2 -ETPTopicOrder0=1903 +ETPTopicOrder0=1010 -[External Topic Properties\PCRE_AUTO_CALLOUT] +[External Topic Properties\RegistryandInifiles] Count=1 ETPCommand0=2 -ETPTopicOrder0=1904 +ETPTopicOrder0=17 -[External Topic Properties\pcre_callout_block] +[External Topic Properties\RegKeyDelimiter] Count=1 ETPCommand0=2 -ETPTopicOrder0=79 +ETPTopicOrder0=1075 -[External Topic Properties\pcre_callout_block.callout_data] +[External Topic Properties\RegReadAnsiMultiSz@DelphiHKEY@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=1011 -[External Topic Properties\pcre_callout_block.callout_number] +[External Topic Properties\RegReadAnsiMultiSz@DelphiHKEY@string@string@TAnsiStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=1 +ETPTopicOrder0=1012 -[External Topic Properties\pcre_callout_block.capture_last] +[External Topic Properties\RegReadAnsiMultiSzDef@DelphiHKEY@string@string@PAnsiMultiSz] Count=1 ETPCommand0=2 -ETPTopicOrder0=2 +ETPTopicOrder0=1014 -[External Topic Properties\pcre_callout_block.capture_top] +[External Topic Properties\RegReadAnsiMultiSzDef@DelphiHKEY@string@string@TAnsiStrings@TAnsiStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=3 +ETPTopicOrder0=1013 -[External Topic Properties\pcre_callout_block.current_position] +[External Topic Properties\RegReadAnsiMultiSzEx@DelphiHKEY@string@string@PAnsiMultiSz@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=4 +ETPTopicOrder0=1015 -[External Topic Properties\pcre_callout_block.next_item_length] +[External Topic Properties\RegReadAnsiMultiSzEx@DelphiHKEY@string@string@TAnsiStrings@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=5 +ETPTopicOrder0=1016 -[External Topic Properties\pcre_callout_block.offset_vector] +[External Topic Properties\RegReadAnsiStringEx@DelphiHKEY@AnsiString@AnsiString@AnsiString@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=6 +ETPTopicOrder0=855 -[External Topic Properties\pcre_callout_block.pattern_position] +[External Topic Properties\RegReadAnsiStringEx@DelphiHKEY@string@string@AnsiString@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=7 +ETPTopicOrder0=1017 -[External Topic Properties\pcre_callout_block.start_match] +[External Topic Properties\RegReadBinaryEx@DelphiHKEY@string@string@@Cardinal@Cardinal@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=8 +ETPTopicOrder0=1018 -[External Topic Properties\pcre_callout_block.subject] +[External Topic Properties\RegReadCardinalEx@DelphiHKEY@string@string@Cardinal@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=9 +ETPTopicOrder0=1019 -[External Topic Properties\pcre_callout_block.subject_length] +[External Topic Properties\RegReadDouble@DelphiHKEY@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=10 +ETPTopicOrder0=1020 -[External Topic Properties\pcre_callout_block.version] +[External Topic Properties\RegReadDoubleDef@DelphiHKEY@string@string@Double] Count=1 ETPCommand0=2 -ETPTopicOrder0=11 +ETPTopicOrder0=1021 -[External Topic Properties\pcre_callout_callback] +[External Topic Properties\RegReadDoubleEx@DelphiHKEY@string@string@Double@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=117 +ETPTopicOrder0=1022 -[External Topic Properties\pcre_callout_func] +[External Topic Properties\RegReadDWORDEx@DelphiHKEY@string@string@DWORD@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=28 +ETPTopicOrder0=1023 -[External Topic Properties\PCRE_CASELESS] +[External Topic Properties\RegReadExtended@DelphiHKEY@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1905 +ETPTopicOrder0=1024 -[External Topic Properties\pcre_compile] +[External Topic Properties\RegReadExtendedDef@DelphiHKEY@string@string@Extended] Count=1 ETPCommand0=2 -ETPTopicOrder0=29 +ETPTopicOrder0=1025 -[External Topic Properties\pcre_compile@PChar@Integer@PPChar@PInteger@PChar] +[External Topic Properties\RegReadExtendedEx@DelphiHKEY@string@string@Extended@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=747 +ETPTopicOrder0=1026 -[External Topic Properties\pcre_compile_func] +[External Topic Properties\RegReadInt64Ex@DelphiHKEY@string@string@Int64@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=118 +ETPTopicOrder0=1027 -[External Topic Properties\pcre_compile2] +[External Topic Properties\RegReadIntegerEx@DelphiHKEY@string@string@Integer@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=30 +ETPTopicOrder0=1028 -[External Topic Properties\pcre_compile2@PChar@Integer@PInteger@PPChar@PInteger@PChar] +[External Topic Properties\RegReadMultiSz@DelphiHKEY@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=748 +ETPTopicOrder0=1029 -[External Topic Properties\pcre_compile2_func] +[External Topic Properties\RegReadMultiSz@DelphiHKEY@string@string@TStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=119 +ETPTopicOrder0=1030 -[External Topic Properties\pcre_config] +[External Topic Properties\RegReadMultiSzDef@DelphiHKEY@string@string@PMultiSz] Count=1 ETPCommand0=2 -ETPTopicOrder0=31 +ETPTopicOrder0=1031 -[External Topic Properties\pcre_config@Integer@Pointer] +[External Topic Properties\RegReadMultiSzDef@DelphiHKEY@string@string@TStrings@TStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=749 +ETPTopicOrder0=1032 -[External Topic Properties\pcre_config_func] +[External Topic Properties\RegReadMultiSzEx@DelphiHKEY@string@string@PMultiSz@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=120 +ETPTopicOrder0=1033 -[External Topic Properties\PCRE_CONFIG_LINK_SIZE] +[External Topic Properties\RegReadMultiSzEx@DelphiHKEY@string@string@TStrings@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=1906 +ETPTopicOrder0=1034 -[External Topic Properties\PCRE_CONFIG_MATCH_LIMIT] +[External Topic Properties\RegReadSingle@DelphiHKEY@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1907 +ETPTopicOrder0=1035 -[External Topic Properties\PCRE_CONFIG_MATCH_LIMIT_RECURSION] +[External Topic Properties\RegReadSingleDef@DelphiHKEY@string@string@Single] Count=1 ETPCommand0=2 -ETPTopicOrder0=1908 +ETPTopicOrder0=1036 -[External Topic Properties\PCRE_CONFIG_NEWLINE] +[External Topic Properties\RegReadSingleEx@DelphiHKEY@string@string@Single@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=1909 +ETPTopicOrder0=1037 -[External Topic Properties\PCRE_CONFIG_POSIX_MALLOC_THRESHOLD] +[External Topic Properties\RegReadStringEx@DelphiHKEY@string@string@AnsiString@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=1910 +ETPTopicOrder0=876 -[External Topic Properties\PCRE_CONFIG_STACKRECURSE] +[External Topic Properties\RegReadStringEx@DelphiHKEY@string@string@string@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=1911 +ETPTopicOrder0=1038 -[External Topic Properties\PCRE_CONFIG_UNICODE_PROPERTIES] +[External Topic Properties\RegReadUInt64Ex@DelphiHKEY@string@string@UInt64@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=1912 +ETPTopicOrder0=1039 -[External Topic Properties\PCRE_CONFIG_UTF8] +[External Topic Properties\RegReadWideMultiSz@DelphiHKEY@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1913 +ETPTopicOrder0=1040 -[External Topic Properties\pcre_copy_named_substring] +[External Topic Properties\RegReadWideMultiSz@DelphiHKEY@string@string@TWideStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=32 +ETPTopicOrder0=1041 -[External Topic Properties\pcre_copy_named_substring@PPCRE@PChar@PInteger@Integer@PChar@PChar@Integer] +[External Topic Properties\RegReadWideMultiSzDef@DelphiHKEY@string@string@PWideMultiSz] Count=1 ETPCommand0=2 -ETPTopicOrder0=750 +ETPTopicOrder0=1043 -[External Topic Properties\pcre_copy_named_substring_func] +[External Topic Properties\RegReadWideMultiSzDef@DelphiHKEY@string@string@TWideStrings@TWideStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=121 +ETPTopicOrder0=1042 -[External Topic Properties\pcre_copy_substring] +[External Topic Properties\RegReadWideMultiSzEx@DelphiHKEY@string@string@PWideMultiSz@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=33 +ETPTopicOrder0=1045 -[External Topic Properties\pcre_copy_substring@PChar@PInteger@Integer@Integer@PChar@Integer] +[External Topic Properties\RegReadWideMultiSzEx@DelphiHKEY@string@string@TWideStrings@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=751 +ETPTopicOrder0=1044 -[External Topic Properties\pcre_copy_substring_func] +[External Topic Properties\RegReadWideStringEx@DelphiHKEY@string@string@WideString@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=122 +ETPTopicOrder0=1046 -[External Topic Properties\pcre_dfa_exec] +[External Topic Properties\RegSetWOW64AccessMode@TJclRegWOW64Access] Count=1 ETPCommand0=2 -ETPTopicOrder0=34 +ETPTopicOrder0=1047 -[External Topic Properties\pcre_dfa_exec@PPCRE@PPCREExtra@PChar@Integer@Integer@Integer@PInteger@Integer@PInteger@Integer] -Count=1 +[External Topic Properties\Regular Expressions] +Count=2 ETPCommand0=2 -ETPTopicOrder0=752 +ETPCommand1=3 +ETPGroup1=JCL +ETPTopicOrder0=25 -[External Topic Properties\pcre_dfa_exec_func] -Count=1 +[External Topic Properties\RegularExpressions] +Count=2 ETPCommand0=2 -ETPTopicOrder0=123 +ETPCommand1=3 +ETPGroup1=JCL +ETPTopicOrder0=27 -[External Topic Properties\PCRE_DFA_RESTART] +[External Topic Properties\RegValueExists@DelphiHKEY@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1914 +ETPTopicOrder0=1048 -[External Topic Properties\PCRE_DFA_SHORTEST] +[External Topic Properties\RegWriteAnsiMultiSz@DelphiHKEY@string@string@Cardinal@PAnsiMultiSz] Count=1 ETPCommand0=2 -ETPTopicOrder0=1915 +ETPTopicOrder0=1049 -[External Topic Properties\PCRE_DOLLAR_ENDONLY] +[External Topic Properties\RegWriteAnsiMultiSz@DelphiHKEY@string@string@Cardinal@TAnsiStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=1916 +ETPTopicOrder0=1050 -[External Topic Properties\PCRE_DOTALL] +[External Topic Properties\RegWriteAnsiMultiSz@DelphiHKEY@string@string@PAnsiMultiSz] Count=1 ETPCommand0=2 -ETPTopicOrder0=1917 +ETPTopicOrder0=1052 -[External Topic Properties\PCRE_DUPNAMES] +[External Topic Properties\RegWriteAnsiMultiSz@DelphiHKEY@string@string@TAnsiStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=1918 +ETPTopicOrder0=1051 -[External Topic Properties\PCRE_ERROR_BADCOUNT] +[External Topic Properties\RegWriteAnsiString@DelphiHKEY@AnsiString@AnsiString@Cardinal@AnsiString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1919 +ETPTopicOrder0=886 -[External Topic Properties\PCRE_ERROR_BADMAGIC] +[External Topic Properties\RegWriteAnsiString@DelphiHKEY@string@string@Cardinal@AnsiString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1920 +ETPTopicOrder0=1053 -[External Topic Properties\PCRE_ERROR_BADOPTION] +[External Topic Properties\RegWriteBool@DelphiHKEY@string@string@Cardinal@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=1921 +ETPTopicOrder0=1054 -[External Topic Properties\PCRE_ERROR_BADPARTIAL] +[External Topic Properties\RegWriteCardinal@DelphiHKEY@string@string@Cardinal@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=1922 +ETPTopicOrder0=1055 -[External Topic Properties\PCRE_ERROR_BADUTF8] +[External Topic Properties\RegWriteDouble@DelphiHKEY@string@string@Cardinal@Double] Count=1 ETPCommand0=2 -ETPTopicOrder0=1923 +ETPTopicOrder0=1056 -[External Topic Properties\PCRE_ERROR_BADUTF8_OFFSET] +[External Topic Properties\RegWriteDouble@DelphiHKEY@string@string@Double] Count=1 ETPCommand0=2 -ETPTopicOrder0=1924 +ETPTopicOrder0=1057 -[External Topic Properties\PCRE_ERROR_CALLOUT] +[External Topic Properties\RegWriteDWORD@DelphiHKEY@string@string@DWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=1925 +ETPTopicOrder0=1058 -[External Topic Properties\PCRE_ERROR_DFA_RECURSE] +[External Topic Properties\RegWriteExtended@DelphiHKEY@string@string@Cardinal@Extended] Count=1 ETPCommand0=2 -ETPTopicOrder0=1926 +ETPTopicOrder0=1060 -[External Topic Properties\PCRE_ERROR_DFA_UCOND] +[External Topic Properties\RegWriteExtended@DelphiHKEY@string@string@Extended] Count=1 ETPCommand0=2 -ETPTopicOrder0=1927 +ETPTopicOrder0=1059 -[External Topic Properties\PCRE_ERROR_DFA_UITEM] +[External Topic Properties\RegWriteInt64@DelphiHKEY@string@string@Int64] Count=1 ETPCommand0=2 -ETPTopicOrder0=1928 +ETPTopicOrder0=1061 -[External Topic Properties\PCRE_ERROR_DFA_UMLIMIT] +[External Topic Properties\RegWriteInteger@DelphiHKEY@string@string@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1929 +ETPTopicOrder0=1062 -[External Topic Properties\PCRE_ERROR_DFA_WSSIZE] +[External Topic Properties\RegWriteMultiSz@DelphiHKEY@string@string@Cardinal@PMultiSz] Count=1 ETPCommand0=2 -ETPTopicOrder0=1930 +ETPTopicOrder0=1065 -[External Topic Properties\PCRE_ERROR_INTERNAL] +[External Topic Properties\RegWriteMultiSz@DelphiHKEY@string@string@Cardinal@TStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=1931 +ETPTopicOrder0=1063 -[External Topic Properties\PCRE_ERROR_MATCHLIMIT] +[External Topic Properties\RegWriteMultiSz@DelphiHKEY@string@string@PMultiSz] Count=1 ETPCommand0=2 -ETPTopicOrder0=1932 +ETPTopicOrder0=1064 -[External Topic Properties\PCRE_ERROR_NOMATCH] +[External Topic Properties\RegWriteMultiSz@DelphiHKEY@string@string@TStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=1933 +ETPTopicOrder0=1066 -[External Topic Properties\PCRE_ERROR_NOMEMORY] +[External Topic Properties\RegWriteSingle@DelphiHKEY@string@string@Cardinal@Single] Count=1 ETPCommand0=2 -ETPTopicOrder0=1934 +ETPTopicOrder0=1068 -[External Topic Properties\PCRE_ERROR_NOSUBSTRING] +[External Topic Properties\RegWriteSingle@DelphiHKEY@string@string@Single] Count=1 ETPCommand0=2 -ETPTopicOrder0=1935 +ETPTopicOrder0=1067 -[External Topic Properties\PCRE_ERROR_NULL] +[External Topic Properties\RegWriteString@DelphiHKEY@string@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1936 +ETPTopicOrder0=1069 -[External Topic Properties\PCRE_ERROR_PARTIAL] +[External Topic Properties\RegWriteUInt64@DelphiHKEY@string@string@UInt64] Count=1 ETPCommand0=2 -ETPTopicOrder0=1937 +ETPTopicOrder0=1070 -[External Topic Properties\PCRE_ERROR_RECURSIONLIMIT] +[External Topic Properties\RegWriteWideMultiSz@DelphiHKEY@string@string@Cardinal@PWideMultiSz] Count=1 ETPCommand0=2 -ETPTopicOrder0=1938 +ETPTopicOrder0=1073 -[External Topic Properties\PCRE_ERROR_UNKNOWN_NODE] +[External Topic Properties\RegWriteWideMultiSz@DelphiHKEY@string@string@Cardinal@TWideStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=1939 +ETPTopicOrder0=1071 -[External Topic Properties\pcre_exec] +[External Topic Properties\RegWriteWideMultiSz@DelphiHKEY@string@string@PWideMultiSz] Count=1 ETPCommand0=2 -ETPTopicOrder0=35 +ETPTopicOrder0=1074 -[External Topic Properties\pcre_exec@PPCRE@PPCREExtra@PChar@Integer@Integer@Integer@PInteger@Integer] +[External Topic Properties\RegWriteWideMultiSz@DelphiHKEY@string@string@TWideStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=753 +ETPTopicOrder0=1072 -[External Topic Properties\pcre_exec_func] +[External Topic Properties\RegWriteWideString@DelphiHKEY@string@string@WideString] Count=1 ETPCommand0=2 -ETPTopicOrder0=124 +ETPTopicOrder0=1075 -[External Topic Properties\PCRE_EXTENDED] +[External Topic Properties\RemoveIgnoredException@TClass] Count=1 ETPCommand0=2 -ETPTopicOrder0=1940 +ETPTopicOrder0=1076 -[External Topic Properties\PCRE_EXTRA] +[External Topic Properties\RemoveIgnoredExceptionByName@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1941 +ETPTopicOrder0=1077 -[External Topic Properties\PCRE_EXTRA_CALLOUT_DATA] +[External Topic Properties\REPARSE_DATA_BUFFER] Count=1 ETPCommand0=2 -ETPTopicOrder0=1942 +ETPTopicOrder0=386 -[External Topic Properties\PCRE_EXTRA_MATCH_LIMIT] +[External Topic Properties\REPARSE_GUID_DATA_BUFFER] Count=1 ETPCommand0=2 -ETPTopicOrder0=1943 +ETPTopicOrder0=387 -[External Topic Properties\PCRE_EXTRA_MATCH_LIMIT_RECURSION] +[External Topic Properties\REPARSE_POINT_INFORMATION] Count=1 ETPCommand0=2 -ETPTopicOrder0=1944 +ETPTopicOrder0=388 -[External Topic Properties\PCRE_EXTRA_STUDY_DATA] +[External Topic Properties\ReplacementCharacter] Count=1 ETPCommand0=2 -ETPTopicOrder0=1945 +ETPTopicOrder0=2195 -[External Topic Properties\PCRE_EXTRA_TABLES] +[External Topic Properties\ReplacesCorHdrNumericDefines] Count=1 ETPCommand0=2 -ETPTopicOrder0=1946 +ETPTopicOrder0=389 -[External Topic Properties\PCRE_FIRSTLINE] +[External Topic Properties\ResetIStreamToStart@IStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=1947 +ETPTopicOrder0=1078 -[External Topic Properties\pcre_free_callback] +[External Topic Properties\ResetMemory@@Longint] Count=1 ETPCommand0=2 -ETPTopicOrder0=125 +ETPTopicOrder0=1079 -[External Topic Properties\pcre_free_func] -Count=1 +[External Topic Properties\Reverse@IJclAnsiStrIterator@IJclAnsiStrIterator] +Count=2 ETPCommand0=2 -ETPTopicOrder0=36 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1087 -[External Topic Properties\pcre_free_substring] -Count=1 +[External Topic Properties\Reverse@IJclCardinalIterator@IJclCardinalIterator] +Count=2 ETPCommand0=2 -ETPTopicOrder0=37 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1091 -[External Topic Properties\pcre_free_substring@PChar] -Count=1 +[External Topic Properties\Reverse@IJclDoubleIterator@IJclDoubleIterator] +Count=2 ETPCommand0=2 -ETPTopicOrder0=754 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1086 -[External Topic Properties\pcre_free_substring_func] -Count=1 +[External Topic Properties\Reverse@IJclExtendedIterator@IJclExtendedIterator] +Count=2 ETPCommand0=2 -ETPTopicOrder0=126 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1081 -[External Topic Properties\pcre_free_substring_list] -Count=1 +[External Topic Properties\Reverse@IJclInt64Iterator@IJclInt64Iterator] +Count=2 ETPCommand0=2 -ETPTopicOrder0=38 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1084 -[External Topic Properties\pcre_free_substring_list@PChar] -Count=1 +[External Topic Properties\Reverse@IJclIntegerIterator@IJclIntegerIterator] +Count=2 ETPCommand0=2 -ETPTopicOrder0=755 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1082 -[External Topic Properties\pcre_free_substring_list_func] -Count=1 +[External Topic Properties\Reverse@IJclIntfIterator@IJclIntfIterator] +Count=2 ETPCommand0=2 -ETPTopicOrder0=127 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1088 -[External Topic Properties\pcre_fullinfo] -Count=1 +[External Topic Properties\Reverse@IJclIterator@IJclIterator] +Count=2 ETPCommand0=2 -ETPTopicOrder0=39 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1090 -[External Topic Properties\pcre_fullinfo@PPCRE@PPCREExtra@Integer@Pointer] -Count=1 +[External Topic Properties\Reverse@IJclPtrIterator@IJclPtrIterator] +Count=2 ETPCommand0=2 -ETPTopicOrder0=756 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1080 -[External Topic Properties\pcre_fullinfo_func] -Count=1 +[External Topic Properties\Reverse@IJclSingleIterator@IJclSingleIterator] +Count=2 ETPCommand0=2 -ETPTopicOrder0=128 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1089 -[External Topic Properties\pcre_get_named_substring] +[External Topic Properties\Reverse@IJclStrIterator@IJclStrIterator] Count=1 ETPCommand0=2 -ETPTopicOrder0=40 +ETPTopicOrder0=911 -[External Topic Properties\pcre_get_named_substring@PPCRE@PChar@PInteger@Integer@PChar@PPChar] -Count=1 +[External Topic Properties\Reverse@IJclUnicodeStrIterator@IJclUnicodeStrIterator] +Count=2 ETPCommand0=2 -ETPTopicOrder0=757 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1085 -[External Topic Properties\pcre_get_named_substring_func] -Count=1 +[External Topic Properties\Reverse@IJclWideStrIterator@IJclWideStrIterator] +Count=2 ETPCommand0=2 -ETPTopicOrder0=129 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1083 -[External Topic Properties\pcre_get_stringnumber] +[External Topic Properties\ReverseBits@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=41 +ETPTopicOrder0=1097 -[External Topic Properties\pcre_get_stringnumber@PPCRE@PChar] +[External Topic Properties\ReverseBits@Int64] Count=1 ETPCommand0=2 -ETPTopicOrder0=758 +ETPTopicOrder0=1094 -[External Topic Properties\pcre_get_stringnumber_func] +[External Topic Properties\ReverseBits@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=130 +ETPTopicOrder0=1098 -[External Topic Properties\pcre_get_stringtable_entries] +[External Topic Properties\ReverseBits@Pointer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=42 +ETPTopicOrder0=1092 -[External Topic Properties\pcre_get_stringtable_entries@PPCRE@PChar@PPChar@PPChar] +[External Topic Properties\ReverseBits@Shortint] Count=1 ETPCommand0=2 -ETPTopicOrder0=759 +ETPTopicOrder0=1096 -[External Topic Properties\pcre_get_stringtable_entries_func] +[External Topic Properties\ReverseBits@Smallint] Count=1 ETPCommand0=2 -ETPTopicOrder0=131 +ETPTopicOrder0=1095 -[External Topic Properties\pcre_get_substring] +[External Topic Properties\ReverseBits@Word] Count=1 ETPCommand0=2 -ETPTopicOrder0=43 +ETPTopicOrder0=1093 -[External Topic Properties\pcre_get_substring@PChar@PInteger@Integer@Integer@PPChar] +[External Topic Properties\ReverseBytes@Int64] Count=1 ETPCommand0=2 -ETPTopicOrder0=760 +ETPTopicOrder0=1103 -[External Topic Properties\pcre_get_substring_func] +[External Topic Properties\ReverseBytes@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=132 +ETPTopicOrder0=1102 -[External Topic Properties\pcre_get_substring_list] +[External Topic Properties\ReverseBytes@Pointer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=44 +ETPTopicOrder0=1099 -[External Topic Properties\pcre_get_substring_list@PChar@PInteger@Integer@PPPChar] +[External Topic Properties\ReverseBytes@Smallint] Count=1 ETPCommand0=2 -ETPTopicOrder0=761 +ETPTopicOrder0=1101 -[External Topic Properties\pcre_get_substring_list_func] +[External Topic Properties\ReverseBytes@Word] Count=1 ETPCommand0=2 -ETPTopicOrder0=133 +ETPTopicOrder0=1100 -[External Topic Properties\pcre_info] +[External Topic Properties\RGBAToBGRA@Pointer@Pointer@Byte@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=45 +ETPTopicOrder0=1104 -[External Topic Properties\pcre_info@PPCRE@PInteger@PInteger] +[External Topic Properties\RGBToBGR@Pointer@Pointer@Byte@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=762 +ETPTopicOrder0=1105 -[External Topic Properties\PCRE_INFO_BACKREFMAX] +[External Topic Properties\RGBToBGR@Pointer@Pointer@Pointer@Pointer@Byte@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=1948 +ETPTopicOrder0=1106 -[External Topic Properties\PCRE_INFO_CAPTURECOUNT] +[External Topic Properties\RGBToHLS@Single@Single@Single@Single@Single@Single] Count=1 ETPCommand0=2 -ETPTopicOrder0=1949 +ETPTopicOrder0=1107 -[External Topic Properties\PCRE_INFO_DEFAULT_TABLES] +[External Topic Properties\RGBToHLS@TColorRef] Count=1 ETPCommand0=2 -ETPTopicOrder0=1950 +ETPTopicOrder0=1108 -[External Topic Properties\PCRE_INFO_FIRSTCHAR] +[External Topic Properties\RGBToHLS@TColorVector] Count=1 ETPCommand0=2 -ETPTopicOrder0=1951 +ETPTopicOrder0=1109 -[External Topic Properties\PCRE_INFO_FIRSTTABLE] +[External Topic Properties\RGBToHSL@Single@Single@Single@Single@Single@Single] Count=1 ETPCommand0=2 -ETPTopicOrder0=1952 +ETPTopicOrder0=932 -[External Topic Properties\pcre_info_func] +[External Topic Properties\RGBToHSL@TColor32@Single@Single@Single] Count=1 ETPCommand0=2 -ETPTopicOrder0=134 +ETPTopicOrder0=1110 -[External Topic Properties\PCRE_INFO_LASTLITERAL] +[External Topic Properties\RMLEN] Count=1 ETPCommand0=2 -ETPTopicOrder0=1953 +ETPTopicOrder0=2196 -[External Topic Properties\PCRE_INFO_NAMECOUNT] +[External Topic Properties\Root@TPolarComplex@Cardinal@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=1954 +ETPTopicOrder0=1111 -[External Topic Properties\PCRE_INFO_NAMEENTRYSIZE] +[External Topic Properties\RootKeys] Count=1 ETPCommand0=2 -ETPTopicOrder0=1955 +ETPTopicOrder0=1076 -[External Topic Properties\PCRE_INFO_NAMETABLE] +[External Topic Properties\RoundToAllocGranularity64@Int64@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=1956 +ETPTopicOrder0=1112 -[External Topic Properties\PCRE_INFO_OPTIONS] +[External Topic Properties\RRot@Integer@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=1957 +ETPTopicOrder0=1113 -[External Topic Properties\PCRE_INFO_SIZE] +[External Topic Properties\RRot@Word@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=1958 +ETPTopicOrder0=1114 -[External Topic Properties\PCRE_INFO_STUDYSIZE] +[External Topic Properties\RsArchitect] Count=1 ETPCommand0=2 -ETPTopicOrder0=1959 +ETPTopicOrder0=1077 -[External Topic Properties\pcre_maketables] +[External Topic Properties\RsArg_NullReferenceException] Count=1 ETPCommand0=2 -ETPTopicOrder0=763 +ETPTopicOrder0=1078 -[External Topic Properties\pcre_maketables_func] +[External Topic Properties\RsArgumentIsNull] Count=1 ETPCommand0=2 -ETPTopicOrder0=135 +ETPTopicOrder0=1079 -[External Topic Properties\pcre_malloc_callback] +[External Topic Properties\RsArgumentOutOfRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=136 +ETPTopicOrder0=1080 -[External Topic Properties\pcre_malloc_func] +[External Topic Properties\RsAssertUnpairedEndUpdate] Count=1 ETPCommand0=2 -ETPTopicOrder0=46 +ETPTopicOrder0=1081 -[External Topic Properties\PCRE_MULTILINE] +[External Topic Properties\RsAttrAnyFile] Count=1 ETPCommand0=2 -ETPTopicOrder0=1960 +ETPTopicOrder0=1082 -[External Topic Properties\PCRE_NEWLINE_ANY] +[External Topic Properties\RsAttrArchive] Count=1 ETPCommand0=2 -ETPTopicOrder0=1961 +ETPTopicOrder0=1083 -[External Topic Properties\PCRE_NEWLINE_CR] +[External Topic Properties\RsAttrCompressed] Count=1 ETPCommand0=2 -ETPTopicOrder0=1962 +ETPTopicOrder0=1084 -[External Topic Properties\PCRE_NEWLINE_CRLF] +[External Topic Properties\RsAttrDirectory] Count=1 ETPCommand0=2 -ETPTopicOrder0=1963 +ETPTopicOrder0=1085 -[External Topic Properties\PCRE_NEWLINE_LF] +[External Topic Properties\RsAttrEncrypted] Count=1 ETPCommand0=2 -ETPTopicOrder0=1964 +ETPTopicOrder0=1086 -[External Topic Properties\PCRE_NO_AUTO_CAPTURE] +[External Topic Properties\RsAttrHidden] Count=1 ETPCommand0=2 -ETPTopicOrder0=1965 +ETPTopicOrder0=1087 -[External Topic Properties\PCRE_NO_UTF8_CHECK] +[External Topic Properties\RsAttrNormal] Count=1 ETPCommand0=2 -ETPTopicOrder0=1966 +ETPTopicOrder0=1088 -[External Topic Properties\PCRE_NOTBOL] +[External Topic Properties\RsAttrOffline] Count=1 ETPCommand0=2 -ETPTopicOrder0=1967 +ETPTopicOrder0=1089 -[External Topic Properties\PCRE_NOTEMPTY] +[External Topic Properties\RsAttrReadOnly] Count=1 ETPCommand0=2 -ETPTopicOrder0=1968 +ETPTopicOrder0=1090 -[External Topic Properties\PCRE_NOTEOL] +[External Topic Properties\RsAttrReparsePoint] Count=1 ETPCommand0=2 -ETPTopicOrder0=1969 +ETPTopicOrder0=1091 -[External Topic Properties\PCRE_PARTIAL] +[External Topic Properties\RsAttrSparseFile] Count=1 ETPCommand0=2 -ETPTopicOrder0=1970 +ETPTopicOrder0=1092 -[External Topic Properties\pcre_refcount] +[External Topic Properties\RsAttrSystemFile] Count=1 ETPCommand0=2 -ETPTopicOrder0=47 +ETPTopicOrder0=1093 -[External Topic Properties\pcre_refcount@PPCRE@Integer] +[External Topic Properties\RsAttrTemporary] Count=1 ETPCommand0=2 -ETPTopicOrder0=764 +ETPTopicOrder0=1094 -[External Topic Properties\pcre_refcount_func] +[External Topic Properties\RsAttrVolumeID] Count=1 ETPCommand0=2 -ETPTopicOrder0=137 +ETPTopicOrder0=1095 -[External Topic Properties\pcre_stack_free_callback] +[External Topic Properties\RsBCBName] Count=1 ETPCommand0=2 -ETPTopicOrder0=138 +ETPTopicOrder0=1096 -[External Topic Properties\pcre_stack_free_func] +[External Topic Properties\RsBDSName] Count=1 ETPCommand0=2 -ETPTopicOrder0=48 +ETPTopicOrder0=1097 -[External Topic Properties\pcre_stack_malloc_callback] +[External Topic Properties\RsBitmapExtension] Count=1 ETPCommand0=2 -ETPTopicOrder0=139 +ETPTopicOrder0=1098 -[External Topic Properties\pcre_stack_malloc_func] +[External Topic Properties\RsBitsPerSampleNotSupported] Count=1 ETPCommand0=2 -ETPTopicOrder0=49 +ETPTopicOrder0=1099 -[External Topic Properties\pcre_study] +[External Topic Properties\RsBlankSearchString] Count=1 ETPCommand0=2 -ETPTopicOrder0=50 +ETPTopicOrder0=1100 -[External Topic Properties\pcre_study@PPCRE@Integer@PPChar] +[External Topic Properties\RsBorlandStudioProjects] Count=1 ETPCommand0=2 -ETPTopicOrder0=765 +ETPTopicOrder0=2220 -[External Topic Properties\pcre_study_func] +[External Topic Properties\RsCannotCreateDir] Count=1 ETPCommand0=2 -ETPTopicOrder0=140 +ETPTopicOrder0=1101 -[External Topic Properties\PCRE_UNGREEDY] +[External Topic Properties\RsCannotRaiseSignal] Count=1 ETPCommand0=2 -ETPTopicOrder0=1971 +ETPTopicOrder0=1102 -[External Topic Properties\PCRE_UTF8] +[External Topic Properties\RsCannotWriteRefStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=1972 +ETPTopicOrder0=1103 -[External Topic Properties\pcre_version] +[External Topic Properties\RsCantConvertAddr64] Count=1 ETPCommand0=2 -ETPTopicOrder0=766 +ETPTopicOrder0=1104 -[External Topic Properties\pcre_version_func] +[External Topic Properties\RsCasedUnicodeChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=141 +ETPTopicOrder0=1105 -[External Topic Properties\PData] +[External Topic Properties\RsCategoryUnicodeChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=142 +ETPTopicOrder0=1106 -[External Topic Properties\PDelphiSet] +[External Topic Properties\RsCDRomDrive] Count=1 ETPCommand0=2 -ETPTopicOrder0=143 +ETPTopicOrder0=1107 -[External Topic Properties\PDFAState] +[External Topic Properties\RsCILCmdadd] Count=1 ETPCommand0=2 -ETPTopicOrder0=144 +ETPTopicOrder0=1108 -[External Topic Properties\PDirectoryEntry] +[External Topic Properties\RsCILCmdaddovf] Count=1 ETPCommand0=2 -ETPTopicOrder0=145 +ETPTopicOrder0=1109 -[External Topic Properties\PDirectoryHeader] +[External Topic Properties\RsCILCmdaddovfun] Count=1 ETPCommand0=2 -ETPTopicOrder0=146 +ETPTopicOrder0=1110 -[External Topic Properties\PDIRTYUI] +[External Topic Properties\RsCILCmdand] Count=1 ETPCommand0=2 -ETPTopicOrder0=1973 +ETPTopicOrder0=1111 -[External Topic Properties\PDllVersionInfo] +[External Topic Properties\RsCILCmdarglist] Count=1 ETPCommand0=2 -ETPTopicOrder0=147 +ETPTopicOrder0=1112 -[External Topic Properties\PDWORD_PTR] +[External Topic Properties\RsCILCmdbeq] Count=1 ETPCommand0=2 -ETPTopicOrder0=148 +ETPTopicOrder0=1113 -[External Topic Properties\PDWORDArray] +[External Topic Properties\RsCILCmdbeqs] Count=1 ETPCommand0=2 -ETPTopicOrder0=149 +ETPTopicOrder0=1114 -[External Topic Properties\PeBorDependedPackages@TFileName@TStrings@Boolean@Boolean] +[External Topic Properties\RsCILCmdbge] Count=1 ETPCommand0=2 -ETPTopicOrder0=767 +ETPTopicOrder0=1115 -[External Topic Properties\PeBorFormNames@TFileName@TStrings] +[External Topic Properties\RsCILCmdbges] Count=1 ETPCommand0=2 -ETPTopicOrder0=768 +ETPTopicOrder0=1116 -[External Topic Properties\PeBorUnmangleName@string@string] +[External Topic Properties\RsCILCmdbgeun] Count=1 ETPCommand0=2 -ETPTopicOrder0=769 +ETPTopicOrder0=1117 -[External Topic Properties\PeBorUnmangleName@string@string@TJclBorUmDescription] +[External Topic Properties\RsCILCmdbgeuns] Count=1 ETPCommand0=2 -ETPTopicOrder0=771 +ETPTopicOrder0=1118 -[External Topic Properties\PeBorUnmangleName@string@string@TJclBorUmDescription@Integer] +[External Topic Properties\RsCILCmdbgt] Count=1 ETPCommand0=2 -ETPTopicOrder0=770 +ETPTopicOrder0=1119 -[External Topic Properties\PeClearCheckSum@TFileName] +[External Topic Properties\RsCILCmdbgts] Count=1 ETPCommand0=2 -ETPTopicOrder0=772 +ETPTopicOrder0=1120 -[External Topic Properties\PeCreateRequiredImportList@TFileName@TStrings] +[External Topic Properties\RsCILCmdbgtun] Count=1 ETPCommand0=2 -ETPTopicOrder0=773 +ETPTopicOrder0=1121 -[External Topic Properties\PeDbgImgLibraryName32@THandle@TJclAddr32@string] +[External Topic Properties\RsCILCmdbgtuns] Count=1 ETPCommand0=2 -ETPTopicOrder0=774 +ETPTopicOrder0=1122 -[External Topic Properties\PeDbgImgNtHeaders32@THandle@TJclAddr32@TImageNtHeaders32] +[External Topic Properties\RsCILCmdble] Count=1 ETPCommand0=2 -ETPTopicOrder0=775 +ETPTopicOrder0=1123 -[External Topic Properties\PeExportedNames@TFileName@TStrings] +[External Topic Properties\RsCILCmdbles] Count=1 ETPCommand0=2 -ETPTopicOrder0=776 +ETPTopicOrder0=1124 -[External Topic Properties\PeExportedVariables@TFileName@TStrings] +[External Topic Properties\RsCILCmdbleun] Count=1 ETPCommand0=2 -ETPTopicOrder0=777 +ETPTopicOrder0=1125 -[External Topic Properties\PeFindMissingImports@TFileName@TStrings] +[External Topic Properties\RsCILCmdbleuns] Count=1 ETPCommand0=2 -ETPTopicOrder0=778 +ETPTopicOrder0=1126 -[External Topic Properties\PeFindMissingImports@TStrings@TStrings] +[External Topic Properties\RsCILCmdblt] Count=1 ETPCommand0=2 -ETPTopicOrder0=779 +ETPTopicOrder0=1127 -[External Topic Properties\PeGetNtHeaders32@TFileName@TImageNtHeaders32] +[External Topic Properties\RsCILCmdblts] Count=1 ETPCommand0=2 -ETPTopicOrder0=780 +ETPTopicOrder0=1128 -[External Topic Properties\PeGetNtHeaders64@TFileName@TImageNtHeaders64] +[External Topic Properties\RsCILCmdbltun] Count=1 ETPCommand0=2 -ETPTopicOrder0=781 +ETPTopicOrder0=1129 -[External Topic Properties\PeInsertSection@TFileName@TStream@string] +[External Topic Properties\RsCILCmdbltuns] Count=1 ETPCommand0=2 -ETPTopicOrder0=782 +ETPTopicOrder0=1130 -[External Topic Properties\PeMapFindResource@HMODULE@PChar@string] +[External Topic Properties\RsCILCmdbneun] Count=1 ETPCommand0=2 -ETPTopicOrder0=783 +ETPTopicOrder0=1131 -[External Topic Properties\PeMapImgExportedVariables@HMODULE@TStrings] +[External Topic Properties\RsCILCmdbneuns] Count=1 ETPCommand0=2 -ETPTopicOrder0=784 +ETPTopicOrder0=1132 -[External Topic Properties\PeMapImgFindSection32@PImageNtHeaders32@string] +[External Topic Properties\RsCILCmdbox] Count=1 ETPCommand0=2 -ETPTopicOrder0=785 +ETPTopicOrder0=1133 -[External Topic Properties\PeMapImgFindSection64@PImageNtHeaders64@string] +[External Topic Properties\RsCILCmdbr] Count=1 ETPCommand0=2 -ETPTopicOrder0=786 +ETPTopicOrder0=1134 -[External Topic Properties\PeMapImgFindSectionFromModule@Pointer@string] +[External Topic Properties\RsCILCmdbreak] Count=1 ETPCommand0=2 -ETPTopicOrder0=787 +ETPTopicOrder0=1135 -[External Topic Properties\PeMapImgNtHeaders32@Pointer] +[External Topic Properties\RsCILCmdbrfalse] Count=1 ETPCommand0=2 -ETPTopicOrder0=788 +ETPTopicOrder0=1136 -[External Topic Properties\PeMapImgNtHeaders64@Pointer] +[External Topic Properties\RsCILCmdbrfalses] Count=1 ETPCommand0=2 -ETPTopicOrder0=789 +ETPTopicOrder0=1137 -[External Topic Properties\PeMapImgResolvePackageThunk@Pointer] +[External Topic Properties\RsCILCmdbrs] Count=1 ETPCommand0=2 -ETPTopicOrder0=790 +ETPTopicOrder0=1138 -[External Topic Properties\PeMapImgSections32@PImageNtHeaders32] +[External Topic Properties\RsCILCmdbrtrue] Count=1 ETPCommand0=2 -ETPTopicOrder0=791 +ETPTopicOrder0=1139 -[External Topic Properties\PeMapImgSections64@PImageNtHeaders64] +[External Topic Properties\RsCILCmdbrtrues] Count=1 ETPCommand0=2 -ETPTopicOrder0=792 +ETPTopicOrder0=1140 -[External Topic Properties\PeMapImgSize@Pointer] +[External Topic Properties\RsCILCmdcall] Count=1 ETPCommand0=2 -ETPTopicOrder0=793 +ETPTopicOrder0=1141 -[External Topic Properties\PeMapImgTarget@Pointer] +[External Topic Properties\RsCILCmdcalli] Count=1 ETPCommand0=2 -ETPTopicOrder0=794 +ETPTopicOrder0=1142 -[External Topic Properties\PeReadLinkerTimeStamp@string] +[External Topic Properties\RsCILCmdcallvirt] Count=1 ETPCommand0=2 -ETPTopicOrder0=795 +ETPTopicOrder0=1143 -[External Topic Properties\PeRebaseImage32@TFileName@TJclAddr32@DWORD@DWORD] +[External Topic Properties\RsCILCmdcastclass] Count=1 ETPCommand0=2 -ETPTopicOrder0=796 +ETPTopicOrder0=1144 -[External Topic Properties\PeRebaseImage64@TFileName@TJclAddr64@DWORD@DWORD] +[External Topic Properties\RsCILCmdceq] Count=1 ETPCommand0=2 -ETPTopicOrder0=797 +ETPTopicOrder0=1145 -[External Topic Properties\PeResourceKindNames@TFileName@TJclPeResourceKind@TStrings] +[External Topic Properties\RsCILCmdcgt] Count=1 ETPCommand0=2 -ETPTopicOrder0=798 +ETPTopicOrder0=1146 -[External Topic Properties\Personality32Bit] +[External Topic Properties\RsCILCmdcgtun] Count=1 ETPCommand0=2 -ETPTopicOrder0=1974 +ETPTopicOrder0=1147 -[External Topic Properties\Personality64Bit] +[External Topic Properties\RsCILCmdckfinite] Count=1 ETPCommand0=2 -ETPTopicOrder0=1975 +ETPTopicOrder0=1148 -[External Topic Properties\PersonalityBCB] +[External Topic Properties\RsCILCmdclt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1976 +ETPTopicOrder0=1149 -[External Topic Properties\PersonalityBDS] +[External Topic Properties\RsCILCmdcltun] Count=1 ETPCommand0=2 -ETPTopicOrder0=1977 +ETPTopicOrder0=1150 -[External Topic Properties\PersonalityCSB] +[External Topic Properties\RsCILCmdconvi] Count=1 ETPCommand0=2 -ETPTopicOrder0=1978 +ETPTopicOrder0=1151 -[External Topic Properties\PersonalityDelphi] +[External Topic Properties\RsCILCmdconvi1] Count=1 ETPCommand0=2 -ETPTopicOrder0=1979 +ETPTopicOrder0=1152 -[External Topic Properties\PersonalityDelphiDotNet] +[External Topic Properties\RsCILCmdconvi2] Count=1 ETPCommand0=2 -ETPTopicOrder0=1980 +ETPTopicOrder0=1153 -[External Topic Properties\PersonalityDesign] +[External Topic Properties\RsCILCmdconvi4] Count=1 ETPCommand0=2 -ETPTopicOrder0=1981 +ETPTopicOrder0=1154 -[External Topic Properties\PersonalityUnknown] +[External Topic Properties\RsCILCmdconvi8] Count=1 ETPCommand0=2 -ETPTopicOrder0=1982 +ETPTopicOrder0=1155 -[External Topic Properties\PersonalityVB] +[External Topic Properties\RsCILCmdconvovfi] Count=1 ETPCommand0=2 -ETPTopicOrder0=1983 +ETPTopicOrder0=1156 -[External Topic Properties\PeUpdateLinkerTimeStamp@string@TDateTime] +[External Topic Properties\RsCILCmdconvovfi1] Count=1 ETPCommand0=2 -ETPTopicOrder0=799 +ETPTopicOrder0=1157 -[External Topic Properties\PFILE_ALLOCATED_RANGE_BUFFER] +[External Topic Properties\RsCILCmdconvovfi1un] Count=1 ETPCommand0=2 -ETPTopicOrder0=150 +ETPTopicOrder0=1158 -[External Topic Properties\PFILE_ZERO_DATA_INFORMATION] +[External Topic Properties\RsCILCmdconvovfi2] Count=1 ETPCommand0=2 -ETPTopicOrder0=151 +ETPTopicOrder0=1159 -[External Topic Properties\PFIND_NAME_BUFFER] +[External Topic Properties\RsCILCmdconvovfi2un] Count=1 ETPCommand0=2 -ETPTopicOrder0=152 +ETPTopicOrder0=1160 -[External Topic Properties\PFIND_NAME_HEADER] +[External Topic Properties\RsCILCmdconvovfi4] Count=1 ETPCommand0=2 -ETPTopicOrder0=153 +ETPTopicOrder0=1161 -[External Topic Properties\PFindNameBuffer] +[External Topic Properties\RsCILCmdconvovfi4un] Count=1 ETPCommand0=2 -ETPTopicOrder0=154 +ETPTopicOrder0=1162 -[External Topic Properties\PFindNameHeader] +[External Topic Properties\RsCILCmdconvovfi8] Count=1 ETPCommand0=2 -ETPTopicOrder0=155 +ETPTopicOrder0=1163 -[External Topic Properties\PFloat] +[External Topic Properties\RsCILCmdconvovfi8un] Count=1 ETPCommand0=2 -ETPTopicOrder0=156 +ETPTopicOrder0=1164 -[External Topic Properties\PFloat32] +[External Topic Properties\RsCILCmdconvovfiun] Count=1 ETPCommand0=2 -ETPTopicOrder0=157 +ETPTopicOrder0=1165 -[External Topic Properties\PFloat64] +[External Topic Properties\RsCILCmdconvovfu] Count=1 ETPCommand0=2 -ETPTopicOrder0=158 +ETPTopicOrder0=1166 -[External Topic Properties\PFloat80] +[External Topic Properties\RsCILCmdconvovfu1] Count=1 ETPCommand0=2 -ETPTopicOrder0=159 +ETPTopicOrder0=1167 -[External Topic Properties\PFPO_DATA] +[External Topic Properties\RsCILCmdconvovfu1un] Count=1 ETPCommand0=2 -ETPTopicOrder0=160 +ETPTopicOrder0=1168 -[External Topic Properties\PFpoData] +[External Topic Properties\RsCILCmdconvovfu2] Count=1 ETPCommand0=2 -ETPTopicOrder0=161 +ETPTopicOrder0=1169 -[External Topic Properties\PGE_FLAG] +[External Topic Properties\RsCILCmdconvovfu2un] Count=1 ETPCommand0=2 -ETPTopicOrder0=1984 +ETPTopicOrder0=1170 -[External Topic Properties\PGlobalTypeInfo] +[External Topic Properties\RsCILCmdconvovfu4] Count=1 ETPCommand0=2 -ETPTopicOrder0=162 +ETPTopicOrder0=1171 -[External Topic Properties\PGROUP_INFO_0] +[External Topic Properties\RsCILCmdconvovfu4un] Count=1 ETPCommand0=2 -ETPTopicOrder0=163 +ETPTopicOrder0=1172 -[External Topic Properties\PGROUP_INFO_1] +[External Topic Properties\RsCILCmdconvovfu8] Count=1 ETPCommand0=2 -ETPTopicOrder0=164 +ETPTopicOrder0=1173 -[External Topic Properties\PGroupInfo0] +[External Topic Properties\RsCILCmdconvovfu8un] Count=1 ETPCommand0=2 -ETPTopicOrder0=165 +ETPTopicOrder0=1174 -[External Topic Properties\PGroupInfo1] +[External Topic Properties\RsCILCmdconvovfuun] Count=1 ETPCommand0=2 -ETPTopicOrder0=166 +ETPTopicOrder0=1175 -[External Topic Properties\PHashArray] +[External Topic Properties\RsCILCmdconvr4] Count=1 ETPCommand0=2 -ETPTopicOrder0=167 +ETPTopicOrder0=1176 -[External Topic Properties\PHashNode] +[External Topic Properties\RsCILCmdconvr8] Count=1 ETPCommand0=2 -ETPTopicOrder0=168 +ETPTopicOrder0=1177 -[External Topic Properties\PHMODULE] +[External Topic Properties\RsCILCmdconvrun] Count=1 ETPCommand0=2 -ETPTopicOrder0=169 +ETPTopicOrder0=1178 -[External Topic Properties\Pi] +[External Topic Properties\RsCILCmdconvu] Count=1 ETPCommand0=2 -ETPTopicOrder0=1985 +ETPTopicOrder0=1179 -[External Topic Properties\PID_BEHAVIOR] +[External Topic Properties\RsCILCmdconvu1] Count=1 ETPCommand0=2 -ETPTopicOrder0=1986 +ETPTopicOrder0=1180 -[External Topic Properties\PID_CODEPAGE] +[External Topic Properties\RsCILCmdconvu2] Count=1 ETPCommand0=2 -ETPTopicOrder0=1987 +ETPTopicOrder0=1181 -[External Topic Properties\PID_COMPUTERNAME] +[External Topic Properties\RsCILCmdconvu4] Count=1 ETPCommand0=2 -ETPTopicOrder0=1988 +ETPTopicOrder0=1182 -[External Topic Properties\PID_CONTROLPANEL_CATEGORY] +[External Topic Properties\RsCILCmdconvu8] Count=1 ETPCommand0=2 -ETPTopicOrder0=1989 +ETPTopicOrder0=1183 -[External Topic Properties\PID_DESCRIPTIONID] +[External Topic Properties\RsCILCmdcpblk] Count=1 ETPCommand0=2 -ETPTopicOrder0=1990 +ETPTopicOrder0=1184 -[External Topic Properties\PID_DICTIONARY] +[External Topic Properties\RsCILCmdcpobj] Count=1 ETPCommand0=2 -ETPTopicOrder0=1991 +ETPTopicOrder0=1185 -[External Topic Properties\PID_DISPLACED_DATE] +[External Topic Properties\RsCILCmddiv] Count=1 ETPCommand0=2 -ETPTopicOrder0=1992 +ETPTopicOrder0=1186 -[External Topic Properties\PID_DISPLACED_FROM] +[External Topic Properties\RsCILCmddivun] Count=1 ETPCommand0=2 -ETPTopicOrder0=1993 +ETPTopicOrder0=1187 -[External Topic Properties\PID_DISPLAY_PROPERTIES] +[External Topic Properties\RsCILCmddup] Count=1 ETPCommand0=2 -ETPTopicOrder0=1994 +ETPTopicOrder0=1188 -[External Topic Properties\PID_FINDDATA] +[External Topic Properties\RsCILCmdendfilter] Count=1 ETPCommand0=2 -ETPTopicOrder0=1995 +ETPTopicOrder0=1189 -[External Topic Properties\PID_FIRST_NAME_DEFAULT] +[External Topic Properties\RsCILCmdendfinally] Count=1 ETPCommand0=2 -ETPTopicOrder0=1996 +ETPTopicOrder0=1190 -[External Topic Properties\PID_FIRST_USABLE] +[External Topic Properties\RsCILCmdinitblk] Count=1 ETPCommand0=2 -ETPTopicOrder0=1997 +ETPTopicOrder0=1191 -[External Topic Properties\PID_HTMLINFOTIPFILE] +[External Topic Properties\RsCILCmdinitobj] Count=1 ETPCommand0=2 -ETPTopicOrder0=1998 +ETPTopicOrder0=1192 -[External Topic Properties\PID_ILLEGAL] +[External Topic Properties\RsCILCmdisinst] Count=1 ETPCommand0=2 -ETPTopicOrder0=1999 +ETPTopicOrder0=1193 -[External Topic Properties\PID_INTROTEXT] +[External Topic Properties\RsCILCmdjmp] Count=1 ETPCommand0=2 -ETPTopicOrder0=2000 +ETPTopicOrder0=1194 -[External Topic Properties\PID_LINK_TARGET] +[External Topic Properties\RsCILCmdldarg] Count=1 ETPCommand0=2 -ETPTopicOrder0=2001 +ETPTopicOrder0=1195 -[External Topic Properties\PID_LOCALE] +[External Topic Properties\RsCILCmdldarg0] Count=1 ETPCommand0=2 -ETPTopicOrder0=2002 +ETPTopicOrder0=1196 -[External Topic Properties\PID_MAX_READONLY] +[External Topic Properties\RsCILCmdldarg1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2003 +ETPTopicOrder0=1197 -[External Topic Properties\PID_MIN_READONLY] +[External Topic Properties\RsCILCmdldarg2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2004 +ETPTopicOrder0=1198 -[External Topic Properties\PID_MISC_ACCESSCOUNT] +[External Topic Properties\RsCILCmdldarg3] Count=1 ETPCommand0=2 -ETPTopicOrder0=2005 +ETPTopicOrder0=1199 -[External Topic Properties\PID_MISC_OWNER] +[External Topic Properties\RsCILCmdldarga] Count=1 ETPCommand0=2 -ETPTopicOrder0=2006 +ETPTopicOrder0=1200 -[External Topic Properties\PID_MISC_PICS] +[External Topic Properties\RsCILCmdldargas] Count=1 ETPCommand0=2 -ETPTopicOrder0=2007 +ETPTopicOrder0=1201 -[External Topic Properties\PID_MISC_STATUS] +[External Topic Properties\RsCILCmdldargs] Count=1 ETPCommand0=2 -ETPTopicOrder0=2008 +ETPTopicOrder0=1202 -[External Topic Properties\PID_MODIFY_TIME] +[External Topic Properties\RsCILCmdldci4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2009 +ETPTopicOrder0=1203 -[External Topic Properties\PID_MSIRESTRICT] +[External Topic Properties\RsCILCmdldci40] Count=1 ETPCommand0=2 -ETPTopicOrder0=2010 +ETPTopicOrder0=1204 -[External Topic Properties\PID_MSISOURCE] +[External Topic Properties\RsCILCmdldci41] Count=1 ETPCommand0=2 -ETPTopicOrder0=2011 +ETPTopicOrder0=1205 -[External Topic Properties\PID_MSIVERSION] +[External Topic Properties\RsCILCmdldci42] Count=1 ETPCommand0=2 -ETPTopicOrder0=2012 +ETPTopicOrder0=1206 -[External Topic Properties\PID_NETRESOURCE] +[External Topic Properties\RsCILCmdldci43] Count=1 ETPCommand0=2 -ETPTopicOrder0=2013 +ETPTopicOrder0=1207 -[External Topic Properties\PID_NETWORKLOCATION] +[External Topic Properties\RsCILCmdldci44] Count=1 ETPCommand0=2 -ETPTopicOrder0=2014 +ETPTopicOrder0=1208 -[External Topic Properties\PID_QUERY_RANK] +[External Topic Properties\RsCILCmdldci45] Count=1 ETPCommand0=2 -ETPTopicOrder0=2015 +ETPTopicOrder0=1209 -[External Topic Properties\PID_SECURITY] +[External Topic Properties\RsCILCmdldci46] Count=1 ETPCommand0=2 -ETPTopicOrder0=2016 +ETPTopicOrder0=1210 -[External Topic Properties\PID_SHARE_CSC_STATUS] +[External Topic Properties\RsCILCmdldci47] Count=1 ETPCommand0=2 -ETPTopicOrder0=2017 +ETPTopicOrder0=1211 -[External Topic Properties\PID_SYNC_COPY_IN] +[External Topic Properties\RsCILCmdldci48] Count=1 ETPCommand0=2 -ETPTopicOrder0=2018 +ETPTopicOrder0=1212 -[External Topic Properties\PID_VOLUME_CAPACITY] +[External Topic Properties\RsCILCmdldci4m1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2019 +ETPTopicOrder0=1213 -[External Topic Properties\PID_VOLUME_FILESYSTEM] +[External Topic Properties\RsCILCmdldci4s] Count=1 ETPCommand0=2 -ETPTopicOrder0=2020 +ETPTopicOrder0=1214 -[External Topic Properties\PID_VOLUME_FREE] +[External Topic Properties\RsCILCmdldci8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2021 +ETPTopicOrder0=1215 -[External Topic Properties\PID_WHICHFOLDER] +[External Topic Properties\RsCILCmdldcr4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2022 +ETPTopicOrder0=1216 -[External Topic Properties\PIDASI_AVG_DATA_RATE] +[External Topic Properties\RsCILCmdldcr8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2023 +ETPTopicOrder0=1217 -[External Topic Properties\PIDASI_CHANNEL_COUNT] +[External Topic Properties\RsCILCmdldelema] Count=1 ETPCommand0=2 -ETPTopicOrder0=2024 +ETPTopicOrder0=1218 -[External Topic Properties\PIDASI_COMPRESSION] +[External Topic Properties\RsCILCmdldelemi] Count=1 ETPCommand0=2 -ETPTopicOrder0=2025 +ETPTopicOrder0=1219 -[External Topic Properties\PIDASI_FORMAT] +[External Topic Properties\RsCILCmdldelemi1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2026 +ETPTopicOrder0=1220 -[External Topic Properties\PIDASI_SAMPLE_RATE] +[External Topic Properties\RsCILCmdldelemi2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2027 +ETPTopicOrder0=1221 -[External Topic Properties\PIDASI_SAMPLE_SIZE] +[External Topic Properties\RsCILCmdldelemi4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2028 +ETPTopicOrder0=1222 -[External Topic Properties\PIDASI_STREAM_NAME] +[External Topic Properties\RsCILCmdldelemi8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2029 +ETPTopicOrder0=1223 -[External Topic Properties\PIDASI_STREAM_NUMBER] +[External Topic Properties\RsCILCmdldelemr4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2030 +ETPTopicOrder0=1224 -[External Topic Properties\PIDASI_TIMELENGTH] +[External Topic Properties\RsCILCmdldelemr8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2031 +ETPTopicOrder0=1225 -[External Topic Properties\PIDDI_THUMBNAIL] +[External Topic Properties\RsCILCmdldelemref] Count=1 ETPCommand0=2 -ETPTopicOrder0=2032 +ETPTopicOrder0=1226 -[External Topic Properties\PIDDRSI_DESCRIPTION] +[External Topic Properties\RsCILCmdldelemu1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2033 +ETPTopicOrder0=1227 -[External Topic Properties\PIDDRSI_PLAYCOUNT] +[External Topic Properties\RsCILCmdldelemu2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2034 +ETPTopicOrder0=1228 -[External Topic Properties\PIDDRSI_PLAYEXPIRES] +[External Topic Properties\RsCILCmdldelemu4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2035 +ETPTopicOrder0=1229 -[External Topic Properties\PIDDRSI_PLAYSTARTS] +[External Topic Properties\RsCILCmdldfld] Count=1 ETPCommand0=2 -ETPTopicOrder0=2036 +ETPTopicOrder0=1230 -[External Topic Properties\PIDDRSI_PROTECTED] +[External Topic Properties\RsCILCmdldflda] Count=1 ETPCommand0=2 -ETPTopicOrder0=2037 +ETPTopicOrder0=1231 -[External Topic Properties\PIDDSI_BYTECOUNT] +[External Topic Properties\RsCILCmdldftn] Count=1 ETPCommand0=2 -ETPTopicOrder0=2038 +ETPTopicOrder0=1232 -[External Topic Properties\PIDDSI_CATEGORY] +[External Topic Properties\RsCILCmdldindi] Count=1 ETPCommand0=2 -ETPTopicOrder0=2039 +ETPTopicOrder0=1233 -[External Topic Properties\PIDDSI_COMPANY] +[External Topic Properties\RsCILCmdldindi1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2040 +ETPTopicOrder0=1234 -[External Topic Properties\PIDDSI_DOCPARTS] +[External Topic Properties\RsCILCmdldindi2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2041 +ETPTopicOrder0=1235 -[External Topic Properties\PIDDSI_HEADINGPAIR] +[External Topic Properties\RsCILCmdldindi4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2042 +ETPTopicOrder0=1236 -[External Topic Properties\PIDDSI_HIDDENCOUNT] +[External Topic Properties\RsCILCmdldindi8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2043 +ETPTopicOrder0=1237 -[External Topic Properties\PIDDSI_LINECOUNT] +[External Topic Properties\RsCILCmdldindr4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2044 +ETPTopicOrder0=1238 -[External Topic Properties\PIDDSI_LINKSDIRTY] +[External Topic Properties\RsCILCmdldindr8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2045 +ETPTopicOrder0=1239 -[External Topic Properties\PIDDSI_MANAGER] +[External Topic Properties\RsCILCmdldindref] Count=1 ETPCommand0=2 -ETPTopicOrder0=2046 +ETPTopicOrder0=1240 -[External Topic Properties\PIDDSI_MMCLIPCOUNT] +[External Topic Properties\RsCILCmdldindu1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2047 +ETPTopicOrder0=1241 -[External Topic Properties\PIDDSI_NOTECOUNT] +[External Topic Properties\RsCILCmdldindu2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2048 +ETPTopicOrder0=1242 -[External Topic Properties\PIDDSI_PARCOUNT] +[External Topic Properties\RsCILCmdldindu4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2049 +ETPTopicOrder0=1243 -[External Topic Properties\PIDDSI_PRESFORMAT] +[External Topic Properties\RsCILCmdldlen] Count=1 ETPCommand0=2 -ETPTopicOrder0=2050 +ETPTopicOrder0=1244 -[External Topic Properties\PIDDSI_SCALE] +[External Topic Properties\RsCILCmdldloc] Count=1 ETPCommand0=2 -ETPTopicOrder0=2051 +ETPTopicOrder0=1245 -[External Topic Properties\PIDDSI_SLIDECOUNT] +[External Topic Properties\RsCILCmdldloc0] Count=1 ETPCommand0=2 -ETPTopicOrder0=2052 +ETPTopicOrder0=1246 -[External Topic Properties\PIDMSI_COPYRIGHT] +[External Topic Properties\RsCILCmdldloc1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2053 +ETPTopicOrder0=1247 -[External Topic Properties\PIDMSI_EDITOR] +[External Topic Properties\RsCILCmdldloc2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2054 +ETPTopicOrder0=1248 -[External Topic Properties\PIDMSI_OWNER] +[External Topic Properties\RsCILCmdldloc3] Count=1 ETPCommand0=2 -ETPTopicOrder0=2055 +ETPTopicOrder0=1249 -[External Topic Properties\PIDMSI_PRODUCTION] +[External Topic Properties\RsCILCmdldloca] Count=1 ETPCommand0=2 -ETPTopicOrder0=2056 +ETPTopicOrder0=1250 -[External Topic Properties\PIDMSI_PROJECT] +[External Topic Properties\RsCILCmdldlocas] Count=1 ETPCommand0=2 -ETPTopicOrder0=2057 +ETPTopicOrder0=1251 -[External Topic Properties\PIDMSI_RATING] +[External Topic Properties\RsCILCmdldlocs] Count=1 ETPCommand0=2 -ETPTopicOrder0=2058 +ETPTopicOrder0=1252 -[External Topic Properties\PIDMSI_SEQUENCE_NO] +[External Topic Properties\RsCILCmdldnull] Count=1 ETPCommand0=2 -ETPTopicOrder0=2059 +ETPTopicOrder0=1253 -[External Topic Properties\PIDMSI_SOURCE] +[External Topic Properties\RsCILCmdldobj] Count=1 ETPCommand0=2 -ETPTopicOrder0=2060 +ETPTopicOrder0=1254 -[External Topic Properties\PIDMSI_STATUS] +[External Topic Properties\RsCILCmdldsfld] Count=1 ETPCommand0=2 -ETPTopicOrder0=2061 +ETPTopicOrder0=1255 -[External Topic Properties\PIDMSI_SUPPLIER] +[External Topic Properties\RsCILCmdldsflda] Count=1 ETPCommand0=2 -ETPTopicOrder0=2062 +ETPTopicOrder0=1256 -[External Topic Properties\PIDSI_ALBUM] +[External Topic Properties\RsCILCmdldstr] Count=1 ETPCommand0=2 -ETPTopicOrder0=2063 +ETPTopicOrder0=1257 -[External Topic Properties\PIDSI_APPNAME] +[External Topic Properties\RsCILCmdldtoken] Count=1 ETPCommand0=2 -ETPTopicOrder0=2064 +ETPTopicOrder0=1258 -[External Topic Properties\PIDSI_ARTIST] +[External Topic Properties\RsCILCmdldvirtftn] Count=1 ETPCommand0=2 -ETPTopicOrder0=2065 +ETPTopicOrder0=1259 -[External Topic Properties\PIDSI_AUTHOR] +[External Topic Properties\RsCILCmdleave] Count=1 ETPCommand0=2 -ETPTopicOrder0=2066 +ETPTopicOrder0=1260 -[External Topic Properties\PIDSI_CHARCOUNT] +[External Topic Properties\RsCILCmdleaves] Count=1 ETPCommand0=2 -ETPTopicOrder0=2067 +ETPTopicOrder0=1261 -[External Topic Properties\PIDSI_COMMENT] +[External Topic Properties\RsCILCmdlocalloc] Count=1 ETPCommand0=2 -ETPTopicOrder0=2068 +ETPTopicOrder0=1262 -[External Topic Properties\PIDSI_COMMENTS] +[External Topic Properties\RsCILCmdmkrefany] Count=1 ETPCommand0=2 -ETPTopicOrder0=2069 +ETPTopicOrder0=1263 -[External Topic Properties\PIDSI_CREATE_DTM] +[External Topic Properties\RsCILCmdmul] Count=1 ETPCommand0=2 -ETPTopicOrder0=2070 +ETPTopicOrder0=1264 -[External Topic Properties\PIDSI_DOC_SECURITY] +[External Topic Properties\RsCILCmdmulovf] Count=1 ETPCommand0=2 -ETPTopicOrder0=2071 +ETPTopicOrder0=1265 -[External Topic Properties\PIDSI_EDITTIME] +[External Topic Properties\RsCILCmdmulovfun] Count=1 ETPCommand0=2 -ETPTopicOrder0=2072 +ETPTopicOrder0=1266 -[External Topic Properties\PIDSI_GENRE] +[External Topic Properties\RsCILCmdneg] Count=1 ETPCommand0=2 -ETPTopicOrder0=2073 +ETPTopicOrder0=1267 -[External Topic Properties\PIDSI_KEYWORDS] +[External Topic Properties\RsCILCmdnewarr] Count=1 ETPCommand0=2 -ETPTopicOrder0=2074 +ETPTopicOrder0=1268 -[External Topic Properties\PIDSI_LASTAUTHOR] +[External Topic Properties\RsCILCmdnewobj] Count=1 ETPCommand0=2 -ETPTopicOrder0=2075 +ETPTopicOrder0=1269 -[External Topic Properties\PIDSI_LASTPRINTED] +[External Topic Properties\RsCILCmdnop] Count=1 ETPCommand0=2 -ETPTopicOrder0=2076 +ETPTopicOrder0=1270 -[External Topic Properties\PIDSI_LASTSAVE_DTM] +[External Topic Properties\RsCILCmdnot] Count=1 ETPCommand0=2 -ETPTopicOrder0=2077 +ETPTopicOrder0=1271 -[External Topic Properties\PIDSI_LYRICS] +[External Topic Properties\RsCILCmdor] Count=1 ETPCommand0=2 -ETPTopicOrder0=2078 +ETPTopicOrder0=1272 -[External Topic Properties\PIDSI_PAGECOUNT] +[External Topic Properties\RsCILCmdpop] Count=1 ETPCommand0=2 -ETPTopicOrder0=2079 +ETPTopicOrder0=1273 -[External Topic Properties\PIDSI_REVNUMBER] +[External Topic Properties\RsCILCmdprefix1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2080 +ETPTopicOrder0=1274 -[External Topic Properties\PIDSI_SONGTITLE] +[External Topic Properties\RsCILCmdprefix2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2081 +ETPTopicOrder0=1275 -[External Topic Properties\PIDSI_SUBJECT] +[External Topic Properties\RsCILCmdprefix3] Count=1 ETPCommand0=2 -ETPTopicOrder0=2082 +ETPTopicOrder0=1276 -[External Topic Properties\PIDSI_TEMPLATE] +[External Topic Properties\RsCILCmdprefix4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2083 +ETPTopicOrder0=1277 -[External Topic Properties\PIDSI_THUMBNAIL] +[External Topic Properties\RsCILCmdprefix5] Count=1 ETPCommand0=2 -ETPTopicOrder0=2084 +ETPTopicOrder0=1278 -[External Topic Properties\PIDSI_TITLE] +[External Topic Properties\RsCILCmdprefix6] Count=1 ETPCommand0=2 -ETPTopicOrder0=2085 +ETPTopicOrder0=1279 -[External Topic Properties\PIDSI_TRACK] +[External Topic Properties\RsCILCmdprefix7] Count=1 ETPCommand0=2 -ETPTopicOrder0=2086 +ETPTopicOrder0=1280 -[External Topic Properties\PIDSI_WORDCOUNT] +[External Topic Properties\RsCILCmdprefixref] Count=1 ETPCommand0=2 -ETPTopicOrder0=2087 +ETPTopicOrder0=1281 -[External Topic Properties\PIDSI_YEAR] +[External Topic Properties\RsCILCmdrefanytype] Count=1 ETPCommand0=2 -ETPTopicOrder0=2088 +ETPTopicOrder0=1282 -[External Topic Properties\PIDVSI_COMPRESSION] +[External Topic Properties\RsCILCmdrefanyval] Count=1 ETPCommand0=2 -ETPTopicOrder0=2089 +ETPTopicOrder0=1283 -[External Topic Properties\PIDVSI_DATA_RATE] +[External Topic Properties\RsCILCmdrem] Count=1 ETPCommand0=2 -ETPTopicOrder0=2090 +ETPTopicOrder0=1284 -[External Topic Properties\PIDVSI_FRAME_COUNT] +[External Topic Properties\RsCILCmdremun] Count=1 ETPCommand0=2 -ETPTopicOrder0=2091 +ETPTopicOrder0=1285 -[External Topic Properties\PIDVSI_FRAME_HEIGHT] +[External Topic Properties\RsCILCmdret] Count=1 ETPCommand0=2 -ETPTopicOrder0=2092 +ETPTopicOrder0=1286 -[External Topic Properties\PIDVSI_FRAME_RATE] +[External Topic Properties\RsCILCmdrethrow] Count=1 ETPCommand0=2 -ETPTopicOrder0=2093 +ETPTopicOrder0=1287 -[External Topic Properties\PIDVSI_FRAME_WIDTH] +[External Topic Properties\RsCILCmdshl] Count=1 ETPCommand0=2 -ETPTopicOrder0=2094 +ETPTopicOrder0=1288 -[External Topic Properties\PIDVSI_SAMPLE_SIZE] +[External Topic Properties\RsCILCmdshr] Count=1 ETPCommand0=2 -ETPTopicOrder0=2095 +ETPTopicOrder0=1289 -[External Topic Properties\PIDVSI_STREAM_NAME] +[External Topic Properties\RsCILCmdshrun] Count=1 ETPCommand0=2 -ETPTopicOrder0=2096 +ETPTopicOrder0=1290 -[External Topic Properties\PIDVSI_STREAM_NUMBER] +[External Topic Properties\RsCILCmdsizeof] Count=1 ETPCommand0=2 -ETPTopicOrder0=2097 +ETPTopicOrder0=1291 -[External Topic Properties\PIDVSI_TIMELENGTH] +[External Topic Properties\RsCILCmdstarg] Count=1 ETPCommand0=2 -ETPTopicOrder0=2098 +ETPTopicOrder0=1292 -[External Topic Properties\PiExt] +[External Topic Properties\RsCILCmdstargs] Count=1 ETPCommand0=2 -ETPTopicOrder0=2099 +ETPTopicOrder0=1293 -[External Topic Properties\PIMAGE_ARCHITECTURE_ENTRY] +[External Topic Properties\RsCILCmdstelemi] Count=1 ETPCommand0=2 -ETPTopicOrder0=170 +ETPTopicOrder0=1294 -[External Topic Properties\PIMAGE_ARCHITECTURE_HEADER] +[External Topic Properties\RsCILCmdstelemi1] Count=1 ETPCommand0=2 -ETPTopicOrder0=171 +ETPTopicOrder0=1295 -[External Topic Properties\PIMAGE_ARCHIVE_MEMBER_HEADER] +[External Topic Properties\RsCILCmdstelemi2] Count=1 ETPCommand0=2 -ETPTopicOrder0=172 +ETPTopicOrder0=1296 -[External Topic Properties\PIMAGE_BASE_RELOCATION] +[External Topic Properties\RsCILCmdstelemi4] Count=1 ETPCommand0=2 -ETPTopicOrder0=173 +ETPTopicOrder0=1297 -[External Topic Properties\PIMAGE_BOUND_FORWARDER_REF] +[External Topic Properties\RsCILCmdstelemi8] Count=1 ETPCommand0=2 -ETPTopicOrder0=174 +ETPTopicOrder0=1298 -[External Topic Properties\PIMAGE_BOUND_IMPORT_DESCRIPTOR] +[External Topic Properties\RsCILCmdstelemr4] Count=1 ETPCommand0=2 -ETPTopicOrder0=175 +ETPTopicOrder0=1299 -[External Topic Properties\PIMAGE_COFF_SYMBOLS_HEADER] +[External Topic Properties\RsCILCmdstelemr8] Count=1 ETPCommand0=2 -ETPTopicOrder0=176 +ETPTopicOrder0=1300 -[External Topic Properties\PIMAGE_COR20_HEADER] +[External Topic Properties\RsCILCmdstelemref] Count=1 ETPCommand0=2 -ETPTopicOrder0=177 +ETPTopicOrder0=1301 -[External Topic Properties\PIMAGE_DATA_DIRECTORY] +[External Topic Properties\RsCILCmdstfld] Count=1 ETPCommand0=2 -ETPTopicOrder0=178 +ETPTopicOrder0=1302 -[External Topic Properties\PIMAGE_DEBUG_MISC] +[External Topic Properties\RsCILCmdstindi] Count=1 ETPCommand0=2 -ETPTopicOrder0=179 +ETPTopicOrder0=1303 -[External Topic Properties\PIMAGE_EXPORT_DIRECTORY] +[External Topic Properties\RsCILCmdstindi1] Count=1 ETPCommand0=2 -ETPTopicOrder0=180 +ETPTopicOrder0=1304 -[External Topic Properties\PIMAGE_FILE_HEADER] +[External Topic Properties\RsCILCmdstindi2] Count=1 ETPCommand0=2 -ETPTopicOrder0=181 +ETPTopicOrder0=1305 -[External Topic Properties\PIMAGE_FUNCTION_ENTRY] +[External Topic Properties\RsCILCmdstindi4] Count=1 ETPCommand0=2 -ETPTopicOrder0=182 +ETPTopicOrder0=1306 -[External Topic Properties\PIMAGE_FUNCTION_ENTRY64] +[External Topic Properties\RsCILCmdstindi8] Count=1 ETPCommand0=2 -ETPTopicOrder0=183 +ETPTopicOrder0=1307 -[External Topic Properties\PIMAGE_IMPORT_BY_NAME] +[External Topic Properties\RsCILCmdstindr4] Count=1 ETPCommand0=2 -ETPTopicOrder0=184 +ETPTopicOrder0=1308 -[External Topic Properties\PIMAGE_IMPORT_DESCRIPTOR] +[External Topic Properties\RsCILCmdstindr8] Count=1 ETPCommand0=2 -ETPTopicOrder0=185 +ETPTopicOrder0=1309 -[External Topic Properties\PIMAGE_LINENUMBER] +[External Topic Properties\RsCILCmdstindref] Count=1 ETPCommand0=2 -ETPTopicOrder0=186 +ETPTopicOrder0=1310 -[External Topic Properties\PIMAGE_LOAD_CONFIG_DIRECTORY] +[External Topic Properties\RsCILCmdstloc] Count=1 ETPCommand0=2 -ETPTopicOrder0=187 +ETPTopicOrder0=1311 -[External Topic Properties\PIMAGE_LOAD_CONFIG_DIRECTORY32] +[External Topic Properties\RsCILCmdstloc0] Count=1 ETPCommand0=2 -ETPTopicOrder0=188 +ETPTopicOrder0=1312 -[External Topic Properties\PIMAGE_LOAD_CONFIG_DIRECTORY64] +[External Topic Properties\RsCILCmdstloc1] Count=1 ETPCommand0=2 -ETPTopicOrder0=189 +ETPTopicOrder0=1313 -[External Topic Properties\PIMAGE_NT_HEADERS] +[External Topic Properties\RsCILCmdstloc2] Count=1 ETPCommand0=2 -ETPTopicOrder0=190 +ETPTopicOrder0=1314 -[External Topic Properties\PIMAGE_NT_HEADERS32] +[External Topic Properties\RsCILCmdstloc3] Count=1 ETPCommand0=2 -ETPTopicOrder0=191 +ETPTopicOrder0=1315 -[External Topic Properties\PIMAGE_NT_HEADERS64] +[External Topic Properties\RsCILCmdstlocs] Count=1 ETPCommand0=2 -ETPTopicOrder0=192 +ETPTopicOrder0=1316 -[External Topic Properties\PIMAGE_OPTIONAL_HEADER32] +[External Topic Properties\RsCILCmdstobj] Count=1 ETPCommand0=2 -ETPTopicOrder0=193 +ETPTopicOrder0=1317 -[External Topic Properties\PIMAGE_OPTIONAL_HEADER64] +[External Topic Properties\RsCILCmdstsfld] Count=1 ETPCommand0=2 -ETPTopicOrder0=194 +ETPTopicOrder0=1318 -[External Topic Properties\PIMAGE_RESOURCE_DATA_ENTRY] +[External Topic Properties\RsCILCmdsub] Count=1 ETPCommand0=2 -ETPTopicOrder0=195 +ETPTopicOrder0=1319 -[External Topic Properties\PIMAGE_RESOURCE_DIR_STRING_U] +[External Topic Properties\RsCILCmdsubovf] Count=1 ETPCommand0=2 -ETPTopicOrder0=196 +ETPTopicOrder0=1320 -[External Topic Properties\PIMAGE_RESOURCE_DIRECTORY] +[External Topic Properties\RsCILCmdsubovfun] Count=1 ETPCommand0=2 -ETPTopicOrder0=197 +ETPTopicOrder0=1321 -[External Topic Properties\PIMAGE_RESOURCE_DIRECTORY_ENTRY] +[External Topic Properties\RsCILCmdswitch] Count=1 ETPCommand0=2 -ETPTopicOrder0=198 +ETPTopicOrder0=1322 -[External Topic Properties\PIMAGE_RESOURCE_DIRECTORY_STRING] +[External Topic Properties\RsCILCmdtail] Count=1 ETPCommand0=2 -ETPTopicOrder0=199 +ETPTopicOrder0=1323 -[External Topic Properties\PIMAGE_ROM_HEADERS] +[External Topic Properties\RsCILCmdthrow] Count=1 ETPCommand0=2 -ETPTopicOrder0=200 +ETPTopicOrder0=1324 -[External Topic Properties\PIMAGE_ROM_OPTIONAL_HEADER] +[External Topic Properties\RsCILCmdunaligned] Count=1 ETPCommand0=2 -ETPTopicOrder0=201 +ETPTopicOrder0=1325 -[External Topic Properties\PIMAGE_SECTION_HEADER] +[External Topic Properties\RsCILCmdunbox] Count=1 ETPCommand0=2 -ETPTopicOrder0=202 +ETPTopicOrder0=1326 -[External Topic Properties\PIMAGE_SEPARATE_DEBUG_HEADER] +[External Topic Properties\RsCILCmdunused1] Count=1 ETPCommand0=2 -ETPTopicOrder0=203 +ETPTopicOrder0=1327 -[External Topic Properties\PIMAGE_THUNK_DATA] +[External Topic Properties\RsCILCmdunused10] Count=1 ETPCommand0=2 -ETPTopicOrder0=204 +ETPTopicOrder0=1328 -[External Topic Properties\PIMAGE_THUNK_DATA32] +[External Topic Properties\RsCILCmdunused11] Count=1 ETPCommand0=2 -ETPTopicOrder0=205 +ETPTopicOrder0=1329 -[External Topic Properties\PIMAGE_THUNK_DATA64] +[External Topic Properties\RsCILCmdunused12] Count=1 ETPCommand0=2 -ETPTopicOrder0=206 +ETPTopicOrder0=1330 -[External Topic Properties\PIMAGE_TLS_CALLBACK] +[External Topic Properties\RsCILCmdunused13] Count=1 ETPCommand0=2 -ETPTopicOrder0=207 +ETPTopicOrder0=1331 -[External Topic Properties\PIMAGE_TLS_DIRECTORY] +[External Topic Properties\RsCILCmdunused14] Count=1 ETPCommand0=2 -ETPTopicOrder0=208 +ETPTopicOrder0=1332 -[External Topic Properties\PIMAGE_TLS_DIRECTORY32] +[External Topic Properties\RsCILCmdunused15] Count=1 ETPCommand0=2 -ETPTopicOrder0=209 +ETPTopicOrder0=1333 -[External Topic Properties\PIMAGE_TLS_DIRECTORY64] +[External Topic Properties\RsCILCmdunused16] Count=1 ETPCommand0=2 -ETPTopicOrder0=210 +ETPTopicOrder0=1334 -[External Topic Properties\PImageArchitectureEntry] +[External Topic Properties\RsCILCmdunused17] Count=1 ETPCommand0=2 -ETPTopicOrder0=211 +ETPTopicOrder0=1335 -[External Topic Properties\PImageArchitectureHeader] +[External Topic Properties\RsCILCmdunused18] Count=1 ETPCommand0=2 -ETPTopicOrder0=212 +ETPTopicOrder0=1336 -[External Topic Properties\PImageArchiveMemberHeader] +[External Topic Properties\RsCILCmdunused19] Count=1 ETPCommand0=2 -ETPTopicOrder0=213 +ETPTopicOrder0=1337 -[External Topic Properties\PImageCoffSymbolsHeader] +[External Topic Properties\RsCILCmdunused2] Count=1 ETPCommand0=2 -ETPTopicOrder0=214 +ETPTopicOrder0=1338 -[External Topic Properties\PImageCorILMethodFat] +[External Topic Properties\RsCILCmdunused20] Count=1 ETPCommand0=2 -ETPTopicOrder0=215 +ETPTopicOrder0=1339 -[External Topic Properties\PImageCorILMethodHeader] +[External Topic Properties\RsCILCmdunused21] Count=1 ETPCommand0=2 -ETPTopicOrder0=216 +ETPTopicOrder0=1340 -[External Topic Properties\PImageCorILMethodSectEH] +[External Topic Properties\RsCILCmdunused22] Count=1 ETPCommand0=2 -ETPTopicOrder0=217 +ETPTopicOrder0=1341 -[External Topic Properties\PImageCorILMethodSectEHClauseFat] +[External Topic Properties\RsCILCmdunused23] Count=1 ETPCommand0=2 -ETPTopicOrder0=218 +ETPTopicOrder0=1342 -[External Topic Properties\PImageCorILMethodSectEHClauseSmall] +[External Topic Properties\RsCILCmdunused24] Count=1 ETPCommand0=2 -ETPTopicOrder0=219 +ETPTopicOrder0=1343 -[External Topic Properties\PImageCorILMethodSectEHFat] +[External Topic Properties\RsCILCmdunused25] Count=1 ETPCommand0=2 -ETPTopicOrder0=220 +ETPTopicOrder0=1344 -[External Topic Properties\PImageCorILMethodSectEHSmall] +[External Topic Properties\RsCILCmdunused26] Count=1 ETPCommand0=2 -ETPTopicOrder0=221 +ETPTopicOrder0=1345 -[External Topic Properties\PImageCorILMethodSectFat] +[External Topic Properties\RsCILCmdunused27] Count=1 ETPCommand0=2 -ETPTopicOrder0=222 +ETPTopicOrder0=1346 -[External Topic Properties\PImageCorILMethodSectHeader] +[External Topic Properties\RsCILCmdunused28] Count=1 ETPCommand0=2 -ETPTopicOrder0=223 +ETPTopicOrder0=1347 -[External Topic Properties\PImageCorILMethodSectSmall] +[External Topic Properties\RsCILCmdunused29] Count=1 ETPCommand0=2 -ETPTopicOrder0=224 +ETPTopicOrder0=1348 -[External Topic Properties\PImageCorILMethodTiny] +[External Topic Properties\RsCILCmdunused3] Count=1 ETPCommand0=2 -ETPTopicOrder0=225 +ETPTopicOrder0=1349 -[External Topic Properties\PImageCorVTableFixup] +[External Topic Properties\RsCILCmdunused30] Count=1 ETPCommand0=2 -ETPTopicOrder0=226 +ETPTopicOrder0=1350 -[External Topic Properties\PImageCorVTableFixupArray] +[External Topic Properties\RsCILCmdunused31] Count=1 ETPCommand0=2 -ETPTopicOrder0=227 +ETPTopicOrder0=1351 -[External Topic Properties\PImageDataDirectory] +[External Topic Properties\RsCILCmdunused32] Count=1 ETPCommand0=2 -ETPTopicOrder0=228 +ETPTopicOrder0=1352 -[External Topic Properties\PImageDebugMisc] +[External Topic Properties\RsCILCmdunused33] Count=1 ETPCommand0=2 -ETPTopicOrder0=229 +ETPTopicOrder0=1353 -[External Topic Properties\PImageFileHeader] +[External Topic Properties\RsCILCmdunused34] Count=1 ETPCommand0=2 -ETPTopicOrder0=230 +ETPTopicOrder0=1354 -[External Topic Properties\PImageFunctionEntry] +[External Topic Properties\RsCILCmdunused35] Count=1 ETPCommand0=2 -ETPTopicOrder0=231 +ETPTopicOrder0=1355 -[External Topic Properties\PImageFunctionEntry64] +[External Topic Properties\RsCILCmdunused36] Count=1 ETPCommand0=2 -ETPTopicOrder0=232 +ETPTopicOrder0=1356 -[External Topic Properties\PIMAGEHLP_LINE] +[External Topic Properties\RsCILCmdunused37] Count=1 ETPCommand0=2 -ETPTopicOrder0=233 +ETPTopicOrder0=1357 -[External Topic Properties\PImageHlpLine] +[External Topic Properties\RsCILCmdunused38] Count=1 ETPCommand0=2 -ETPTopicOrder0=234 +ETPTopicOrder0=1358 -[External Topic Properties\PImageLineNumber] +[External Topic Properties\RsCILCmdunused39] Count=1 ETPCommand0=2 -ETPTopicOrder0=235 +ETPTopicOrder0=1359 -[External Topic Properties\PImageLoadConfigDirectory32] +[External Topic Properties\RsCILCmdunused4] Count=1 ETPCommand0=2 -ETPTopicOrder0=236 +ETPTopicOrder0=1360 -[External Topic Properties\PImageLoadConfigDirectory64] +[External Topic Properties\RsCILCmdunused40] Count=1 ETPCommand0=2 -ETPTopicOrder0=237 +ETPTopicOrder0=1361 -[External Topic Properties\PImageNtHeaders] +[External Topic Properties\RsCILCmdunused41] Count=1 ETPCommand0=2 -ETPTopicOrder0=238 +ETPTopicOrder0=1362 -[External Topic Properties\PImageNtHeaders32] +[External Topic Properties\RsCILCmdunused42] Count=1 ETPCommand0=2 -ETPTopicOrder0=239 +ETPTopicOrder0=1363 -[External Topic Properties\PImageNtHeaders64] +[External Topic Properties\RsCILCmdunused43] Count=1 ETPCommand0=2 -ETPTopicOrder0=240 +ETPTopicOrder0=1364 -[External Topic Properties\PImageOptionalHeader32] +[External Topic Properties\RsCILCmdunused44] Count=1 ETPCommand0=2 -ETPTopicOrder0=241 +ETPTopicOrder0=1365 -[External Topic Properties\PImageOptionalHeader64] +[External Topic Properties\RsCILCmdunused45] Count=1 ETPCommand0=2 -ETPTopicOrder0=242 +ETPTopicOrder0=1366 -[External Topic Properties\PImageResourceDirectoryString] +[External Topic Properties\RsCILCmdunused46] Count=1 ETPCommand0=2 -ETPTopicOrder0=243 +ETPTopicOrder0=1367 -[External Topic Properties\PImageRomHeaders] +[External Topic Properties\RsCILCmdunused47] Count=1 ETPCommand0=2 -ETPTopicOrder0=244 +ETPTopicOrder0=1368 -[External Topic Properties\PImageRomOptionalHeader] +[External Topic Properties\RsCILCmdunused48] Count=1 ETPCommand0=2 -ETPTopicOrder0=245 +ETPTopicOrder0=1369 -[External Topic Properties\PImageSectionHeader] +[External Topic Properties\RsCILCmdunused49] Count=1 ETPCommand0=2 -ETPTopicOrder0=246 +ETPTopicOrder0=1370 -[External Topic Properties\PImageSeparateDebugHeader] +[External Topic Properties\RsCILCmdunused5] Count=1 ETPCommand0=2 -ETPTopicOrder0=247 +ETPTopicOrder0=1371 -[External Topic Properties\PImageThunkData32] +[External Topic Properties\RsCILCmdunused50] Count=1 ETPCommand0=2 -ETPTopicOrder0=248 +ETPTopicOrder0=1372 -[External Topic Properties\PImageThunkData64] +[External Topic Properties\RsCILCmdunused51] Count=1 ETPCommand0=2 -ETPTopicOrder0=249 +ETPTopicOrder0=1373 -[External Topic Properties\PImageTlsDirectory32] +[External Topic Properties\RsCILCmdunused52] Count=1 ETPCommand0=2 -ETPTopicOrder0=250 +ETPTopicOrder0=1374 -[External Topic Properties\PImageTlsDirectory64] +[External Topic Properties\RsCILCmdunused53] Count=1 ETPCommand0=2 -ETPTopicOrder0=251 +ETPTopicOrder0=1375 -[External Topic Properties\PImgDelayDescrV1] +[External Topic Properties\RsCILCmdunused54] Count=1 ETPCommand0=2 -ETPTopicOrder0=252 +ETPTopicOrder0=1376 -[External Topic Properties\PImgDelayDescrV2] +[External Topic Properties\RsCILCmdunused55] Count=1 ETPCommand0=2 -ETPTopicOrder0=253 +ETPTopicOrder0=1377 -[External Topic Properties\PImportObjectHeader] +[External Topic Properties\RsCILCmdunused56] Count=1 ETPCommand0=2 -ETPTopicOrder0=254 +ETPTopicOrder0=1378 -[External Topic Properties\PInteger] +[External Topic Properties\RsCILCmdunused57] Count=1 ETPCommand0=2 -ETPTopicOrder0=255 +ETPTopicOrder0=1379 -[External Topic Properties\PiOn2] +[External Topic Properties\RsCILCmdunused58] Count=1 ETPCommand0=2 -ETPTopicOrder0=2100 +ETPTopicOrder0=1380 -[External Topic Properties\PiOn3] +[External Topic Properties\RsCILCmdunused59] Count=1 ETPCommand0=2 -ETPTopicOrder0=2101 +ETPTopicOrder0=1381 -[External Topic Properties\PiOn4] +[External Topic Properties\RsCILCmdunused6] Count=1 ETPCommand0=2 -ETPTopicOrder0=2102 +ETPTopicOrder0=1382 -[External Topic Properties\PixelsToDialogUnitsX@Word] +[External Topic Properties\RsCILCmdunused60] Count=1 ETPCommand0=2 -ETPTopicOrder0=800 +ETPTopicOrder0=1383 -[External Topic Properties\PixelsToDialogUnitsY@Word] +[External Topic Properties\RsCILCmdunused61] Count=1 ETPCommand0=2 -ETPTopicOrder0=801 +ETPTopicOrder0=1384 -[External Topic Properties\PJclBinaryNode] +[External Topic Properties\RsCILCmdunused62] Count=1 ETPCommand0=2 -ETPTopicOrder0=256 +ETPTopicOrder0=1385 -[External Topic Properties\PJclBucket] +[External Topic Properties\RsCILCmdunused63] Count=1 ETPCommand0=2 -ETPTopicOrder0=257 +ETPTopicOrder0=1386 -[External Topic Properties\PJclByteArray] +[External Topic Properties\RsCILCmdunused64] Count=1 ETPCommand0=2 -ETPTopicOrder0=258 +ETPTopicOrder0=1387 -[External Topic Properties\PJclClrToken] +[External Topic Properties\RsCILCmdunused65] Count=1 ETPCommand0=2 -ETPTopicOrder0=259 +ETPTopicOrder0=1388 -[External Topic Properties\PJclDbgHeader] +[External Topic Properties\RsCILCmdunused66] Count=1 ETPCommand0=2 -ETPTopicOrder0=260 +ETPTopicOrder0=1389 -[External Topic Properties\PJclIntfBinaryNode] +[External Topic Properties\RsCILCmdunused67] Count=1 ETPCommand0=2 -ETPTopicOrder0=261 +ETPTopicOrder0=1390 -[External Topic Properties\PJclIntfIntfBucket] +[External Topic Properties\RsCILCmdunused68] Count=1 ETPCommand0=2 -ETPTopicOrder0=262 +ETPTopicOrder0=1391 -[External Topic Properties\PJclIntfLinkedListItem] +[External Topic Properties\RsCILCmdunused69] Count=1 ETPCommand0=2 -ETPTopicOrder0=263 +ETPTopicOrder0=1392 -[External Topic Properties\PJclLinkedListItem] +[External Topic Properties\RsCILCmdunused7] Count=1 ETPCommand0=2 -ETPTopicOrder0=264 +ETPTopicOrder0=1393 -[External Topic Properties\PJclLocationInfo] +[External Topic Properties\RsCILCmdunused70] Count=1 ETPCommand0=2 -ETPTopicOrder0=265 +ETPTopicOrder0=1394 -[External Topic Properties\PJclMapAddress] +[External Topic Properties\RsCILCmdunused8] Count=1 ETPCommand0=2 -ETPTopicOrder0=266 +ETPTopicOrder0=1395 -[External Topic Properties\PJclMapLineNumber] +[External Topic Properties\RsCILCmdunused9] Count=1 ETPCommand0=2 -ETPTopicOrder0=267 +ETPTopicOrder0=1396 -[External Topic Properties\PJclMapProcName] +[External Topic Properties\RsCILCmdvolatile] Count=1 ETPCommand0=2 -ETPTopicOrder0=268 +ETPTopicOrder0=1397 -[External Topic Properties\PJclMapSegment] +[External Topic Properties\RsCILCmdxor] Count=1 ETPCommand0=2 -ETPTopicOrder0=269 +ETPTopicOrder0=1398 -[External Topic Properties\PJclMapSegmentClass] +[External Topic Properties\RsCILDescradd] Count=1 ETPCommand0=2 -ETPTopicOrder0=270 +ETPTopicOrder0=1399 -[External Topic Properties\PJclStrBinaryNode] +[External Topic Properties\RsCILDescraddovf] Count=1 ETPCommand0=2 -ETPTopicOrder0=271 +ETPTopicOrder0=1400 -[External Topic Properties\PJclStrBucket] +[External Topic Properties\RsCILDescraddovfun] Count=1 ETPCommand0=2 -ETPTopicOrder0=272 +ETPTopicOrder0=1401 -[External Topic Properties\PJclStrIntfBucket] +[External Topic Properties\RsCILDescrand] Count=1 ETPCommand0=2 -ETPTopicOrder0=273 +ETPTopicOrder0=1402 -[External Topic Properties\PJclStrLinkedListItem] +[External Topic Properties\RsCILDescrarglist] Count=1 ETPCommand0=2 -ETPTopicOrder0=274 +ETPTopicOrder0=1403 -[External Topic Properties\PJclStrStrBucket] +[External Topic Properties\RsCILDescrbeq] Count=1 ETPCommand0=2 -ETPTopicOrder0=275 +ETPTopicOrder0=1404 -[External Topic Properties\PJclTD32FileSignature] +[External Topic Properties\RsCILDescrbeqs] Count=1 ETPCommand0=2 -ETPTopicOrder0=276 +ETPTopicOrder0=1405 -[External Topic Properties\PJmpTable] +[External Topic Properties\RsCILDescrbge] Count=1 ETPCommand0=2 -ETPTopicOrder0=277 +ETPTopicOrder0=1406 -[External Topic Properties\PKeyboardState] +[External Topic Properties\RsCILDescrbges] Count=1 ETPCommand0=2 -ETPTopicOrder0=278 +ETPTopicOrder0=1407 -[External Topic Properties\PLANA_ENUM] +[External Topic Properties\RsCILDescrbgeun] Count=1 ETPCommand0=2 -ETPTopicOrder0=279 +ETPTopicOrder0=1408 -[External Topic Properties\PLangIdRec] +[External Topic Properties\RsCILDescrbgeuns] Count=1 ETPCommand0=2 -ETPTopicOrder0=280 +ETPTopicOrder0=1409 -[External Topic Properties\PLargeInteger] +[External Topic Properties\RsCILDescrbgt] Count=1 ETPCommand0=2 -ETPTopicOrder0=281 +ETPTopicOrder0=1410 -[External Topic Properties\PLATFORM_ID_DOS] +[External Topic Properties\RsCILDescrbgts] Count=1 ETPCommand0=2 -ETPTopicOrder0=2103 +ETPTopicOrder0=1411 -[External Topic Properties\PLATFORM_ID_NT] +[External Topic Properties\RsCILDescrbgtun] Count=1 ETPCommand0=2 -ETPTopicOrder0=2104 +ETPTopicOrder0=1412 -[External Topic Properties\PLATFORM_ID_OS2] +[External Topic Properties\RsCILDescrbgtuns] Count=1 ETPCommand0=2 -ETPTopicOrder0=2105 +ETPTopicOrder0=1413 -[External Topic Properties\PLATFORM_ID_OSF] +[External Topic Properties\RsCILDescrble] Count=1 ETPCommand0=2 -ETPTopicOrder0=2106 +ETPTopicOrder0=1414 -[External Topic Properties\PLATFORM_ID_VMS] +[External Topic Properties\RsCILDescrbles] Count=1 ETPCommand0=2 -ETPTopicOrder0=2107 +ETPTopicOrder0=1415 -[External Topic Properties\PLineMappingEntry] +[External Topic Properties\RsCILDescrbleun] Count=1 ETPCommand0=2 -ETPTopicOrder0=282 +ETPTopicOrder0=1416 -[External Topic Properties\PLMSTR] +[External Topic Properties\RsCILDescrbleuns] Count=1 ETPCommand0=2 -ETPTopicOrder0=283 +ETPTopicOrder0=1417 -[External Topic Properties\PLOADED_IMAGE] +[External Topic Properties\RsCILDescrblt] Count=1 ETPCommand0=2 -ETPTopicOrder0=284 +ETPTopicOrder0=1418 -[External Topic Properties\PLoadedImage] +[External Topic Properties\RsCILDescrblts] Count=1 ETPCommand0=2 -ETPTopicOrder0=285 +ETPTopicOrder0=1419 -[External Topic Properties\PLOCALGROUP_INFO_0] +[External Topic Properties\RsCILDescrbltun] Count=1 ETPCommand0=2 -ETPTopicOrder0=286 +ETPTopicOrder0=1420 -[External Topic Properties\PLOCALGROUP_INFO_1] +[External Topic Properties\RsCILDescrbltuns] Count=1 ETPCommand0=2 -ETPTopicOrder0=287 +ETPTopicOrder0=1421 -[External Topic Properties\PLOCALGROUP_INFO_1002] +[External Topic Properties\RsCILDescrbneun] Count=1 ETPCommand0=2 -ETPTopicOrder0=288 +ETPTopicOrder0=1422 -[External Topic Properties\PLOCALGROUP_MEMBERS_INFO_0] +[External Topic Properties\RsCILDescrbneuns] Count=1 ETPCommand0=2 -ETPTopicOrder0=289 +ETPTopicOrder0=1423 -[External Topic Properties\PLOCALGROUP_MEMBERS_INFO_1] +[External Topic Properties\RsCILDescrbox] Count=1 ETPCommand0=2 -ETPTopicOrder0=290 +ETPTopicOrder0=1424 -[External Topic Properties\PLOCALGROUP_MEMBERS_INFO_2] +[External Topic Properties\RsCILDescrbr] Count=1 ETPCommand0=2 -ETPTopicOrder0=291 +ETPTopicOrder0=1425 -[External Topic Properties\PLOCALGROUP_MEMBERS_INFO_3] +[External Topic Properties\RsCILDescrbreak] Count=1 ETPCommand0=2 -ETPTopicOrder0=292 +ETPTopicOrder0=1426 -[External Topic Properties\PLocalGroupInfo0] +[External Topic Properties\RsCILDescrbrfalse] Count=1 ETPCommand0=2 -ETPTopicOrder0=293 +ETPTopicOrder0=1427 -[External Topic Properties\PLocalGroupInfo1] +[External Topic Properties\RsCILDescrbrfalses] Count=1 ETPCommand0=2 -ETPTopicOrder0=294 +ETPTopicOrder0=1428 -[External Topic Properties\PLocalGroupInfo1002] +[External Topic Properties\RsCILDescrbrs] Count=1 ETPCommand0=2 -ETPTopicOrder0=295 +ETPTopicOrder0=1429 -[External Topic Properties\PLocalGroupMembersInfo0] +[External Topic Properties\RsCILDescrbrtrue] Count=1 ETPCommand0=2 -ETPTopicOrder0=296 +ETPTopicOrder0=1430 -[External Topic Properties\PLocalGroupMembersInfo1] +[External Topic Properties\RsCILDescrbrtrues] Count=1 ETPCommand0=2 -ETPTopicOrder0=297 +ETPTopicOrder0=1431 -[External Topic Properties\PLocalGroupMembersInfo2] +[External Topic Properties\RsCILDescrcall] Count=1 ETPCommand0=2 -ETPTopicOrder0=298 +ETPTopicOrder0=1432 -[External Topic Properties\PLocalGroupMembersInfo3] +[External Topic Properties\RsCILDescrcalli] Count=1 ETPCommand0=2 -ETPTopicOrder0=299 +ETPTopicOrder0=1433 -[External Topic Properties\PLONGLONG] +[External Topic Properties\RsCILDescrcallvirt] Count=1 ETPCommand0=2 -ETPTopicOrder0=300 +ETPTopicOrder0=1434 -[External Topic Properties\PLongWord] +[External Topic Properties\RsCILDescrcastclass] Count=1 ETPCommand0=2 -ETPTopicOrder0=301 +ETPTopicOrder0=1435 -[External Topic Properties\PLSA_HANDLE] +[External Topic Properties\RsCILDescrceq] Count=1 ETPCommand0=2 -ETPTopicOrder0=302 +ETPTopicOrder0=1436 -[External Topic Properties\PLSA_OBJECT_ATTRIBUTES] +[External Topic Properties\RsCILDescrcgt] Count=1 ETPCommand0=2 -ETPTopicOrder0=303 +ETPTopicOrder0=1437 -[External Topic Properties\PLSA_STRING] +[External Topic Properties\RsCILDescrcgtun] Count=1 ETPCommand0=2 -ETPTopicOrder0=304 +ETPTopicOrder0=1438 -[External Topic Properties\PLSA_UNICODE_STRING] +[External Topic Properties\RsCILDescrckfinite] Count=1 ETPCommand0=2 -ETPTopicOrder0=305 +ETPTopicOrder0=1439 -[External Topic Properties\PLsaObjectAttributes] +[External Topic Properties\RsCILDescrclt] Count=1 ETPCommand0=2 -ETPTopicOrder0=306 +ETPTopicOrder0=1440 -[External Topic Properties\PLsaString] +[External Topic Properties\RsCILDescrcltun] Count=1 ETPCommand0=2 -ETPTopicOrder0=307 +ETPTopicOrder0=1441 -[External Topic Properties\PLsaUnicodeString] +[External Topic Properties\RsCILDescrconvi] Count=1 ETPCommand0=2 -ETPTopicOrder0=308 +ETPTopicOrder0=1442 -[External Topic Properties\PMeteredSection] +[External Topic Properties\RsCILDescrconvi1] Count=1 ETPCommand0=2 -ETPTopicOrder0=309 +ETPTopicOrder0=1443 -[External Topic Properties\PMetSectSharedInfo] +[External Topic Properties\RsCILDescrconvi2] Count=1 ETPCommand0=2 -ETPTopicOrder0=310 +ETPTopicOrder0=1444 -[External Topic Properties\PMultiSz] +[External Topic Properties\RsCILDescrconvi4] Count=1 ETPCommand0=2 -ETPTopicOrder0=311 +ETPTopicOrder0=1445 -[External Topic Properties\PNAME_BUFFER] +[External Topic Properties\RsCILDescrconvi8] Count=1 ETPCommand0=2 -ETPTopicOrder0=312 +ETPTopicOrder0=1446 -[External Topic Properties\PNON_PAGED_DEBUG_INFO] +[External Topic Properties\RsCILDescrconvovfi] Count=1 ETPCommand0=2 -ETPTopicOrder0=313 +ETPTopicOrder0=1447 -[External Topic Properties\PNT_TIB32] +[External Topic Properties\RsCILDescrconvovfi1] Count=1 ETPCommand0=2 -ETPTopicOrder0=314 +ETPTopicOrder0=1448 -[External Topic Properties\PNT_TIB64] +[External Topic Properties\RsCILDescrconvovfi1un] Count=1 ETPCommand0=2 -ETPTopicOrder0=315 +ETPTopicOrder0=1449 -[External Topic Properties\POffsetPairArray] +[External Topic Properties\RsCILDescrconvovfi2] Count=1 ETPCommand0=2 -ETPTopicOrder0=316 +ETPTopicOrder0=1450 -[External Topic Properties\PolarComplex@Float@Float] +[External Topic Properties\RsCILDescrconvovfi2un] Count=1 ETPCommand0=2 -ETPTopicOrder0=802 +ETPTopicOrder0=1451 -[External Topic Properties\PolarComplex@TRectComplex] +[External Topic Properties\RsCILDescrconvovfi4] Count=1 ETPCommand0=2 -ETPTopicOrder0=803 +ETPTopicOrder0=1452 -[External Topic Properties\POLICY_ACCOUNT_DOMAIN_INFO] +[External Topic Properties\RsCILDescrconvovfi4un] Count=1 ETPCommand0=2 -ETPTopicOrder0=317 +ETPTopicOrder0=1453 -[External Topic Properties\POLICY_ALL_ACCESS] +[External Topic Properties\RsCILDescrconvovfi8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2108 +ETPTopicOrder0=1454 -[External Topic Properties\POLICY_AUDIT_LOG_ADMIN] +[External Topic Properties\RsCILDescrconvovfi8un] Count=1 ETPCommand0=2 -ETPTopicOrder0=2109 +ETPTopicOrder0=1455 -[External Topic Properties\POLICY_CREATE_ACCOUNT] +[External Topic Properties\RsCILDescrconvovfiun] Count=1 ETPCommand0=2 -ETPTopicOrder0=2110 +ETPTopicOrder0=1456 -[External Topic Properties\POLICY_CREATE_PRIVILEGE] +[External Topic Properties\RsCILDescrconvovfu] Count=1 ETPCommand0=2 -ETPTopicOrder0=2111 +ETPTopicOrder0=1457 -[External Topic Properties\POLICY_CREATE_SECRET] +[External Topic Properties\RsCILDescrconvovfu1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2112 +ETPTopicOrder0=1458 -[External Topic Properties\POLICY_EXECUTE] +[External Topic Properties\RsCILDescrconvovfu1un] Count=1 ETPCommand0=2 -ETPTopicOrder0=2113 +ETPTopicOrder0=1459 -[External Topic Properties\POLICY_GET_PRIVATE_INFORMATION] +[External Topic Properties\RsCILDescrconvovfu2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2114 +ETPTopicOrder0=1460 -[External Topic Properties\POLICY_INFORMATION_CLASS] +[External Topic Properties\RsCILDescrconvovfu2un] Count=1 ETPCommand0=2 -ETPTopicOrder0=318 +ETPTopicOrder0=1461 -[External Topic Properties\POLICY_LOOKUP_NAMES] +[External Topic Properties\RsCILDescrconvovfu4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2115 +ETPTopicOrder0=1462 -[External Topic Properties\POLICY_NOTIFICATION] +[External Topic Properties\RsCILDescrconvovfu4un] Count=1 ETPCommand0=2 -ETPTopicOrder0=2116 +ETPTopicOrder0=1463 -[External Topic Properties\POLICY_READ] +[External Topic Properties\RsCILDescrconvovfu8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2117 +ETPTopicOrder0=1464 -[External Topic Properties\POLICY_SERVER_ADMIN] +[External Topic Properties\RsCILDescrconvovfu8un] Count=1 ETPCommand0=2 -ETPTopicOrder0=2118 +ETPTopicOrder0=1465 -[External Topic Properties\POLICY_SET_AUDIT_REQUIREMENTS] +[External Topic Properties\RsCILDescrconvovfuun] Count=1 ETPCommand0=2 -ETPTopicOrder0=2119 +ETPTopicOrder0=1466 -[External Topic Properties\POLICY_SET_DEFAULT_QUOTA_LIMITS] +[External Topic Properties\RsCILDescrconvr4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2120 +ETPTopicOrder0=1467 -[External Topic Properties\POLICY_TRUST_ADMIN] +[External Topic Properties\RsCILDescrconvr8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2121 +ETPTopicOrder0=1468 -[External Topic Properties\POLICY_VIEW_AUDIT_INFORMATION] +[External Topic Properties\RsCILDescrconvrun] Count=1 ETPCommand0=2 -ETPTopicOrder0=2122 +ETPTopicOrder0=1469 -[External Topic Properties\POLICY_VIEW_LOCAL_INFORMATION] +[External Topic Properties\RsCILDescrconvu] Count=1 ETPCommand0=2 -ETPTopicOrder0=2123 +ETPTopicOrder0=1470 -[External Topic Properties\POLICY_WRITE] +[External Topic Properties\RsCILDescrconvu1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2124 +ETPTopicOrder0=1471 -[External Topic Properties\PolygonAS] +[External Topic Properties\RsCILDescrconvu2] Count=1 ETPCommand0=2 -ETPTopicOrder0=804 +ETPTopicOrder0=1472 -[External Topic Properties\PolygonFS] +[External Topic Properties\RsCILDescrconvu4] Count=1 ETPCommand0=2 -ETPTopicOrder0=805 +ETPTopicOrder0=1473 -[External Topic Properties\PolygonTS] +[External Topic Properties\RsCILDescrconvu8] Count=1 ETPCommand0=2 -ETPTopicOrder0=806 +ETPTopicOrder0=1474 -[External Topic Properties\PolyLineAS] +[External Topic Properties\RsCILDescrcpblk] Count=1 ETPCommand0=2 -ETPTopicOrder0=807 +ETPTopicOrder0=1475 -[External Topic Properties\PolyLineFS] +[External Topic Properties\RsCILDescrcpobj] Count=1 ETPCommand0=2 -ETPTopicOrder0=808 +ETPTopicOrder0=1476 -[External Topic Properties\PolyLineTS] +[External Topic Properties\RsCILDescrdiv] Count=1 ETPCommand0=2 -ETPTopicOrder0=809 +ETPTopicOrder0=1477 -[External Topic Properties\PolyPolygonAS] +[External Topic Properties\RsCILDescrdivun] Count=1 ETPCommand0=2 -ETPTopicOrder0=810 +ETPTopicOrder0=1478 -[External Topic Properties\PolyPolygonFS] +[External Topic Properties\RsCILDescrdup] Count=1 ETPCommand0=2 -ETPTopicOrder0=811 +ETPTopicOrder0=1479 -[External Topic Properties\PolyPolygonTS] +[External Topic Properties\RsCILDescrendfilter] Count=1 ETPCommand0=2 -ETPTopicOrder0=812 +ETPTopicOrder0=1480 -[External Topic Properties\POptexSharedInfo] +[External Topic Properties\RsCILDescrendfinally] Count=1 ETPCommand0=2 -ETPTopicOrder0=319 +ETPTopicOrder0=1481 -[External Topic Properties\POSVERSIONINFOEX] +[External Topic Properties\RsCILDescrinitblk] Count=1 ETPCommand0=2 -ETPTopicOrder0=320 +ETPTopicOrder0=1482 -[External Topic Properties\POSVERSIONINFOEXA] +[External Topic Properties\RsCILDescrinitobj] Count=1 ETPCommand0=2 -ETPTopicOrder0=321 +ETPTopicOrder0=1483 -[External Topic Properties\POSVERSIONINFOEXW] +[External Topic Properties\RsCILDescrisinst] Count=1 ETPCommand0=2 -ETPTopicOrder0=322 +ETPTopicOrder0=1484 -[External Topic Properties\Power@TPolarComplex@Float] +[External Topic Properties\RsCILDescrjmp] Count=1 ETPCommand0=2 -ETPTopicOrder0=814 +ETPTopicOrder0=1485 -[External Topic Properties\Power@TPolarComplex@TRectComplex] +[External Topic Properties\RsCILDescrldarg] Count=1 ETPCommand0=2 -ETPTopicOrder0=813 +ETPTopicOrder0=1486 -[External Topic Properties\PowerInt@TPolarComplex@Integer] +[External Topic Properties\RsCILDescrldarg0] Count=1 ETPCommand0=2 -ETPTopicOrder0=815 +ETPTopicOrder0=1487 -[External Topic Properties\PPalette32] +[External Topic Properties\RsCILDescrldarg1] Count=1 ETPCommand0=2 -ETPTopicOrder0=323 +ETPTopicOrder0=1488 -[External Topic Properties\PPChar] +[External Topic Properties\RsCILDescrldarg2] Count=1 ETPCommand0=2 -ETPTopicOrder0=324 +ETPTopicOrder0=1489 -[External Topic Properties\PPCharArray] +[External Topic Properties\RsCILDescrldarg3] Count=1 ETPCommand0=2 -ETPTopicOrder0=325 +ETPTopicOrder0=1490 -[External Topic Properties\PPCRE] +[External Topic Properties\RsCILDescrldarga] Count=1 ETPCommand0=2 -ETPTopicOrder0=326 +ETPTopicOrder0=1491 -[External Topic Properties\PPCREExtra] +[External Topic Properties\RsCILDescrldargas] Count=1 ETPCommand0=2 -ETPTopicOrder0=327 +ETPTopicOrder0=1492 -[External Topic Properties\PPCREIntArray] +[External Topic Properties\RsCILDescrldargs] Count=1 ETPCommand0=2 -ETPTopicOrder0=328 +ETPTopicOrder0=1493 -[External Topic Properties\PPHashNode] +[External Topic Properties\RsCILDescrldci4] Count=1 ETPCommand0=2 -ETPTopicOrder0=329 +ETPTopicOrder0=1494 -[External Topic Properties\PPointArray] +[External Topic Properties\RsCILDescrldci40] Count=1 ETPCommand0=2 -ETPTopicOrder0=330 +ETPTopicOrder0=1495 -[External Topic Properties\PPointer] +[External Topic Properties\RsCILDescrldci41] Count=1 ETPCommand0=2 -ETPTopicOrder0=331 +ETPTopicOrder0=1496 -[External Topic Properties\PPointerArray] +[External Topic Properties\RsCILDescrldci42] Count=1 ETPCommand0=2 -ETPTopicOrder0=332 +ETPTopicOrder0=1497 -[External Topic Properties\PPOLICY_ACCOUNT_DOMAIN_INFO] +[External Topic Properties\RsCILDescrldci43] Count=1 ETPCommand0=2 -ETPTopicOrder0=333 +ETPTopicOrder0=1498 -[External Topic Properties\PPOLICY_INFORMATION_CLASS] +[External Topic Properties\RsCILDescrldci44] Count=1 ETPCommand0=2 -ETPTopicOrder0=334 +ETPTopicOrder0=1499 -[External Topic Properties\PPolicyAccountDomainInfo] +[External Topic Properties\RsCILDescrldci45] Count=1 ETPCommand0=2 -ETPTopicOrder0=335 +ETPTopicOrder0=1500 -[External Topic Properties\PPolicyInformationClass] +[External Topic Properties\RsCILDescrldci46] Count=1 ETPCommand0=2 -ETPTopicOrder0=336 +ETPTopicOrder0=1501 -[External Topic Properties\PPPChar] +[External Topic Properties\RsCILDescrldci47] Count=1 ETPCommand0=2 -ETPTopicOrder0=337 +ETPTopicOrder0=1502 -[External Topic Properties\PRasDialDlg] +[External Topic Properties\RsCILDescrldci48] Count=1 ETPCommand0=2 -ETPTopicOrder0=338 +ETPTopicOrder0=1503 -[External Topic Properties\PREFIX_CUT_EQUAL] +[External Topic Properties\RsCILDescrldci4m1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2125 +ETPTopicOrder0=1504 -[External Topic Properties\PREFIX_CUT_LOWERCASE] +[External Topic Properties\RsCILDescrldci4s] Count=1 ETPCommand0=2 -ETPTopicOrder0=2126 +ETPTopicOrder0=1505 -[External Topic Properties\PREPARSE_DATA_BUFFER] +[External Topic Properties\RsCILDescrldci8] Count=1 ETPCommand0=2 -ETPTopicOrder0=339 +ETPTopicOrder0=1506 -[External Topic Properties\PREPARSE_GUID_DATA_BUFFER] +[External Topic Properties\RsCILDescrldcr4] Count=1 ETPCommand0=2 -ETPTopicOrder0=340 +ETPTopicOrder0=1507 -[External Topic Properties\PREPARSE_POINT_INFORMATION] +[External Topic Properties\RsCILDescrldcr8] Count=1 ETPCommand0=2 -ETPTopicOrder0=341 +ETPTopicOrder0=1508 -[External Topic Properties\PRIMARYLANGID@WORD] +[External Topic Properties\RsCILDescrldelema] Count=1 ETPCommand0=2 -ETPTopicOrder0=816 +ETPTopicOrder0=1509 -[External Topic Properties\PrintMemo@TMemo@TRect] +[External Topic Properties\RsCILDescrldelemi] Count=1 ETPCommand0=2 -ETPTopicOrder0=817 +ETPTopicOrder0=1510 -[External Topic Properties\ProcByLevel] +[External Topic Properties\RsCILDescrldelemi1] Count=1 ETPCommand0=2 -ETPTopicOrder0=818 +ETPTopicOrder0=1511 -[External Topic Properties\PROCESSOR_ARCHITECTURE_AMD64] +[External Topic Properties\RsCILDescrldelemi2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2127 +ETPTopicOrder0=1512 -[External Topic Properties\PROCESSOR_ARCHITECTURE_IA32_ON_WIN64] +[External Topic Properties\RsCILDescrldelemi4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2128 +ETPTopicOrder0=1513 -[External Topic Properties\PROCESSOR_ARCHITECTURE_IA64] +[External Topic Properties\RsCILDescrldelemi8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2129 +ETPTopicOrder0=1514 -[External Topic Properties\PROCESSOR_ARCHITECTURE_INTEL] +[External Topic Properties\RsCILDescrldelemr4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2130 +ETPTopicOrder0=1515 -[External Topic Properties\Product@TPolarComplex@TPolarComplex] +[External Topic Properties\RsCILDescrldelemr8] Count=1 ETPCommand0=2 -ETPTopicOrder0=819 +ETPTopicOrder0=1516 -[External Topic Properties\Product@TRectComplex@TRectComplex] +[External Topic Properties\RsCILDescrldelemref] Count=1 ETPCommand0=2 -ETPTopicOrder0=820 +ETPTopicOrder0=1517 -[External Topic Properties\ProgIDExists@string] +[External Topic Properties\RsCILDescrldelemu1] Count=1 ETPCommand0=2 -ETPTopicOrder0=821 +ETPTopicOrder0=1518 -[External Topic Properties\ProjectTypeLibrary] +[External Topic Properties\RsCILDescrldelemu2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2131 +ETPTopicOrder0=1519 -[External Topic Properties\ProjectTypePackage] +[External Topic Properties\RsCILDescrldelemu4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2132 +ETPTopicOrder0=1520 -[External Topic Properties\ProjectTypeProgram] +[External Topic Properties\RsCILDescrldfld] Count=1 ETPCommand0=2 -ETPTopicOrder0=2133 +ETPTopicOrder0=1521 -[External Topic Properties\PRTL_OSVERSIONINFOEXW] +[External Topic Properties\RsCILDescrldflda] Count=1 ETPCommand0=2 -ETPTopicOrder0=342 +ETPTopicOrder0=1522 -[External Topic Properties\PSE_FLAG] +[External Topic Properties\RsCILDescrldftn] Count=1 ETPCommand0=2 -ETPTopicOrder0=2134 +ETPTopicOrder0=1523 -[External Topic Properties\PSE36_FLAG] +[External Topic Properties\RsCILDescrldindi] Count=1 ETPCommand0=2 -ETPTopicOrder0=2135 +ETPTopicOrder0=1524 -[External Topic Properties\PSegmentInfo] +[External Topic Properties\RsCILDescrldindi1] Count=1 ETPCommand0=2 -ETPTopicOrder0=343 +ETPTopicOrder0=1525 -[External Topic Properties\PSegmentInfoArray] +[External Topic Properties\RsCILDescrldindi2] Count=1 ETPCommand0=2 -ETPTopicOrder0=344 +ETPTopicOrder0=1526 -[External Topic Properties\PServiceDescriptionA] +[External Topic Properties\RsCILDescrldindi4] Count=1 ETPCommand0=2 -ETPTopicOrder0=345 +ETPTopicOrder0=1527 -[External Topic Properties\PSESSION_BUFFER] +[External Topic Properties\RsCILDescrldindi8] Count=1 ETPCommand0=2 -ETPTopicOrder0=346 +ETPTopicOrder0=1528 -[External Topic Properties\PSESSION_HEADER] +[External Topic Properties\RsCILDescrldindr4] Count=1 ETPCommand0=2 -ETPTopicOrder0=347 +ETPTopicOrder0=1529 -[External Topic Properties\PSessionBuffer] +[External Topic Properties\RsCILDescrldindr8] Count=1 ETPCommand0=2 -ETPTopicOrder0=348 +ETPTopicOrder0=1530 -[External Topic Properties\PSessionHeader] +[External Topic Properties\RsCILDescrldindref] Count=1 ETPCommand0=2 -ETPTopicOrder0=349 +ETPTopicOrder0=1531 -[External Topic Properties\PSID_AND_ATTRIBUTES] +[External Topic Properties\RsCILDescrldindu1] Count=1 ETPCommand0=2 -ETPTopicOrder0=350 +ETPTopicOrder0=1532 -[External Topic Properties\PSID_AND_ATTRIBUTES_ARRAY] +[External Topic Properties\RsCILDescrldindu2] Count=1 ETPCommand0=2 -ETPTopicOrder0=351 +ETPTopicOrder0=1533 -[External Topic Properties\PSID_IDENTIFIER_AUTHORITY] +[External Topic Properties\RsCILDescrldindu4] Count=1 ETPCommand0=2 -ETPTopicOrder0=352 +ETPTopicOrder0=1534 -[External Topic Properties\PSID_NAME_USE] +[External Topic Properties\RsCILDescrldlen] Count=1 ETPCommand0=2 -ETPTopicOrder0=353 +ETPTopicOrder0=1535 -[External Topic Properties\PSidAndAttributes] +[External Topic Properties\RsCILDescrldloc] Count=1 ETPCommand0=2 -ETPTopicOrder0=354 +ETPTopicOrder0=1536 -[External Topic Properties\PSidAndAttributesArray] +[External Topic Properties\RsCILDescrldloc0] Count=1 ETPCommand0=2 -ETPTopicOrder0=355 +ETPTopicOrder0=1537 -[External Topic Properties\PSidNameUSe] +[External Topic Properties\RsCILDescrldloc1] Count=1 ETPCommand0=2 -ETPTopicOrder0=356 +ETPTopicOrder0=1538 -[External Topic Properties\PSN_FLAG] +[External Topic Properties\RsCILDescrldloc2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2136 +ETPTopicOrder0=1539 -[External Topic Properties\PSourceFileEntry] +[External Topic Properties\RsCILDescrldloc3] Count=1 ETPCommand0=2 -ETPTopicOrder0=357 +ETPTopicOrder0=1540 -[External Topic Properties\PSourceModuleInfo] +[External Topic Properties\RsCILDescrldloca] Count=1 ETPCommand0=2 -ETPTopicOrder0=358 +ETPTopicOrder0=1541 -[External Topic Properties\PsPePkgLibrary] +[External Topic Properties\RsCILDescrldlocas] Count=1 ETPCommand0=2 -ETPTopicOrder0=2137 +ETPTopicOrder0=1542 -[External Topic Properties\PStackInfo] +[External Topic Properties\RsCILDescrldlocs] Count=1 ETPCommand0=2 -ETPTopicOrder0=359 +ETPTopicOrder0=1543 -[External Topic Properties\PSTGOPTIONS] +[External Topic Properties\RsCILDescrldnull] Count=1 ETPCommand0=2 -ETPTopicOrder0=360 +ETPTopicOrder0=1544 -[External Topic Properties\PSymbolInfo] +[External Topic Properties\RsCILDescrldobj] Count=1 ETPCommand0=2 -ETPTopicOrder0=361 +ETPTopicOrder0=1545 -[External Topic Properties\PSymbolInfos] +[External Topic Properties\RsCILDescrldsfld] Count=1 ETPCommand0=2 -ETPTopicOrder0=362 +ETPTopicOrder0=1546 -[External Topic Properties\PTOKEN_USER] +[External Topic Properties\RsCILDescrldsflda] Count=1 ETPCommand0=2 -ETPTopicOrder0=363 +ETPTopicOrder0=1547 -[External Topic Properties\PTokenUser] +[External Topic Properties\RsCILDescrldstr] Count=1 ETPCommand0=2 -ETPTopicOrder0=364 +ETPTopicOrder0=1548 -[External Topic Properties\PUcRange] +[External Topic Properties\RsCILDescrldtoken] Count=1 ETPCommand0=2 -ETPTopicOrder0=365 +ETPTopicOrder0=1549 -[External Topic Properties\PUcState] +[External Topic Properties\RsCILDescrldvirtftn] Count=1 ETPCommand0=2 -ETPTopicOrder0=366 +ETPTopicOrder0=1550 -[External Topic Properties\PUcStateList] +[External Topic Properties\RsCILDescrleave] Count=1 ETPCommand0=2 -ETPTopicOrder0=367 +ETPTopicOrder0=1551 -[External Topic Properties\PUcSymbolTableEntry] +[External Topic Properties\RsCILDescrleaves] Count=1 ETPCommand0=2 -ETPTopicOrder0=368 +ETPTopicOrder0=1552 -[External Topic Properties\PULargeInteger] +[External Topic Properties\RsCILDescrlocalloc] Count=1 ETPCommand0=2 -ETPTopicOrder0=369 +ETPTopicOrder0=1553 -[External Topic Properties\PULONGLONG] +[External Topic Properties\RsCILDescrmkrefany] Count=1 ETPCommand0=2 -ETPTopicOrder0=370 +ETPTopicOrder0=1554 -[External Topic Properties\PUnitVersionInfo] +[External Topic Properties\RsCILDescrmul] Count=1 ETPCommand0=2 -ETPTopicOrder0=371 +ETPTopicOrder0=1555 -[External Topic Properties\PUREBuffer] +[External Topic Properties\RsCILDescrmulovf] Count=1 ETPCommand0=2 -ETPTopicOrder0=372 +ETPTopicOrder0=1556 -[External Topic Properties\PUSER_INFO_0] +[External Topic Properties\RsCILDescrmulovfun] Count=1 ETPCommand0=2 -ETPTopicOrder0=373 +ETPTopicOrder0=1557 -[External Topic Properties\PUSER_INFO_1] +[External Topic Properties\RsCILDescrneg] Count=1 ETPCommand0=2 -ETPTopicOrder0=374 +ETPTopicOrder0=1558 -[External Topic Properties\PUSER_INFO_2] +[External Topic Properties\RsCILDescrnewarr] Count=1 ETPCommand0=2 -ETPTopicOrder0=375 +ETPTopicOrder0=1559 -[External Topic Properties\PUserData] +[External Topic Properties\RsCILDescrnewobj] Count=1 ETPCommand0=2 -ETPTopicOrder0=376 +ETPTopicOrder0=1560 -[External Topic Properties\PUserInfo0] +[External Topic Properties\RsCILDescrnop] Count=1 ETPCommand0=2 -ETPTopicOrder0=377 +ETPTopicOrder0=1561 -[External Topic Properties\PUserInfo1] +[External Topic Properties\RsCILDescrnot] Count=1 ETPCommand0=2 -ETPTopicOrder0=378 +ETPTopicOrder0=1562 -[External Topic Properties\PUserInfo2] +[External Topic Properties\RsCILDescror] Count=1 ETPCommand0=2 -ETPTopicOrder0=379 +ETPTopicOrder0=1563 -[External Topic Properties\PUTBMChar] +[External Topic Properties\RsCILDescrpop] Count=1 ETPCommand0=2 -ETPTopicOrder0=380 +ETPTopicOrder0=1564 -[External Topic Properties\PUTBMSkip] +[External Topic Properties\RsCILDescrprefix1] Count=1 ETPCommand0=2 -ETPTopicOrder0=381 +ETPTopicOrder0=1565 -[External Topic Properties\PWideMultiSz] +[External Topic Properties\RsCILDescrprefix2] Count=1 ETPCommand0=2 -ETPTopicOrder0=382 +ETPTopicOrder0=1566 -[External Topic Properties\PWLEN] +[External Topic Properties\RsCILDescrprefix3] Count=1 ETPCommand0=2 -ETPTopicOrder0=2138 +ETPTopicOrder0=1567 -[External Topic Properties\PWordArray] +[External Topic Properties\RsCILDescrprefix4] Count=1 ETPCommand0=2 -ETPTopicOrder0=383 +ETPTopicOrder0=1568 -[External Topic Properties\PWStringItem] +[External Topic Properties\RsCILDescrprefix5] Count=1 ETPCommand0=2 -ETPTopicOrder0=384 +ETPTopicOrder0=1569 -[External Topic Properties\QNLEN] +[External Topic Properties\RsCILDescrprefix6] Count=1 ETPCommand0=2 -ETPTopicOrder0=2139 +ETPTopicOrder0=1570 -[External Topic Properties\QuickSort@IJclIntfList@Integer@Integer@TIntfCompare] +[External Topic Properties\RsCILDescrprefix7] Count=1 ETPCommand0=2 -ETPTopicOrder0=822 +ETPTopicOrder0=1571 -[External Topic Properties\QuickSort@IJclList@Integer@Integer@TCompare] +[External Topic Properties\RsCILDescrprefixref] Count=1 ETPCommand0=2 -ETPTopicOrder0=824 +ETPTopicOrder0=1572 -[External Topic Properties\QuickSort@IJclStrList@Integer@Integer@TStrCompare] +[External Topic Properties\RsCILDescrrefanytype] Count=1 ETPCommand0=2 -ETPTopicOrder0=823 +ETPTopicOrder0=1573 -[External Topic Properties\Quotient@TRectComplex@TRectComplex] +[External Topic Properties\RsCILDescrrefanyval] Count=1 ETPCommand0=2 -ETPTopicOrder0=825 +ETPTopicOrder0=1574 -[External Topic Properties\RadPerCycle] +[External Topic Properties\RsCILDescrrem] Count=1 ETPCommand0=2 -ETPTopicOrder0=2140 +ETPTopicOrder0=1575 -[External Topic Properties\RadPerDeg] +[External Topic Properties\RsCILDescrremun] Count=1 ETPCommand0=2 -ETPTopicOrder0=2141 +ETPTopicOrder0=1576 -[External Topic Properties\RadPerGrad] +[External Topic Properties\RsCILDescrret] Count=1 ETPCommand0=2 -ETPTopicOrder0=2142 +ETPTopicOrder0=1577 -[External Topic Properties\RadToDeg@Extended] +[External Topic Properties\RsCILDescrrethrow] Count=1 ETPCommand0=2 -ETPTopicOrder0=826 +ETPTopicOrder0=1578 -[External Topic Properties\RadToDeg@Float] +[External Topic Properties\RsCILDescrshl] Count=1 ETPCommand0=2 -ETPTopicOrder0=827 +ETPTopicOrder0=1579 -[External Topic Properties\RadToDeg@Single] +[External Topic Properties\RsCILDescrshr] Count=1 ETPCommand0=2 -ETPTopicOrder0=828 +ETPTopicOrder0=1580 -[External Topic Properties\RadToGrad@Extended] +[External Topic Properties\RsCILDescrshrun] Count=1 ETPCommand0=2 -ETPTopicOrder0=829 +ETPTopicOrder0=1581 -[External Topic Properties\RadToGrad@Float] +[External Topic Properties\RsCILDescrsizeof] Count=1 ETPCommand0=2 -ETPTopicOrder0=831 +ETPTopicOrder0=1582 -[External Topic Properties\RadToGrad@Single] +[External Topic Properties\RsCILDescrstarg] Count=1 ETPCommand0=2 -ETPTopicOrder0=830 +ETPTopicOrder0=1583 -[External Topic Properties\RankineAbsoluteZero] +[External Topic Properties\RsCILDescrstargs] Count=1 ETPCommand0=2 -ETPTopicOrder0=2143 +ETPTopicOrder0=1584 -[External Topic Properties\RankineAtFahrenheitZero] +[External Topic Properties\RsCILDescrstelemi] Count=1 ETPCommand0=2 -ETPTopicOrder0=2144 +ETPTopicOrder0=1585 -[External Topic Properties\RankineBoilingPoint] +[External Topic Properties\RsCILDescrstelemi1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2145 +ETPTopicOrder0=1586 -[External Topic Properties\RankineFreezingPoint] +[External Topic Properties\RsCILDescrstelemi2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2146 +ETPTopicOrder0=1587 -[External Topic Properties\RankineTo@TTemperatureType@Float] +[External Topic Properties\RsCILDescrstelemi4] Count=1 ETPCommand0=2 -ETPTopicOrder0=832 +ETPTopicOrder0=1588 -[External Topic Properties\RankineToCelsius@Float] +[External Topic Properties\RsCILDescrstelemi8] Count=1 ETPCommand0=2 -ETPTopicOrder0=833 +ETPTopicOrder0=1589 -[External Topic Properties\RankineToFahrenheit@Float] +[External Topic Properties\RsCILDescrstelemr4] Count=1 ETPCommand0=2 -ETPTopicOrder0=834 +ETPTopicOrder0=1590 -[External Topic Properties\RankineToKelvin@Float] +[External Topic Properties\RsCILDescrstelemr8] Count=1 ETPCommand0=2 -ETPTopicOrder0=835 +ETPTopicOrder0=1591 -[External Topic Properties\RankineToReaumur@Float] +[External Topic Properties\RsCILDescrstelemref] Count=1 ETPCommand0=2 -ETPTopicOrder0=836 +ETPTopicOrder0=1592 -[External Topic Properties\RASDIALDLG] +[External Topic Properties\RsCILDescrstfld] Count=1 ETPCommand0=2 -ETPTopicOrder0=385 +ETPTopicOrder0=1593 -[External Topic Properties\RatioDegToGrad] +[External Topic Properties\RsCILDescrstindi] Count=1 ETPCommand0=2 -ETPTopicOrder0=2147 +ETPTopicOrder0=1594 -[External Topic Properties\RatioDegToRad] +[External Topic Properties\RsCILDescrstindi1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2148 +ETPTopicOrder0=1595 -[External Topic Properties\RatioGradToDeg] +[External Topic Properties\RsCILDescrstindi2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2149 +ETPTopicOrder0=1596 -[External Topic Properties\RatioGradToRad] +[External Topic Properties\RsCILDescrstindi4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2150 +ETPTopicOrder0=1597 -[External Topic Properties\RatioRadToDeg] +[External Topic Properties\RsCILDescrstindi8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2151 +ETPTopicOrder0=1598 -[External Topic Properties\RatioRadToGrad] +[External Topic Properties\RsCILDescrstindr4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2152 +ETPTopicOrder0=1599 -[External Topic Properties\RDFN_AgencyCodeId] +[External Topic Properties\RsCILDescrstindr8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2153 +ETPTopicOrder0=1600 -[External Topic Properties\RDFN_Description] +[External Topic Properties\RsCILDescrstindref] Count=1 ETPCommand0=2 -ETPTopicOrder0=2154 +ETPTopicOrder0=1601 -[External Topic Properties\RDFN_FGDescription] +[External Topic Properties\RsCILDescrstloc] Count=1 ETPCommand0=2 -ETPTopicOrder0=2155 +ETPTopicOrder0=1602 -[External Topic Properties\RDFN_FunctionalGroupId] +[External Topic Properties\RsCILDescrstloc0] Count=1 ETPCommand0=2 -ETPTopicOrder0=2156 +ETPTopicOrder0=1603 -[External Topic Properties\RDFN_ICDescription] +[External Topic Properties\RsCILDescrstloc1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2157 +ETPTopicOrder0=1604 -[External Topic Properties\RDFN_Id] +[External Topic Properties\RsCILDescrstloc2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2158 +ETPTopicOrder0=1605 -[External Topic Properties\RDFN_MaximumLength] +[External Topic Properties\RsCILDescrstloc3] Count=1 ETPCommand0=2 -ETPTopicOrder0=2159 +ETPTopicOrder0=1606 -[External Topic Properties\RDFN_MaximumLoopRepeat] +[External Topic Properties\RsCILDescrstlocs] Count=1 ETPCommand0=2 -ETPTopicOrder0=2160 +ETPTopicOrder0=1607 -[External Topic Properties\RDFN_MaximumUsage] +[External Topic Properties\RsCILDescrstobj] Count=1 ETPCommand0=2 -ETPTopicOrder0=2161 +ETPTopicOrder0=1608 -[External Topic Properties\RDFN_MinimumLength] +[External Topic Properties\RsCILDescrstsfld] Count=1 ETPCommand0=2 -ETPTopicOrder0=2162 +ETPTopicOrder0=1609 -[External Topic Properties\RDFN_Notes] +[External Topic Properties\RsCILDescrsub] Count=1 ETPCommand0=2 -ETPTopicOrder0=2163 +ETPTopicOrder0=1610 -[External Topic Properties\RDFN_OwnerLoopId] +[External Topic Properties\RsCILDescrsubovf] Count=1 ETPCommand0=2 -ETPTopicOrder0=2164 +ETPTopicOrder0=1611 -[External Topic Properties\RDFN_ParentLoopId] +[External Topic Properties\RsCILDescrsubovfun] Count=1 ETPCommand0=2 -ETPTopicOrder0=2165 +ETPTopicOrder0=1612 -[External Topic Properties\RDFN_Position] +[External Topic Properties\RsCILDescrswitch] Count=1 ETPCommand0=2 -ETPTopicOrder0=2166 +ETPTopicOrder0=1613 -[External Topic Properties\RDFN_RequirementDesignator] +[External Topic Properties\RsCILDescrtail] Count=1 ETPCommand0=2 -ETPTopicOrder0=2167 +ETPTopicOrder0=1614 -[External Topic Properties\RDFN_Section] +[External Topic Properties\RsCILDescrthrow] Count=1 ETPCommand0=2 -ETPTopicOrder0=2168 +ETPTopicOrder0=1615 -[External Topic Properties\RDFN_StandardId] +[External Topic Properties\RsCILDescrunaligned] Count=1 ETPCommand0=2 -ETPTopicOrder0=2169 +ETPTopicOrder0=1616 -[External Topic Properties\RDFN_TransSetDesc] +[External Topic Properties\RsCILDescrunbox] Count=1 ETPCommand0=2 -ETPTopicOrder0=2170 +ETPTopicOrder0=1617 -[External Topic Properties\RDFN_TransSetId] +[External Topic Properties\RsCILDescrunused1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2171 +ETPTopicOrder0=1618 -[External Topic Properties\RDFN_Type] +[External Topic Properties\RsCILDescrunused10] Count=1 ETPCommand0=2 -ETPTopicOrder0=2172 +ETPTopicOrder0=1619 -[External Topic Properties\RDFN_VersionId] +[External Topic Properties\RsCILDescrunused11] Count=1 ETPCommand0=2 -ETPTopicOrder0=2173 +ETPTopicOrder0=1620 -[External Topic Properties\RDFN_VersionReleaseId] +[External Topic Properties\RsCILDescrunused12] Count=1 ETPCommand0=2 -ETPTopicOrder0=2174 +ETPTopicOrder0=1621 -[External Topic Properties\ReadKey] +[External Topic Properties\RsCILDescrunused13] Count=1 ETPCommand0=2 -ETPTopicOrder0=837 +ETPTopicOrder0=1622 -[External Topic Properties\ReadMessageCheck] +[External Topic Properties\RsCILDescrunused14] Count=1 ETPCommand0=2 -ETPTopicOrder0=838 +ETPTopicOrder0=1623 -[External Topic Properties\ReadMessageData] +[External Topic Properties\RsCILDescrunused15] Count=1 ETPCommand0=2 -ETPTopicOrder0=839 +ETPTopicOrder0=1624 -[External Topic Properties\ReadMessageStrings] +[External Topic Properties\RsCILDescrunused16] Count=1 ETPCommand0=2 -ETPTopicOrder0=840 +ETPTopicOrder0=1625 -[External Topic Properties\real_pcre] +[External Topic Properties\RsCILDescrunused17] Count=1 ETPCommand0=2 -ETPTopicOrder0=80 +ETPTopicOrder0=1626 -[External Topic Properties\real_pcre_extra] +[External Topic Properties\RsCILDescrunused18] Count=1 ETPCommand0=2 -ETPTopicOrder0=81 +ETPTopicOrder0=1627 -[External Topic Properties\real_pcre_extra.callout_data] +[External Topic Properties\RsCILDescrunused19] Count=1 ETPCommand0=2 -ETPTopicOrder0=0 +ETPTopicOrder0=1628 -[External Topic Properties\real_pcre_extra.flags] +[External Topic Properties\RsCILDescrunused2] Count=1 ETPCommand0=2 -ETPTopicOrder0=1 +ETPTopicOrder0=1629 -[External Topic Properties\real_pcre_extra.match_limit] +[External Topic Properties\RsCILDescrunused20] Count=1 ETPCommand0=2 -ETPTopicOrder0=2 +ETPTopicOrder0=1630 -[External Topic Properties\real_pcre_extra.match_limit_recursion] +[External Topic Properties\RsCILDescrunused21] Count=1 ETPCommand0=2 -ETPTopicOrder0=3 +ETPTopicOrder0=1631 -[External Topic Properties\real_pcre_extra.study_data] +[External Topic Properties\RsCILDescrunused22] Count=1 ETPCommand0=2 -ETPTopicOrder0=4 +ETPTopicOrder0=1632 -[External Topic Properties\real_pcre_extra.tables] +[External Topic Properties\RsCILDescrunused23] Count=1 ETPCommand0=2 -ETPTopicOrder0=5 +ETPTopicOrder0=1633 -[External Topic Properties\ReaumurAbsoluteZero] +[External Topic Properties\RsCILDescrunused24] Count=1 ETPCommand0=2 -ETPTopicOrder0=2175 +ETPTopicOrder0=1634 -[External Topic Properties\ReaumurBoilingPoint] +[External Topic Properties\RsCILDescrunused25] Count=1 ETPCommand0=2 -ETPTopicOrder0=2176 +ETPTopicOrder0=1635 -[External Topic Properties\ReaumurFreezingPoint] +[External Topic Properties\RsCILDescrunused26] Count=1 ETPCommand0=2 -ETPTopicOrder0=2177 +ETPTopicOrder0=1636 -[External Topic Properties\ReaumurTo@TTemperatureType@Float] +[External Topic Properties\RsCILDescrunused27] Count=1 ETPCommand0=2 -ETPTopicOrder0=841 +ETPTopicOrder0=1637 -[External Topic Properties\ReaumurToCelsius@Float] +[External Topic Properties\RsCILDescrunused28] Count=1 ETPCommand0=2 -ETPTopicOrder0=842 +ETPTopicOrder0=1638 -[External Topic Properties\ReaumurToFahrenheit@Float] +[External Topic Properties\RsCILDescrunused29] Count=1 ETPCommand0=2 -ETPTopicOrder0=843 +ETPTopicOrder0=1639 -[External Topic Properties\ReaumurToKelvin@Float] +[External Topic Properties\RsCILDescrunused3] Count=1 ETPCommand0=2 -ETPTopicOrder0=844 +ETPTopicOrder0=1640 -[External Topic Properties\ReaumurToRankine@Float] +[External Topic Properties\RsCILDescrunused30] Count=1 ETPCommand0=2 -ETPTopicOrder0=845 +ETPTopicOrder0=1641 -[External Topic Properties\ReBaseImage@PAnsiChar@PAnsiChar@BOOL@BOOL@BOOL@ULONG@ULONG@ULONG_PTR@ULONG@ULONG_PTR@ULONG] +[External Topic Properties\RsCILDescrunused31] Count=1 ETPCommand0=2 -ETPTopicOrder0=846 +ETPTopicOrder0=1642 -[External Topic Properties\ReBaseImage64@PAnsiChar@PAnsiChar@BOOL@BOOL@BOOL@ULONG@ULONG@TJclAddr64@ULONG@TJclAddr64@ULONG] +[External Topic Properties\RsCILDescrunused32] Count=1 ETPCommand0=2 -ETPTopicOrder0=847 +ETPTopicOrder0=1643 -[External Topic Properties\RectComplex@Float@Float] +[External Topic Properties\RsCILDescrunused33] Count=1 ETPCommand0=2 -ETPTopicOrder0=848 +ETPTopicOrder0=1644 -[External Topic Properties\RectComplex@TPolarComplex] +[External Topic Properties\RsCILDescrunused34] Count=1 ETPCommand0=2 -ETPTopicOrder0=849 +ETPTopicOrder0=1645 -[External Topic Properties\RectFitToScreen@TRect] +[External Topic Properties\RsCILDescrunused35] Count=1 ETPCommand0=2 -ETPTopicOrder0=850 +ETPTopicOrder0=1646 -[External Topic Properties\RedComponent@TColor32] +[External Topic Properties\RsCILDescrunused36] Count=1 ETPCommand0=2 -ETPTopicOrder0=851 +ETPTopicOrder0=1647 -[External Topic Properties\REG_BINARY] +[External Topic Properties\RsCILDescrunused37] Count=1 ETPCommand0=2 -ETPTopicOrder0=2178 +ETPTopicOrder0=1648 -[External Topic Properties\REG_DWORD] +[External Topic Properties\RsCILDescrunused38] Count=1 ETPCommand0=2 -ETPTopicOrder0=2179 +ETPTopicOrder0=1649 -[External Topic Properties\REG_DWORD_BIG_ENDIAN] +[External Topic Properties\RsCILDescrunused39] Count=1 ETPCommand0=2 -ETPTopicOrder0=2180 +ETPTopicOrder0=1650 -[External Topic Properties\REG_DWORD_LITTLE_ENDIAN] +[External Topic Properties\RsCILDescrunused4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2181 +ETPTopicOrder0=1651 -[External Topic Properties\REG_EXPAND_SZ] +[External Topic Properties\RsCILDescrunused40] Count=1 ETPCommand0=2 -ETPTopicOrder0=2182 +ETPTopicOrder0=1652 -[External Topic Properties\REG_FULL_RESOURCE_DESCRIPTOR] +[External Topic Properties\RsCILDescrunused41] Count=1 ETPCommand0=2 -ETPTopicOrder0=2183 +ETPTopicOrder0=1653 -[External Topic Properties\REG_LINK] +[External Topic Properties\RsCILDescrunused42] Count=1 ETPCommand0=2 -ETPTopicOrder0=2184 +ETPTopicOrder0=1654 -[External Topic Properties\REG_MULTI_SZ] +[External Topic Properties\RsCILDescrunused43] Count=1 ETPCommand0=2 -ETPTopicOrder0=2185 +ETPTopicOrder0=1655 -[External Topic Properties\REG_NONE] +[External Topic Properties\RsCILDescrunused44] Count=1 ETPCommand0=2 -ETPTopicOrder0=2186 +ETPTopicOrder0=1656 -[External Topic Properties\REG_QWORD] +[External Topic Properties\RsCILDescrunused45] Count=1 ETPCommand0=2 -ETPTopicOrder0=2187 +ETPTopicOrder0=1657 -[External Topic Properties\REG_QWORD_LITTLE_ENDIAN] +[External Topic Properties\RsCILDescrunused46] Count=1 ETPCommand0=2 -ETPTopicOrder0=2188 +ETPTopicOrder0=1658 -[External Topic Properties\REG_RESOURCE_LIST] +[External Topic Properties\RsCILDescrunused47] Count=1 ETPCommand0=2 -ETPTopicOrder0=2189 +ETPTopicOrder0=1659 -[External Topic Properties\REG_RESOURCE_REQUIREMENTS_LIST] +[External Topic Properties\RsCILDescrunused48] Count=1 ETPCommand0=2 -ETPTopicOrder0=2190 +ETPTopicOrder0=1660 -[External Topic Properties\REG_SZ] +[External Topic Properties\RsCILDescrunused49] Count=1 ETPCommand0=2 -ETPTopicOrder0=2191 +ETPTopicOrder0=1661 -[External Topic Properties\RegCreateKey@DelphiHKEY@string@string] +[External Topic Properties\RsCILDescrunused5] Count=1 ETPCommand0=2 -ETPTopicOrder0=852 +ETPTopicOrder0=1662 -[External Topic Properties\RegisterCLSIDInCategory@TGUID@TGUID] +[External Topic Properties\RsCILDescrunused50] Count=1 ETPCommand0=2 -ETPTopicOrder0=853 +ETPTopicOrder0=1663 -[External Topic Properties\REGISTERED] +[External Topic Properties\RsCILDescrunused51] Count=1 ETPCommand0=2 -ETPTopicOrder0=2192 +ETPTopicOrder0=1664 -[External Topic Properties\REGISTERING] +[External Topic Properties\RsCILDescrunused52] Count=1 ETPCommand0=2 -ETPTopicOrder0=2193 +ETPTopicOrder0=1665 -[External Topic Properties\RegisterUnitVersion@THandle@TUnitVersionInfo] +[External Topic Properties\RsCILDescrunused53] Count=1 ETPCommand0=2 -ETPTopicOrder0=854 +ETPTopicOrder0=1666 -[External Topic Properties\RegistryandInifiles] +[External Topic Properties\RsCILDescrunused54] Count=1 ETPCommand0=2 -ETPTopicOrder0=18 +ETPTopicOrder0=1667 -[External Topic Properties\RegKeyDelimiter] +[External Topic Properties\RsCILDescrunused55] Count=1 ETPCommand0=2 -ETPTopicOrder0=2194 +ETPTopicOrder0=1668 -[External Topic Properties\RegReadAnsiStringEx@DelphiHKEY@AnsiString@AnsiString@AnsiString@Boolean] +[External Topic Properties\RsCILDescrunused56] Count=1 ETPCommand0=2 -ETPTopicOrder0=855 +ETPTopicOrder0=1669 -[External Topic Properties\RegReadBinaryEx@DelphiHKEY@string@string@@Cardinal@Cardinal@Boolean] +[External Topic Properties\RsCILDescrunused57] Count=1 ETPCommand0=2 -ETPTopicOrder0=856 +ETPTopicOrder0=1670 -[External Topic Properties\RegReadCardinalEx@DelphiHKEY@string@string@Cardinal@Boolean] +[External Topic Properties\RsCILDescrunused58] Count=1 ETPCommand0=2 -ETPTopicOrder0=857 +ETPTopicOrder0=1671 -[External Topic Properties\RegReadDouble@DelphiHKEY@string@string] +[External Topic Properties\RsCILDescrunused59] Count=1 ETPCommand0=2 -ETPTopicOrder0=858 +ETPTopicOrder0=1672 -[External Topic Properties\RegReadDoubleDef@DelphiHKEY@string@string@Double] +[External Topic Properties\RsCILDescrunused6] Count=1 ETPCommand0=2 -ETPTopicOrder0=859 +ETPTopicOrder0=1673 -[External Topic Properties\RegReadDoubleEx@DelphiHKEY@string@string@Double@Boolean] +[External Topic Properties\RsCILDescrunused60] Count=1 ETPCommand0=2 -ETPTopicOrder0=860 +ETPTopicOrder0=1674 -[External Topic Properties\RegReadDWORDEx@DelphiHKEY@string@string@DWORD@Boolean] +[External Topic Properties\RsCILDescrunused61] Count=1 ETPCommand0=2 -ETPTopicOrder0=861 +ETPTopicOrder0=1675 -[External Topic Properties\RegReadExtended@DelphiHKEY@string@string] +[External Topic Properties\RsCILDescrunused62] Count=1 ETPCommand0=2 -ETPTopicOrder0=862 +ETPTopicOrder0=1676 -[External Topic Properties\RegReadExtendedDef@DelphiHKEY@string@string@Extended] +[External Topic Properties\RsCILDescrunused63] Count=1 ETPCommand0=2 -ETPTopicOrder0=863 +ETPTopicOrder0=1677 -[External Topic Properties\RegReadExtendedEx@DelphiHKEY@string@string@Extended@Boolean] +[External Topic Properties\RsCILDescrunused64] Count=1 ETPCommand0=2 -ETPTopicOrder0=864 +ETPTopicOrder0=1678 -[External Topic Properties\RegReadInt64Ex@DelphiHKEY@string@string@Int64@Boolean] +[External Topic Properties\RsCILDescrunused65] Count=1 ETPCommand0=2 -ETPTopicOrder0=865 +ETPTopicOrder0=1679 -[External Topic Properties\RegReadIntegerEx@DelphiHKEY@string@string@Integer@Boolean] +[External Topic Properties\RsCILDescrunused66] Count=1 ETPCommand0=2 -ETPTopicOrder0=866 +ETPTopicOrder0=1680 -[External Topic Properties\RegReadMultiSz@DelphiHKEY@string@string] +[External Topic Properties\RsCILDescrunused67] Count=1 ETPCommand0=2 -ETPTopicOrder0=868 +ETPTopicOrder0=1681 -[External Topic Properties\RegReadMultiSz@DelphiHKEY@string@string@TStrings] +[External Topic Properties\RsCILDescrunused68] Count=1 ETPCommand0=2 -ETPTopicOrder0=867 +ETPTopicOrder0=1682 -[External Topic Properties\RegReadMultiSzDef@DelphiHKEY@string@string@PMultiSz] +[External Topic Properties\RsCILDescrunused69] Count=1 ETPCommand0=2 -ETPTopicOrder0=870 +ETPTopicOrder0=1683 -[External Topic Properties\RegReadMultiSzDef@DelphiHKEY@string@string@TStrings@TStrings] +[External Topic Properties\RsCILDescrunused7] Count=1 ETPCommand0=2 -ETPTopicOrder0=869 +ETPTopicOrder0=1684 -[External Topic Properties\RegReadMultiSzEx@DelphiHKEY@string@string@PMultiSz@Boolean] +[External Topic Properties\RsCILDescrunused70] Count=1 ETPCommand0=2 -ETPTopicOrder0=871 +ETPTopicOrder0=1685 -[External Topic Properties\RegReadMultiSzEx@DelphiHKEY@string@string@TStrings@Boolean] +[External Topic Properties\RsCILDescrunused8] Count=1 ETPCommand0=2 -ETPTopicOrder0=872 +ETPTopicOrder0=1686 -[External Topic Properties\RegReadSingle@DelphiHKEY@string@string] +[External Topic Properties\RsCILDescrunused9] Count=1 ETPCommand0=2 -ETPTopicOrder0=873 +ETPTopicOrder0=1687 -[External Topic Properties\RegReadSingleDef@DelphiHKEY@string@string@Single] +[External Topic Properties\RsCILDescrvolatile] Count=1 ETPCommand0=2 -ETPTopicOrder0=874 +ETPTopicOrder0=1688 -[External Topic Properties\RegReadSingleEx@DelphiHKEY@string@string@Single@Boolean] +[External Topic Properties\RsCILDescrxor] Count=1 ETPCommand0=2 -ETPTopicOrder0=875 +ETPTopicOrder0=1689 -[External Topic Properties\RegReadStringEx@DelphiHKEY@string@string@AnsiString@Boolean] +[External Topic Properties\RsCILNameadd] Count=1 ETPCommand0=2 -ETPTopicOrder0=876 +ETPTopicOrder0=1690 -[External Topic Properties\RegReadUInt64Ex@DelphiHKEY@string@string@UInt64@Boolean] +[External Topic Properties\RsCILNameaddovf] Count=1 ETPCommand0=2 -ETPTopicOrder0=877 +ETPTopicOrder0=1691 -[External Topic Properties\RegReadWideMultiSz@DelphiHKEY@string@string] +[External Topic Properties\RsCILNameaddovfun] Count=1 ETPCommand0=2 -ETPTopicOrder0=878 +ETPTopicOrder0=1692 -[External Topic Properties\RegReadWideMultiSz@DelphiHKEY@string@string@TWideStrings] +[External Topic Properties\RsCILNameand] Count=1 ETPCommand0=2 -ETPTopicOrder0=879 +ETPTopicOrder0=1693 -[External Topic Properties\RegReadWideMultiSzDef@DelphiHKEY@string@string@PWideMultiSz] +[External Topic Properties\RsCILNamearglist] Count=1 ETPCommand0=2 -ETPTopicOrder0=881 +ETPTopicOrder0=1694 -[External Topic Properties\RegReadWideMultiSzDef@DelphiHKEY@string@string@TWideStrings@TWideStrings] +[External Topic Properties\RsCILNamebeq] Count=1 ETPCommand0=2 -ETPTopicOrder0=880 +ETPTopicOrder0=1695 -[External Topic Properties\RegReadWideMultiSzEx@DelphiHKEY@string@string@PWideMultiSz@Boolean] +[External Topic Properties\RsCILNamebeqs] Count=1 ETPCommand0=2 -ETPTopicOrder0=882 +ETPTopicOrder0=1696 -[External Topic Properties\RegReadWideMultiSzEx@DelphiHKEY@string@string@TWideStrings@Boolean] +[External Topic Properties\RsCILNamebge] Count=1 ETPCommand0=2 -ETPTopicOrder0=883 +ETPTopicOrder0=1697 -[External Topic Properties\RegReadWideStringEx@DelphiHKEY@string@string@WideString@Boolean] +[External Topic Properties\RsCILNamebges] Count=1 ETPCommand0=2 -ETPTopicOrder0=884 +ETPTopicOrder0=1698 -[External Topic Properties\Regular Expressions] -Count=2 +[External Topic Properties\RsCILNamebgeun] +Count=1 ETPCommand0=2 -ETPCommand1=3 -ETPGroup1=JCL -ETPTopicOrder0=25 +ETPTopicOrder0=1699 -[External Topic Properties\RegularExpressions] -Count=2 +[External Topic Properties\RsCILNamebgeuns] +Count=1 ETPCommand0=2 -ETPCommand1=3 -ETPGroup1=JCL -ETPTopicOrder0=28 +ETPTopicOrder0=1700 -[External Topic Properties\RegValueExists@DelphiHKEY@string@string] +[External Topic Properties\RsCILNamebgt] Count=1 ETPCommand0=2 -ETPTopicOrder0=885 +ETPTopicOrder0=1701 -[External Topic Properties\RegWriteAnsiString@DelphiHKEY@AnsiString@AnsiString@Cardinal@AnsiString] +[External Topic Properties\RsCILNamebgts] Count=1 ETPCommand0=2 -ETPTopicOrder0=886 +ETPTopicOrder0=1702 -[External Topic Properties\RegWriteBool@DelphiHKEY@string@string@Cardinal@Boolean] +[External Topic Properties\RsCILNamebgtun] Count=1 ETPCommand0=2 -ETPTopicOrder0=887 +ETPTopicOrder0=1703 -[External Topic Properties\RegWriteCardinal@DelphiHKEY@string@string@Cardinal@Cardinal] +[External Topic Properties\RsCILNamebgtuns] Count=1 ETPCommand0=2 -ETPTopicOrder0=888 +ETPTopicOrder0=1704 -[External Topic Properties\RegWriteDouble@DelphiHKEY@string@string@Cardinal@Double] +[External Topic Properties\RsCILNameble] Count=1 ETPCommand0=2 -ETPTopicOrder0=889 +ETPTopicOrder0=1705 -[External Topic Properties\RegWriteDouble@DelphiHKEY@string@string@Double] +[External Topic Properties\RsCILNamebles] Count=1 ETPCommand0=2 -ETPTopicOrder0=890 +ETPTopicOrder0=1706 -[External Topic Properties\RegWriteDWORD@DelphiHKEY@string@string@DWORD] +[External Topic Properties\RsCILNamebleun] Count=1 ETPCommand0=2 -ETPTopicOrder0=891 +ETPTopicOrder0=1707 -[External Topic Properties\RegWriteExtended@DelphiHKEY@string@string@Cardinal@Extended] +[External Topic Properties\RsCILNamebleuns] Count=1 ETPCommand0=2 -ETPTopicOrder0=892 +ETPTopicOrder0=1708 -[External Topic Properties\RegWriteExtended@DelphiHKEY@string@string@Extended] +[External Topic Properties\RsCILNameblt] Count=1 ETPCommand0=2 -ETPTopicOrder0=893 +ETPTopicOrder0=1709 -[External Topic Properties\RegWriteInt64@DelphiHKEY@string@string@Int64] +[External Topic Properties\RsCILNameblts] Count=1 ETPCommand0=2 -ETPTopicOrder0=894 +ETPTopicOrder0=1710 -[External Topic Properties\RegWriteInteger@DelphiHKEY@string@string@Integer] +[External Topic Properties\RsCILNamebltun] Count=1 ETPCommand0=2 -ETPTopicOrder0=895 +ETPTopicOrder0=1711 -[External Topic Properties\RegWriteMultiSz@DelphiHKEY@string@string@Cardinal@PMultiSz] +[External Topic Properties\RsCILNamebltuns] Count=1 ETPCommand0=2 -ETPTopicOrder0=896 +ETPTopicOrder0=1712 -[External Topic Properties\RegWriteMultiSz@DelphiHKEY@string@string@Cardinal@TStrings] +[External Topic Properties\RsCILNamebneun] Count=1 ETPCommand0=2 -ETPTopicOrder0=898 +ETPTopicOrder0=1713 -[External Topic Properties\RegWriteMultiSz@DelphiHKEY@string@string@PMultiSz] +[External Topic Properties\RsCILNamebneuns] Count=1 ETPCommand0=2 -ETPTopicOrder0=899 +ETPTopicOrder0=1714 -[External Topic Properties\RegWriteMultiSz@DelphiHKEY@string@string@TStrings] +[External Topic Properties\RsCILNamebox] Count=1 ETPCommand0=2 -ETPTopicOrder0=897 +ETPTopicOrder0=1715 -[External Topic Properties\RegWriteSingle@DelphiHKEY@string@string@Cardinal@Single] +[External Topic Properties\RsCILNamebr] Count=1 ETPCommand0=2 -ETPTopicOrder0=900 +ETPTopicOrder0=1716 -[External Topic Properties\RegWriteSingle@DelphiHKEY@string@string@Single] +[External Topic Properties\RsCILNamebreak] Count=1 ETPCommand0=2 -ETPTopicOrder0=901 +ETPTopicOrder0=1717 -[External Topic Properties\RegWriteString@DelphiHKEY@string@string@string] +[External Topic Properties\RsCILNamebrfalse] Count=1 ETPCommand0=2 -ETPTopicOrder0=902 +ETPTopicOrder0=1718 -[External Topic Properties\RegWriteUInt64@DelphiHKEY@string@string@UInt64] +[External Topic Properties\RsCILNamebrfalses] Count=1 ETPCommand0=2 -ETPTopicOrder0=903 +ETPTopicOrder0=1719 -[External Topic Properties\RegWriteWideMultiSz@DelphiHKEY@string@string@Cardinal@PWideMultiSz] +[External Topic Properties\RsCILNamebrs] Count=1 ETPCommand0=2 -ETPTopicOrder0=904 +ETPTopicOrder0=1720 -[External Topic Properties\RegWriteWideMultiSz@DelphiHKEY@string@string@Cardinal@TWideStrings] +[External Topic Properties\RsCILNamebrtrue] Count=1 ETPCommand0=2 -ETPTopicOrder0=906 +ETPTopicOrder0=1721 -[External Topic Properties\RegWriteWideMultiSz@DelphiHKEY@string@string@PWideMultiSz] +[External Topic Properties\RsCILNamebrtrues] Count=1 ETPCommand0=2 -ETPTopicOrder0=905 +ETPTopicOrder0=1722 -[External Topic Properties\RegWriteWideMultiSz@DelphiHKEY@string@string@TWideStrings] +[External Topic Properties\RsCILNamecall] Count=1 ETPCommand0=2 -ETPTopicOrder0=907 +ETPTopicOrder0=1723 -[External Topic Properties\RegWriteWideString@DelphiHKEY@string@string@WideString] +[External Topic Properties\RsCILNamecalli] Count=1 ETPCommand0=2 -ETPTopicOrder0=908 +ETPTopicOrder0=1724 -[External Topic Properties\RemoveIgnoredException@TClass] +[External Topic Properties\RsCILNamecallvirt] Count=1 ETPCommand0=2 -ETPTopicOrder0=909 +ETPTopicOrder0=1725 -[External Topic Properties\REPARSE_DATA_BUFFER] +[External Topic Properties\RsCILNamecastclass] Count=1 ETPCommand0=2 -ETPTopicOrder0=386 +ETPTopicOrder0=1726 -[External Topic Properties\REPARSE_GUID_DATA_BUFFER] +[External Topic Properties\RsCILNameceq] Count=1 ETPCommand0=2 -ETPTopicOrder0=387 +ETPTopicOrder0=1727 -[External Topic Properties\REPARSE_POINT_INFORMATION] +[External Topic Properties\RsCILNamecgt] Count=1 ETPCommand0=2 -ETPTopicOrder0=388 +ETPTopicOrder0=1728 -[External Topic Properties\ReplacementCharacter] +[External Topic Properties\RsCILNamecgtun] Count=1 ETPCommand0=2 -ETPTopicOrder0=2195 +ETPTopicOrder0=1729 -[External Topic Properties\ReplacesCorHdrNumericDefines] +[External Topic Properties\RsCILNameckfinite] Count=1 ETPCommand0=2 -ETPTopicOrder0=389 +ETPTopicOrder0=1730 -[External Topic Properties\ResetIStreamToStart@IStream] +[External Topic Properties\RsCILNameclt] Count=1 ETPCommand0=2 -ETPTopicOrder0=910 +ETPTopicOrder0=1731 -[External Topic Properties\Reverse@IJclIntfIterator@IJclIntfIterator] +[External Topic Properties\RsCILNamecltun] Count=1 ETPCommand0=2 -ETPTopicOrder0=912 +ETPTopicOrder0=1732 -[External Topic Properties\Reverse@IJclIterator@IJclIterator] +[External Topic Properties\RsCILNameconvi] Count=1 ETPCommand0=2 -ETPTopicOrder0=913 +ETPTopicOrder0=1733 -[External Topic Properties\Reverse@IJclStrIterator@IJclStrIterator] +[External Topic Properties\RsCILNameconvi1] Count=1 ETPCommand0=2 -ETPTopicOrder0=911 +ETPTopicOrder0=1734 -[External Topic Properties\ReverseBits@Cardinal] +[External Topic Properties\RsCILNameconvi2] Count=1 ETPCommand0=2 -ETPTopicOrder0=917 +ETPTopicOrder0=1735 -[External Topic Properties\ReverseBits@Int64] +[External Topic Properties\RsCILNameconvi4] Count=1 ETPCommand0=2 -ETPTopicOrder0=918 +ETPTopicOrder0=1736 -[External Topic Properties\ReverseBits@Integer] +[External Topic Properties\RsCILNameconvi8] Count=1 ETPCommand0=2 -ETPTopicOrder0=916 +ETPTopicOrder0=1737 -[External Topic Properties\ReverseBits@Pointer@Integer] +[External Topic Properties\RsCILNameconvovfi] Count=1 ETPCommand0=2 -ETPTopicOrder0=920 +ETPTopicOrder0=1738 -[External Topic Properties\ReverseBits@Shortint] +[External Topic Properties\RsCILNameconvovfi1] Count=1 ETPCommand0=2 -ETPTopicOrder0=914 +ETPTopicOrder0=1739 -[External Topic Properties\ReverseBits@Smallint] +[External Topic Properties\RsCILNameconvovfi1un] Count=1 ETPCommand0=2 -ETPTopicOrder0=915 +ETPTopicOrder0=1740 -[External Topic Properties\ReverseBits@Word] +[External Topic Properties\RsCILNameconvovfi2] Count=1 ETPCommand0=2 -ETPTopicOrder0=919 +ETPTopicOrder0=1741 -[External Topic Properties\ReverseBytes@Int64] +[External Topic Properties\RsCILNameconvovfi2un] Count=1 ETPCommand0=2 -ETPTopicOrder0=922 +ETPTopicOrder0=1742 -[External Topic Properties\ReverseBytes@Integer] +[External Topic Properties\RsCILNameconvovfi4] Count=1 ETPCommand0=2 -ETPTopicOrder0=921 +ETPTopicOrder0=1743 -[External Topic Properties\ReverseBytes@Pointer@Integer] +[External Topic Properties\RsCILNameconvovfi4un] Count=1 ETPCommand0=2 -ETPTopicOrder0=924 +ETPTopicOrder0=1744 -[External Topic Properties\ReverseBytes@Smallint] +[External Topic Properties\RsCILNameconvovfi8] Count=1 ETPCommand0=2 -ETPTopicOrder0=923 +ETPTopicOrder0=1745 -[External Topic Properties\ReverseBytes@Word] +[External Topic Properties\RsCILNameconvovfi8un] Count=1 ETPCommand0=2 -ETPTopicOrder0=925 +ETPTopicOrder0=1746 -[External Topic Properties\RGBAToBGRA@Pointer@Pointer@Byte@Cardinal] +[External Topic Properties\RsCILNameconvovfiun] Count=1 ETPCommand0=2 -ETPTopicOrder0=926 +ETPTopicOrder0=1747 -[External Topic Properties\RGBToBGR@Pointer@Pointer@Byte@Cardinal] +[External Topic Properties\RsCILNameconvovfu] Count=1 ETPCommand0=2 -ETPTopicOrder0=928 +ETPTopicOrder0=1748 -[External Topic Properties\RGBToBGR@Pointer@Pointer@Pointer@Pointer@Byte@Cardinal] +[External Topic Properties\RsCILNameconvovfu1] Count=1 ETPCommand0=2 -ETPTopicOrder0=927 +ETPTopicOrder0=1749 -[External Topic Properties\RGBToHLS@Single@Single@Single@Single@Single@Single] +[External Topic Properties\RsCILNameconvovfu1un] Count=1 ETPCommand0=2 -ETPTopicOrder0=931 +ETPTopicOrder0=1750 -[External Topic Properties\RGBToHLS@TColorRef] +[External Topic Properties\RsCILNameconvovfu2] Count=1 ETPCommand0=2 -ETPTopicOrder0=930 +ETPTopicOrder0=1751 -[External Topic Properties\RGBToHLS@TColorVector] +[External Topic Properties\RsCILNameconvovfu2un] Count=1 ETPCommand0=2 -ETPTopicOrder0=929 +ETPTopicOrder0=1752 -[External Topic Properties\RGBToHSL@Single@Single@Single@Single@Single@Single] +[External Topic Properties\RsCILNameconvovfu4] Count=1 ETPCommand0=2 -ETPTopicOrder0=932 +ETPTopicOrder0=1753 -[External Topic Properties\RGBToHSL@TColor32@Single@Single@Single] +[External Topic Properties\RsCILNameconvovfu4un] Count=1 ETPCommand0=2 -ETPTopicOrder0=933 +ETPTopicOrder0=1754 -[External Topic Properties\RMLEN] +[External Topic Properties\RsCILNameconvovfu8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2196 +ETPTopicOrder0=1755 -[External Topic Properties\Root@TPolarComplex@Cardinal@Cardinal] +[External Topic Properties\RsCILNameconvovfu8un] Count=1 ETPCommand0=2 -ETPTopicOrder0=934 +ETPTopicOrder0=1756 -[External Topic Properties\RoundToAllocGranularity64@Int64@Boolean] +[External Topic Properties\RsCILNameconvovfuun] Count=1 ETPCommand0=2 -ETPTopicOrder0=935 +ETPTopicOrder0=1757 -[External Topic Properties\RRot@Integer@TBitRange] +[External Topic Properties\RsCILNameconvr4] Count=1 ETPCommand0=2 -ETPTopicOrder0=937 +ETPTopicOrder0=1758 -[External Topic Properties\RRot@Word@TBitRange] +[External Topic Properties\RsCILNameconvr8] Count=1 ETPCommand0=2 -ETPTopicOrder0=936 +ETPTopicOrder0=1759 -[External Topic Properties\RsArchitect] +[External Topic Properties\RsCILNameconvrun] Count=1 ETPCommand0=2 -ETPTopicOrder0=2197 +ETPTopicOrder0=1760 -[External Topic Properties\RsArgumentIsNull] +[External Topic Properties\RsCILNameconvu] Count=1 ETPCommand0=2 -ETPTopicOrder0=2198 +ETPTopicOrder0=1761 -[External Topic Properties\RsArgumentOutOfRange] +[External Topic Properties\RsCILNameconvu1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2199 +ETPTopicOrder0=1762 -[External Topic Properties\RsAssertUnpairedEndUpdate] +[External Topic Properties\RsCILNameconvu2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2200 +ETPTopicOrder0=1763 -[External Topic Properties\RsAttrAnyFile] +[External Topic Properties\RsCILNameconvu4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2201 +ETPTopicOrder0=1764 -[External Topic Properties\RsAttrArchive] +[External Topic Properties\RsCILNameconvu8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2202 +ETPTopicOrder0=1765 -[External Topic Properties\RsAttrCompressed] +[External Topic Properties\RsCILNamecpblk] Count=1 ETPCommand0=2 -ETPTopicOrder0=2203 +ETPTopicOrder0=1766 -[External Topic Properties\RsAttrDirectory] +[External Topic Properties\RsCILNamecpobj] Count=1 ETPCommand0=2 -ETPTopicOrder0=2204 +ETPTopicOrder0=1767 -[External Topic Properties\RsAttrEncrypted] +[External Topic Properties\RsCILNamediv] Count=1 ETPCommand0=2 -ETPTopicOrder0=2205 +ETPTopicOrder0=1768 -[External Topic Properties\RsAttrHidden] +[External Topic Properties\RsCILNamedivun] Count=1 ETPCommand0=2 -ETPTopicOrder0=2206 +ETPTopicOrder0=1769 -[External Topic Properties\RsAttrNormal] +[External Topic Properties\RsCILNamedup] Count=1 ETPCommand0=2 -ETPTopicOrder0=2207 +ETPTopicOrder0=1770 -[External Topic Properties\RsAttrOffline] +[External Topic Properties\RsCILNameendfilter] Count=1 ETPCommand0=2 -ETPTopicOrder0=2208 +ETPTopicOrder0=1771 -[External Topic Properties\RsAttrReadOnly] +[External Topic Properties\RsCILNameendfinally] Count=1 ETPCommand0=2 -ETPTopicOrder0=2209 +ETPTopicOrder0=1772 -[External Topic Properties\RsAttrReparsePoint] +[External Topic Properties\RsCILNameinitblk] Count=1 ETPCommand0=2 -ETPTopicOrder0=2210 +ETPTopicOrder0=1773 -[External Topic Properties\RsAttrSparseFile] +[External Topic Properties\RsCILNameinitobj] Count=1 ETPCommand0=2 -ETPTopicOrder0=2211 +ETPTopicOrder0=1774 -[External Topic Properties\RsAttrSystemFile] +[External Topic Properties\RsCILNameisinst] Count=1 ETPCommand0=2 -ETPTopicOrder0=2212 +ETPTopicOrder0=1775 -[External Topic Properties\RsAttrTemporary] +[External Topic Properties\RsCILNamejmp] Count=1 ETPCommand0=2 -ETPTopicOrder0=2213 +ETPTopicOrder0=1776 -[External Topic Properties\RsAttrVolumeID] +[External Topic Properties\RsCILNameldarg] Count=1 ETPCommand0=2 -ETPTopicOrder0=2214 +ETPTopicOrder0=1777 -[External Topic Properties\RsBCBName] +[External Topic Properties\RsCILNameldarg0] Count=1 ETPCommand0=2 -ETPTopicOrder0=2215 +ETPTopicOrder0=1778 -[External Topic Properties\RsBDSName] +[External Topic Properties\RsCILNameldarg1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2216 +ETPTopicOrder0=1779 -[External Topic Properties\RsBitmapExtension] +[External Topic Properties\RsCILNameldarg2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2217 +ETPTopicOrder0=1780 -[External Topic Properties\RsBitsPerSampleNotSupported] +[External Topic Properties\RsCILNameldarg3] Count=1 ETPCommand0=2 -ETPTopicOrder0=2218 +ETPTopicOrder0=1781 -[External Topic Properties\RsBlankSearchString] +[External Topic Properties\RsCILNameldarga] Count=1 ETPCommand0=2 -ETPTopicOrder0=2219 +ETPTopicOrder0=1782 -[External Topic Properties\RsBorlandStudioProjects] +[External Topic Properties\RsCILNameldargas] Count=1 ETPCommand0=2 -ETPTopicOrder0=2220 +ETPTopicOrder0=1783 -[External Topic Properties\RsCannotCreateDir] +[External Topic Properties\RsCILNameldargs] Count=1 ETPCommand0=2 -ETPTopicOrder0=2221 +ETPTopicOrder0=1784 -[External Topic Properties\RsCannotRaiseSignal] +[External Topic Properties\RsCILNameldci4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2222 +ETPTopicOrder0=1785 -[External Topic Properties\RsCannotWriteRefStream] +[External Topic Properties\RsCILNameldci40] Count=1 ETPCommand0=2 -ETPTopicOrder0=2223 +ETPTopicOrder0=1786 -[External Topic Properties\RsCantConvertAddr64] +[External Topic Properties\RsCILNameldci41] Count=1 ETPCommand0=2 -ETPTopicOrder0=2224 +ETPTopicOrder0=1787 -[External Topic Properties\RsCasedUnicodeChar] +[External Topic Properties\RsCILNameldci42] Count=1 ETPCommand0=2 -ETPTopicOrder0=2225 +ETPTopicOrder0=1788 -[External Topic Properties\RsCategoryUnicodeChar] +[External Topic Properties\RsCILNameldci43] Count=1 ETPCommand0=2 -ETPTopicOrder0=2226 +ETPTopicOrder0=1789 -[External Topic Properties\RsCDRomDrive] +[External Topic Properties\RsCILNameldci44] Count=1 ETPCommand0=2 -ETPTopicOrder0=2227 +ETPTopicOrder0=1790 -[External Topic Properties\RsCILCmdadd] +[External Topic Properties\RsCILNameldci45] Count=1 ETPCommand0=2 -ETPTopicOrder0=2228 +ETPTopicOrder0=1791 -[External Topic Properties\RsCILCmdaddovf] +[External Topic Properties\RsCILNameldci46] Count=1 ETPCommand0=2 -ETPTopicOrder0=2229 +ETPTopicOrder0=1792 -[External Topic Properties\RsCILCmdaddovfun] +[External Topic Properties\RsCILNameldci47] Count=1 ETPCommand0=2 -ETPTopicOrder0=2230 +ETPTopicOrder0=1793 -[External Topic Properties\RsCILCmdand] +[External Topic Properties\RsCILNameldci48] Count=1 ETPCommand0=2 -ETPTopicOrder0=2231 +ETPTopicOrder0=1794 -[External Topic Properties\RsCILCmdarglist] +[External Topic Properties\RsCILNameldci4m1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2232 +ETPTopicOrder0=1795 -[External Topic Properties\RsCILCmdbeq] +[External Topic Properties\RsCILNameldci4s] Count=1 ETPCommand0=2 -ETPTopicOrder0=2233 +ETPTopicOrder0=1796 -[External Topic Properties\RsCILCmdbeqs] +[External Topic Properties\RsCILNameldci8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2234 +ETPTopicOrder0=1797 -[External Topic Properties\RsCILCmdbge] +[External Topic Properties\RsCILNameldcr4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2235 +ETPTopicOrder0=1798 -[External Topic Properties\RsCILCmdbges] +[External Topic Properties\RsCILNameldcr8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2236 +ETPTopicOrder0=1799 -[External Topic Properties\RsCILCmdbgeun] +[External Topic Properties\RsCILNameldelema] Count=1 ETPCommand0=2 -ETPTopicOrder0=2237 +ETPTopicOrder0=1800 -[External Topic Properties\RsCILCmdbgeuns] +[External Topic Properties\RsCILNameldelemi] Count=1 ETPCommand0=2 -ETPTopicOrder0=2238 +ETPTopicOrder0=1801 -[External Topic Properties\RsCILCmdbgt] +[External Topic Properties\RsCILNameldelemi1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2239 +ETPTopicOrder0=1802 -[External Topic Properties\RsCILCmdbgts] +[External Topic Properties\RsCILNameldelemi2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2240 +ETPTopicOrder0=1803 -[External Topic Properties\RsCILCmdbgtun] +[External Topic Properties\RsCILNameldelemi4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2241 +ETPTopicOrder0=1804 -[External Topic Properties\RsCILCmdbgtuns] +[External Topic Properties\RsCILNameldelemi8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2242 +ETPTopicOrder0=1805 -[External Topic Properties\RsCILCmdble] +[External Topic Properties\RsCILNameldelemr4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2243 +ETPTopicOrder0=1806 -[External Topic Properties\RsCILCmdbles] +[External Topic Properties\RsCILNameldelemr8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2244 +ETPTopicOrder0=1807 -[External Topic Properties\RsCILCmdbleun] +[External Topic Properties\RsCILNameldelemref] Count=1 ETPCommand0=2 -ETPTopicOrder0=2245 +ETPTopicOrder0=1808 -[External Topic Properties\RsCILCmdbleuns] +[External Topic Properties\RsCILNameldelemu1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2246 +ETPTopicOrder0=1809 -[External Topic Properties\RsCILCmdblt] +[External Topic Properties\RsCILNameldelemu2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2247 +ETPTopicOrder0=1810 -[External Topic Properties\RsCILCmdblts] +[External Topic Properties\RsCILNameldelemu4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2248 +ETPTopicOrder0=1811 -[External Topic Properties\RsCILCmdbltun] +[External Topic Properties\RsCILNameldfld] Count=1 ETPCommand0=2 -ETPTopicOrder0=2249 +ETPTopicOrder0=1812 -[External Topic Properties\RsCILCmdbltuns] +[External Topic Properties\RsCILNameldflda] Count=1 ETPCommand0=2 -ETPTopicOrder0=2250 +ETPTopicOrder0=1813 -[External Topic Properties\RsCILCmdbneun] +[External Topic Properties\RsCILNameldftn] Count=1 ETPCommand0=2 -ETPTopicOrder0=2251 +ETPTopicOrder0=1814 -[External Topic Properties\RsCILCmdbneuns] +[External Topic Properties\RsCILNameldindi] Count=1 ETPCommand0=2 -ETPTopicOrder0=2252 +ETPTopicOrder0=1815 -[External Topic Properties\RsCILCmdbox] +[External Topic Properties\RsCILNameldindi1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2253 +ETPTopicOrder0=1816 -[External Topic Properties\RsCILCmdbr] +[External Topic Properties\RsCILNameldindi2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2254 +ETPTopicOrder0=1817 -[External Topic Properties\RsCILCmdbreak] +[External Topic Properties\RsCILNameldindi4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2255 +ETPTopicOrder0=1818 -[External Topic Properties\RsCILCmdbrfalse] +[External Topic Properties\RsCILNameldindi8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2256 +ETPTopicOrder0=1819 -[External Topic Properties\RsCILCmdbrfalses] +[External Topic Properties\RsCILNameldindr4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2257 +ETPTopicOrder0=1820 -[External Topic Properties\RsCILCmdbrs] +[External Topic Properties\RsCILNameldindr8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2258 +ETPTopicOrder0=1821 -[External Topic Properties\RsCILCmdbrtrue] +[External Topic Properties\RsCILNameldindref] Count=1 ETPCommand0=2 -ETPTopicOrder0=2259 +ETPTopicOrder0=1822 -[External Topic Properties\RsCILCmdbrtrues] +[External Topic Properties\RsCILNameldindu1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2260 +ETPTopicOrder0=1823 -[External Topic Properties\RsCILCmdcall] +[External Topic Properties\RsCILNameldindu2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2261 +ETPTopicOrder0=1824 -[External Topic Properties\RsCILCmdcalli] +[External Topic Properties\RsCILNameldindu4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2262 +ETPTopicOrder0=1825 -[External Topic Properties\RsCILCmdcallvirt] +[External Topic Properties\RsCILNameldlen] Count=1 ETPCommand0=2 -ETPTopicOrder0=2263 +ETPTopicOrder0=1826 -[External Topic Properties\RsCILCmdcastclass] +[External Topic Properties\RsCILNameldloc] Count=1 ETPCommand0=2 -ETPTopicOrder0=2264 +ETPTopicOrder0=1827 -[External Topic Properties\RsCILCmdceq] +[External Topic Properties\RsCILNameldloc0] Count=1 ETPCommand0=2 -ETPTopicOrder0=2265 +ETPTopicOrder0=1828 -[External Topic Properties\RsCILCmdcgt] +[External Topic Properties\RsCILNameldloc1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2266 +ETPTopicOrder0=1829 -[External Topic Properties\RsCILCmdcgtun] +[External Topic Properties\RsCILNameldloc2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2267 +ETPTopicOrder0=1830 -[External Topic Properties\RsCILCmdckfinite] +[External Topic Properties\RsCILNameldloc3] Count=1 ETPCommand0=2 -ETPTopicOrder0=2268 +ETPTopicOrder0=1831 -[External Topic Properties\RsCILCmdclt] +[External Topic Properties\RsCILNameldloca] Count=1 ETPCommand0=2 -ETPTopicOrder0=2269 +ETPTopicOrder0=1832 -[External Topic Properties\RsCILCmdcltun] +[External Topic Properties\RsCILNameldlocas] Count=1 ETPCommand0=2 -ETPTopicOrder0=2270 +ETPTopicOrder0=1833 -[External Topic Properties\RsCILCmdconvi] +[External Topic Properties\RsCILNameldlocs] Count=1 ETPCommand0=2 -ETPTopicOrder0=2271 +ETPTopicOrder0=1834 -[External Topic Properties\RsCILCmdconvi1] +[External Topic Properties\RsCILNameldnull] Count=1 ETPCommand0=2 -ETPTopicOrder0=2272 +ETPTopicOrder0=1835 -[External Topic Properties\RsCILCmdconvi2] +[External Topic Properties\RsCILNameldobj] Count=1 ETPCommand0=2 -ETPTopicOrder0=2273 +ETPTopicOrder0=1836 -[External Topic Properties\RsCILCmdconvi4] +[External Topic Properties\RsCILNameldsfld] Count=1 ETPCommand0=2 -ETPTopicOrder0=2274 +ETPTopicOrder0=1837 -[External Topic Properties\RsCILCmdconvi8] +[External Topic Properties\RsCILNameldsflda] Count=1 ETPCommand0=2 -ETPTopicOrder0=2275 +ETPTopicOrder0=1838 -[External Topic Properties\RsCILCmdconvovfi] +[External Topic Properties\RsCILNameldstr] Count=1 ETPCommand0=2 -ETPTopicOrder0=2276 +ETPTopicOrder0=1839 -[External Topic Properties\RsCILCmdconvovfi1] +[External Topic Properties\RsCILNameldtoken] Count=1 ETPCommand0=2 -ETPTopicOrder0=2277 +ETPTopicOrder0=1840 -[External Topic Properties\RsCILCmdconvovfi1un] +[External Topic Properties\RsCILNameldvirtftn] Count=1 ETPCommand0=2 -ETPTopicOrder0=2278 +ETPTopicOrder0=1841 -[External Topic Properties\RsCILCmdconvovfi2] +[External Topic Properties\RsCILNameleave] Count=1 ETPCommand0=2 -ETPTopicOrder0=2279 +ETPTopicOrder0=1842 -[External Topic Properties\RsCILCmdconvovfi2un] +[External Topic Properties\RsCILNameleaves] Count=1 ETPCommand0=2 -ETPTopicOrder0=2280 +ETPTopicOrder0=1843 -[External Topic Properties\RsCILCmdconvovfi4] +[External Topic Properties\RsCILNamelocalloc] Count=1 ETPCommand0=2 -ETPTopicOrder0=2281 +ETPTopicOrder0=1844 -[External Topic Properties\RsCILCmdconvovfi4un] +[External Topic Properties\RsCILNamemkrefany] Count=1 ETPCommand0=2 -ETPTopicOrder0=2282 +ETPTopicOrder0=1845 -[External Topic Properties\RsCILCmdconvovfi8] +[External Topic Properties\RsCILNamemul] Count=1 ETPCommand0=2 -ETPTopicOrder0=2283 +ETPTopicOrder0=1846 -[External Topic Properties\RsCILCmdconvovfi8un] +[External Topic Properties\RsCILNamemulovf] Count=1 ETPCommand0=2 -ETPTopicOrder0=2284 +ETPTopicOrder0=1847 -[External Topic Properties\RsCILCmdconvovfiun] +[External Topic Properties\RsCILNamemulovfun] Count=1 ETPCommand0=2 -ETPTopicOrder0=2285 +ETPTopicOrder0=1848 -[External Topic Properties\RsCILCmdconvovfu] +[External Topic Properties\RsCILNameneg] Count=1 ETPCommand0=2 -ETPTopicOrder0=2286 +ETPTopicOrder0=1849 -[External Topic Properties\RsCILCmdconvovfu1] +[External Topic Properties\RsCILNamenewarr] Count=1 ETPCommand0=2 -ETPTopicOrder0=2287 +ETPTopicOrder0=1850 -[External Topic Properties\RsCILCmdconvovfu1un] +[External Topic Properties\RsCILNamenewobj] Count=1 ETPCommand0=2 -ETPTopicOrder0=2288 +ETPTopicOrder0=1851 -[External Topic Properties\RsCILCmdconvovfu2] +[External Topic Properties\RsCILNamenop] Count=1 ETPCommand0=2 -ETPTopicOrder0=2289 +ETPTopicOrder0=1852 -[External Topic Properties\RsCILCmdconvovfu2un] +[External Topic Properties\RsCILNamenot] Count=1 ETPCommand0=2 -ETPTopicOrder0=2290 +ETPTopicOrder0=1853 -[External Topic Properties\RsCILCmdconvovfu4] +[External Topic Properties\RsCILNameor] Count=1 ETPCommand0=2 -ETPTopicOrder0=2291 +ETPTopicOrder0=1854 -[External Topic Properties\RsCILCmdconvovfu4un] +[External Topic Properties\RsCILNamepop] Count=1 ETPCommand0=2 -ETPTopicOrder0=2292 +ETPTopicOrder0=1855 -[External Topic Properties\RsCILCmdconvovfu8] +[External Topic Properties\RsCILNameprefix1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2293 +ETPTopicOrder0=1856 -[External Topic Properties\RsCILCmdconvovfu8un] +[External Topic Properties\RsCILNameprefix2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2294 +ETPTopicOrder0=1857 -[External Topic Properties\RsCILCmdconvovfuun] +[External Topic Properties\RsCILNameprefix3] Count=1 ETPCommand0=2 -ETPTopicOrder0=2295 +ETPTopicOrder0=1858 -[External Topic Properties\RsCILCmdconvr4] +[External Topic Properties\RsCILNameprefix4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2296 +ETPTopicOrder0=1859 -[External Topic Properties\RsCILCmdconvr8] +[External Topic Properties\RsCILNameprefix5] Count=1 ETPCommand0=2 -ETPTopicOrder0=2297 +ETPTopicOrder0=1860 -[External Topic Properties\RsCILCmdconvrun] +[External Topic Properties\RsCILNameprefix6] Count=1 ETPCommand0=2 -ETPTopicOrder0=2298 +ETPTopicOrder0=1861 -[External Topic Properties\RsCILCmdconvu] +[External Topic Properties\RsCILNameprefix7] Count=1 ETPCommand0=2 -ETPTopicOrder0=2299 +ETPTopicOrder0=1862 -[External Topic Properties\RsCILCmdconvu1] +[External Topic Properties\RsCILNameprefixref] Count=1 ETPCommand0=2 -ETPTopicOrder0=2300 +ETPTopicOrder0=1863 -[External Topic Properties\RsCILCmdconvu2] +[External Topic Properties\RsCILNamerefanytype] Count=1 ETPCommand0=2 -ETPTopicOrder0=2301 +ETPTopicOrder0=1864 -[External Topic Properties\RsCILCmdconvu4] +[External Topic Properties\RsCILNamerefanyval] Count=1 ETPCommand0=2 -ETPTopicOrder0=2302 +ETPTopicOrder0=1865 -[External Topic Properties\RsCILCmdconvu8] +[External Topic Properties\RsCILNamerem] Count=1 ETPCommand0=2 -ETPTopicOrder0=2303 +ETPTopicOrder0=1866 -[External Topic Properties\RsCILCmdcpblk] +[External Topic Properties\RsCILNameremun] Count=1 ETPCommand0=2 -ETPTopicOrder0=2304 +ETPTopicOrder0=1867 -[External Topic Properties\RsCILCmdcpobj] +[External Topic Properties\RsCILNameret] Count=1 ETPCommand0=2 -ETPTopicOrder0=2305 +ETPTopicOrder0=1868 -[External Topic Properties\RsCILCmddiv] +[External Topic Properties\RsCILNamerethrow] Count=1 ETPCommand0=2 -ETPTopicOrder0=2306 +ETPTopicOrder0=1869 -[External Topic Properties\RsCILCmddivun] +[External Topic Properties\RsCILNameshl] Count=1 ETPCommand0=2 -ETPTopicOrder0=2307 +ETPTopicOrder0=1870 -[External Topic Properties\RsCILCmddup] +[External Topic Properties\RsCILNameshr] Count=1 ETPCommand0=2 -ETPTopicOrder0=2308 +ETPTopicOrder0=1871 -[External Topic Properties\RsCILCmdendfilter] +[External Topic Properties\RsCILNameshrun] Count=1 ETPCommand0=2 -ETPTopicOrder0=2309 +ETPTopicOrder0=1872 -[External Topic Properties\RsCILCmdendfinally] +[External Topic Properties\RsCILNamesizeof] Count=1 ETPCommand0=2 -ETPTopicOrder0=2310 +ETPTopicOrder0=1873 -[External Topic Properties\RsCILCmdinitblk] +[External Topic Properties\RsCILNamestarg] Count=1 ETPCommand0=2 -ETPTopicOrder0=2311 +ETPTopicOrder0=1874 -[External Topic Properties\RsCILCmdinitobj] +[External Topic Properties\RsCILNamestargs] Count=1 ETPCommand0=2 -ETPTopicOrder0=2312 +ETPTopicOrder0=1875 -[External Topic Properties\RsCILCmdisinst] +[External Topic Properties\RsCILNamestelemi] Count=1 ETPCommand0=2 -ETPTopicOrder0=2313 +ETPTopicOrder0=1876 -[External Topic Properties\RsCILCmdjmp] +[External Topic Properties\RsCILNamestelemi1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2314 +ETPTopicOrder0=1877 -[External Topic Properties\RsCILCmdldarg] +[External Topic Properties\RsCILNamestelemi2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2315 +ETPTopicOrder0=1878 -[External Topic Properties\RsCILCmdldarg0] +[External Topic Properties\RsCILNamestelemi4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2316 +ETPTopicOrder0=1879 -[External Topic Properties\RsCILCmdldarg1] +[External Topic Properties\RsCILNamestelemi8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2317 +ETPTopicOrder0=1880 -[External Topic Properties\RsCILCmdldarg2] +[External Topic Properties\RsCILNamestelemr4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2318 +ETPTopicOrder0=1881 -[External Topic Properties\RsCILCmdldarg3] +[External Topic Properties\RsCILNamestelemr8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2319 +ETPTopicOrder0=1882 -[External Topic Properties\RsCILCmdldarga] +[External Topic Properties\RsCILNamestelemref] Count=1 ETPCommand0=2 -ETPTopicOrder0=2320 +ETPTopicOrder0=1883 -[External Topic Properties\RsCILCmdldargas] +[External Topic Properties\RsCILNamestfld] Count=1 ETPCommand0=2 -ETPTopicOrder0=2321 +ETPTopicOrder0=1884 -[External Topic Properties\RsCILCmdldargs] +[External Topic Properties\RsCILNamestindi] Count=1 ETPCommand0=2 -ETPTopicOrder0=2322 +ETPTopicOrder0=1885 -[External Topic Properties\RsCILCmdldci4] +[External Topic Properties\RsCILNamestindi1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2323 +ETPTopicOrder0=1886 -[External Topic Properties\RsCILCmdldci40] +[External Topic Properties\RsCILNamestindi2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2324 +ETPTopicOrder0=1887 -[External Topic Properties\RsCILCmdldci41] +[External Topic Properties\RsCILNamestindi4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2325 +ETPTopicOrder0=1888 -[External Topic Properties\RsCILCmdldci42] +[External Topic Properties\RsCILNamestindi8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2326 +ETPTopicOrder0=1889 -[External Topic Properties\RsCILCmdldci43] +[External Topic Properties\RsCILNamestindr4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2327 +ETPTopicOrder0=1890 -[External Topic Properties\RsCILCmdldci44] +[External Topic Properties\RsCILNamestindr8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2328 +ETPTopicOrder0=1891 -[External Topic Properties\RsCILCmdldci45] +[External Topic Properties\RsCILNamestindref] Count=1 ETPCommand0=2 -ETPTopicOrder0=2329 +ETPTopicOrder0=1892 -[External Topic Properties\RsCILCmdldci46] +[External Topic Properties\RsCILNamestloc] Count=1 ETPCommand0=2 -ETPTopicOrder0=2330 +ETPTopicOrder0=1893 -[External Topic Properties\RsCILCmdldci47] +[External Topic Properties\RsCILNamestloc0] Count=1 ETPCommand0=2 -ETPTopicOrder0=2331 +ETPTopicOrder0=1894 -[External Topic Properties\RsCILCmdldci48] +[External Topic Properties\RsCILNamestloc1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2332 +ETPTopicOrder0=1895 -[External Topic Properties\RsCILCmdldci4m1] +[External Topic Properties\RsCILNamestloc2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2333 +ETPTopicOrder0=1896 -[External Topic Properties\RsCILCmdldci4s] +[External Topic Properties\RsCILNamestloc3] Count=1 ETPCommand0=2 -ETPTopicOrder0=2334 +ETPTopicOrder0=1897 -[External Topic Properties\RsCILCmdldci8] +[External Topic Properties\RsCILNamestlocs] Count=1 ETPCommand0=2 -ETPTopicOrder0=2335 +ETPTopicOrder0=1898 -[External Topic Properties\RsCILCmdldcr4] +[External Topic Properties\RsCILNamestobj] Count=1 ETPCommand0=2 -ETPTopicOrder0=2336 +ETPTopicOrder0=1899 -[External Topic Properties\RsCILCmdldcr8] +[External Topic Properties\RsCILNamestsfld] Count=1 ETPCommand0=2 -ETPTopicOrder0=2337 +ETPTopicOrder0=1900 -[External Topic Properties\RsCILCmdldelema] +[External Topic Properties\RsCILNamesub] Count=1 ETPCommand0=2 -ETPTopicOrder0=2338 +ETPTopicOrder0=1901 -[External Topic Properties\RsCILCmdldelemi] +[External Topic Properties\RsCILNamesubovf] Count=1 ETPCommand0=2 -ETPTopicOrder0=2339 +ETPTopicOrder0=1902 -[External Topic Properties\RsCILCmdldelemi1] +[External Topic Properties\RsCILNamesubovfun] Count=1 ETPCommand0=2 -ETPTopicOrder0=2340 +ETPTopicOrder0=1903 -[External Topic Properties\RsCILCmdldelemi2] +[External Topic Properties\RsCILNameswitch] Count=1 ETPCommand0=2 -ETPTopicOrder0=2341 +ETPTopicOrder0=1904 -[External Topic Properties\RsCILCmdldelemi4] +[External Topic Properties\RsCILNametail] Count=1 ETPCommand0=2 -ETPTopicOrder0=2342 +ETPTopicOrder0=1905 -[External Topic Properties\RsCILCmdldelemi8] +[External Topic Properties\RsCILNamethrow] Count=1 ETPCommand0=2 -ETPTopicOrder0=2343 +ETPTopicOrder0=1906 -[External Topic Properties\RsCILCmdldelemr4] +[External Topic Properties\RsCILNameunaligned] Count=1 ETPCommand0=2 -ETPTopicOrder0=2344 +ETPTopicOrder0=1907 -[External Topic Properties\RsCILCmdldelemr8] +[External Topic Properties\RsCILNameunbox] Count=1 ETPCommand0=2 -ETPTopicOrder0=2345 +ETPTopicOrder0=1908 -[External Topic Properties\RsCILCmdldelemref] +[External Topic Properties\RsCILNameunused1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2346 +ETPTopicOrder0=1909 -[External Topic Properties\RsCILCmdldelemu1] +[External Topic Properties\RsCILNameunused10] Count=1 ETPCommand0=2 -ETPTopicOrder0=2347 +ETPTopicOrder0=1910 -[External Topic Properties\RsCILCmdldelemu2] +[External Topic Properties\RsCILNameunused11] Count=1 ETPCommand0=2 -ETPTopicOrder0=2348 +ETPTopicOrder0=1911 -[External Topic Properties\RsCILCmdldelemu4] +[External Topic Properties\RsCILNameunused12] Count=1 ETPCommand0=2 -ETPTopicOrder0=2349 +ETPTopicOrder0=1912 -[External Topic Properties\RsCILCmdldfld] +[External Topic Properties\RsCILNameunused13] Count=1 ETPCommand0=2 -ETPTopicOrder0=2350 +ETPTopicOrder0=1913 -[External Topic Properties\RsCILCmdldflda] +[External Topic Properties\RsCILNameunused14] Count=1 ETPCommand0=2 -ETPTopicOrder0=2351 +ETPTopicOrder0=1914 -[External Topic Properties\RsCILCmdldftn] +[External Topic Properties\RsCILNameunused15] Count=1 ETPCommand0=2 -ETPTopicOrder0=2352 +ETPTopicOrder0=1915 -[External Topic Properties\RsCILCmdldindi] +[External Topic Properties\RsCILNameunused16] Count=1 ETPCommand0=2 -ETPTopicOrder0=2353 +ETPTopicOrder0=1916 -[External Topic Properties\RsCILCmdldindi1] +[External Topic Properties\RsCILNameunused17] Count=1 ETPCommand0=2 -ETPTopicOrder0=2354 +ETPTopicOrder0=1917 -[External Topic Properties\RsCILCmdldindi2] +[External Topic Properties\RsCILNameunused18] Count=1 ETPCommand0=2 -ETPTopicOrder0=2355 +ETPTopicOrder0=1918 -[External Topic Properties\RsCILCmdldindi4] +[External Topic Properties\RsCILNameunused19] Count=1 ETPCommand0=2 -ETPTopicOrder0=2356 +ETPTopicOrder0=1919 -[External Topic Properties\RsCILCmdldindi8] +[External Topic Properties\RsCILNameunused2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2357 +ETPTopicOrder0=1920 -[External Topic Properties\RsCILCmdldindr4] +[External Topic Properties\RsCILNameunused20] Count=1 ETPCommand0=2 -ETPTopicOrder0=2358 +ETPTopicOrder0=1921 -[External Topic Properties\RsCILCmdldindr8] +[External Topic Properties\RsCILNameunused21] Count=1 ETPCommand0=2 -ETPTopicOrder0=2359 +ETPTopicOrder0=1922 -[External Topic Properties\RsCILCmdldindref] +[External Topic Properties\RsCILNameunused22] Count=1 ETPCommand0=2 -ETPTopicOrder0=2360 +ETPTopicOrder0=1923 -[External Topic Properties\RsCILCmdldindu1] +[External Topic Properties\RsCILNameunused23] Count=1 ETPCommand0=2 -ETPTopicOrder0=2361 +ETPTopicOrder0=1924 -[External Topic Properties\RsCILCmdldindu2] +[External Topic Properties\RsCILNameunused24] Count=1 ETPCommand0=2 -ETPTopicOrder0=2362 +ETPTopicOrder0=1925 -[External Topic Properties\RsCILCmdldindu4] +[External Topic Properties\RsCILNameunused25] Count=1 ETPCommand0=2 -ETPTopicOrder0=2363 +ETPTopicOrder0=1926 -[External Topic Properties\RsCILCmdldlen] +[External Topic Properties\RsCILNameunused26] Count=1 ETPCommand0=2 -ETPTopicOrder0=2364 +ETPTopicOrder0=1927 -[External Topic Properties\RsCILCmdldloc] +[External Topic Properties\RsCILNameunused27] Count=1 ETPCommand0=2 -ETPTopicOrder0=2365 +ETPTopicOrder0=1928 -[External Topic Properties\RsCILCmdldloc0] +[External Topic Properties\RsCILNameunused28] Count=1 ETPCommand0=2 -ETPTopicOrder0=2366 +ETPTopicOrder0=1929 -[External Topic Properties\RsCILCmdldloc1] +[External Topic Properties\RsCILNameunused29] Count=1 ETPCommand0=2 -ETPTopicOrder0=2367 +ETPTopicOrder0=1930 -[External Topic Properties\RsCILCmdldloc2] +[External Topic Properties\RsCILNameunused3] Count=1 ETPCommand0=2 -ETPTopicOrder0=2368 +ETPTopicOrder0=1931 -[External Topic Properties\RsCILCmdldloc3] +[External Topic Properties\RsCILNameunused30] Count=1 ETPCommand0=2 -ETPTopicOrder0=2369 +ETPTopicOrder0=1932 -[External Topic Properties\RsCILCmdldloca] +[External Topic Properties\RsCILNameunused31] Count=1 ETPCommand0=2 -ETPTopicOrder0=2370 +ETPTopicOrder0=1933 -[External Topic Properties\RsCILCmdldlocas] +[External Topic Properties\RsCILNameunused32] Count=1 ETPCommand0=2 -ETPTopicOrder0=2371 +ETPTopicOrder0=1934 -[External Topic Properties\RsCILCmdldlocs] +[External Topic Properties\RsCILNameunused33] Count=1 ETPCommand0=2 -ETPTopicOrder0=2372 +ETPTopicOrder0=1935 -[External Topic Properties\RsCILCmdldnull] +[External Topic Properties\RsCILNameunused34] Count=1 ETPCommand0=2 -ETPTopicOrder0=2373 +ETPTopicOrder0=1936 -[External Topic Properties\RsCILCmdldobj] +[External Topic Properties\RsCILNameunused35] Count=1 ETPCommand0=2 -ETPTopicOrder0=2374 +ETPTopicOrder0=1937 -[External Topic Properties\RsCILCmdldsfld] +[External Topic Properties\RsCILNameunused36] Count=1 ETPCommand0=2 -ETPTopicOrder0=2375 +ETPTopicOrder0=1938 -[External Topic Properties\RsCILCmdldsflda] +[External Topic Properties\RsCILNameunused37] Count=1 ETPCommand0=2 -ETPTopicOrder0=2376 +ETPTopicOrder0=1939 -[External Topic Properties\RsCILCmdldstr] +[External Topic Properties\RsCILNameunused38] Count=1 ETPCommand0=2 -ETPTopicOrder0=2377 +ETPTopicOrder0=1940 -[External Topic Properties\RsCILCmdldtoken] +[External Topic Properties\RsCILNameunused39] Count=1 ETPCommand0=2 -ETPTopicOrder0=2378 +ETPTopicOrder0=1941 -[External Topic Properties\RsCILCmdldvirtftn] +[External Topic Properties\RsCILNameunused4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2379 +ETPTopicOrder0=1942 -[External Topic Properties\RsCILCmdleave] +[External Topic Properties\RsCILNameunused40] Count=1 ETPCommand0=2 -ETPTopicOrder0=2380 +ETPTopicOrder0=1943 -[External Topic Properties\RsCILCmdleaves] +[External Topic Properties\RsCILNameunused41] Count=1 ETPCommand0=2 -ETPTopicOrder0=2381 +ETPTopicOrder0=1944 -[External Topic Properties\RsCILCmdlocalloc] +[External Topic Properties\RsCILNameunused42] Count=1 ETPCommand0=2 -ETPTopicOrder0=2382 +ETPTopicOrder0=1945 -[External Topic Properties\RsCILCmdmkrefany] +[External Topic Properties\RsCILNameunused43] Count=1 ETPCommand0=2 -ETPTopicOrder0=2383 +ETPTopicOrder0=1946 -[External Topic Properties\RsCILCmdmul] +[External Topic Properties\RsCILNameunused44] Count=1 ETPCommand0=2 -ETPTopicOrder0=2384 +ETPTopicOrder0=1947 -[External Topic Properties\RsCILCmdmulovf] +[External Topic Properties\RsCILNameunused45] Count=1 ETPCommand0=2 -ETPTopicOrder0=2385 +ETPTopicOrder0=1948 -[External Topic Properties\RsCILCmdmulovfun] +[External Topic Properties\RsCILNameunused46] Count=1 ETPCommand0=2 -ETPTopicOrder0=2386 +ETPTopicOrder0=1949 -[External Topic Properties\RsCILCmdneg] +[External Topic Properties\RsCILNameunused47] Count=1 ETPCommand0=2 -ETPTopicOrder0=2387 +ETPTopicOrder0=1950 -[External Topic Properties\RsCILCmdnewarr] +[External Topic Properties\RsCILNameunused48] Count=1 ETPCommand0=2 -ETPTopicOrder0=2388 +ETPTopicOrder0=1951 -[External Topic Properties\RsCILCmdnewobj] +[External Topic Properties\RsCILNameunused49] Count=1 ETPCommand0=2 -ETPTopicOrder0=2389 +ETPTopicOrder0=1952 -[External Topic Properties\RsCILCmdnop] +[External Topic Properties\RsCILNameunused5] Count=1 ETPCommand0=2 -ETPTopicOrder0=2390 +ETPTopicOrder0=1953 -[External Topic Properties\RsCILCmdnot] +[External Topic Properties\RsCILNameunused50] Count=1 ETPCommand0=2 -ETPTopicOrder0=2391 +ETPTopicOrder0=1954 -[External Topic Properties\RsCILCmdor] +[External Topic Properties\RsCILNameunused51] Count=1 ETPCommand0=2 -ETPTopicOrder0=2392 +ETPTopicOrder0=1955 -[External Topic Properties\RsCILCmdpop] +[External Topic Properties\RsCILNameunused52] Count=1 ETPCommand0=2 -ETPTopicOrder0=2393 +ETPTopicOrder0=1956 -[External Topic Properties\RsCILCmdprefix1] +[External Topic Properties\RsCILNameunused53] Count=1 ETPCommand0=2 -ETPTopicOrder0=2394 +ETPTopicOrder0=1957 -[External Topic Properties\RsCILCmdprefix2] +[External Topic Properties\RsCILNameunused54] Count=1 ETPCommand0=2 -ETPTopicOrder0=2395 +ETPTopicOrder0=1958 -[External Topic Properties\RsCILCmdprefix3] +[External Topic Properties\RsCILNameunused55] Count=1 ETPCommand0=2 -ETPTopicOrder0=2396 +ETPTopicOrder0=1959 -[External Topic Properties\RsCILCmdprefix4] +[External Topic Properties\RsCILNameunused56] Count=1 ETPCommand0=2 -ETPTopicOrder0=2397 +ETPTopicOrder0=1960 -[External Topic Properties\RsCILCmdprefix5] +[External Topic Properties\RsCILNameunused57] Count=1 ETPCommand0=2 -ETPTopicOrder0=2398 +ETPTopicOrder0=1961 -[External Topic Properties\RsCILCmdprefix6] +[External Topic Properties\RsCILNameunused58] Count=1 ETPCommand0=2 -ETPTopicOrder0=2399 +ETPTopicOrder0=1962 -[External Topic Properties\RsCILCmdprefix7] +[External Topic Properties\RsCILNameunused59] Count=1 ETPCommand0=2 -ETPTopicOrder0=2400 +ETPTopicOrder0=1963 -[External Topic Properties\RsCILCmdprefixref] +[External Topic Properties\RsCILNameunused6] Count=1 ETPCommand0=2 -ETPTopicOrder0=2401 +ETPTopicOrder0=1964 -[External Topic Properties\RsCILCmdrefanytype] +[External Topic Properties\RsCILNameunused60] Count=1 ETPCommand0=2 -ETPTopicOrder0=2402 +ETPTopicOrder0=1965 -[External Topic Properties\RsCILCmdrefanyval] +[External Topic Properties\RsCILNameunused61] Count=1 ETPCommand0=2 -ETPTopicOrder0=2403 +ETPTopicOrder0=1966 -[External Topic Properties\RsCILCmdrem] +[External Topic Properties\RsCILNameunused62] Count=1 ETPCommand0=2 -ETPTopicOrder0=2404 +ETPTopicOrder0=1967 -[External Topic Properties\RsCILCmdremun] +[External Topic Properties\RsCILNameunused63] Count=1 ETPCommand0=2 -ETPTopicOrder0=2405 +ETPTopicOrder0=1968 -[External Topic Properties\RsCILCmdret] +[External Topic Properties\RsCILNameunused64] Count=1 ETPCommand0=2 -ETPTopicOrder0=2406 +ETPTopicOrder0=1969 -[External Topic Properties\RsCILCmdrethrow] +[External Topic Properties\RsCILNameunused65] Count=1 ETPCommand0=2 -ETPTopicOrder0=2407 +ETPTopicOrder0=1970 -[External Topic Properties\RsCILCmdshl] +[External Topic Properties\RsCILNameunused66] Count=1 ETPCommand0=2 -ETPTopicOrder0=2408 +ETPTopicOrder0=1971 -[External Topic Properties\RsCILCmdshr] +[External Topic Properties\RsCILNameunused67] Count=1 ETPCommand0=2 -ETPTopicOrder0=2409 +ETPTopicOrder0=1972 -[External Topic Properties\RsCILCmdshrun] +[External Topic Properties\RsCILNameunused68] Count=1 ETPCommand0=2 -ETPTopicOrder0=2410 +ETPTopicOrder0=1973 -[External Topic Properties\RsCILCmdsizeof] +[External Topic Properties\RsCILNameunused69] Count=1 ETPCommand0=2 -ETPTopicOrder0=2411 +ETPTopicOrder0=1974 -[External Topic Properties\RsCILCmdstarg] +[External Topic Properties\RsCILNameunused7] Count=1 ETPCommand0=2 -ETPTopicOrder0=2412 +ETPTopicOrder0=1975 -[External Topic Properties\RsCILCmdstargs] +[External Topic Properties\RsCILNameunused70] Count=1 ETPCommand0=2 -ETPTopicOrder0=2413 +ETPTopicOrder0=1976 -[External Topic Properties\RsCILCmdstelemi] +[External Topic Properties\RsCILNameunused8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2414 +ETPTopicOrder0=1977 -[External Topic Properties\RsCILCmdstelemi1] +[External Topic Properties\RsCILNameunused9] Count=1 ETPCommand0=2 -ETPTopicOrder0=2415 +ETPTopicOrder0=1978 -[External Topic Properties\RsCILCmdstelemi2] +[External Topic Properties\RsCILNamevolatile] Count=1 ETPCommand0=2 -ETPTopicOrder0=2416 +ETPTopicOrder0=1979 -[External Topic Properties\RsCILCmdstelemi4] +[External Topic Properties\RsCILNamexor] Count=1 ETPCommand0=2 -ETPTopicOrder0=2417 +ETPTopicOrder0=1980 -[External Topic Properties\RsCILCmdstelemi8] +[External Topic Properties\RsCleaningFailed] Count=1 ETPCommand0=2 -ETPTopicOrder0=2418 +ETPTopicOrder0=1981 -[External Topic Properties\RsCILCmdstelemr4] +[External Topic Properties\RsCleaningOk] Count=1 ETPCommand0=2 -ETPTopicOrder0=2419 +ETPTopicOrder0=1982 -[External Topic Properties\RsCILCmdstelemr8] +[External Topic Properties\RsCleaningPackageCache] Count=1 ETPCommand0=2 -ETPTopicOrder0=2420 +ETPTopicOrder0=1983 -[External Topic Properties\RsCILCmdstelemref] +[External Topic Properties\RsClientServer] Count=1 ETPCommand0=2 -ETPTopicOrder0=2421 +ETPTopicOrder0=1984 -[External Topic Properties\RsCILCmdstfld] +[External Topic Properties\RsClrCopyright] Count=1 ETPCommand0=2 -ETPTopicOrder0=2422 +ETPTopicOrder0=1985 -[External Topic Properties\RsCILCmdstindi] +[External Topic Properties\RsCombiningClassUnicodeChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=2423 +ETPTopicOrder0=1986 -[External Topic Properties\RsCILCmdstindi1] +[External Topic Properties\RsComFailedStreamRead] Count=1 ETPCommand0=2 -ETPTopicOrder0=2424 +ETPTopicOrder0=1987 -[External Topic Properties\RsCILCmdstindi2] +[External Topic Properties\RsComFailedStreamWrite] Count=1 ETPCommand0=2 -ETPTopicOrder0=2425 +ETPTopicOrder0=1988 -[External Topic Properties\RsCILCmdstindi4] +[External Topic Properties\RsComInvalidParam] Count=1 ETPCommand0=2 -ETPTopicOrder0=2426 +ETPTopicOrder0=1989 -[External Topic Properties\RsCILCmdstindi8] +[External Topic Properties\RsCommandLineToolMissing] Count=1 ETPCommand0=2 -ETPTopicOrder0=2427 +ETPTopicOrder0=2819 -[External Topic Properties\RsCILCmdstindr4] +[External Topic Properties\RsCompilationFailed] Count=1 ETPCommand0=2 -ETPTopicOrder0=2428 +ETPTopicOrder0=1990 -[External Topic Properties\RsCILCmdstindr8] +[External Topic Properties\RsCompilationOk] Count=1 ETPCommand0=2 -ETPTopicOrder0=2429 +ETPTopicOrder0=1991 -[External Topic Properties\RsCILCmdstindref] +[External Topic Properties\RsCompilingPackage] Count=1 ETPCommand0=2 -ETPTopicOrder0=2430 +ETPTopicOrder0=1992 -[External Topic Properties\RsCILCmdstloc] +[External Topic Properties\RsCompilingProject] Count=1 ETPCommand0=2 -ETPTopicOrder0=2431 +ETPTopicOrder0=1993 -[External Topic Properties\RsCILCmdstloc0] +[External Topic Properties\RsComplexInvalidString] Count=1 ETPCommand0=2 -ETPTopicOrder0=2432 +ETPTopicOrder0=1994 -[External Topic Properties\RsCILCmdstloc1] +[External Topic Properties\RsCompression7zExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2433 +ETPTopicOrder0=1995 -[External Topic Properties\RsCILCmdstloc2] +[External Topic Properties\RsCompression7zInArchiveError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2434 +ETPTopicOrder0=1996 -[External Topic Properties\RsCILCmdstloc3] +[External Topic Properties\RsCompression7zLoadError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2435 +ETPTopicOrder0=1997 -[External Topic Properties\RsCILCmdstlocs] +[External Topic Properties\RsCompression7zName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2436 +ETPTopicOrder0=1998 -[External Topic Properties\RsCILCmdstobj] +[External Topic Properties\RsCompression7zOnlyCurrentFile] Count=1 ETPCommand0=2 -ETPTopicOrder0=2437 +ETPTopicOrder0=1999 -[External Topic Properties\RsCILCmdstsfld] +[External Topic Properties\RsCompression7zOutArchiveError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2438 +ETPTopicOrder0=2000 -[External Topic Properties\RsCILCmdsub] +[External Topic Properties\RsCompression7zReturnError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2439 +ETPTopicOrder0=2001 -[External Topic Properties\RsCILCmdsubovf] +[External Topic Properties\RsCompression7zUnix] Count=1 ETPCommand0=2 -ETPTopicOrder0=2440 +ETPTopicOrder0=2002 -[External Topic Properties\RsCILCmdsubovfun] +[External Topic Properties\RsCompression7zUnknownValueType] Count=1 ETPCommand0=2 -ETPTopicOrder0=2441 +ETPTopicOrder0=2003 -[External Topic Properties\RsCILCmdswitch] +[External Topic Properties\RsCompression7zWindows] Count=1 ETPCommand0=2 -ETPTopicOrder0=2442 +ETPTopicOrder0=2004 -[External Topic Properties\RsCILCmdtail] +[External Topic Properties\RsCompressionApmExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2443 +ETPTopicOrder0=2005 -[External Topic Properties\RsCILCmdthrow] +[External Topic Properties\RsCompressionApmName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2444 +ETPTopicOrder0=2006 -[External Topic Properties\RsCILCmdunaligned] +[External Topic Properties\RsCompressionArjExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2445 +ETPTopicOrder0=2007 -[External Topic Properties\RsCILCmdunbox] +[External Topic Properties\RsCompressionArjName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2446 +ETPTopicOrder0=2008 -[External Topic Properties\RsCILCmdunused1] +[External Topic Properties\RsCompressionBZIP2ConfigError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2447 +ETPTopicOrder0=2009 -[External Topic Properties\RsCILCmdunused10] +[External Topic Properties\RsCompressionBZIP2DataError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2448 +ETPTopicOrder0=2010 -[External Topic Properties\RsCILCmdunused11] +[External Topic Properties\RsCompressionBZIP2EOFError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2449 +ETPTopicOrder0=2011 -[External Topic Properties\RsCILCmdunused12] +[External Topic Properties\RsCompressionBZIP2Error] Count=1 ETPCommand0=2 -ETPTopicOrder0=2450 +ETPTopicOrder0=2012 -[External Topic Properties\RsCILCmdunused13] +[External Topic Properties\RsCompressionBZip2Extensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2451 +ETPTopicOrder0=2013 -[External Topic Properties\RsCILCmdunused14] +[External Topic Properties\RsCompressionBZIP2HeaderError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2452 +ETPTopicOrder0=2014 -[External Topic Properties\RsCILCmdunused15] +[External Topic Properties\RsCompressionBZIP2IOError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2453 +ETPTopicOrder0=2015 -[External Topic Properties\RsCILCmdunused16] +[External Topic Properties\RsCompressionBZIP2MemoryError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2454 +ETPTopicOrder0=2016 -[External Topic Properties\RsCILCmdunused17] +[External Topic Properties\RsCompressionBZip2Name] Count=1 ETPCommand0=2 -ETPTopicOrder0=2455 +ETPTopicOrder0=2017 -[External Topic Properties\RsCILCmdunused18] +[External Topic Properties\RsCompressionBZIP2OutBuffError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2456 +ETPTopicOrder0=2018 -[External Topic Properties\RsCILCmdunused19] +[External Topic Properties\RsCompressionBZIP2ParameterError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2457 +ETPTopicOrder0=2019 -[External Topic Properties\RsCILCmdunused2] +[External Topic Properties\RsCompressionBZIP2SequenceError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2458 +ETPTopicOrder0=2020 -[External Topic Properties\RsCILCmdunused20] +[External Topic Properties\RsCompressionCabExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2459 +ETPTopicOrder0=2021 -[External Topic Properties\RsCILCmdunused21] +[External Topic Properties\RsCompressionCabName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2460 +ETPTopicOrder0=2022 -[External Topic Properties\RsCILCmdunused22] +[External Topic Properties\RsCompressionChmExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2461 +ETPTopicOrder0=2023 -[External Topic Properties\RsCILCmdunused23] +[External Topic Properties\RsCompressionChmName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2462 +ETPTopicOrder0=2024 -[External Topic Properties\RsCILCmdunused24] +[External Topic Properties\RsCompressionCompoundExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2463 +ETPTopicOrder0=2025 -[External Topic Properties\RsCILCmdunused25] +[External Topic Properties\RsCompressionCompoundName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2464 +ETPTopicOrder0=2026 -[External Topic Properties\RsCILCmdunused26] +[External Topic Properties\RsCompressionCompressingError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2465 +ETPTopicOrder0=2027 -[External Topic Properties\RsCILCmdunused27] +[External Topic Properties\RsCompressionCpioExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2466 +ETPTopicOrder0=2028 -[External Topic Properties\RsCILCmdunused28] +[External Topic Properties\RsCompressionCpioName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2467 +ETPTopicOrder0=2029 -[External Topic Properties\RsCILCmdunused29] +[External Topic Properties\RsCompressionCRCError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2468 +ETPTopicOrder0=2030 -[External Topic Properties\RsCILCmdunused3] +[External Topic Properties\RsCompressionDataError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2469 +ETPTopicOrder0=2031 -[External Topic Properties\RsCILCmdunused30] +[External Topic Properties\RsCompressionDebExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2470 +ETPTopicOrder0=2032 -[External Topic Properties\RsCILCmdunused31] +[External Topic Properties\RsCompressionDebName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2471 +ETPTopicOrder0=2033 -[External Topic Properties\RsCILCmdunused32] +[External Topic Properties\RsCompressionDecompressingError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2472 +ETPTopicOrder0=2034 -[External Topic Properties\RsCILCmdunused33] +[External Topic Properties\RsCompressionDmgExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2473 +ETPTopicOrder0=2035 -[External Topic Properties\RsCILCmdunused34] +[External Topic Properties\RsCompressionDmgName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2474 +ETPTopicOrder0=2036 -[External Topic Properties\RsCILCmdunused35] +[External Topic Properties\RsCompressionDuplicate] Count=1 ETPCommand0=2 -ETPTopicOrder0=2475 +ETPTopicOrder0=2037 -[External Topic Properties\RsCILCmdunused36] +[External Topic Properties\RsCompressionElfExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2476 +ETPTopicOrder0=2038 -[External Topic Properties\RsCILCmdunused37] +[External Topic Properties\RsCompressionElfName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2477 +ETPTopicOrder0=2039 -[External Topic Properties\RsCILCmdunused38] +[External Topic Properties\RsCompressionFatExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2478 +ETPTopicOrder0=2040 -[External Topic Properties\RsCILCmdunused39] +[External Topic Properties\RsCompressionFatName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2479 +ETPTopicOrder0=2041 -[External Topic Properties\RsCILCmdunused4] +[External Topic Properties\RsCompressionFlvExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2480 +ETPTopicOrder0=2042 -[External Topic Properties\RsCILCmdunused40] +[External Topic Properties\RsCompressionFlvName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2481 +ETPTopicOrder0=2043 -[External Topic Properties\RsCILCmdunused41] +[External Topic Properties\RsCompressionGZIPBadString] Count=1 ETPCommand0=2 -ETPTopicOrder0=2482 +ETPTopicOrder0=2044 -[External Topic Properties\RsCILCmdunused42] +[External Topic Properties\RsCompressionGZIPDataCRCFailed] Count=1 ETPCommand0=2 -ETPTopicOrder0=2483 +ETPTopicOrder0=2045 -[External Topic Properties\RsCILCmdunused43] +[External Topic Properties\RsCompressionGZIPDataTruncated] Count=1 ETPCommand0=2 -ETPTopicOrder0=2484 +ETPTopicOrder0=2046 -[External Topic Properties\RsCILCmdunused44] +[External Topic Properties\RsCompressionGZIPDecompressing] Count=1 ETPCommand0=2 -ETPTopicOrder0=2485 +ETPTopicOrder0=2047 -[External Topic Properties\RsCILCmdunused45] +[External Topic Properties\RsCompressionGZipExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2486 +ETPTopicOrder0=2048 -[External Topic Properties\RsCILCmdunused46] +[External Topic Properties\RsCompressionGZIPExtraFieldTooLong] Count=1 ETPCommand0=2 -ETPTopicOrder0=2487 +ETPTopicOrder0=2049 -[External Topic Properties\RsCILCmdunused47] +[External Topic Properties\RsCompressionGZIPHeaderCRC] Count=1 ETPCommand0=2 -ETPTopicOrder0=2488 +ETPTopicOrder0=2050 -[External Topic Properties\RsCILCmdunused48] +[External Topic Properties\RsCompressionGZIPInternalError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2489 +ETPTopicOrder0=2051 -[External Topic Properties\RsCILCmdunused49] +[External Topic Properties\RsCompressionGZIPInvalidID] Count=1 ETPCommand0=2 -ETPTopicOrder0=2490 +ETPTopicOrder0=2052 -[External Topic Properties\RsCILCmdunused5] +[External Topic Properties\RsCompressionGZipName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2491 +ETPTopicOrder0=2053 -[External Topic Properties\RsCILCmdunused50] +[External Topic Properties\RsCompressionGZIPNotDecompressed] Count=1 ETPCommand0=2 -ETPTopicOrder0=2492 +ETPTopicOrder0=2054 -[External Topic Properties\RsCILCmdunused51] +[External Topic Properties\RsCompressionGZIPUnsupportedCM] Count=1 ETPCommand0=2 -ETPTopicOrder0=2493 +ETPTopicOrder0=2055 -[External Topic Properties\RsCILCmdunused52] +[External Topic Properties\RsCompressionHfsExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2494 +ETPTopicOrder0=2056 -[External Topic Properties\RsCILCmdunused53] +[External Topic Properties\RsCompressionHfsName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2495 +ETPTopicOrder0=2057 -[External Topic Properties\RsCILCmdunused54] +[External Topic Properties\RsCompressionIsoExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2496 +ETPTopicOrder0=2058 -[External Topic Properties\RsCILCmdunused55] +[External Topic Properties\RsCompressionIsoName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2497 +ETPTopicOrder0=2059 -[External Topic Properties\RsCILCmdunused56] +[External Topic Properties\RsCompressionLzhExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2498 +ETPTopicOrder0=2060 -[External Topic Properties\RsCILCmdunused57] +[External Topic Properties\RsCompressionLzhName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2499 +ETPTopicOrder0=2061 -[External Topic Properties\RsCILCmdunused58] +[External Topic Properties\RsCompressionLzma86Extensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2500 +ETPTopicOrder0=2062 -[External Topic Properties\RsCILCmdunused59] +[External Topic Properties\RsCompressionLzma86Name] Count=1 ETPCommand0=2 -ETPTopicOrder0=2501 +ETPTopicOrder0=2063 -[External Topic Properties\RsCILCmdunused6] +[External Topic Properties\RsCompressionLzmaExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2502 +ETPTopicOrder0=2064 -[External Topic Properties\RsCILCmdunused60] +[External Topic Properties\RsCompressionLzmaName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2503 +ETPTopicOrder0=2065 -[External Topic Properties\RsCILCmdunused61] +[External Topic Properties\RsCompressionMachoExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2504 +ETPTopicOrder0=2066 -[External Topic Properties\RsCILCmdunused62] +[External Topic Properties\RsCompressionMachoName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2505 +ETPTopicOrder0=2067 -[External Topic Properties\RsCILCmdunused63] +[External Topic Properties\RsCompressionMbrExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2506 +ETPTopicOrder0=2068 -[External Topic Properties\RsCILCmdunused64] +[External Topic Properties\RsCompressionMbrName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2507 +ETPTopicOrder0=2069 -[External Topic Properties\RsCILCmdunused65] +[External Topic Properties\RsCompressionMsLZExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2508 +ETPTopicOrder0=2070 -[External Topic Properties\RsCILCmdunused66] +[External Topic Properties\RsCompressionMsLZName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2509 +ETPTopicOrder0=2071 -[External Topic Properties\RsCILCmdunused67] +[External Topic Properties\RsCompressionMubExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2510 +ETPTopicOrder0=2072 -[External Topic Properties\RsCILCmdunused68] +[External Topic Properties\RsCompressionMubName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2511 +ETPTopicOrder0=2073 -[External Topic Properties\RsCILCmdunused69] +[External Topic Properties\RsCompressionNoFileName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2512 +ETPTopicOrder0=2074 -[External Topic Properties\RsCILCmdunused7] +[External Topic Properties\RsCompressionNsisExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2513 +ETPTopicOrder0=2075 -[External Topic Properties\RsCILCmdunused70] +[External Topic Properties\RsCompressionNsisName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2514 +ETPTopicOrder0=2076 -[External Topic Properties\RsCILCmdunused8] +[External Topic Properties\RsCompressionNtfsExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2515 +ETPTopicOrder0=2077 -[External Topic Properties\RsCILCmdunused9] +[External Topic Properties\RsCompressionNtfsName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2516 +ETPTopicOrder0=2078 -[External Topic Properties\RsCILCmdvolatile] +[External Topic Properties\RsCompressionOperationNotSupported] Count=1 ETPCommand0=2 -ETPTopicOrder0=2517 +ETPTopicOrder0=2845 -[External Topic Properties\RsCILCmdxor] +[External Topic Properties\RsCompressionPeExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2518 +ETPTopicOrder0=2079 -[External Topic Properties\RsCILDescradd] +[External Topic Properties\RsCompressionPeName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2519 +ETPTopicOrder0=2080 -[External Topic Properties\RsCILDescraddovf] +[External Topic Properties\RsCompressionPpmdExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2520 +ETPTopicOrder0=2081 -[External Topic Properties\RsCILDescraddovfun] +[External Topic Properties\RsCompressionPpmdName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2521 +ETPTopicOrder0=2082 -[External Topic Properties\RsCILDescrand] +[External Topic Properties\RsCompressionRarExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2522 +ETPTopicOrder0=2083 -[External Topic Properties\RsCILDescrarglist] +[External Topic Properties\RsCompressionRarName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2523 +ETPTopicOrder0=2084 -[External Topic Properties\RsCILDescrbeq] +[External Topic Properties\RsCompressionReadNotSupported] Count=1 ETPCommand0=2 -ETPTopicOrder0=2524 +ETPTopicOrder0=2085 -[External Topic Properties\RsCILDescrbeqs] +[External Topic Properties\RsCompressionReplaceError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2525 +ETPTopicOrder0=2086 -[External Topic Properties\RsCILDescrbge] +[External Topic Properties\RsCompressionResetNotSupported] Count=1 ETPCommand0=2 -ETPTopicOrder0=2526 +ETPTopicOrder0=2087 -[External Topic Properties\RsCILDescrbges] +[External Topic Properties\RsCompressionRpmExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2527 +ETPTopicOrder0=2088 -[External Topic Properties\RsCILDescrbgeun] +[External Topic Properties\RsCompressionRpmName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2528 +ETPTopicOrder0=2089 -[External Topic Properties\RsCILDescrbgeuns] +[External Topic Properties\RsCompressionSeekNotSupported] Count=1 ETPCommand0=2 -ETPTopicOrder0=2529 +ETPTopicOrder0=2090 -[External Topic Properties\RsCILDescrbgt] +[External Topic Properties\RsCompressionSplitExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2530 +ETPTopicOrder0=2091 -[External Topic Properties\RsCILDescrbgts] +[External Topic Properties\RsCompressionSplitName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2531 +ETPTopicOrder0=2092 -[External Topic Properties\RsCILDescrbgtun] +[External Topic Properties\RsCompressionSwfcExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2532 +ETPTopicOrder0=2093 -[External Topic Properties\RsCILDescrbgtuns] +[External Topic Properties\RsCompressionSwfcName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2533 +ETPTopicOrder0=2094 -[External Topic Properties\RsCILDescrble] +[External Topic Properties\RsCompressionSwfExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2534 +ETPTopicOrder0=2095 -[External Topic Properties\RsCILDescrbles] +[External Topic Properties\RsCompressionSwfName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2535 +ETPTopicOrder0=2096 -[External Topic Properties\RsCILDescrbleun] +[External Topic Properties\RsCompressionTarExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2536 +ETPTopicOrder0=2097 -[External Topic Properties\RsCILDescrbleuns] +[External Topic Properties\RsCompressionTarName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2537 +ETPTopicOrder0=2098 -[External Topic Properties\RsCILDescrblt] +[External Topic Properties\RsCompressionUdfExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2538 +ETPTopicOrder0=2099 -[External Topic Properties\RsCILDescrblts] +[External Topic Properties\RsCompressionUdfName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2539 +ETPTopicOrder0=2100 -[External Topic Properties\RsCILDescrbltun] +[External Topic Properties\RsCompressionUnavailableProperty] Count=1 ETPCommand0=2 -ETPTopicOrder0=2540 +ETPTopicOrder0=2101 -[External Topic Properties\RsCILDescrbltuns] +[External Topic Properties\RsCompressionUnknownError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2541 +ETPTopicOrder0=2102 -[External Topic Properties\RsCILDescrbneun] +[External Topic Properties\RsCompressionUnsupportedMethod] Count=1 ETPCommand0=2 -ETPTopicOrder0=2542 +ETPTopicOrder0=2103 -[External Topic Properties\RsCILDescrbneuns] +[External Topic Properties\RsCompressionVhdExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2543 +ETPTopicOrder0=2104 -[External Topic Properties\RsCILDescrbox] +[External Topic Properties\RsCompressionVhdName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2544 +ETPTopicOrder0=2105 -[External Topic Properties\RsCILDescrbr] +[External Topic Properties\RsCompressionWimExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2545 +ETPTopicOrder0=2106 -[External Topic Properties\RsCILDescrbreak] +[External Topic Properties\RsCompressionWimName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2546 +ETPTopicOrder0=2107 -[External Topic Properties\RsCILDescrbrfalse] +[External Topic Properties\RsCompressionWriteNotSupported] Count=1 ETPCommand0=2 -ETPTopicOrder0=2547 +ETPTopicOrder0=2108 -[External Topic Properties\RsCILDescrbrfalses] +[External Topic Properties\RsCompressionXarExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2548 +ETPTopicOrder0=2109 -[External Topic Properties\RsCILDescrbrs] +[External Topic Properties\RsCompressionXarName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2549 +ETPTopicOrder0=2110 -[External Topic Properties\RsCILDescrbrtrue] +[External Topic Properties\RsCompressionXzExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2550 +ETPTopicOrder0=2111 -[External Topic Properties\RsCILDescrbrtrues] +[External Topic Properties\RsCompressionXzName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2551 +ETPTopicOrder0=2112 -[External Topic Properties\RsCILDescrcall] +[External Topic Properties\RsCompressionZExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2552 +ETPTopicOrder0=2113 -[External Topic Properties\RsCILDescrcalli] +[External Topic Properties\RsCompressionZipExtensions] Count=1 ETPCommand0=2 -ETPTopicOrder0=2553 +ETPTopicOrder0=2114 -[External Topic Properties\RsCILDescrcallvirt] +[External Topic Properties\RsCompressionZipName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2554 +ETPTopicOrder0=2115 -[External Topic Properties\RsCILDescrcastclass] +[External Topic Properties\RsCompressionZLibError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2555 +ETPTopicOrder0=2116 -[External Topic Properties\RsCILDescrceq] +[External Topic Properties\RsCompressionZLibZBufError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2556 +ETPTopicOrder0=2117 -[External Topic Properties\RsCILDescrcgt] +[External Topic Properties\RsCompressionZLibZDataError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2557 +ETPTopicOrder0=2118 -[External Topic Properties\RsCILDescrcgtun] +[External Topic Properties\RsCompressionZLibZErrNo] Count=1 ETPCommand0=2 -ETPTopicOrder0=2558 +ETPTopicOrder0=2119 -[External Topic Properties\RsCILDescrckfinite] +[External Topic Properties\RsCompressionZLibZMemError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2559 +ETPTopicOrder0=2120 -[External Topic Properties\RsCILDescrclt] +[External Topic Properties\RsCompressionZLibZStreamError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2560 +ETPTopicOrder0=2121 -[External Topic Properties\RsCILDescrcltun] +[External Topic Properties\RsCompressionZLibZVersionError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2561 +ETPTopicOrder0=2122 -[External Topic Properties\RsCILDescrconvi] +[External Topic Properties\RsCompressionZName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2562 +ETPTopicOrder0=2123 -[External Topic Properties\RsCILDescrconvi1] +[External Topic Properties\RsConvTempBelowAbsoluteZero] Count=1 ETPCommand0=2 -ETPTopicOrder0=2563 +ETPTopicOrder0=2124 -[External Topic Properties\RsCILDescrconvi2] +[External Topic Properties\RsCreateCompatibleDc] Count=1 ETPCommand0=2 -ETPTopicOrder0=2564 +ETPTopicOrder0=2125 -[External Topic Properties\RsCILDescrconvi4] +[External Topic Properties\RsCreateFileMapping] Count=1 ETPCommand0=2 -ETPTopicOrder0=2565 +ETPTopicOrder0=2126 -[External Topic Properties\RsCILDescrconvi8] +[External Topic Properties\RsCreateFileMappingView] Count=1 ETPCommand0=2 -ETPTopicOrder0=2566 +ETPTopicOrder0=2127 -[External Topic Properties\RsCILDescrconvovfi] +[External Topic Properties\RsCreateProcAccessDenied] Count=1 ETPCommand0=2 -ETPTopicOrder0=2567 +ETPTopicOrder0=2128 -[External Topic Properties\RsCILDescrconvovfi1] +[External Topic Properties\RsCreateProcBuild1057Error] Count=1 ETPCommand0=2 -ETPTopicOrder0=2568 +ETPTopicOrder0=2129 -[External Topic Properties\RsCILDescrconvovfi1un] +[External Topic Properties\RsCreateProcCommandNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=2569 +ETPTopicOrder0=2130 -[External Topic Properties\RsCILDescrconvovfi2] +[External Topic Properties\RsCreateProcFailed] Count=1 ETPCommand0=2 -ETPTopicOrder0=2570 +ETPTopicOrder0=2131 -[External Topic Properties\RsCILDescrconvovfi2un] +[External Topic Properties\RsCreateProcLogonFailed] Count=1 ETPCommand0=2 -ETPTopicOrder0=2571 +ETPTopicOrder0=2132 -[External Topic Properties\RsCILDescrconvovfi4] +[External Topic Properties\RsCreateProcLogonUserError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2572 +ETPTopicOrder0=2133 -[External Topic Properties\RsCILDescrconvovfi4un] +[External Topic Properties\RsCreateProcNTRequiredError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2573 +ETPTopicOrder0=2134 -[External Topic Properties\RsCILDescrconvovfi8] +[External Topic Properties\RsCreateProcOSVersionError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2574 +ETPTopicOrder0=2868 -[External Topic Properties\RsCILDescrconvovfi8un] +[External Topic Properties\RsCreateProcPrivilegeMissing] Count=1 ETPCommand0=2 -ETPTopicOrder0=2575 +ETPTopicOrder0=2135 -[External Topic Properties\RsCILDescrconvovfiun] +[External Topic Properties\RsCreateProcPrivilegesMissing] Count=1 ETPCommand0=2 -ETPTopicOrder0=2576 +ETPTopicOrder0=2136 -[External Topic Properties\RsCILDescrconvovfu] +[External Topic Properties\RsCreateProcSetDesktopSecurityError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2577 +ETPTopicOrder0=2137 -[External Topic Properties\RsCILDescrconvovfu1] +[External Topic Properties\RsCreateProcSetStationSecurityError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2578 +ETPTopicOrder0=2138 -[External Topic Properties\RsCILDescrconvovfu1un] +[External Topic Properties\RsCreatingJdbg] Count=1 ETPCommand0=2 -ETPTopicOrder0=2579 +ETPTopicOrder0=2139 -[External Topic Properties\RsCILDescrconvovfu2] +[External Topic Properties\RsCSharpName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2580 +ETPTopicOrder0=2140 -[External Topic Properties\RsCILDescrconvovfu2un] +[External Topic Properties\RsDateConversion] Count=1 ETPCommand0=2 -ETPTopicOrder0=2581 +ETPTopicOrder0=2141 -[External Topic Properties\RsCILDescrconvovfu4] +[External Topic Properties\RsDebugAssertValidPointer] Count=1 ETPCommand0=2 -ETPTopicOrder0=2582 +ETPTopicOrder0=2876 -[External Topic Properties\RsCILDescrconvovfu4un] +[External Topic Properties\RsDebugAssertValidString] Count=1 ETPCommand0=2 -ETPTopicOrder0=2583 +ETPTopicOrder0=2877 -[External Topic Properties\RsCILDescrconvovfu8] +[External Topic Properties\RsDebugNoProcessInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=2584 +ETPTopicOrder0=2878 -[External Topic Properties\RsCILDescrconvovfu8un] +[External Topic Properties\RsDebugSnapshot] Count=1 ETPCommand0=2 -ETPTopicOrder0=2585 +ETPTopicOrder0=2879 -[External Topic Properties\RsCILDescrconvovfuun] +[External Topic Properties\RsDeclarationFormat] Count=1 ETPCommand0=2 -ETPTopicOrder0=2586 +ETPTopicOrder0=2142 -[External Topic Properties\RsCILDescrconvr4] +[External Topic Properties\RsDecomposedUnicodeChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=2587 +ETPTopicOrder0=2143 -[External Topic Properties\RsCILDescrconvr8] +[External Topic Properties\RsDefaultFileTypeName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2588 +ETPTopicOrder0=2144 -[External Topic Properties\RsCILDescrconvrun] +[External Topic Properties\RsDeletingFile] Count=1 ETPCommand0=2 -ETPTopicOrder0=2589 +ETPTopicOrder0=2145 -[External Topic Properties\RsCILDescrconvu] +[External Topic Properties\RsDelphiName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2590 +ETPTopicOrder0=2146 -[External Topic Properties\RsCILDescrconvu1] +[External Topic Properties\RsDelphiNetName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2591 +ETPTopicOrder0=2885 -[External Topic Properties\RsCILDescrconvu2] +[External Topic Properties\RsDelTreePathIsEmpty] Count=1 ETPCommand0=2 -ETPTopicOrder0=2592 +ETPTopicOrder0=2147 -[External Topic Properties\RsCILDescrconvu4] +[External Topic Properties\RsDestinationBitmapEmpty] Count=1 ETPCommand0=2 -ETPTopicOrder0=2593 +ETPTopicOrder0=2148 -[External Topic Properties\RsCILDescrconvu8] +[External Topic Properties\RsDeviceMode] Count=1 ETPCommand0=2 -ETPTopicOrder0=2594 +ETPTopicOrder0=2149 -[External Topic Properties\RsCILDescrcpblk] +[External Topic Properties\RsDibHandleAllocation] Count=1 ETPCommand0=2 -ETPTopicOrder0=2595 +ETPTopicOrder0=2150 -[External Topic Properties\RsCILDescrcpobj] +[External Topic Properties\RsDivByZero] Count=1 ETPCommand0=2 -ETPTopicOrder0=2596 +ETPTopicOrder0=2151 -[External Topic Properties\RsCILDescrdiv] +[External Topic Properties\RsDotNetFormatArgumentNotSupported] Count=1 ETPCommand0=2 -ETPTopicOrder0=2597 +ETPTopicOrder0=2152 -[External Topic Properties\RsCILDescrdivun] +[External Topic Properties\RsDotNetFormatNullFormat] Count=1 ETPCommand0=2 -ETPTopicOrder0=2598 +ETPTopicOrder0=2153 -[External Topic Properties\RsCILDescrdup] +[External Topic Properties\RsDynArrayError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2599 +ETPTopicOrder0=2893 -[External Topic Properties\RsCILDescrendfilter] +[External Topic Properties\RsEAssignError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2600 +ETPTopicOrder0=2154 -[External Topic Properties\RsCILDescrendfinally] +[External Topic Properties\RsEAutoAdjustNotEnabled] Count=1 ETPCommand0=2 -ETPTopicOrder0=2601 +ETPTopicOrder0=2155 -[External Topic Properties\RsCILDescrinitblk] +[External Topic Properties\RsECannotInstallRunOnly] Count=1 ETPCommand0=2 -ETPTopicOrder0=2602 +ETPTopicOrder0=2156 -[External Topic Properties\RsCILDescrinitobj] +[External Topic Properties\RsECmdLineToolOutputInvalid] Count=1 ETPCommand0=2 -ETPTopicOrder0=2603 +ETPTopicOrder0=2157 -[External Topic Properties\RsCILDescrisinst] +[External Topic Properties\RsEDaylightSavingsNotSupported] Count=1 ETPCommand0=2 -ETPTopicOrder0=2604 +ETPTopicOrder0=2158 -[External Topic Properties\RsCILDescrjmp] +[External Topic Properties\RsEDIError001] Count=1 ETPCommand0=2 -ETPTopicOrder0=2605 +ETPTopicOrder0=2896 -[External Topic Properties\RsCILDescrldarg] +[External Topic Properties\RsEDIError002] Count=1 ETPCommand0=2 -ETPTopicOrder0=2606 +ETPTopicOrder0=2897 -[External Topic Properties\RsCILDescrldarg0] +[External Topic Properties\RsEDIError003] Count=1 ETPCommand0=2 -ETPTopicOrder0=2607 +ETPTopicOrder0=2898 -[External Topic Properties\RsCILDescrldarg1] +[External Topic Properties\RsEDIError004] Count=1 ETPCommand0=2 -ETPTopicOrder0=2608 +ETPTopicOrder0=2899 -[External Topic Properties\RsCILDescrldarg2] +[External Topic Properties\RsEDIError005] Count=1 ETPCommand0=2 -ETPTopicOrder0=2609 +ETPTopicOrder0=2900 -[External Topic Properties\RsCILDescrldarg3] +[External Topic Properties\RsEDIError006] Count=1 ETPCommand0=2 -ETPTopicOrder0=2610 +ETPTopicOrder0=2901 -[External Topic Properties\RsCILDescrldarga] +[External Topic Properties\RsEDIError007] Count=1 ETPCommand0=2 -ETPTopicOrder0=2611 +ETPTopicOrder0=2902 -[External Topic Properties\RsCILDescrldargas] +[External Topic Properties\RsEDIError008] Count=1 ETPCommand0=2 -ETPTopicOrder0=2612 +ETPTopicOrder0=2903 -[External Topic Properties\RsCILDescrldargs] +[External Topic Properties\RsEDIError009] Count=1 ETPCommand0=2 -ETPTopicOrder0=2613 +ETPTopicOrder0=2904 -[External Topic Properties\RsCILDescrldci4] +[External Topic Properties\RsEDIError010] Count=1 ETPCommand0=2 -ETPTopicOrder0=2614 +ETPTopicOrder0=2905 -[External Topic Properties\RsCILDescrldci40] +[External Topic Properties\RsEDIError011] Count=1 ETPCommand0=2 -ETPTopicOrder0=2615 +ETPTopicOrder0=2906 -[External Topic Properties\RsCILDescrldci41] +[External Topic Properties\RsEDIError012] Count=1 ETPCommand0=2 -ETPTopicOrder0=2616 +ETPTopicOrder0=2907 -[External Topic Properties\RsCILDescrldci42] +[External Topic Properties\RsEDIError013] Count=1 ETPCommand0=2 -ETPTopicOrder0=2617 +ETPTopicOrder0=2908 -[External Topic Properties\RsCILDescrldci43] +[External Topic Properties\RsEDIError014] Count=1 ETPCommand0=2 -ETPTopicOrder0=2618 +ETPTopicOrder0=2909 -[External Topic Properties\RsCILDescrldci44] +[External Topic Properties\RsEDIError015] Count=1 ETPCommand0=2 -ETPTopicOrder0=2619 +ETPTopicOrder0=2910 -[External Topic Properties\RsCILDescrldci45] +[External Topic Properties\RsEDIError016] Count=1 ETPCommand0=2 -ETPTopicOrder0=2620 +ETPTopicOrder0=2911 -[External Topic Properties\RsCILDescrldci46] +[External Topic Properties\RsEDIError017] Count=1 ETPCommand0=2 -ETPTopicOrder0=2621 +ETPTopicOrder0=2912 -[External Topic Properties\RsCILDescrldci47] +[External Topic Properties\RsEDIError018] Count=1 ETPCommand0=2 -ETPTopicOrder0=2622 +ETPTopicOrder0=2913 -[External Topic Properties\RsCILDescrldci48] +[External Topic Properties\RsEDIError019] Count=1 ETPCommand0=2 -ETPTopicOrder0=2623 +ETPTopicOrder0=2914 -[External Topic Properties\RsCILDescrldci4m1] +[External Topic Properties\RsEDIError020] Count=1 ETPCommand0=2 -ETPTopicOrder0=2624 +ETPTopicOrder0=2915 -[External Topic Properties\RsCILDescrldci4s] +[External Topic Properties\RsEDIError021] Count=1 ETPCommand0=2 -ETPTopicOrder0=2625 +ETPTopicOrder0=2916 -[External Topic Properties\RsCILDescrldci8] +[External Topic Properties\RsEDIError022] Count=1 ETPCommand0=2 -ETPTopicOrder0=2626 +ETPTopicOrder0=2917 -[External Topic Properties\RsCILDescrldcr4] +[External Topic Properties\RsEDIError023] Count=1 ETPCommand0=2 -ETPTopicOrder0=2627 +ETPTopicOrder0=2918 -[External Topic Properties\RsCILDescrldcr8] +[External Topic Properties\RsEDIError024] Count=1 ETPCommand0=2 -ETPTopicOrder0=2628 +ETPTopicOrder0=2919 -[External Topic Properties\RsCILDescrldelema] +[External Topic Properties\RsEDIError025] Count=1 ETPCommand0=2 -ETPTopicOrder0=2629 +ETPTopicOrder0=2920 -[External Topic Properties\RsCILDescrldelemi] +[External Topic Properties\RsEDIError026] Count=1 ETPCommand0=2 -ETPTopicOrder0=2630 +ETPTopicOrder0=2921 -[External Topic Properties\RsCILDescrldelemi1] +[External Topic Properties\RsEDIError027] Count=1 ETPCommand0=2 -ETPTopicOrder0=2631 +ETPTopicOrder0=2922 -[External Topic Properties\RsCILDescrldelemi2] +[External Topic Properties\RsEDIError028] Count=1 ETPCommand0=2 -ETPTopicOrder0=2632 +ETPTopicOrder0=2923 -[External Topic Properties\RsCILDescrldelemi4] +[External Topic Properties\RsEDIError029] Count=1 ETPCommand0=2 -ETPTopicOrder0=2633 +ETPTopicOrder0=2924 -[External Topic Properties\RsCILDescrldelemi8] +[External Topic Properties\RsEDIError030] Count=1 ETPCommand0=2 -ETPTopicOrder0=2634 +ETPTopicOrder0=2925 -[External Topic Properties\RsCILDescrldelemr4] +[External Topic Properties\RsEDIError031] Count=1 ETPCommand0=2 -ETPTopicOrder0=2635 +ETPTopicOrder0=2926 -[External Topic Properties\RsCILDescrldelemr8] +[External Topic Properties\RsEDIError032] Count=1 ETPCommand0=2 -ETPTopicOrder0=2636 +ETPTopicOrder0=2927 -[External Topic Properties\RsCILDescrldelemref] +[External Topic Properties\RsEDIError033] Count=1 ETPCommand0=2 -ETPTopicOrder0=2637 +ETPTopicOrder0=2928 -[External Topic Properties\RsCILDescrldelemu1] +[External Topic Properties\RsEDIError034] Count=1 ETPCommand0=2 -ETPTopicOrder0=2638 +ETPTopicOrder0=2929 -[External Topic Properties\RsCILDescrldelemu2] +[External Topic Properties\RsEDIError035] Count=1 ETPCommand0=2 -ETPTopicOrder0=2639 +ETPTopicOrder0=2930 -[External Topic Properties\RsCILDescrldelemu4] +[External Topic Properties\RsEDIError036] Count=1 ETPCommand0=2 -ETPTopicOrder0=2640 +ETPTopicOrder0=2931 -[External Topic Properties\RsCILDescrldfld] +[External Topic Properties\RsEDIError037] Count=1 ETPCommand0=2 -ETPTopicOrder0=2641 +ETPTopicOrder0=2932 -[External Topic Properties\RsCILDescrldflda] +[External Topic Properties\RsEDIError038] Count=1 ETPCommand0=2 -ETPTopicOrder0=2642 +ETPTopicOrder0=2933 -[External Topic Properties\RsCILDescrldftn] +[External Topic Properties\RsEDIError039] Count=1 ETPCommand0=2 -ETPTopicOrder0=2643 +ETPTopicOrder0=2934 -[External Topic Properties\RsCILDescrldindi] +[External Topic Properties\RsEDIError040] Count=1 ETPCommand0=2 -ETPTopicOrder0=2644 +ETPTopicOrder0=2935 -[External Topic Properties\RsCILDescrldindi1] +[External Topic Properties\RsEDIError041] Count=1 ETPCommand0=2 -ETPTopicOrder0=2645 +ETPTopicOrder0=2936 -[External Topic Properties\RsCILDescrldindi2] +[External Topic Properties\RsEDIError042] Count=1 ETPCommand0=2 -ETPTopicOrder0=2646 +ETPTopicOrder0=2937 -[External Topic Properties\RsCILDescrldindi4] +[External Topic Properties\RsEDIError043] Count=1 ETPCommand0=2 -ETPTopicOrder0=2647 +ETPTopicOrder0=2938 -[External Topic Properties\RsCILDescrldindi8] +[External Topic Properties\RsEDIError044] Count=1 ETPCommand0=2 -ETPTopicOrder0=2648 +ETPTopicOrder0=2939 -[External Topic Properties\RsCILDescrldindr4] +[External Topic Properties\RsEDIError045] Count=1 ETPCommand0=2 -ETPTopicOrder0=2649 +ETPTopicOrder0=2940 -[External Topic Properties\RsCILDescrldindr8] +[External Topic Properties\RsEDIError046] Count=1 ETPCommand0=2 -ETPTopicOrder0=2650 +ETPTopicOrder0=2941 -[External Topic Properties\RsCILDescrldindref] +[External Topic Properties\RsEDIError047] Count=1 ETPCommand0=2 -ETPTopicOrder0=2651 +ETPTopicOrder0=2942 -[External Topic Properties\RsCILDescrldindu1] +[External Topic Properties\RsEDIError048] Count=1 ETPCommand0=2 -ETPTopicOrder0=2652 +ETPTopicOrder0=2943 -[External Topic Properties\RsCILDescrldindu2] +[External Topic Properties\RsEDIError049] Count=1 ETPCommand0=2 -ETPTopicOrder0=2653 +ETPTopicOrder0=2944 -[External Topic Properties\RsCILDescrldindu4] +[External Topic Properties\RsEDIError050] Count=1 ETPCommand0=2 -ETPTopicOrder0=2654 +ETPTopicOrder0=2945 -[External Topic Properties\RsCILDescrldlen] +[External Topic Properties\RsEDIError051] Count=1 ETPCommand0=2 -ETPTopicOrder0=2655 +ETPTopicOrder0=2946 -[External Topic Properties\RsCILDescrldloc] +[External Topic Properties\RsEDIError052] Count=1 ETPCommand0=2 -ETPTopicOrder0=2656 +ETPTopicOrder0=2947 -[External Topic Properties\RsCILDescrldloc0] +[External Topic Properties\RsEDIError053] Count=1 ETPCommand0=2 -ETPTopicOrder0=2657 +ETPTopicOrder0=2948 -[External Topic Properties\RsCILDescrldloc1] +[External Topic Properties\RsEDIError054] Count=1 ETPCommand0=2 -ETPTopicOrder0=2658 +ETPTopicOrder0=2949 -[External Topic Properties\RsCILDescrldloc2] +[External Topic Properties\RsEDIError055] Count=1 ETPCommand0=2 -ETPTopicOrder0=2659 +ETPTopicOrder0=2950 -[External Topic Properties\RsCILDescrldloc3] +[External Topic Properties\RsEDIError056] Count=1 ETPCommand0=2 -ETPTopicOrder0=2660 +ETPTopicOrder0=2951 -[External Topic Properties\RsCILDescrldloca] +[External Topic Properties\RsEDIError057] Count=1 ETPCommand0=2 -ETPTopicOrder0=2661 +ETPTopicOrder0=2952 -[External Topic Properties\RsCILDescrldlocas] +[External Topic Properties\RsEDIError058] Count=1 ETPCommand0=2 -ETPTopicOrder0=2662 +ETPTopicOrder0=2953 -[External Topic Properties\RsCILDescrldlocs] +[External Topic Properties\RsEditionWin7Enterprise] Count=1 ETPCommand0=2 -ETPTopicOrder0=2663 +ETPTopicOrder0=2159 -[External Topic Properties\RsCILDescrldnull] +[External Topic Properties\RsEditionWin7HomeBasic] Count=1 ETPCommand0=2 -ETPTopicOrder0=2664 +ETPTopicOrder0=2160 -[External Topic Properties\RsCILDescrldobj] +[External Topic Properties\RsEditionWin7HomePremium] Count=1 ETPCommand0=2 -ETPTopicOrder0=2665 +ETPTopicOrder0=2161 -[External Topic Properties\RsCILDescrldsfld] +[External Topic Properties\RsEditionWin7Professional] Count=1 ETPCommand0=2 -ETPTopicOrder0=2666 +ETPTopicOrder0=2162 -[External Topic Properties\RsCILDescrldsflda] +[External Topic Properties\RsEditionWin7Starter] Count=1 ETPCommand0=2 -ETPTopicOrder0=2667 +ETPTopicOrder0=2163 -[External Topic Properties\RsCILDescrldstr] +[External Topic Properties\RsEditionWin7Ultimate] Count=1 ETPCommand0=2 -ETPTopicOrder0=2668 +ETPTopicOrder0=2164 -[External Topic Properties\RsCILDescrldtoken] +[External Topic Properties\RsEditionWinVistaBusiness] Count=1 ETPCommand0=2 -ETPTopicOrder0=2669 +ETPTopicOrder0=2165 -[External Topic Properties\RsCILDescrldvirtftn] +[External Topic Properties\RsEditionWinVistaBusinessN] Count=1 ETPCommand0=2 -ETPTopicOrder0=2670 +ETPTopicOrder0=2166 -[External Topic Properties\RsCILDescrleave] +[External Topic Properties\RsEditionWinVistaEnterprise] Count=1 ETPCommand0=2 -ETPTopicOrder0=2671 +ETPTopicOrder0=2167 -[External Topic Properties\RsCILDescrleaves] +[External Topic Properties\RsEditionWinVistaHomeBasic] Count=1 ETPCommand0=2 -ETPTopicOrder0=2672 +ETPTopicOrder0=2168 -[External Topic Properties\RsCILDescrlocalloc] +[External Topic Properties\RsEditionWinVistaHomeBasicN] Count=1 ETPCommand0=2 -ETPTopicOrder0=2673 +ETPTopicOrder0=2169 -[External Topic Properties\RsCILDescrmkrefany] +[External Topic Properties\RsEditionWinVistaHomePremium] Count=1 ETPCommand0=2 -ETPTopicOrder0=2674 +ETPTopicOrder0=2170 -[External Topic Properties\RsCILDescrmul] +[External Topic Properties\RsEditionWinVistaStarter] Count=1 ETPCommand0=2 -ETPTopicOrder0=2675 +ETPTopicOrder0=2171 -[External Topic Properties\RsCILDescrmulovf] +[External Topic Properties\RsEditionWinVistaUltimate] Count=1 ETPCommand0=2 -ETPTopicOrder0=2676 +ETPTopicOrder0=2172 -[External Topic Properties\RsCILDescrmulovfun] +[External Topic Properties\RsEditionWinXPHome] Count=1 ETPCommand0=2 -ETPTopicOrder0=2677 +ETPTopicOrder0=2173 -[External Topic Properties\RsCILDescrneg] +[External Topic Properties\RsEditionWinXPHomeK] Count=1 ETPCommand0=2 -ETPTopicOrder0=2678 +ETPTopicOrder0=2174 -[External Topic Properties\RsCILDescrnewarr] +[External Topic Properties\RsEditionWinXPHomeKN] Count=1 ETPCommand0=2 -ETPTopicOrder0=2679 +ETPTopicOrder0=2175 -[External Topic Properties\RsCILDescrnewobj] +[External Topic Properties\RsEditionWinXPHomeN] Count=1 ETPCommand0=2 -ETPTopicOrder0=2680 +ETPTopicOrder0=2176 -[External Topic Properties\RsCILDescrnop] +[External Topic Properties\RsEditionWinXPMediaCenter] Count=1 ETPCommand0=2 -ETPTopicOrder0=2681 +ETPTopicOrder0=2177 -[External Topic Properties\RsCILDescrnot] +[External Topic Properties\RsEditionWinXPPro] Count=1 ETPCommand0=2 -ETPTopicOrder0=2682 +ETPTopicOrder0=2178 -[External Topic Properties\RsCILDescror] +[External Topic Properties\RsEditionWinXPProK] Count=1 ETPCommand0=2 -ETPTopicOrder0=2683 +ETPTopicOrder0=2179 -[External Topic Properties\RsCILDescrpop] +[External Topic Properties\RsEditionWinXPProKN] Count=1 ETPCommand0=2 -ETPTopicOrder0=2684 +ETPTopicOrder0=2180 -[External Topic Properties\RsCILDescrprefix1] +[External Topic Properties\RsEditionWinXPProN] Count=1 ETPCommand0=2 -ETPTopicOrder0=2685 +ETPTopicOrder0=2181 -[External Topic Properties\RsCILDescrprefix2] +[External Topic Properties\RsEditionWinXPStarter] Count=1 ETPCommand0=2 -ETPTopicOrder0=2686 +ETPTopicOrder0=2182 -[External Topic Properties\RsCILDescrprefix3] +[External Topic Properties\RsEditionWinXPTablet] Count=1 ETPCommand0=2 -ETPTopicOrder0=2687 +ETPTopicOrder0=2183 -[External Topic Properties\RsCILDescrprefix4] +[External Topic Properties\RsEDualPackageNotSupported] Count=1 ETPCommand0=2 -ETPTopicOrder0=2688 +ETPTopicOrder0=2184 -[External Topic Properties\RsCILDescrprefix5] +[External Topic Properties\RsEDuplicateElement] Count=1 ETPCommand0=2 -ETPTopicOrder0=2689 +ETPTopicOrder0=2185 -[External Topic Properties\RsCILDescrprefix6] +[External Topic Properties\RsEDuplicateUnit] Count=1 ETPCommand0=2 -ETPTopicOrder0=2690 +ETPTopicOrder0=2186 -[External Topic Properties\RsCILDescrprefix7] +[External Topic Properties\RsEEmptyFileName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2691 +ETPTopicOrder0=2187 -[External Topic Properties\RsCILDescrprefixref] +[External Topic Properties\RsEFunctionNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=2692 +ETPTopicOrder0=2188 -[External Topic Properties\RsCILDescrrefanytype] +[External Topic Properties\RsEGetBytesExFmt] Count=1 ETPCommand0=2 -ETPTopicOrder0=2693 +ETPTopicOrder0=2956 -[External Topic Properties\RsCILDescrrefanyval] +[External Topic Properties\RsEIllegalQueueCapacity] Count=1 ETPCommand0=2 -ETPTopicOrder0=2694 +ETPTopicOrder0=2189 -[External Topic Properties\RsCILDescrrem] +[External Topic Properties\RsEIllegalStateOperation] Count=1 ETPCommand0=2 -ETPTopicOrder0=2695 +ETPTopicOrder0=2190 -[External Topic Properties\RsCILDescrremun] +[External Topic Properties\RsEIncomatibleDataFormat] Count=1 ETPCommand0=2 -ETPTopicOrder0=2696 +ETPTopicOrder0=2191 -[External Topic Properties\RsCILDescrret] +[External Topic Properties\RsEIndexOufOfRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=2697 +ETPTopicOrder0=2192 -[External Topic Properties\RsCILDescrrethrow] +[External Topic Properties\RsEInvalidCDATAExpectedsButFounds] Count=1 ETPCommand0=2 -ETPTopicOrder0=2698 +ETPTopicOrder0=2193 -[External Topic Properties\RsCILDescrshl] +[External Topic Properties\RsEInvalidCDATAUnexpectedEndOfData] Count=1 ETPCommand0=2 -ETPTopicOrder0=2699 +ETPTopicOrder0=2194 -[External Topic Properties\RsCILDescrshr] +[External Topic Properties\RsEInvalidCommentExpectedsButFounds] Count=1 ETPCommand0=2 -ETPTopicOrder0=2700 +ETPTopicOrder0=2195 -[External Topic Properties\RsCILDescrshrun] +[External Topic Properties\RsEInvalidCommentNotAllowedInsideComme] Count=1 ETPCommand0=2 -ETPTopicOrder0=2701 +ETPTopicOrder0=2196 -[External Topic Properties\RsCILDescrsizeof] +[External Topic Properties\RsEInvalidCommentUnexpectedEndOfData] Count=1 ETPCommand0=2 -ETPTopicOrder0=2702 +ETPTopicOrder0=2197 -[External Topic Properties\RsCILDescrstarg] +[External Topic Properties\RsEInvalidDocumentUnexpectedTextInFile] Count=1 ETPCommand0=2 -ETPTopicOrder0=2703 +ETPTopicOrder0=2198 -[External Topic Properties\RsCILDescrstargs] +[External Topic Properties\RsEInvalidHeaderExpectedsButFounds] Count=1 ETPCommand0=2 -ETPTopicOrder0=2704 +ETPTopicOrder0=2199 -[External Topic Properties\RsCILDescrstelemi] +[External Topic Properties\RsEInvalidLibrary] Count=1 ETPCommand0=2 -ETPTopicOrder0=2705 +ETPTopicOrder0=2200 -[External Topic Properties\RsCILDescrstelemi1] +[External Topic Properties\RsEInvalidMSOExpectedsButFounds] Count=1 ETPCommand0=2 -ETPTopicOrder0=2706 +ETPTopicOrder0=2201 -[External Topic Properties\RsCILDescrstelemi2] +[External Topic Properties\RsEInvalidMSOUnexpectedEndOfDat] Count=1 ETPCommand0=2 -ETPTopicOrder0=2707 +ETPTopicOrder0=2202 -[External Topic Properties\RsCILDescrstelemi4] +[External Topic Properties\RsEInvalidProgram] Count=1 ETPCommand0=2 -ETPTopicOrder0=2708 +ETPTopicOrder0=2203 -[External Topic Properties\RsCILDescrstelemi8] +[External Topic Properties\RsEInvalidStylesheetExpectedsButFounds] Count=1 ETPCommand0=2 -ETPTopicOrder0=2709 +ETPTopicOrder0=2204 -[External Topic Properties\RsCILDescrstelemr4] +[External Topic Properties\RsEInvalidStylesheetUnexpectedEndOfDat] Count=1 ETPCommand0=2 -ETPTopicOrder0=2710 +ETPTopicOrder0=2205 -[External Topic Properties\RsCILDescrstelemr8] +[External Topic Properties\RsEInvalidUnit] Count=1 ETPCommand0=2 -ETPTopicOrder0=2711 +ETPTopicOrder0=2206 -[External Topic Properties\RsCILDescrstelemref] +[External Topic Properties\RsEInvalidUses] Count=1 ETPCommand0=2 -ETPTopicOrder0=2712 +ETPTopicOrder0=2207 -[External Topic Properties\RsCILDescrstfld] +[External Topic Properties\RsEInvalidXMLElementErroneousEndOfTagE] Count=1 ETPCommand0=2 -ETPTopicOrder0=2713 +ETPTopicOrder0=2208 -[External Topic Properties\RsCILDescrstindi] +[External Topic Properties\RsEInvalidXMLElementExpectedBeginningO] Count=1 ETPCommand0=2 -ETPTopicOrder0=2714 +ETPTopicOrder0=2209 -[External Topic Properties\RsCILDescrstindi1] +[External Topic Properties\RsEInvalidXMLElementExpectedEndOfTagBu] Count=1 ETPCommand0=2 -ETPTopicOrder0=2715 +ETPTopicOrder0=2210 -[External Topic Properties\RsCILDescrstindi2] +[External Topic Properties\RsEInvalidXMLElementMalformedTagFoundn] Count=1 ETPCommand0=2 -ETPTopicOrder0=2716 +ETPTopicOrder0=2211 -[External Topic Properties\RsCILDescrstindi4] +[External Topic Properties\RsEInvalidXMLElementUnexpectedCharacte] Count=1 ETPCommand0=2 -ETPTopicOrder0=2717 +ETPTopicOrder0=2212 -[External Topic Properties\RsCILDescrstindi8] +[External Topic Properties\RsEInvalidXMLElementUnexpectedCharacte_] Count=1 ETPCommand0=2 -ETPTopicOrder0=2718 +ETPTopicOrder0=2213 -[External Topic Properties\RsCILDescrstindr4] +[External Topic Properties\RsELibraryNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=2719 +ETPTopicOrder0=2214 -[External Topic Properties\RsCILDescrstindr8] +[External Topic Properties\RsEModuleNotValid] Count=1 ETPCommand0=2 -ETPTopicOrder0=2720 +ETPTopicOrder0=2215 -[External Topic Properties\RsCILDescrstindref] +[External Topic Properties\RsEmptyArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=2721 +ETPTopicOrder0=2216 -[External Topic Properties\RsCILDescrstloc] +[External Topic Properties\RsENoCallbackFunc] Count=1 ETPCommand0=2 -ETPTopicOrder0=2722 +ETPTopicOrder0=2217 -[External Topic Properties\RsCILDescrstloc0] +[External Topic Properties\RsENoCharset] Count=1 ETPCommand0=2 -ETPTopicOrder0=2723 +ETPTopicOrder0=2218 -[External Topic Properties\RsCILDescrstloc1] +[External Topic Properties\RsENoCollection] Count=1 ETPCommand0=2 -ETPTopicOrder0=2724 +ETPTopicOrder0=2219 -[External Topic Properties\RsCILDescrstloc2] +[External Topic Properties\RsENoComparer] Count=1 ETPCommand0=2 -ETPTopicOrder0=2725 +ETPTopicOrder0=2220 -[External Topic Properties\RsCILDescrstloc3] +[External Topic Properties\RsENoEqualityComparer] Count=1 ETPCommand0=2 -ETPTopicOrder0=2726 +ETPTopicOrder0=2221 -[External Topic Properties\RsCILDescrstlocs] +[External Topic Properties\RsENoHashConverter] Count=1 ETPCommand0=2 -ETPTopicOrder0=2727 +ETPTopicOrder0=2222 -[External Topic Properties\RsCILDescrstobj] +[External Topic Properties\RsENoOpenHelp] Count=1 ETPCommand0=2 -ETPTopicOrder0=2728 +ETPTopicOrder0=2223 -[External Topic Properties\RsCILDescrstsfld] +[External Topic Properties\RsENoSupportedPersonality] Count=1 ETPCommand0=2 -ETPTopicOrder0=2729 +ETPTopicOrder0=2224 -[External Topic Properties\RsCILDescrsub] +[External Topic Properties\RsENotABcbPackage] Count=1 ETPCommand0=2 -ETPTopicOrder0=2730 +ETPTopicOrder0=2225 -[External Topic Properties\RsCILDescrsubovf] +[External Topic Properties\RsENotABcbProject] Count=1 ETPCommand0=2 -ETPTopicOrder0=2731 +ETPTopicOrder0=2226 -[External Topic Properties\RsCILDescrsubovfun] +[External Topic Properties\RsENotADelphiPackage] Count=1 ETPCommand0=2 -ETPTopicOrder0=2732 +ETPTopicOrder0=2227 -[External Topic Properties\RsCILDescrswitch] +[External Topic Properties\RsENotADelphiProject] Count=1 ETPCommand0=2 -ETPTopicOrder0=2733 +ETPTopicOrder0=2228 -[External Topic Properties\RsCILDescrtail] +[External Topic Properties\RsENotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=2734 +ETPTopicOrder0=2229 -[External Topic Properties\RsCILDescrthrow] +[External Topic Properties\RSENoTortoiseCVS] Count=1 ETPCommand0=2 -ETPTopicOrder0=2735 +ETPTopicOrder0=2230 -[External Topic Properties\RsCILDescrunaligned] +[External Topic Properties\RSENoTortoiseSVN] Count=1 ETPCommand0=2 -ETPTopicOrder0=2736 +ETPTopicOrder0=2231 -[External Topic Properties\RsCILDescrunbox] +[External Topic Properties\RsEnterprise] Count=1 ETPCommand0=2 -ETPTopicOrder0=2737 +ETPTopicOrder0=2232 -[External Topic Properties\RsCILDescrunused1] +[External Topic Properties\RsEOpenDialogHookExists] Count=1 ETPCommand0=2 -ETPTopicOrder0=2738 +ETPTopicOrder0=2233 -[External Topic Properties\RsCILDescrunused10] +[External Topic Properties\RsEOpenGLInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=2739 +ETPTopicOrder0=2234 -[External Topic Properties\RsCILDescrunused11] +[External Topic Properties\RsEOperationNotSupported] Count=1 ETPCommand0=2 -ETPTopicOrder0=2740 +ETPTopicOrder0=2235 -[External Topic Properties\RsCILDescrunused12] +[External Topic Properties\RsEOutOfBounds] Count=1 ETPCommand0=2 -ETPTopicOrder0=2741 +ETPTopicOrder0=2236 -[External Topic Properties\RsCILDescrunused13] +[External Topic Properties\RsEProcessNotValid] Count=1 ETPCommand0=2 -ETPTopicOrder0=2742 +ETPTopicOrder0=2237 -[External Topic Properties\RsCILDescrunused14] +[External Topic Properties\RsEReadOnlyError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2743 +ETPTopicOrder0=2238 -[External Topic Properties\RsCILDescrunused15] +[External Topic Properties\RsEReplacementChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=2744 +ETPTopicOrder0=2239 -[External Topic Properties\RsCILDescrunused16] +[External Topic Properties\RsErrBadCount] Count=1 ETPCommand0=2 -ETPTopicOrder0=2745 +ETPTopicOrder0=2240 -[External Topic Properties\RsCILDescrunused17] +[External Topic Properties\RsErrBadMagic] Count=1 ETPCommand0=2 -ETPTopicOrder0=2746 +ETPTopicOrder0=2241 -[External Topic Properties\RsCILDescrunused18] +[External Topic Properties\RsErrBadNewLine] Count=1 ETPCommand0=2 -ETPTopicOrder0=2747 +ETPTopicOrder0=2242 -[External Topic Properties\RsCILDescrunused19] +[External Topic Properties\RsErrBadOption] Count=1 ETPCommand0=2 -ETPTopicOrder0=2748 +ETPTopicOrder0=2243 -[External Topic Properties\RsCILDescrunused2] +[External Topic Properties\RsErrBadPartial] Count=1 ETPCommand0=2 -ETPTopicOrder0=2749 +ETPTopicOrder0=2244 -[External Topic Properties\RsCILDescrunused20] +[External Topic Properties\RsErrBadUTF8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2750 +ETPTopicOrder0=2245 -[External Topic Properties\RsCILDescrunused21] +[External Topic Properties\RsErrBadUTF8Offset] Count=1 ETPCommand0=2 -ETPTopicOrder0=2751 +ETPTopicOrder0=2246 -[External Topic Properties\RsCILDescrunused22] +[External Topic Properties\RsErrCallout] Count=1 ETPCommand0=2 -ETPTopicOrder0=2752 +ETPTopicOrder0=2247 -[External Topic Properties\RsCILDescrunused23] +[External Topic Properties\RsErrCalloutError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2753 +ETPTopicOrder0=2248 -[External Topic Properties\RsCILDescrunused24] +[External Topic Properties\RsErrDfaRecurse] Count=1 ETPCommand0=2 -ETPTopicOrder0=2754 +ETPTopicOrder0=2249 -[External Topic Properties\RsCILDescrunused25] +[External Topic Properties\RsErrDfaUCond] Count=1 ETPCommand0=2 -ETPTopicOrder0=2755 +ETPTopicOrder0=2250 -[External Topic Properties\RsCILDescrunused26] +[External Topic Properties\RsErrDfaUItem] Count=1 ETPCommand0=2 -ETPTopicOrder0=2756 +ETPTopicOrder0=2251 -[External Topic Properties\RsCILDescrunused27] +[External Topic Properties\RsErrDfaUMLimit] Count=1 ETPCommand0=2 -ETPTopicOrder0=2757 +ETPTopicOrder0=2252 -[External Topic Properties\RsCILDescrunused28] +[External Topic Properties\RsErrDfaWSSize] Count=1 ETPCommand0=2 -ETPTopicOrder0=2758 +ETPTopicOrder0=2253 -[External Topic Properties\RsCILDescrunused29] +[External Topic Properties\RsErrInternal] Count=1 ETPCommand0=2 -ETPTopicOrder0=2759 +ETPTopicOrder0=2254 -[External Topic Properties\RsCILDescrunused3] +[External Topic Properties\RsErrLibNotLoaded] Count=1 ETPCommand0=2 -ETPTopicOrder0=2760 +ETPTopicOrder0=2255 -[External Topic Properties\RsCILDescrunused30] +[External Topic Properties\RsErrMatchLimit] Count=1 ETPCommand0=2 -ETPTopicOrder0=2761 +ETPTopicOrder0=2256 -[External Topic Properties\RsCILDescrunused31] +[External Topic Properties\RsErrMemFuncNotSet] Count=1 ETPCommand0=2 -ETPTopicOrder0=2762 +ETPTopicOrder0=2257 -[External Topic Properties\RsCILDescrunused32] +[External Topic Properties\RsErrNoMatch] Count=1 ETPCommand0=2 -ETPTopicOrder0=2763 +ETPTopicOrder0=2258 -[External Topic Properties\RsCILDescrunused33] +[External Topic Properties\RsErrNoMemory] Count=1 ETPCommand0=2 -ETPTopicOrder0=2764 +ETPTopicOrder0=2259 -[External Topic Properties\RsCILDescrunused34] +[External Topic Properties\RsErrNoSubString] Count=1 ETPCommand0=2 -ETPTopicOrder0=2765 +ETPTopicOrder0=2260 -[External Topic Properties\RsCILDescrunused35] +[External Topic Properties\RsErrNoUTF8Support] Count=1 ETPCommand0=2 -ETPTopicOrder0=2766 +ETPTopicOrder0=2261 -[External Topic Properties\RsCILDescrunused36] +[External Topic Properties\RsErrNull] Count=1 ETPCommand0=2 -ETPTopicOrder0=2767 +ETPTopicOrder0=2262 -[External Topic Properties\RsCILDescrunused37] +[External Topic Properties\RsErrNullWsLimit] Count=1 ETPCommand0=2 -ETPTopicOrder0=2768 +ETPTopicOrder0=2263 -[External Topic Properties\RsCILDescrunused38] +[External Topic Properties\RsErrPartial] Count=1 ETPCommand0=2 -ETPTopicOrder0=2769 +ETPTopicOrder0=2264 -[External Topic Properties\RsCILDescrunused39] +[External Topic Properties\RsErrRecursionLimit] Count=1 ETPCommand0=2 -ETPTopicOrder0=2770 +ETPTopicOrder0=2265 -[External Topic Properties\RsCILDescrunused4] +[External Topic Properties\RsErrStudyFailed] Count=1 ETPCommand0=2 -ETPTopicOrder0=2771 +ETPTopicOrder0=2266 -[External Topic Properties\RsCILDescrunused40] +[External Topic Properties\RsErrUnknownError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2772 +ETPTopicOrder0=2267 -[External Topic Properties\RsCILDescrunused41] +[External Topic Properties\RsErrUnknownNode] Count=1 ETPCommand0=2 -ETPTopicOrder0=2773 +ETPTopicOrder0=2268 -[External Topic Properties\RsCILDescrunused42] +[External Topic Properties\RsESetBytesExFmt] Count=1 ETPCommand0=2 -ETPTopicOrder0=2774 +ETPTopicOrder0=3015 -[External Topic Properties\RsCILDescrunused43] +[External Topic Properties\RsEUnableToCreatePropertyStorage] Count=1 ETPCommand0=2 -ETPTopicOrder0=2775 +ETPTopicOrder0=2269 -[External Topic Properties\RsCILDescrunused44] +[External Topic Properties\RsEUnexpectedEOSeq] Count=1 ETPCommand0=2 -ETPTopicOrder0=2776 +ETPTopicOrder0=2270 -[External Topic Properties\RsCILDescrunused45] +[External Topic Properties\RsEUnexpectedValueForLPos] Count=1 ETPCommand0=2 -ETPTopicOrder0=2777 +ETPTopicOrder0=2271 -[External Topic Properties\RsCILDescrunused46] +[External Topic Properties\RsEUnknownCLRVersion] Count=1 ETPCommand0=2 -ETPTopicOrder0=2778 +ETPTopicOrder0=2272 -[External Topic Properties\RsCILDescrunused47] +[External Topic Properties\RsEUnknownIdePackageExtension] Count=1 ETPCommand0=2 -ETPTopicOrder0=2779 +ETPTopicOrder0=2273 -[External Topic Properties\RsCILDescrunused48] +[External Topic Properties\RsEUnknownPackageExtension] Count=1 ETPCommand0=2 -ETPTopicOrder0=2780 +ETPTopicOrder0=2274 -[External Topic Properties\RsCILDescrunused49] +[External Topic Properties\RsEUnknownProjectExtension] Count=1 ETPCommand0=2 -ETPTopicOrder0=2781 +ETPTopicOrder0=2275 -[External Topic Properties\RsCILDescrunused5] +[External Topic Properties\RsEValueNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=2782 +ETPTopicOrder0=2276 -[External Topic Properties\RsCILDescrunused50] +[External Topic Properties\RsEWindowNotValid] Count=1 ETPCommand0=2 -ETPTopicOrder0=2783 +ETPTopicOrder0=2277 -[External Topic Properties\RsCILDescrunused51] +[External Topic Properties\RsEWindowsVersionNotSupported] Count=1 ETPCommand0=2 -ETPTopicOrder0=2784 +ETPTopicOrder0=2278 -[External Topic Properties\RsCILDescrunused52] +[External Topic Properties\RsEx64PlatformNotValid] Count=1 ETPCommand0=2 -ETPTopicOrder0=2785 +ETPTopicOrder0=2279 -[External Topic Properties\RsCILDescrunused53] +[External Topic Properties\RsExpertInstallationFinished] Count=1 ETPCommand0=2 -ETPTopicOrder0=2786 +ETPTopicOrder0=2280 -[External Topic Properties\RsCILDescrunused54] +[External Topic Properties\RsExpertInstallationStarted] Count=1 ETPCommand0=2 -ETPTopicOrder0=2787 +ETPTopicOrder0=2281 -[External Topic Properties\RsCILDescrunused55] +[External Topic Properties\RsExpertUninstallationFinished] Count=1 ETPCommand0=2 -ETPTopicOrder0=2788 +ETPTopicOrder0=2282 -[External Topic Properties\RsCILDescrunused56] +[External Topic Properties\RsExpertUninstallationStarted] Count=1 ETPCommand0=2 -ETPTopicOrder0=2789 +ETPTopicOrder0=2283 -[External Topic Properties\RsCILDescrunused57] +[External Topic Properties\RsExprEvalEndArgs] Count=1 ETPCommand0=2 -ETPTopicOrder0=2790 +ETPTopicOrder0=2284 -[External Topic Properties\RsCILDescrunused58] +[External Topic Properties\RsExprEvalExprNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=2791 +ETPTopicOrder0=2285 -[External Topic Properties\RsCILDescrunused59] +[External Topic Properties\RsExprEvalExprPtrNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=2792 +ETPTopicOrder0=2286 -[External Topic Properties\RsCILDescrunused6] +[External Topic Properties\RsExprEvalExprRefCountAssertion] Count=1 ETPCommand0=2 -ETPTopicOrder0=2793 +ETPTopicOrder0=2287 -[External Topic Properties\RsCILDescrunused60] +[External Topic Properties\RsExprEvalFactorExpected] Count=1 ETPCommand0=2 -ETPTopicOrder0=2794 +ETPTopicOrder0=2288 -[External Topic Properties\RsCILDescrunused61] +[External Topic Properties\RsExprEvalFirstArg] Count=1 ETPCommand0=2 -ETPTopicOrder0=2795 +ETPTopicOrder0=2289 -[External Topic Properties\RsCILDescrunused62] +[External Topic Properties\RsExprEvalNextArg] Count=1 ETPCommand0=2 -ETPTopicOrder0=2796 +ETPTopicOrder0=2290 -[External Topic Properties\RsCILDescrunused63] +[External Topic Properties\RsExprEvalRParenExpected] Count=1 ETPCommand0=2 -ETPTopicOrder0=2797 +ETPTopicOrder0=2291 -[External Topic Properties\RsCILDescrunused64] +[External Topic Properties\RsExprEvalUnknownSymbol] Count=1 ETPCommand0=2 -ETPTopicOrder0=2798 +ETPTopicOrder0=2292 -[External Topic Properties\RsCILDescrunused65] +[External Topic Properties\RsFailedToObtainSize] Count=1 ETPCommand0=2 -ETPTopicOrder0=2799 +ETPTopicOrder0=2293 -[External Topic Properties\RsCILDescrunused66] +[External Topic Properties\RsFileDeletionFailed] Count=1 ETPCommand0=2 -ETPTopicOrder0=2800 +ETPTopicOrder0=2294 -[External Topic Properties\RsCILDescrunused67] +[External Topic Properties\RsFileDeletionOk] Count=1 ETPCommand0=2 -ETPTopicOrder0=2801 +ETPTopicOrder0=2295 -[External Topic Properties\RsCILDescrunused68] +[External Topic Properties\RsFileIndexOutOfRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=2802 +ETPTopicOrder0=2296 -[External Topic Properties\RsCILDescrunused69] +[External Topic Properties\RsFileMappingInvalidHandle] Count=1 ETPCommand0=2 -ETPTopicOrder0=2803 +ETPTopicOrder0=2297 -[External Topic Properties\RsCILDescrunused7] +[External Topic Properties\RsFileMappingOpenFile] Count=1 ETPCommand0=2 -ETPTopicOrder0=2804 +ETPTopicOrder0=2298 -[External Topic Properties\RsCILDescrunused70] +[External Topic Properties\RsFileSearchAttrInconsistency] Count=1 ETPCommand0=2 -ETPTopicOrder0=2805 +ETPTopicOrder0=2299 -[External Topic Properties\RsCILDescrunused8] +[External Topic Properties\RsFileStreamCreate] Count=1 ETPCommand0=2 -ETPTopicOrder0=2806 +ETPTopicOrder0=2300 -[External Topic Properties\RsCILDescrunused9] +[External Topic Properties\RsFileUtilsAttrUnavailable] Count=1 ETPCommand0=2 -ETPTopicOrder0=2807 +ETPTopicOrder0=2301 -[External Topic Properties\RsCILDescrvolatile] +[External Topic Properties\RsFileUtilsEmptyValue] Count=1 ETPCommand0=2 -ETPTopicOrder0=2808 +ETPTopicOrder0=2302 -[External Topic Properties\RsCILDescrxor] +[External Topic Properties\RsFileUtilsFileDoesNotExist] Count=1 ETPCommand0=2 -ETPTopicOrder0=2809 +ETPTopicOrder0=2303 -[External Topic Properties\RsCleaningFailed] +[External Topic Properties\RsFileUtilsLanguageIndex] Count=1 ETPCommand0=2 -ETPTopicOrder0=2810 +ETPTopicOrder0=2304 -[External Topic Properties\RsCleaningOk] +[External Topic Properties\RsFileUtilsNoVersionInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=2811 +ETPTopicOrder0=2305 -[External Topic Properties\RsCleaningPackageCache] +[External Topic Properties\RsFileUtilsValueNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=2812 +ETPTopicOrder0=2306 -[External Topic Properties\RsClientServer] +[External Topic Properties\RsFormatBadArgumentType] Count=1 ETPCommand0=2 -ETPTopicOrder0=2813 +ETPTopicOrder0=3048 -[External Topic Properties\RsClrCopyright] +[External Topic Properties\RsFormatBadArgumentTypeEx] Count=1 ETPCommand0=2 -ETPTopicOrder0=2814 +ETPTopicOrder0=3049 -[External Topic Properties\RsCombiningClassUnicodeChar] +[External Topic Properties\RsFormatException] Count=1 ETPCommand0=2 -ETPTopicOrder0=2815 +ETPTopicOrder0=2307 -[External Topic Properties\RsComFailedStreamRead] +[External Topic Properties\RsFormatNoArgument] Count=1 ETPCommand0=2 -ETPTopicOrder0=2816 +ETPTopicOrder0=3051 -[External Topic Properties\RsComFailedStreamWrite] +[External Topic Properties\RsFormatNoArgumentEx] Count=1 ETPCommand0=2 -ETPTopicOrder0=2817 +ETPTopicOrder0=3052 -[External Topic Properties\RsComInvalidParam] +[External Topic Properties\RsFormatSyntaxError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2818 +ETPTopicOrder0=3053 -[External Topic Properties\RsCommandLineToolMissing] +[External Topic Properties\RsGifExtension] Count=1 ETPCommand0=2 -ETPTopicOrder0=2819 +ETPTopicOrder0=2308 -[External Topic Properties\RsCompilationFailed] +[External Topic Properties\RsHardDisk] Count=1 ETPCommand0=2 -ETPTopicOrder0=2820 +ETPTopicOrder0=2309 -[External Topic Properties\RsCompilationOk] +[External Topic Properties\RsHasNotTD32Info] Count=1 ETPCommand0=2 -ETPTopicOrder0=2821 +ETPTopicOrder0=2310 -[External Topic Properties\RsCompilingPackage] +[External Topic Properties\RsHKCCLong] Count=1 ETPCommand0=2 -ETPTopicOrder0=2822 +ETPTopicOrder0=3056 -[External Topic Properties\RsCompilingProject] +[External Topic Properties\RsHKCCShort] Count=1 ETPCommand0=2 -ETPTopicOrder0=2823 +ETPTopicOrder0=3057 -[External Topic Properties\RsComplexInvalidString] +[External Topic Properties\RsHKCRLong] Count=1 ETPCommand0=2 -ETPTopicOrder0=2824 +ETPTopicOrder0=3058 -[External Topic Properties\RsCompressionBZIP2ConfigError] +[External Topic Properties\RsHKCRShort] Count=1 ETPCommand0=2 -ETPTopicOrder0=2825 +ETPTopicOrder0=3059 -[External Topic Properties\RsCompressionBZIP2DataError] +[External Topic Properties\RsHKCULong] Count=1 ETPCommand0=2 -ETPTopicOrder0=2826 +ETPTopicOrder0=3060 -[External Topic Properties\RsCompressionBZIP2EOFError] +[External Topic Properties\RsHKCUShort] Count=1 ETPCommand0=2 -ETPTopicOrder0=2827 +ETPTopicOrder0=3061 -[External Topic Properties\RsCompressionBZIP2Error] +[External Topic Properties\RsHKDDLong] Count=1 ETPCommand0=2 -ETPTopicOrder0=2828 +ETPTopicOrder0=3062 -[External Topic Properties\RsCompressionBZIP2HeaderError] +[External Topic Properties\RsHKDDShort] Count=1 ETPCommand0=2 -ETPTopicOrder0=2829 +ETPTopicOrder0=3063 -[External Topic Properties\RsCompressionBZIP2IOError] +[External Topic Properties\RsHKLMLong] Count=1 ETPCommand0=2 -ETPTopicOrder0=2830 +ETPTopicOrder0=3064 -[External Topic Properties\RsCompressionBZIP2MemoryError] +[External Topic Properties\RsHKLMShort] Count=1 ETPCommand0=2 -ETPTopicOrder0=2831 +ETPTopicOrder0=3065 -[External Topic Properties\RsCompressionBZIP2OutBuffError] +[External Topic Properties\RsHKPDLong] Count=1 ETPCommand0=2 -ETPTopicOrder0=2832 +ETPTopicOrder0=3066 -[External Topic Properties\RsCompressionBZIP2ParameterError] +[External Topic Properties\RsHKPDShort] Count=1 ETPCommand0=2 -ETPTopicOrder0=2833 +ETPTopicOrder0=3067 -[External Topic Properties\RsCompressionBZIP2SequenceError] +[External Topic Properties\RsHKUSLong] Count=1 ETPCommand0=2 -ETPTopicOrder0=2834 +ETPTopicOrder0=3068 -[External Topic Properties\RsCompressionGZIPBadString] +[External Topic Properties\RsHKUSShort] Count=1 ETPCommand0=2 -ETPTopicOrder0=2835 +ETPTopicOrder0=3069 -[External Topic Properties\RsCompressionGZIPDataCRCFailed] +[External Topic Properties\RsIdePackageInstallationFinished] Count=1 ETPCommand0=2 -ETPTopicOrder0=2836 +ETPTopicOrder0=2311 -[External Topic Properties\RsCompressionGZIPDataTruncated] +[External Topic Properties\RsIdePackageInstallationStarted] Count=1 ETPCommand0=2 -ETPTopicOrder0=2837 +ETPTopicOrder0=2312 -[External Topic Properties\RsCompressionGZIPDecompressing] +[External Topic Properties\RsIdePackageUninstallationFinished] Count=1 ETPCommand0=2 -ETPTopicOrder0=2838 +ETPTopicOrder0=2313 -[External Topic Properties\RsCompressionGZIPExtraFieldTooLong] +[External Topic Properties\RsIdePackageUninstallationStarted] Count=1 ETPCommand0=2 -ETPTopicOrder0=2839 +ETPTopicOrder0=2314 -[External Topic Properties\RsCompressionGZIPHeaderCRC] +[External Topic Properties\RsInconsistentPath] Count=1 ETPCommand0=2 -ETPTopicOrder0=2840 +ETPTopicOrder0=2315 -[External Topic Properties\RsCompressionGZIPInternalError] +[External Topic Properties\RsIndexOutOfRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=2841 +ETPTopicOrder0=2316 -[External Topic Properties\RsCompressionGZIPInvalidID] +[External Topic Properties\RsIndexOutOfRangePaper] Count=1 ETPCommand0=2 -ETPTopicOrder0=2842 +ETPTopicOrder0=2317 -[External Topic Properties\RsCompressionGZIPNotDecompressed] +[External Topic Properties\RsInsertingJdbg] Count=1 ETPCommand0=2 -ETPTopicOrder0=2843 +ETPTopicOrder0=2318 -[External Topic Properties\RsCompressionGZIPUnsupportedCM] +[External Topic Properties\RsInstructionStreamInvalid] Count=1 ETPCommand0=2 -ETPTopicOrder0=2844 +ETPTopicOrder0=2319 -[External Topic Properties\RsCompressionOperationNotSupported] +[External Topic Properties\RsIntelCacheDescr00] Count=1 ETPCommand0=2 -ETPTopicOrder0=2845 +ETPTopicOrder0=2320 -[External Topic Properties\RsCompressionReadNotSupported] +[External Topic Properties\RsIntelCacheDescr01] Count=1 ETPCommand0=2 -ETPTopicOrder0=2846 +ETPTopicOrder0=2321 -[External Topic Properties\RsCompressionResetNotSupported] +[External Topic Properties\RsIntelCacheDescr02] Count=1 ETPCommand0=2 -ETPTopicOrder0=2847 +ETPTopicOrder0=2322 -[External Topic Properties\RsCompressionSeekNotSupported] +[External Topic Properties\RsIntelCacheDescr03] Count=1 ETPCommand0=2 -ETPTopicOrder0=2848 +ETPTopicOrder0=2323 -[External Topic Properties\RsCompressionWriteNotSupported] +[External Topic Properties\RsIntelCacheDescr04] Count=1 ETPCommand0=2 -ETPTopicOrder0=2849 +ETPTopicOrder0=2324 -[External Topic Properties\RsCompressionZLibError] +[External Topic Properties\RsIntelCacheDescr05] Count=1 ETPCommand0=2 -ETPTopicOrder0=2850 +ETPTopicOrder0=2325 -[External Topic Properties\RsCompressionZLibZBufError] +[External Topic Properties\RsIntelCacheDescr06] Count=1 ETPCommand0=2 -ETPTopicOrder0=2851 +ETPTopicOrder0=2326 -[External Topic Properties\RsCompressionZLibZDataError] +[External Topic Properties\RsIntelCacheDescr08] Count=1 ETPCommand0=2 -ETPTopicOrder0=2852 +ETPTopicOrder0=2327 -[External Topic Properties\RsCompressionZLibZErrNo] +[External Topic Properties\RsIntelCacheDescr09] Count=1 ETPCommand0=2 -ETPTopicOrder0=2853 +ETPTopicOrder0=2328 -[External Topic Properties\RsCompressionZLibZMemError] +[External Topic Properties\RsIntelCacheDescr0A] Count=1 ETPCommand0=2 -ETPTopicOrder0=2854 +ETPTopicOrder0=2329 -[External Topic Properties\RsCompressionZLibZStreamError] +[External Topic Properties\RsIntelCacheDescr0B] Count=1 ETPCommand0=2 -ETPTopicOrder0=2855 +ETPTopicOrder0=2330 -[External Topic Properties\RsCompressionZLibZVersionError] +[External Topic Properties\RsIntelCacheDescr0C] Count=1 ETPCommand0=2 -ETPTopicOrder0=2856 +ETPTopicOrder0=2331 -[External Topic Properties\RsConvTempBelowAbsoluteZero] +[External Topic Properties\RsIntelCacheDescr0D] Count=1 ETPCommand0=2 -ETPTopicOrder0=2857 +ETPTopicOrder0=2332 -[External Topic Properties\RsCreateCompatibleDc] +[External Topic Properties\RsIntelCacheDescr0E] Count=1 ETPCommand0=2 -ETPTopicOrder0=2858 +ETPTopicOrder0=2333 -[External Topic Properties\RsCreateFileMapping] +[External Topic Properties\RsIntelCacheDescr21] Count=1 ETPCommand0=2 -ETPTopicOrder0=2859 +ETPTopicOrder0=2334 -[External Topic Properties\RsCreateFileMappingView] +[External Topic Properties\RsIntelCacheDescr22] Count=1 ETPCommand0=2 -ETPTopicOrder0=2860 +ETPTopicOrder0=2335 -[External Topic Properties\RsCreateProcAccessDenied] +[External Topic Properties\RsIntelCacheDescr23] Count=1 ETPCommand0=2 -ETPTopicOrder0=2861 +ETPTopicOrder0=2336 -[External Topic Properties\RsCreateProcBuild1057Error] +[External Topic Properties\RsIntelCacheDescr25] Count=1 ETPCommand0=2 -ETPTopicOrder0=2862 +ETPTopicOrder0=2337 -[External Topic Properties\RsCreateProcCommandNotFound] +[External Topic Properties\RsIntelCacheDescr29] Count=1 ETPCommand0=2 -ETPTopicOrder0=2863 +ETPTopicOrder0=2338 -[External Topic Properties\RsCreateProcFailed] +[External Topic Properties\RsIntelCacheDescr2C] Count=1 ETPCommand0=2 -ETPTopicOrder0=2864 +ETPTopicOrder0=2339 -[External Topic Properties\RsCreateProcLogonFailed] +[External Topic Properties\RsIntelCacheDescr30] Count=1 ETPCommand0=2 -ETPTopicOrder0=2865 +ETPTopicOrder0=2340 -[External Topic Properties\RsCreateProcLogonUserError] +[External Topic Properties\RsIntelCacheDescr39] Count=1 ETPCommand0=2 -ETPTopicOrder0=2866 +ETPTopicOrder0=2341 -[External Topic Properties\RsCreateProcNTRequiredError] +[External Topic Properties\RsIntelCacheDescr3A] Count=1 ETPCommand0=2 -ETPTopicOrder0=2867 +ETPTopicOrder0=2342 -[External Topic Properties\RsCreateProcOSVersionError] +[External Topic Properties\RsIntelCacheDescr3B] Count=1 ETPCommand0=2 -ETPTopicOrder0=2868 +ETPTopicOrder0=2343 -[External Topic Properties\RsCreateProcPrivilegeMissing] +[External Topic Properties\RsIntelCacheDescr3C] Count=1 ETPCommand0=2 -ETPTopicOrder0=2869 +ETPTopicOrder0=2344 -[External Topic Properties\RsCreateProcPrivilegesMissing] +[External Topic Properties\RsIntelCacheDescr3D] Count=1 ETPCommand0=2 -ETPTopicOrder0=2870 +ETPTopicOrder0=2345 -[External Topic Properties\RsCreateProcSetDesktopSecurityError] +[External Topic Properties\RsIntelCacheDescr3E] Count=1 ETPCommand0=2 -ETPTopicOrder0=2871 +ETPTopicOrder0=2346 -[External Topic Properties\RsCreateProcSetStationSecurityError] +[External Topic Properties\RsIntelCacheDescr40] Count=1 ETPCommand0=2 -ETPTopicOrder0=2872 +ETPTopicOrder0=2347 -[External Topic Properties\RsCreatingJdbg] +[External Topic Properties\RsIntelCacheDescr41] Count=1 ETPCommand0=2 -ETPTopicOrder0=2873 +ETPTopicOrder0=2348 -[External Topic Properties\RsCSharpName] +[External Topic Properties\RsIntelCacheDescr42] Count=1 ETPCommand0=2 -ETPTopicOrder0=2874 +ETPTopicOrder0=2349 -[External Topic Properties\RsDateConversion] +[External Topic Properties\RsIntelCacheDescr43] Count=1 ETPCommand0=2 -ETPTopicOrder0=2875 +ETPTopicOrder0=2350 -[External Topic Properties\RsDebugAssertValidPointer] +[External Topic Properties\RsIntelCacheDescr44] Count=1 ETPCommand0=2 -ETPTopicOrder0=2876 +ETPTopicOrder0=2351 -[External Topic Properties\RsDebugAssertValidString] +[External Topic Properties\RsIntelCacheDescr45] Count=1 ETPCommand0=2 -ETPTopicOrder0=2877 +ETPTopicOrder0=2352 -[External Topic Properties\RsDebugNoProcessInfo] +[External Topic Properties\RsIntelCacheDescr46] Count=1 ETPCommand0=2 -ETPTopicOrder0=2878 +ETPTopicOrder0=2353 -[External Topic Properties\RsDebugSnapshot] +[External Topic Properties\RsIntelCacheDescr47] Count=1 ETPCommand0=2 -ETPTopicOrder0=2879 +ETPTopicOrder0=2354 -[External Topic Properties\RsDeclarationFormat] +[External Topic Properties\RsIntelCacheDescr48] Count=1 ETPCommand0=2 -ETPTopicOrder0=2880 +ETPTopicOrder0=2355 -[External Topic Properties\RsDecomposedUnicodeChar] +[External Topic Properties\RsIntelCacheDescr49] Count=1 ETPCommand0=2 -ETPTopicOrder0=2881 +ETPTopicOrder0=2356 -[External Topic Properties\RsDefaultFileTypeName] +[External Topic Properties\RsIntelCacheDescr4A] Count=1 ETPCommand0=2 -ETPTopicOrder0=2882 +ETPTopicOrder0=2357 -[External Topic Properties\RsDeletingFile] +[External Topic Properties\RsIntelCacheDescr4B] Count=1 ETPCommand0=2 -ETPTopicOrder0=2883 +ETPTopicOrder0=2358 -[External Topic Properties\RsDelphiName] +[External Topic Properties\RsIntelCacheDescr4C] Count=1 ETPCommand0=2 -ETPTopicOrder0=2884 +ETPTopicOrder0=2359 -[External Topic Properties\RsDelphiNetName] +[External Topic Properties\RsIntelCacheDescr4D] Count=1 ETPCommand0=2 -ETPTopicOrder0=2885 +ETPTopicOrder0=2360 -[External Topic Properties\RsDelTreePathIsEmpty] +[External Topic Properties\RsIntelCacheDescr4E] Count=1 ETPCommand0=2 -ETPTopicOrder0=2886 +ETPTopicOrder0=2361 -[External Topic Properties\RsDestinationBitmapEmpty] +[External Topic Properties\RsIntelCacheDescr4F] Count=1 ETPCommand0=2 -ETPTopicOrder0=2887 +ETPTopicOrder0=2362 -[External Topic Properties\RsDeviceMode] +[External Topic Properties\RsIntelCacheDescr50] Count=1 ETPCommand0=2 -ETPTopicOrder0=2888 +ETPTopicOrder0=2363 -[External Topic Properties\RsDibHandleAllocation] +[External Topic Properties\RsIntelCacheDescr51] Count=1 ETPCommand0=2 -ETPTopicOrder0=2889 +ETPTopicOrder0=2364 -[External Topic Properties\RsDivByZero] +[External Topic Properties\RsIntelCacheDescr52] Count=1 ETPCommand0=2 -ETPTopicOrder0=2890 +ETPTopicOrder0=2365 -[External Topic Properties\RsDotNetFormatArgumentNotSupported] +[External Topic Properties\RsIntelCacheDescr55] Count=1 ETPCommand0=2 -ETPTopicOrder0=2891 +ETPTopicOrder0=2366 -[External Topic Properties\RsDotNetFormatNullFormat] +[External Topic Properties\RsIntelCacheDescr56] Count=1 ETPCommand0=2 -ETPTopicOrder0=2892 +ETPTopicOrder0=2367 -[External Topic Properties\RsDynArrayError] +[External Topic Properties\RsIntelCacheDescr57] Count=1 ETPCommand0=2 -ETPTopicOrder0=2893 +ETPTopicOrder0=2368 -[External Topic Properties\RsECannotInstallRunOnly] +[External Topic Properties\RsIntelCacheDescr59] Count=1 ETPCommand0=2 -ETPTopicOrder0=2894 +ETPTopicOrder0=2369 -[External Topic Properties\RsECmdLineToolOutputInvalid] +[External Topic Properties\RsIntelCacheDescr5A] Count=1 ETPCommand0=2 -ETPTopicOrder0=2895 +ETPTopicOrder0=2370 -[External Topic Properties\RsEDIError001] +[External Topic Properties\RsIntelCacheDescr5B] Count=1 ETPCommand0=2 -ETPTopicOrder0=2896 +ETPTopicOrder0=2371 -[External Topic Properties\RsEDIError002] +[External Topic Properties\RsIntelCacheDescr5C] Count=1 ETPCommand0=2 -ETPTopicOrder0=2897 +ETPTopicOrder0=2372 -[External Topic Properties\RsEDIError003] +[External Topic Properties\RsIntelCacheDescr5D] Count=1 ETPCommand0=2 -ETPTopicOrder0=2898 +ETPTopicOrder0=2373 -[External Topic Properties\RsEDIError004] +[External Topic Properties\RsIntelCacheDescr60] Count=1 ETPCommand0=2 -ETPTopicOrder0=2899 +ETPTopicOrder0=2374 -[External Topic Properties\RsEDIError005] +[External Topic Properties\RsIntelCacheDescr66] Count=1 ETPCommand0=2 -ETPTopicOrder0=2900 +ETPTopicOrder0=2375 -[External Topic Properties\RsEDIError006] +[External Topic Properties\RsIntelCacheDescr67] Count=1 ETPCommand0=2 -ETPTopicOrder0=2901 +ETPTopicOrder0=2376 -[External Topic Properties\RsEDIError007] +[External Topic Properties\RsIntelCacheDescr68] Count=1 ETPCommand0=2 -ETPTopicOrder0=2902 +ETPTopicOrder0=2377 -[External Topic Properties\RsEDIError008] +[External Topic Properties\RsIntelCacheDescr70] Count=1 ETPCommand0=2 -ETPTopicOrder0=2903 +ETPTopicOrder0=2378 -[External Topic Properties\RsEDIError009] +[External Topic Properties\RsIntelCacheDescr71] Count=1 ETPCommand0=2 -ETPTopicOrder0=2904 +ETPTopicOrder0=2379 -[External Topic Properties\RsEDIError010] +[External Topic Properties\RsIntelCacheDescr72] Count=1 ETPCommand0=2 -ETPTopicOrder0=2905 +ETPTopicOrder0=2380 -[External Topic Properties\RsEDIError011] +[External Topic Properties\RsIntelCacheDescr73] Count=1 ETPCommand0=2 -ETPTopicOrder0=2906 +ETPTopicOrder0=2381 -[External Topic Properties\RsEDIError012] +[External Topic Properties\RsIntelCacheDescr78] Count=1 ETPCommand0=2 -ETPTopicOrder0=2907 +ETPTopicOrder0=2382 -[External Topic Properties\RsEDIError013] +[External Topic Properties\RsIntelCacheDescr79] Count=1 ETPCommand0=2 -ETPTopicOrder0=2908 +ETPTopicOrder0=2383 -[External Topic Properties\RsEDIError014] +[External Topic Properties\RsIntelCacheDescr7A] Count=1 ETPCommand0=2 -ETPTopicOrder0=2909 +ETPTopicOrder0=2384 -[External Topic Properties\RsEDIError015] +[External Topic Properties\RsIntelCacheDescr7B] Count=1 ETPCommand0=2 -ETPTopicOrder0=2910 +ETPTopicOrder0=2385 -[External Topic Properties\RsEDIError016] +[External Topic Properties\RsIntelCacheDescr7C] Count=1 ETPCommand0=2 -ETPTopicOrder0=2911 +ETPTopicOrder0=2386 -[External Topic Properties\RsEDIError017] +[External Topic Properties\RsIntelCacheDescr7D] Count=1 ETPCommand0=2 -ETPTopicOrder0=2912 +ETPTopicOrder0=2387 -[External Topic Properties\RsEDIError018] +[External Topic Properties\RsIntelCacheDescr7F] Count=1 ETPCommand0=2 -ETPTopicOrder0=2913 +ETPTopicOrder0=2388 -[External Topic Properties\RsEDIError019] +[External Topic Properties\RsIntelCacheDescr80] Count=1 ETPCommand0=2 -ETPTopicOrder0=2914 +ETPTopicOrder0=2389 -[External Topic Properties\RsEDIError020] +[External Topic Properties\RsIntelCacheDescr82] Count=1 ETPCommand0=2 -ETPTopicOrder0=2915 +ETPTopicOrder0=2390 -[External Topic Properties\RsEDIError021] +[External Topic Properties\RsIntelCacheDescr83] Count=1 ETPCommand0=2 -ETPTopicOrder0=2916 +ETPTopicOrder0=2391 -[External Topic Properties\RsEDIError022] +[External Topic Properties\RsIntelCacheDescr84] Count=1 ETPCommand0=2 -ETPTopicOrder0=2917 +ETPTopicOrder0=2392 -[External Topic Properties\RsEDIError023] +[External Topic Properties\RsIntelCacheDescr85] Count=1 ETPCommand0=2 -ETPTopicOrder0=2918 +ETPTopicOrder0=2393 -[External Topic Properties\RsEDIError024] +[External Topic Properties\RsIntelCacheDescr86] Count=1 ETPCommand0=2 -ETPTopicOrder0=2919 +ETPTopicOrder0=2394 -[External Topic Properties\RsEDIError025] +[External Topic Properties\RsIntelCacheDescr87] Count=1 ETPCommand0=2 -ETPTopicOrder0=2920 +ETPTopicOrder0=2395 -[External Topic Properties\RsEDIError026] +[External Topic Properties\RsIntelCacheDescrB0] Count=1 ETPCommand0=2 -ETPTopicOrder0=2921 +ETPTopicOrder0=2396 -[External Topic Properties\RsEDIError027] +[External Topic Properties\RsIntelCacheDescrB1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2922 +ETPTopicOrder0=2397 -[External Topic Properties\RsEDIError028] +[External Topic Properties\RsIntelCacheDescrB2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2923 +ETPTopicOrder0=2398 -[External Topic Properties\RsEDIError029] +[External Topic Properties\RsIntelCacheDescrB3] Count=1 ETPCommand0=2 -ETPTopicOrder0=2924 +ETPTopicOrder0=2399 -[External Topic Properties\RsEDIError030] +[External Topic Properties\RsIntelCacheDescrB4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2925 +ETPTopicOrder0=2400 -[External Topic Properties\RsEDIError031] +[External Topic Properties\RsIntelCacheDescrBA] Count=1 ETPCommand0=2 -ETPTopicOrder0=2926 +ETPTopicOrder0=2401 -[External Topic Properties\RsEDIError032] +[External Topic Properties\RsIntelCacheDescrC0] Count=1 ETPCommand0=2 -ETPTopicOrder0=2927 +ETPTopicOrder0=2402 -[External Topic Properties\RsEDIError033] +[External Topic Properties\RsIntelCacheDescrCA] Count=1 ETPCommand0=2 -ETPTopicOrder0=2928 +ETPTopicOrder0=2403 -[External Topic Properties\RsEDIError034] +[External Topic Properties\RsIntelCacheDescrD0] Count=1 ETPCommand0=2 -ETPTopicOrder0=2929 +ETPTopicOrder0=2404 -[External Topic Properties\RsEDIError035] +[External Topic Properties\RsIntelCacheDescrD1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2930 +ETPTopicOrder0=2405 -[External Topic Properties\RsEDIError036] +[External Topic Properties\RsIntelCacheDescrD2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2931 +ETPTopicOrder0=2406 -[External Topic Properties\RsEDIError037] +[External Topic Properties\RsIntelCacheDescrD6] Count=1 ETPCommand0=2 -ETPTopicOrder0=2932 +ETPTopicOrder0=2407 -[External Topic Properties\RsEDIError038] +[External Topic Properties\RsIntelCacheDescrD7] Count=1 ETPCommand0=2 -ETPTopicOrder0=2933 +ETPTopicOrder0=2408 -[External Topic Properties\RsEDIError039] +[External Topic Properties\RsIntelCacheDescrD8] Count=1 ETPCommand0=2 -ETPTopicOrder0=2934 +ETPTopicOrder0=2409 -[External Topic Properties\RsEDIError040] +[External Topic Properties\RsIntelCacheDescrDC] Count=1 ETPCommand0=2 -ETPTopicOrder0=2935 +ETPTopicOrder0=2410 -[External Topic Properties\RsEDIError041] +[External Topic Properties\RsIntelCacheDescrDD] Count=1 ETPCommand0=2 -ETPTopicOrder0=2936 +ETPTopicOrder0=2411 -[External Topic Properties\RsEDIError042] +[External Topic Properties\RsIntelCacheDescrDE] Count=1 ETPCommand0=2 -ETPTopicOrder0=2937 +ETPTopicOrder0=2412 -[External Topic Properties\RsEDIError043] +[External Topic Properties\RsIntelCacheDescrE2] Count=1 ETPCommand0=2 -ETPTopicOrder0=2938 +ETPTopicOrder0=2413 -[External Topic Properties\RsEDIError044] +[External Topic Properties\RsIntelCacheDescrE3] Count=1 ETPCommand0=2 -ETPTopicOrder0=2939 +ETPTopicOrder0=2414 -[External Topic Properties\RsEDIError045] +[External Topic Properties\RsIntelCacheDescrE4] Count=1 ETPCommand0=2 -ETPTopicOrder0=2940 +ETPTopicOrder0=2415 -[External Topic Properties\RsEDIError046] +[External Topic Properties\RsIntelCacheDescrEA] Count=1 ETPCommand0=2 -ETPTopicOrder0=2941 +ETPTopicOrder0=2416 -[External Topic Properties\RsEDIError047] +[External Topic Properties\RsIntelCacheDescrEB] Count=1 ETPCommand0=2 -ETPTopicOrder0=2942 +ETPTopicOrder0=2417 -[External Topic Properties\RsEDIError048] +[External Topic Properties\RsIntelCacheDescrEC] Count=1 ETPCommand0=2 -ETPTopicOrder0=2943 +ETPTopicOrder0=2418 -[External Topic Properties\RsEDIError049] +[External Topic Properties\RsIntelCacheDescrF0] Count=1 ETPCommand0=2 -ETPTopicOrder0=2944 +ETPTopicOrder0=2419 -[External Topic Properties\RsEDIError050] +[External Topic Properties\RsIntelCacheDescrF1] Count=1 ETPCommand0=2 -ETPTopicOrder0=2945 +ETPTopicOrder0=2420 -[External Topic Properties\RsEDIError051] +[External Topic Properties\RsIntelCacheDescrFF] Count=1 ETPCommand0=2 -ETPTopicOrder0=2946 +ETPTopicOrder0=2421 -[External Topic Properties\RsEDIError052] +[External Topic Properties\RsIntelUnknownCache] Count=1 ETPCommand0=2 -ETPTopicOrder0=2947 +ETPTopicOrder0=2422 -[External Topic Properties\RsEDIError053] +[External Topic Properties\RsInvalidArgument] Count=1 ETPCommand0=2 -ETPTopicOrder0=2948 +ETPTopicOrder0=2423 -[External Topic Properties\RsEDIError054] +[External Topic Properties\RsInvalidDigit] Count=1 ETPCommand0=2 -ETPTopicOrder0=2949 +ETPTopicOrder0=2424 -[External Topic Properties\RsEDIError055] +[External Topic Properties\RsInvalidDigitValue] Count=1 ETPCommand0=2 -ETPTopicOrder0=2950 +ETPTopicOrder0=2425 -[External Topic Properties\RsEDIError056] +[External Topic Properties\RsInvalidEmptyStringItem] Count=1 ETPCommand0=2 -ETPTopicOrder0=2951 +ETPTopicOrder0=2426 -[External Topic Properties\RsEDIError057] +[External Topic Properties\RsInvalidGUIDString] Count=1 ETPCommand0=2 -ETPTopicOrder0=2952 +ETPTopicOrder0=2427 -[External Topic Properties\RsEDIError058] +[External Topic Properties\RsInvalidHandleForRegion] Count=1 ETPCommand0=2 -ETPTopicOrder0=2953 +ETPTopicOrder0=2428 -[External Topic Properties\RsEDualPackageNotSupported] +[External Topic Properties\RsInvalidMMFEmpty] Count=1 ETPCommand0=2 -ETPTopicOrder0=2954 +ETPTopicOrder0=2429 -[External Topic Properties\RsEFunctionNotFound] +[External Topic Properties\RsInvalidMMFName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2955 +ETPTopicOrder0=2430 -[External Topic Properties\RsEGetBytesExFmt] +[External Topic Properties\RsInvalidPrinter] Count=1 ETPCommand0=2 -ETPTopicOrder0=2956 +ETPTopicOrder0=2431 -[External Topic Properties\RsEIllegalQueueCapacity] +[External Topic Properties\RsInvalidProcessID] Count=1 ETPCommand0=2 -ETPTopicOrder0=2957 +ETPTopicOrder0=2432 -[External Topic Properties\RsEIncomatibleDataFormat] +[External Topic Properties\RsInvalidRational] Count=1 ETPCommand0=2 -ETPTopicOrder0=2958 +ETPTopicOrder0=2433 -[External Topic Properties\RsEIndexOufOfRange] +[External Topic Properties\RsInvalidRegion] Count=1 ETPCommand0=2 -ETPTopicOrder0=2959 +ETPTopicOrder0=2434 -[External Topic Properties\RsEInvalidCDATAExpectedsButFounds] +[External Topic Properties\RsInvalidRegionInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=2960 +ETPTopicOrder0=2435 -[External Topic Properties\RsEInvalidCDATAUnexpectedEndOfData] +[External Topic Properties\RsInvalidSampleSize] Count=1 ETPCommand0=2 -ETPTopicOrder0=2961 +ETPTopicOrder0=2436 -[External Topic Properties\RsEInvalidCommentExpectedsButFounds] +[External Topic Properties\RsInvalidSID] Count=1 ETPCommand0=2 -ETPTopicOrder0=2962 +ETPTopicOrder0=2437 -[External Topic Properties\RsEInvalidCommentNotAllowedInsideComme] +[External Topic Properties\RsInvalidSignatureData] Count=1 ETPCommand0=2 -ETPTopicOrder0=2963 +ETPTopicOrder0=2438 -[External Topic Properties\RsEInvalidCommentUnexpectedEndOfData] +[External Topic Properties\RsIStreamNil] Count=1 ETPCommand0=2 -ETPTopicOrder0=2964 +ETPTopicOrder0=2439 -[External Topic Properties\RsEInvalidDocumentUnexpectedTextInFile] +[External Topic Properties\RsJdbgInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=2965 +ETPTopicOrder0=2440 -[External Topic Properties\RsEInvalidHeaderExpectedsButFounds] +[External Topic Properties\RsJdbgInfoFailed] Count=1 ETPCommand0=2 -ETPTopicOrder0=2966 +ETPTopicOrder0=2441 -[External Topic Properties\RsEInvalidStylesheetExpectedsButFounds] +[External Topic Properties\RsJdbgInfoOk] Count=1 ETPCommand0=2 -ETPTopicOrder0=2967 +ETPTopicOrder0=2442 -[External Topic Properties\RsEInvalidStylesheetUnexpectedEndOfDat] +[External Topic Properties\RsJpegExtension] Count=1 ETPCommand0=2 -ETPTopicOrder0=2968 +ETPTopicOrder0=2443 -[External Topic Properties\RsEInvalidXMLElementErroneousEndOfTagE] +[External Topic Properties\RsKylixName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2969 +ETPTopicOrder0=3160 -[External Topic Properties\RsEInvalidXMLElementExpectedBeginningO] +[External Topic Properties\RsKylixVersionName] Count=1 ETPCommand0=2 -ETPTopicOrder0=2970 +ETPTopicOrder0=3161 -[External Topic Properties\RsEInvalidXMLElementExpectedEndOfTagBu] +[External Topic Properties\RsLoadFromStreamSize] Count=1 ETPCommand0=2 -ETPTopicOrder0=2971 +ETPTopicOrder0=2444 -[External Topic Properties\RsEInvalidXMLElementMalformedTagFoundn] +[External Topic Properties\RsLocalVarSigOutOfRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=2972 +ETPTopicOrder0=2445 -[External Topic Properties\RsEInvalidXMLElementUnexpectedCharacte] +[External Topic Properties\RsLsaError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2973 +ETPTopicOrder0=2446 -[External Topic Properties\RsEInvalidXMLElementUnexpectedCharacte_] +[External Topic Properties\RsMakeUTCTime] Count=1 ETPCommand0=2 -ETPTopicOrder0=2974 +ETPTopicOrder0=2447 -[External Topic Properties\RsELibraryNotFound] +[External Topic Properties\RsMapiErrACCESS_DENIED] Count=1 ETPCommand0=2 -ETPTopicOrder0=2975 +ETPTopicOrder0=2448 -[External Topic Properties\RsEmptyArray] +[External Topic Properties\RsMapiErrAMBIGUOUS_RECIPIENT] Count=1 ETPCommand0=2 -ETPTopicOrder0=2976 +ETPTopicOrder0=2449 -[External Topic Properties\RsENoCollection] +[External Topic Properties\RsMapiErrATTACHMENT_NOT_FOUND] Count=1 ETPCommand0=2 -ETPTopicOrder0=2977 +ETPTopicOrder0=2450 -[External Topic Properties\RsENoOpenHelp] +[External Topic Properties\RsMapiErrATTACHMENT_OPEN_FAILURE] Count=1 ETPCommand0=2 -ETPTopicOrder0=2978 +ETPTopicOrder0=2451 -[External Topic Properties\RsENoSupportedPersonality] +[External Topic Properties\RsMapiErrATTACHMENT_WRITE_FAILURE] Count=1 ETPCommand0=2 -ETPTopicOrder0=2979 +ETPTopicOrder0=2452 -[External Topic Properties\RsENotABcbPackage] +[External Topic Properties\RsMapiErrBAD_RECIPTYPE] Count=1 ETPCommand0=2 -ETPTopicOrder0=2980 +ETPTopicOrder0=2453 -[External Topic Properties\RsENotABcbProject] +[External Topic Properties\RsMapiErrDISK_FULL] Count=1 ETPCommand0=2 -ETPTopicOrder0=2981 +ETPTopicOrder0=2454 -[External Topic Properties\RsENotADelphiPackage] +[External Topic Properties\RsMapiErrFAILURE] Count=1 ETPCommand0=2 -ETPTopicOrder0=2982 +ETPTopicOrder0=2455 -[External Topic Properties\RsENotADelphiProject] +[External Topic Properties\RsMapiErrINSUFFICIENT_MEMORY] Count=1 ETPCommand0=2 -ETPTopicOrder0=2983 +ETPTopicOrder0=2456 -[External Topic Properties\RsENotFound] +[External Topic Properties\RsMapiErrINVALID_EDITFIELDS] Count=1 ETPCommand0=2 -ETPTopicOrder0=2984 +ETPTopicOrder0=2457 -[External Topic Properties\RsEnterprise] +[External Topic Properties\RsMapiErrINVALID_MESSAGE] Count=1 ETPCommand0=2 -ETPTopicOrder0=2985 +ETPTopicOrder0=2458 -[External Topic Properties\RsEOpenGLInfo] +[External Topic Properties\RsMapiErrINVALID_RECIPS] Count=1 ETPCommand0=2 -ETPTopicOrder0=2986 +ETPTopicOrder0=2459 -[External Topic Properties\RsEOperationNotSupported] +[External Topic Properties\RsMapiErrINVALID_SESSION] Count=1 ETPCommand0=2 -ETPTopicOrder0=2987 +ETPTopicOrder0=2460 -[External Topic Properties\RsEOutOfBounds] +[External Topic Properties\RsMapiErrLOGIN_FAILURE] Count=1 ETPCommand0=2 -ETPTopicOrder0=2988 +ETPTopicOrder0=2461 -[External Topic Properties\RsErrBadCount] +[External Topic Properties\RsMapiErrMESSAGE_IN_USE] Count=1 ETPCommand0=2 -ETPTopicOrder0=2989 +ETPTopicOrder0=2462 -[External Topic Properties\RsErrBadMagic] +[External Topic Properties\RsMapiErrNETWORK_FAILURE] Count=1 ETPCommand0=2 -ETPTopicOrder0=2990 +ETPTopicOrder0=2463 -[External Topic Properties\RsErrBadOption] +[External Topic Properties\RsMapiErrNO_MESSAGES] Count=1 ETPCommand0=2 -ETPTopicOrder0=2991 +ETPTopicOrder0=2464 -[External Topic Properties\RsErrBadPartial] +[External Topic Properties\RsMapiErrNOT_SUPPORTED] Count=1 ETPCommand0=2 -ETPTopicOrder0=2992 +ETPTopicOrder0=2465 -[External Topic Properties\RsErrBadUTF8] +[External Topic Properties\RsMapiError] Count=1 ETPCommand0=2 -ETPTopicOrder0=2993 +ETPTopicOrder0=2466 -[External Topic Properties\RsErrBadUTF8Offset] +[External Topic Properties\RsMapiErrTEXT_TOO_LARGE] Count=1 ETPCommand0=2 -ETPTopicOrder0=2994 +ETPTopicOrder0=2467 -[External Topic Properties\RsErrCallout] +[External Topic Properties\RsMapiErrTOO_MANY_FILES] Count=1 ETPCommand0=2 -ETPTopicOrder0=2995 +ETPTopicOrder0=2468 -[External Topic Properties\RsErrCalloutError] +[External Topic Properties\RsMapiErrTOO_MANY_RECIPIENTS] Count=1 ETPCommand0=2 -ETPTopicOrder0=2996 +ETPTopicOrder0=2469 -[External Topic Properties\RsErrDfaRecurse] +[External Topic Properties\RsMapiErrTOO_MANY_SESSIONS] Count=1 ETPCommand0=2 -ETPTopicOrder0=2997 +ETPTopicOrder0=2470 -[External Topic Properties\RsErrDfaUCond] +[External Topic Properties\RsMapiErrTYPE_NOT_SUPPORTED] Count=1 ETPCommand0=2 -ETPTopicOrder0=2998 +ETPTopicOrder0=2471 -[External Topic Properties\RsErrDfaUItem] +[External Topic Properties\RsMapiErrUNKNOWN_RECIPIENT] Count=1 ETPCommand0=2 -ETPTopicOrder0=2999 +ETPTopicOrder0=2472 -[External Topic Properties\RsErrDfaUMLimit] +[External Topic Properties\RsMapiErrUSER_ABORT] Count=1 ETPCommand0=2 -ETPTopicOrder0=3000 +ETPTopicOrder0=2473 -[External Topic Properties\RsErrDfaWSSize] +[External Topic Properties\RsMapiInvalidIndex] Count=1 ETPCommand0=2 -ETPTopicOrder0=3001 +ETPTopicOrder0=2474 -[External Topic Properties\RsErrInternal] +[External Topic Properties\RsMapiMailBCC] Count=1 ETPCommand0=2 -ETPTopicOrder0=3002 +ETPTopicOrder0=2475 -[External Topic Properties\RsErrLibNotLoaded] +[External Topic Properties\RsMapiMailBody] Count=1 ETPCommand0=2 -ETPTopicOrder0=3003 +ETPTopicOrder0=3194 -[External Topic Properties\RsErrMatchLimit] +[External Topic Properties\RsMapiMailCC] Count=1 ETPCommand0=2 -ETPTopicOrder0=3004 +ETPTopicOrder0=2476 -[External Topic Properties\RsErrMemFuncNotSet] +[External Topic Properties\RsMapiMailNoClient] Count=1 ETPCommand0=2 -ETPTopicOrder0=3005 +ETPTopicOrder0=2477 -[External Topic Properties\RsErrNoMatch] +[External Topic Properties\RsMapiMailORIG] Count=1 ETPCommand0=2 -ETPTopicOrder0=3006 +ETPTopicOrder0=2478 -[External Topic Properties\RsErrNoMemory] +[External Topic Properties\RsMapiMailSubject] Count=1 ETPCommand0=2 -ETPTopicOrder0=3007 +ETPTopicOrder0=2479 -[External Topic Properties\RsErrNoSubString] +[External Topic Properties\RsMapiMailTO] Count=1 ETPCommand0=2 -ETPTopicOrder0=3008 +ETPTopicOrder0=2480 -[External Topic Properties\RsErrNull] +[External Topic Properties\RsMapiMissingExport] Count=1 ETPCommand0=2 -ETPTopicOrder0=3009 +ETPTopicOrder0=2481 -[External Topic Properties\RsErrPartial] +[External Topic Properties\RsMapSizeFmt] Count=1 ETPCommand0=2 -ETPTopicOrder0=3010 +ETPTopicOrder0=2482 -[External Topic Properties\RsErrRecursionLimit] +[External Topic Properties\RsMathDomainError] Count=1 ETPCommand0=2 -ETPTopicOrder0=3011 +ETPTopicOrder0=2483 -[External Topic Properties\RsErrStudyFailed] +[External Topic Properties\RsMetSectInitialize] Count=1 ETPCommand0=2 -ETPTopicOrder0=3012 +ETPTopicOrder0=2484 -[External Topic Properties\RsErrUnknownError] +[External Topic Properties\RsMetSectInvalidParameter] Count=1 ETPCommand0=2 -ETPTopicOrder0=3013 +ETPTopicOrder0=2485 -[External Topic Properties\RsErrUnknownNode] +[External Topic Properties\RsMetSectNameEmpty] Count=1 ETPCommand0=2 -ETPTopicOrder0=3014 +ETPTopicOrder0=2486 -[External Topic Properties\RsESetBytesExFmt] +[External Topic Properties\RsMidiInUnknownError] Count=1 ETPCommand0=2 -ETPTopicOrder0=3015 +ETPTopicOrder0=2487 -[External Topic Properties\RsEUnableToCreatePropertyStorage] +[External Topic Properties\RsMidiInvalidChannelNum] Count=1 ETPCommand0=2 -ETPTopicOrder0=3016 +ETPTopicOrder0=2488 -[External Topic Properties\RsEUnexpectedValueForLPos] +[External Topic Properties\RsMidiNotImplemented] Count=1 ETPCommand0=2 -ETPTopicOrder0=3017 +ETPTopicOrder0=2489 -[External Topic Properties\RsEUnknownCLRVersion] +[External Topic Properties\RsMidiOutUnknownError] Count=1 ETPCommand0=2 -ETPTopicOrder0=3018 +ETPTopicOrder0=2490 -[External Topic Properties\RsEUnknownIdePackageExtension] +[External Topic Properties\RsMMCdTimeFormat] Count=1 ETPCommand0=2 -ETPTopicOrder0=3019 +ETPTopicOrder0=2491 -[External Topic Properties\RsEUnknownPackageExtension] +[External Topic Properties\RsMmCdTrackNo] Count=1 ETPCommand0=2 -ETPTopicOrder0=3020 +ETPTopicOrder0=2492 -[External Topic Properties\RsEUnknownProjectExtension] +[External Topic Properties\RsMmInconsistentId] Count=1 ETPCommand0=2 -ETPTopicOrder0=3021 +ETPTopicOrder0=2493 -[External Topic Properties\RsEValueNotFound] +[External Topic Properties\RsMmMciErrorPrefix] Count=1 ETPCommand0=2 -ETPTopicOrder0=3022 +ETPTopicOrder0=2494 -[External Topic Properties\RsEx64PlatformNotValid] +[External Topic Properties\RsMmMixerAnalog] Count=1 ETPCommand0=2 -ETPTopicOrder0=3023 +ETPTopicOrder0=2495 -[External Topic Properties\RsExpertInstallationFinished] +[External Topic Properties\RsMmMixerAuxiliary] Count=1 ETPCommand0=2 -ETPTopicOrder0=3024 +ETPTopicOrder0=2496 -[External Topic Properties\RsExpertInstallationStarted] +[External Topic Properties\RsMmMixerCompactDisc] Count=1 ETPCommand0=2 -ETPTopicOrder0=3025 +ETPTopicOrder0=2497 -[External Topic Properties\RsExpertUninstallationFinished] +[External Topic Properties\RsMmMixerCtlNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=3026 +ETPTopicOrder0=2498 -[External Topic Properties\RsExpertUninstallationStarted] +[External Topic Properties\RsMmMixerDestination] Count=1 ETPCommand0=2 -ETPTopicOrder0=3027 +ETPTopicOrder0=2499 -[External Topic Properties\RsExprEvalEndArgs] +[External Topic Properties\RsMmMixerDigital] Count=1 ETPCommand0=2 -ETPTopicOrder0=3028 +ETPTopicOrder0=2500 -[External Topic Properties\RsExprEvalExprNotFound] +[External Topic Properties\RsMmMixerHeadphones] Count=1 ETPCommand0=2 -ETPTopicOrder0=3029 +ETPTopicOrder0=2501 -[External Topic Properties\RsExprEvalExprPtrNotFound] +[External Topic Properties\RsMmMixerLine] Count=1 ETPCommand0=2 -ETPTopicOrder0=3030 +ETPTopicOrder0=2502 -[External Topic Properties\RsExprEvalExprRefCountAssertion] +[External Topic Properties\RsMmMixerMicrophone] Count=1 ETPCommand0=2 -ETPTopicOrder0=3031 +ETPTopicOrder0=2503 -[External Topic Properties\RsExprEvalFactorExpected] +[External Topic Properties\RsMmMixerMonitor] Count=1 ETPCommand0=2 -ETPTopicOrder0=3032 +ETPTopicOrder0=2504 -[External Topic Properties\RsExprEvalFirstArg] +[External Topic Properties\RsMmMixerNoDevices] Count=1 ETPCommand0=2 -ETPTopicOrder0=3033 +ETPTopicOrder0=2505 -[External Topic Properties\RsExprEvalNextArg] +[External Topic Properties\RsMmMixerPcSpeaker] Count=1 ETPCommand0=2 -ETPTopicOrder0=3034 +ETPTopicOrder0=2506 -[External Topic Properties\RsExprEvalRParenExpected] +[External Topic Properties\RsMmMixerSource] Count=1 ETPCommand0=2 -ETPTopicOrder0=3035 +ETPTopicOrder0=2507 -[External Topic Properties\RsExprEvalUnknownSymbol] +[External Topic Properties\RsMmMixerSpeakers] Count=1 ETPCommand0=2 -ETPTopicOrder0=3036 +ETPTopicOrder0=2508 -[External Topic Properties\RsFailedToObtainSize] +[External Topic Properties\RsMmMixerSynthesizer] Count=1 ETPCommand0=2 -ETPTopicOrder0=3037 +ETPTopicOrder0=2509 -[External Topic Properties\RsFileDeletionFailed] +[External Topic Properties\RsMmMixerTelephone] Count=1 ETPCommand0=2 -ETPTopicOrder0=3038 +ETPTopicOrder0=2510 -[External Topic Properties\RsFileDeletionOk] +[External Topic Properties\RsMmMixerUndefined] Count=1 ETPCommand0=2 -ETPTopicOrder0=3039 +ETPTopicOrder0=2511 -[External Topic Properties\RsFileIndexOutOfRange] +[External Topic Properties\RsMmMixerVoiceIn] Count=1 ETPCommand0=2 -ETPTopicOrder0=3040 +ETPTopicOrder0=2512 -[External Topic Properties\RsFileMappingInvalidHandle] +[External Topic Properties\RsMmMixerWaveIn] Count=1 ETPCommand0=2 -ETPTopicOrder0=3041 +ETPTopicOrder0=2513 -[External Topic Properties\RsFileMappingOpenFile] +[External Topic Properties\RsMmMixerWaveOut] Count=1 ETPCommand0=2 -ETPTopicOrder0=3042 +ETPTopicOrder0=2514 -[External Topic Properties\RsFileSearchAttrInconsistency] +[External Topic Properties\RsMmNoCdAudio] Count=1 ETPCommand0=2 -ETPTopicOrder0=3043 +ETPTopicOrder0=2515 -[External Topic Properties\RsFileStreamCreate] +[External Topic Properties\RsMmSetEvent] Count=1 ETPCommand0=2 -ETPTopicOrder0=3044 +ETPTopicOrder0=2516 -[External Topic Properties\RsFileUtilsAttrUnavailable] +[External Topic Properties\RsMmTimerActive] Count=1 ETPCommand0=2 -ETPTopicOrder0=3045 +ETPTopicOrder0=2517 -[External Topic Properties\RsFileUtilsLanguageIndex] +[External Topic Properties\RsMmTimerBeginPeriod] Count=1 ETPCommand0=2 -ETPTopicOrder0=3046 +ETPTopicOrder0=3237 -[External Topic Properties\RsFileUtilsNoVersionInfo] +[External Topic Properties\RsMmTimerGetCaps] Count=1 ETPCommand0=2 -ETPTopicOrder0=3047 +ETPTopicOrder0=2518 -[External Topic Properties\RsFormatBadArgumentType] +[External Topic Properties\RsMMTrackAudio] Count=1 ETPCommand0=2 -ETPTopicOrder0=3048 +ETPTopicOrder0=2519 -[External Topic Properties\RsFormatBadArgumentTypeEx] +[External Topic Properties\RsMMTrackOther] Count=1 ETPCommand0=2 -ETPTopicOrder0=3049 +ETPTopicOrder0=2520 -[External Topic Properties\RsFormatException] +[External Topic Properties\RsMmUnknownError] Count=1 ETPCommand0=2 -ETPTopicOrder0=3050 +ETPTopicOrder0=2521 -[External Topic Properties\RsFormatNoArgument] +[External Topic Properties\RsMsBuildNotSupported] Count=1 ETPCommand0=2 -ETPTopicOrder0=3051 +ETPTopicOrder0=2522 -[External Topic Properties\RsFormatNoArgumentEx] +[External Topic Properties\RsNAEndDocument] Count=1 ETPCommand0=2 -ETPTopicOrder0=3052 +ETPTopicOrder0=2523 -[External Topic Properties\RsFormatSyntaxError] +[External Topic Properties\RsNAEndPage] Count=1 ETPCommand0=2 -ETPTopicOrder0=3053 +ETPTopicOrder0=2524 -[External Topic Properties\RsHardDisk] +[External Topic Properties\RsNaNSignal] Count=1 ETPCommand0=2 -ETPTopicOrder0=3054 +ETPTopicOrder0=2525 -[External Topic Properties\RsHasNotTD32Info] +[External Topic Properties\RsNaNTagError] Count=1 ETPCommand0=2 -ETPTopicOrder0=3055 +ETPTopicOrder0=2526 -[External Topic Properties\RsHKCCLong] +[External Topic Properties\RsNASendData] Count=1 ETPCommand0=2 -ETPTopicOrder0=3056 +ETPTopicOrder0=2527 -[External Topic Properties\RsHKCCShort] +[External Topic Properties\RsNAStartDocument] Count=1 ETPCommand0=2 -ETPTopicOrder0=3057 +ETPTopicOrder0=2528 -[External Topic Properties\RsHKCRLong] +[External Topic Properties\RsNAStartPage] Count=1 ETPCommand0=2 -ETPTopicOrder0=3058 +ETPTopicOrder0=2529 -[External Topic Properties\RsHKCRShort] +[External Topic Properties\RsNATransmission] Count=1 ETPCommand0=2 -ETPTopicOrder0=3059 +ETPTopicOrder0=2530 -[External Topic Properties\RsHKCULong] +[External Topic Properties\RsNeedUpdate] Count=1 ETPCommand0=2 -ETPTopicOrder0=3060 +ETPTopicOrder0=2531 -[External Topic Properties\RsHKCUShort] +[External Topic Properties\RsNoBitmapForRegion] Count=1 ETPCommand0=2 -ETPTopicOrder0=3061 +ETPTopicOrder0=2532 -[External Topic Properties\RsHKDDLong] +[External Topic Properties\RsNoCounter] Count=1 ETPCommand0=2 -ETPTopicOrder0=3062 +ETPTopicOrder0=2533 -[External Topic Properties\RsHKDDShort] +[External Topic Properties\RsNoDeviceContextForWindow] Count=1 ETPCommand0=2 -ETPTopicOrder0=3063 +ETPTopicOrder0=2534 -[External Topic Properties\RsHKLMLong] +[External Topic Properties\RsNoLocalVarSig] Count=1 ETPCommand0=2 -ETPTopicOrder0=3064 +ETPTopicOrder0=2535 -[External Topic Properties\RsHKLMShort] +[External Topic Properties\RsNoNaN] Count=1 ETPCommand0=2 -ETPTopicOrder0=3065 +ETPTopicOrder0=2536 -[External Topic Properties\RsHKPDLong] +[External Topic Properties\RsNonPositiveArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=3066 +ETPTopicOrder0=2537 -[External Topic Properties\RsHKPDShort] +[External Topic Properties\RsNtfsUnableToDeleteSymbolicLink] Count=1 ETPCommand0=2 -ETPTopicOrder0=3067 +ETPTopicOrder0=2538 -[External Topic Properties\RsHKUSLong] +[External Topic Properties\RsNumericConstantTooLarge] Count=1 ETPCommand0=2 -ETPTopicOrder0=3068 +ETPTopicOrder0=2539 -[External Topic Properties\RsHKUSShort] +[External Topic Properties\RsOctaveA] Count=1 ETPCommand0=2 -ETPTopicOrder0=3069 +ETPTopicOrder0=2540 -[External Topic Properties\RsIdePackageInstallationFinished] +[External Topic Properties\RsOctaveASharp] Count=1 ETPCommand0=2 -ETPTopicOrder0=3070 +ETPTopicOrder0=2541 -[External Topic Properties\RsIdePackageInstallationStarted] +[External Topic Properties\RsOctaveB] Count=1 ETPCommand0=2 -ETPTopicOrder0=3071 +ETPTopicOrder0=2542 -[External Topic Properties\RsIdePackageUninstallationFinished] +[External Topic Properties\RsOctaveC] Count=1 ETPCommand0=2 -ETPTopicOrder0=3072 +ETPTopicOrder0=2543 -[External Topic Properties\RsIdePackageUninstallationStarted] +[External Topic Properties\RsOctaveCSharp] Count=1 ETPCommand0=2 -ETPTopicOrder0=3073 +ETPTopicOrder0=2544 -[External Topic Properties\RsInconsistentPath] +[External Topic Properties\RsOctaveD] Count=1 ETPCommand0=2 -ETPTopicOrder0=3074 +ETPTopicOrder0=2545 -[External Topic Properties\RsIndexOutOfRange] +[External Topic Properties\RsOctaveDSharp] Count=1 ETPCommand0=2 -ETPTopicOrder0=3075 +ETPTopicOrder0=2546 -[External Topic Properties\RsIndexOutOfRangePaper] +[External Topic Properties\RsOctaveE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3076 +ETPTopicOrder0=2547 -[External Topic Properties\RsInsertingJdbg] +[External Topic Properties\RsOctaveF] Count=1 ETPCommand0=2 -ETPTopicOrder0=3077 +ETPTopicOrder0=2548 -[External Topic Properties\RsInstructionStreamInvalid] +[External Topic Properties\RsOctaveFSharp] Count=1 ETPCommand0=2 -ETPTopicOrder0=3078 +ETPTopicOrder0=2549 -[External Topic Properties\RsIntelCacheDescr00] +[External Topic Properties\RsOctaveG] Count=1 ETPCommand0=2 -ETPTopicOrder0=3079 +ETPTopicOrder0=2550 -[External Topic Properties\RsIntelCacheDescr01] +[External Topic Properties\RsOctaveGSharp] Count=1 ETPCommand0=2 -ETPTopicOrder0=3080 +ETPTopicOrder0=2551 -[External Topic Properties\RsIntelCacheDescr02] +[External Topic Properties\RsOpenDialogAdd] Count=1 ETPCommand0=2 -ETPTopicOrder0=3081 +ETPTopicOrder0=2552 -[External Topic Properties\RsIntelCacheDescr03] +[External Topic Properties\RsOpenDialogConfirmation] Count=1 ETPCommand0=2 -ETPTopicOrder0=3082 +ETPTopicOrder0=2553 -[External Topic Properties\RsIntelCacheDescr04] +[External Topic Properties\RsOpenDialogDelConfirm] Count=1 ETPCommand0=2 -ETPTopicOrder0=3083 +ETPTopicOrder0=2554 -[External Topic Properties\RsIntelCacheDescr05] +[External Topic Properties\RsOpenDialogDelete] Count=1 ETPCommand0=2 -ETPTopicOrder0=3084 +ETPTopicOrder0=2555 -[External Topic Properties\RsIntelCacheDescr06] +[External Topic Properties\RsOpenDialogFavorites] Count=1 ETPCommand0=2 -ETPTopicOrder0=3085 +ETPTopicOrder0=2556 -[External Topic Properties\RsIntelCacheDescr08] +[External Topic Properties\RsOpenEdition] Count=1 ETPCommand0=2 -ETPTopicOrder0=3086 +ETPTopicOrder0=3272 -[External Topic Properties\RsIntelCacheDescr0A] +[External Topic Properties\RsOpenGLInfoError] Count=1 ETPCommand0=2 -ETPTopicOrder0=3087 +ETPTopicOrder0=2557 -[External Topic Properties\RsIntelCacheDescr0B] +[External Topic Properties\RsOSVersionWin2000] Count=1 ETPCommand0=2 -ETPTopicOrder0=3088 +ETPTopicOrder0=2558 -[External Topic Properties\RsIntelCacheDescr0C] +[External Topic Properties\RsOSVersionWin2003] Count=1 ETPCommand0=2 -ETPTopicOrder0=3089 +ETPTopicOrder0=2559 -[External Topic Properties\RsIntelCacheDescr22] +[External Topic Properties\RsOSVersionWin2003R2] Count=1 ETPCommand0=2 -ETPTopicOrder0=3090 +ETPTopicOrder0=2560 -[External Topic Properties\RsIntelCacheDescr23] +[External Topic Properties\RsOSVersionWin7] Count=1 ETPCommand0=2 -ETPTopicOrder0=3091 +ETPTopicOrder0=2561 -[External Topic Properties\RsIntelCacheDescr25] +[External Topic Properties\RsOSVersionWin95] Count=1 ETPCommand0=2 -ETPTopicOrder0=3092 +ETPTopicOrder0=2562 -[External Topic Properties\RsIntelCacheDescr29] +[External Topic Properties\RsOSVersionWin95OSR2] Count=1 ETPCommand0=2 -ETPTopicOrder0=3093 +ETPTopicOrder0=2563 -[External Topic Properties\RsIntelCacheDescr2C] +[External Topic Properties\RsOSVersionWin98] Count=1 ETPCommand0=2 -ETPTopicOrder0=3094 +ETPTopicOrder0=2564 -[External Topic Properties\RsIntelCacheDescr30] +[External Topic Properties\RsOSVersionWin98SE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3095 +ETPTopicOrder0=2565 -[External Topic Properties\RsIntelCacheDescr40] +[External Topic Properties\RsOSVersionWinME] Count=1 ETPCommand0=2 -ETPTopicOrder0=3096 +ETPTopicOrder0=2566 -[External Topic Properties\RsIntelCacheDescr41] +[External Topic Properties\RsOSVersionWinNT3] Count=1 ETPCommand0=2 -ETPTopicOrder0=3097 +ETPTopicOrder0=2567 -[External Topic Properties\RsIntelCacheDescr42] +[External Topic Properties\RsOSVersionWinNT4] Count=1 ETPCommand0=2 -ETPTopicOrder0=3098 +ETPTopicOrder0=2568 -[External Topic Properties\RsIntelCacheDescr43] +[External Topic Properties\RsOSVersionWinServer2008] Count=1 ETPCommand0=2 -ETPTopicOrder0=3099 +ETPTopicOrder0=2569 -[External Topic Properties\RsIntelCacheDescr44] +[External Topic Properties\RsOSVersionWinServer2008R2] Count=1 ETPCommand0=2 -ETPTopicOrder0=3100 +ETPTopicOrder0=2570 -[External Topic Properties\RsIntelCacheDescr45] +[External Topic Properties\RsOSVersionWinVista] Count=1 ETPCommand0=2 -ETPTopicOrder0=3101 +ETPTopicOrder0=2571 -[External Topic Properties\RsIntelCacheDescr46] +[External Topic Properties\RsOSVersionWinXP] Count=1 ETPCommand0=2 -ETPTopicOrder0=3102 +ETPTopicOrder0=2572 -[External Topic Properties\RsIntelCacheDescr47] +[External Topic Properties\RsOSVersionWinXP64] Count=1 ETPCommand0=2 -ETPTopicOrder0=3103 +ETPTopicOrder0=2573 -[External Topic Properties\RsIntelCacheDescr49] +[External Topic Properties\RsPackageInstallationFinished] Count=1 ETPCommand0=2 -ETPTopicOrder0=3104 +ETPTopicOrder0=2574 -[External Topic Properties\RsIntelCacheDescr50] +[External Topic Properties\RsPackageInstallationStarted] Count=1 ETPCommand0=2 -ETPTopicOrder0=3105 +ETPTopicOrder0=2575 -[External Topic Properties\RsIntelCacheDescr51] +[External Topic Properties\RsPackageUninstallationFinished] Count=1 ETPCommand0=2 -ETPTopicOrder0=3106 +ETPTopicOrder0=2576 -[External Topic Properties\RsIntelCacheDescr52] +[External Topic Properties\RsPackageUninstallationStarted] Count=1 ETPCommand0=2 -ETPTopicOrder0=3107 +ETPTopicOrder0=2577 -[External Topic Properties\RsIntelCacheDescr56] +[External Topic Properties\RsPathInvalidDrive] Count=1 ETPCommand0=2 -ETPTopicOrder0=3108 +ETPTopicOrder0=2578 -[External Topic Properties\RsIntelCacheDescr57] +[External Topic Properties\RsPeAddressOfEntryPoint] Count=1 ETPCommand0=2 -ETPTopicOrder0=3109 +ETPTopicOrder0=2579 -[External Topic Properties\RsIntelCacheDescr5B] +[External Topic Properties\RsPeBaseOfCode] Count=1 ETPCommand0=2 -ETPTopicOrder0=3110 +ETPTopicOrder0=2580 -[External Topic Properties\RsIntelCacheDescr5C] +[External Topic Properties\RsPeBaseOfData] Count=1 ETPCommand0=2 -ETPTopicOrder0=3111 +ETPTopicOrder0=2581 -[External Topic Properties\RsIntelCacheDescr5D] +[External Topic Properties\RsPeCantOpen] Count=1 ETPCommand0=2 -ETPTopicOrder0=3112 +ETPTopicOrder0=2582 -[External Topic Properties\RsIntelCacheDescr60] +[External Topic Properties\RsPeCharacteristics] Count=1 ETPCommand0=2 -ETPTopicOrder0=3113 +ETPTopicOrder0=2583 -[External Topic Properties\RsIntelCacheDescr66] +[External Topic Properties\RsPeCheckSum] Count=1 ETPCommand0=2 -ETPTopicOrder0=3114 +ETPTopicOrder0=2584 -[External Topic Properties\RsIntelCacheDescr67] +[External Topic Properties\RsPeCriticalSectionDefaultTimeout] Count=1 ETPCommand0=2 -ETPTopicOrder0=3115 +ETPTopicOrder0=2585 -[External Topic Properties\RsIntelCacheDescr68] +[External Topic Properties\RsPeCSDVersion] Count=1 ETPCommand0=2 -ETPTopicOrder0=3116 +ETPTopicOrder0=2586 -[External Topic Properties\RsIntelCacheDescr70] +[External Topic Properties\RsPeDEBUG_BORLAND] Count=1 ETPCommand0=2 -ETPTopicOrder0=3117 +ETPTopicOrder0=2587 -[External Topic Properties\RsIntelCacheDescr71] +[External Topic Properties\RsPeDEBUG_CODEVIEW] Count=1 ETPCommand0=2 -ETPTopicOrder0=3118 +ETPTopicOrder0=2588 -[External Topic Properties\RsIntelCacheDescr72] +[External Topic Properties\RsPeDEBUG_COFF] Count=1 ETPCommand0=2 -ETPTopicOrder0=3119 +ETPTopicOrder0=2589 -[External Topic Properties\RsIntelCacheDescr78] +[External Topic Properties\RsPeDEBUG_EXCEPTION] Count=1 ETPCommand0=2 -ETPTopicOrder0=3120 +ETPTopicOrder0=2590 -[External Topic Properties\RsIntelCacheDescr79] +[External Topic Properties\RsPeDEBUG_FIXUP] Count=1 ETPCommand0=2 -ETPTopicOrder0=3121 +ETPTopicOrder0=2591 -[External Topic Properties\RsIntelCacheDescr7A] +[External Topic Properties\RsPeDEBUG_FPO] Count=1 ETPCommand0=2 -ETPTopicOrder0=3122 +ETPTopicOrder0=2592 -[External Topic Properties\RsIntelCacheDescr7B] +[External Topic Properties\RsPeDEBUG_MISC] Count=1 ETPCommand0=2 -ETPTopicOrder0=3123 +ETPTopicOrder0=2593 -[External Topic Properties\RsIntelCacheDescr7C] +[External Topic Properties\RsPeDEBUG_OMAP_FROM_SRC] Count=1 ETPCommand0=2 -ETPTopicOrder0=3124 +ETPTopicOrder0=2594 -[External Topic Properties\RsIntelCacheDescr7D] +[External Topic Properties\RsPeDEBUG_OMAP_TO_SRC] Count=1 ETPCommand0=2 -ETPTopicOrder0=3125 +ETPTopicOrder0=2595 -[External Topic Properties\RsIntelCacheDescr7F] +[External Topic Properties\RsPeDEBUG_UNKNOWN] Count=1 ETPCommand0=2 -ETPTopicOrder0=3126 +ETPTopicOrder0=2596 -[External Topic Properties\RsIntelCacheDescr82] +[External Topic Properties\RsPeDeCommitFreeBlockThreshold] Count=1 ETPCommand0=2 -ETPTopicOrder0=3127 +ETPTopicOrder0=2597 -[External Topic Properties\RsIntelCacheDescr83] +[External Topic Properties\RsPeDeCommitTotalFreeThreshold] Count=1 ETPCommand0=2 -ETPTopicOrder0=3128 +ETPTopicOrder0=2598 -[External Topic Properties\RsIntelCacheDescr84] +[External Topic Properties\RsPeDllCharacteristics] Count=1 ETPCommand0=2 -ETPTopicOrder0=3129 +ETPTopicOrder0=2599 -[External Topic Properties\RsIntelCacheDescr85] +[External Topic Properties\RsPeEditList] Count=1 ETPCommand0=2 -ETPTopicOrder0=3130 +ETPTopicOrder0=2600 -[External Topic Properties\RsIntelCacheDescr86] +[External Topic Properties\RsPeFileAlignment] Count=1 ETPCommand0=2 -ETPTopicOrder0=3131 +ETPTopicOrder0=2601 -[External Topic Properties\RsIntelCacheDescr87] +[External Topic Properties\RsPeGlobalFlagsClear] Count=1 ETPCommand0=2 -ETPTopicOrder0=3132 +ETPTopicOrder0=2602 -[External Topic Properties\RsIntelCacheDescrB0] +[External Topic Properties\RsPeGlobalFlagsSet] Count=1 ETPCommand0=2 -ETPTopicOrder0=3133 +ETPTopicOrder0=2603 -[External Topic Properties\RsIntelCacheDescrB3] +[External Topic Properties\RsPeImageBase] Count=1 ETPCommand0=2 -ETPTopicOrder0=3134 +ETPTopicOrder0=2604 -[External Topic Properties\RsIntelCacheDescrB4] +[External Topic Properties\RsPeImageVersion] Count=1 ETPCommand0=2 -ETPTopicOrder0=3135 +ETPTopicOrder0=2605 -[External Topic Properties\RsIntelCacheDescrF0] +[External Topic Properties\RsPeImg_00] Count=1 ETPCommand0=2 -ETPTopicOrder0=3136 +ETPTopicOrder0=2606 -[External Topic Properties\RsIntelCacheDescrF1] +[External Topic Properties\RsPeImg_01] Count=1 ETPCommand0=2 -ETPTopicOrder0=3137 +ETPTopicOrder0=2607 -[External Topic Properties\RsIntelUnknownCache] +[External Topic Properties\RsPeImg_02] Count=1 ETPCommand0=2 -ETPTopicOrder0=3138 +ETPTopicOrder0=2608 -[External Topic Properties\RsInvalidArgument] +[External Topic Properties\RsPeImg_03] Count=1 ETPCommand0=2 -ETPTopicOrder0=3139 +ETPTopicOrder0=2609 -[External Topic Properties\RsInvalidDigit] +[External Topic Properties\RsPeImg_04] Count=1 ETPCommand0=2 -ETPTopicOrder0=3140 +ETPTopicOrder0=2610 -[External Topic Properties\RsInvalidDigitValue] +[External Topic Properties\RsPeImg_05] Count=1 ETPCommand0=2 -ETPTopicOrder0=3141 +ETPTopicOrder0=2611 -[External Topic Properties\RsInvalidEmptyStringItem] +[External Topic Properties\RsPeImg_06] Count=1 ETPCommand0=2 -ETPTopicOrder0=3142 +ETPTopicOrder0=2612 -[External Topic Properties\RsInvalidGUIDString] +[External Topic Properties\RsPeImg_07] Count=1 ETPCommand0=2 -ETPTopicOrder0=3143 +ETPTopicOrder0=2613 -[External Topic Properties\RsInvalidHandleForRegion] +[External Topic Properties\RsPeImg_08] Count=1 ETPCommand0=2 -ETPTopicOrder0=3144 +ETPTopicOrder0=2614 -[External Topic Properties\RsInvalidMMFEmpty] +[External Topic Properties\RsPeImg_09] Count=1 ETPCommand0=2 -ETPTopicOrder0=3145 +ETPTopicOrder0=2615 -[External Topic Properties\RsInvalidMMFName] +[External Topic Properties\RsPeImg_10] Count=1 ETPCommand0=2 -ETPTopicOrder0=3146 +ETPTopicOrder0=2616 -[External Topic Properties\RsInvalidPrinter] +[External Topic Properties\RsPeImg_11] Count=1 ETPCommand0=2 -ETPTopicOrder0=3147 +ETPTopicOrder0=2617 -[External Topic Properties\RsInvalidProcessID] +[External Topic Properties\RsPeImg_12] Count=1 ETPCommand0=2 -ETPTopicOrder0=3148 +ETPTopicOrder0=2618 -[External Topic Properties\RsInvalidRational] +[External Topic Properties\RsPeImg_13] Count=1 ETPCommand0=2 -ETPTopicOrder0=3149 +ETPTopicOrder0=2619 -[External Topic Properties\RsInvalidRegion] +[External Topic Properties\RsPeImg_14] Count=1 ETPCommand0=2 -ETPTopicOrder0=3150 +ETPTopicOrder0=2620 -[External Topic Properties\RsInvalidRegionInfo] +[External Topic Properties\RsPeImg_Reserved] Count=1 ETPCommand0=2 -ETPTopicOrder0=3151 +ETPTopicOrder0=2621 -[External Topic Properties\RsInvalidSampleSize] +[External Topic Properties\RsPeLinkerVersion] Count=1 ETPCommand0=2 -ETPTopicOrder0=3152 +ETPTopicOrder0=2622 -[External Topic Properties\RsInvalidSID] +[External Topic Properties\RsPeLoaderFlags] Count=1 ETPCommand0=2 -ETPTopicOrder0=3153 +ETPTopicOrder0=2623 -[External Topic Properties\RsInvalidSignatureData] +[External Topic Properties\RsPeLockPrefixTable] Count=1 ETPCommand0=2 -ETPTopicOrder0=3154 +ETPTopicOrder0=2624 -[External Topic Properties\RsIStreamNil] +[External Topic Properties\RsPeMachine] Count=1 ETPCommand0=2 -ETPTopicOrder0=3155 +ETPTopicOrder0=2625 -[External Topic Properties\RsJdbgInfo] +[External Topic Properties\RsPeMACHINE_ALPHA] Count=1 ETPCommand0=2 -ETPTopicOrder0=3156 +ETPTopicOrder0=2626 -[External Topic Properties\RsJdbgInfoFailed] +[External Topic Properties\RsPeMACHINE_AM33] Count=1 ETPCommand0=2 -ETPTopicOrder0=3157 +ETPTopicOrder0=2627 -[External Topic Properties\RsJdbgInfoOk] +[External Topic Properties\RsPeMACHINE_AMD64] Count=1 ETPCommand0=2 -ETPTopicOrder0=3158 +ETPTopicOrder0=2628 -[External Topic Properties\RsJpegExtension] +[External Topic Properties\RsPeMACHINE_AMPHA64] Count=1 ETPCommand0=2 -ETPTopicOrder0=3159 +ETPTopicOrder0=2629 -[External Topic Properties\RsKylixName] +[External Topic Properties\RsPeMACHINE_ARM] Count=1 ETPCommand0=2 -ETPTopicOrder0=3160 +ETPTopicOrder0=2630 -[External Topic Properties\RsKylixVersionName] +[External Topic Properties\RsPeMACHINE_CEE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3161 +ETPTopicOrder0=2631 -[External Topic Properties\RsLoadFromStreamSize] +[External Topic Properties\RsPeMACHINE_CEF] Count=1 ETPCommand0=2 -ETPTopicOrder0=3162 +ETPTopicOrder0=2632 -[External Topic Properties\RsLocalVarSigOutOfRange] +[External Topic Properties\RsPeMACHINE_EBC] Count=1 ETPCommand0=2 -ETPTopicOrder0=3163 +ETPTopicOrder0=2633 -[External Topic Properties\RsLsaError] +[External Topic Properties\RsPeMACHINE_I386] Count=1 ETPCommand0=2 -ETPTopicOrder0=3164 +ETPTopicOrder0=2634 -[External Topic Properties\RsMakeUTCTime] +[External Topic Properties\RsPeMACHINE_IA64] Count=1 ETPCommand0=2 -ETPTopicOrder0=3165 +ETPTopicOrder0=2635 -[External Topic Properties\RsMapiErrACCESS_DENIED] +[External Topic Properties\RsPeMACHINE_M32R] Count=1 ETPCommand0=2 -ETPTopicOrder0=3166 +ETPTopicOrder0=2636 -[External Topic Properties\RsMapiErrAMBIGUOUS_RECIPIENT] +[External Topic Properties\RsPeMACHINE_MIPS16] Count=1 ETPCommand0=2 -ETPTopicOrder0=3167 +ETPTopicOrder0=2637 -[External Topic Properties\RsMapiErrATTACHMENT_NOT_FOUND] +[External Topic Properties\RsPeMACHINE_MIPSFPU] Count=1 ETPCommand0=2 -ETPTopicOrder0=3168 +ETPTopicOrder0=2638 -[External Topic Properties\RsMapiErrATTACHMENT_OPEN_FAILURE] +[External Topic Properties\RsPeMACHINE_MIPSFPU16] Count=1 ETPCommand0=2 -ETPTopicOrder0=3169 +ETPTopicOrder0=2639 -[External Topic Properties\RsMapiErrATTACHMENT_WRITE_FAILURE] +[External Topic Properties\RsPeMACHINE_POWERPC] Count=1 ETPCommand0=2 -ETPTopicOrder0=3170 +ETPTopicOrder0=2640 -[External Topic Properties\RsMapiErrBAD_RECIPTYPE] +[External Topic Properties\RsPeMACHINE_POWERPCFP] Count=1 ETPCommand0=2 -ETPTopicOrder0=3171 +ETPTopicOrder0=2641 -[External Topic Properties\RsMapiErrDISK_FULL] +[External Topic Properties\RsPeMACHINE_R10000] Count=1 ETPCommand0=2 -ETPTopicOrder0=3172 +ETPTopicOrder0=2642 -[External Topic Properties\RsMapiErrFAILURE] +[External Topic Properties\RsPeMACHINE_R3000] Count=1 ETPCommand0=2 -ETPTopicOrder0=3173 +ETPTopicOrder0=2643 -[External Topic Properties\RsMapiErrINSUFFICIENT_MEMORY] +[External Topic Properties\RsPeMACHINE_R4000] Count=1 ETPCommand0=2 -ETPTopicOrder0=3174 +ETPTopicOrder0=2644 -[External Topic Properties\RsMapiErrINVALID_EDITFIELDS] +[External Topic Properties\RsPeMACHINE_SH3] Count=1 ETPCommand0=2 -ETPTopicOrder0=3175 +ETPTopicOrder0=2645 -[External Topic Properties\RsMapiErrINVALID_MESSAGE] +[External Topic Properties\RsPeMACHINE_SH3DSP] Count=1 ETPCommand0=2 -ETPTopicOrder0=3176 +ETPTopicOrder0=2646 -[External Topic Properties\RsMapiErrINVALID_RECIPS] +[External Topic Properties\RsPeMACHINE_SH3E] Count=1 ETPCommand0=2 -ETPTopicOrder0=3177 +ETPTopicOrder0=2647 -[External Topic Properties\RsMapiErrINVALID_SESSION] +[External Topic Properties\RsPeMACHINE_SH4] Count=1 ETPCommand0=2 -ETPTopicOrder0=3178 +ETPTopicOrder0=2648 -[External Topic Properties\RsMapiErrLOGIN_FAILURE] +[External Topic Properties\RsPeMACHINE_SH5] Count=1 ETPCommand0=2 -ETPTopicOrder0=3179 +ETPTopicOrder0=2649 -[External Topic Properties\RsMapiErrMESSAGE_IN_USE] +[External Topic Properties\RsPeMACHINE_THUMB] Count=1 ETPCommand0=2 -ETPTopicOrder0=3180 +ETPTopicOrder0=2650 -[External Topic Properties\RsMapiErrNETWORK_FAILURE] +[External Topic Properties\RsPeMACHINE_TRICORE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3181 +ETPTopicOrder0=2651 -[External Topic Properties\RsMapiErrNO_MESSAGES] +[External Topic Properties\RsPeMACHINE_UNKNOWN] Count=1 ETPCommand0=2 -ETPTopicOrder0=3182 +ETPTopicOrder0=2652 -[External Topic Properties\RsMapiErrNOT_SUPPORTED] +[External Topic Properties\RsPeMACHINE_WCEMIPSV2] Count=1 ETPCommand0=2 -ETPTopicOrder0=3183 +ETPTopicOrder0=2653 -[External Topic Properties\RsMapiError] +[External Topic Properties\RsPeMagic] Count=1 ETPCommand0=2 -ETPTopicOrder0=3184 +ETPTopicOrder0=2654 -[External Topic Properties\RsMapiErrTEXT_TOO_LARGE] +[External Topic Properties\RsPeMaximumAllocationSize] Count=1 ETPCommand0=2 -ETPTopicOrder0=3185 +ETPTopicOrder0=2655 -[External Topic Properties\RsMapiErrTOO_MANY_FILES] +[External Topic Properties\RsPeNotAvailableForAttached] Count=1 ETPCommand0=2 -ETPTopicOrder0=3186 +ETPTopicOrder0=2656 -[External Topic Properties\RsMapiErrTOO_MANY_RECIPIENTS] +[External Topic Properties\RsPeNotPE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3187 +ETPTopicOrder0=2657 -[External Topic Properties\RsMapiErrTOO_MANY_SESSIONS] +[External Topic Properties\RsPeNotResDir] Count=1 ETPCommand0=2 -ETPTopicOrder0=3188 +ETPTopicOrder0=2658 -[External Topic Properties\RsMapiErrTYPE_NOT_SUPPORTED] +[External Topic Properties\RsPeNumberOfRvaAndSizes] Count=1 ETPCommand0=2 -ETPTopicOrder0=3189 +ETPTopicOrder0=2659 -[External Topic Properties\RsMapiErrUNKNOWN_RECIPIENT] +[External Topic Properties\RsPeNumberOfSections] Count=1 ETPCommand0=2 -ETPTopicOrder0=3190 +ETPTopicOrder0=2660 -[External Topic Properties\RsMapiErrUSER_ABORT] +[External Topic Properties\RsPeNumberOfSymbols] Count=1 ETPCommand0=2 -ETPTopicOrder0=3191 +ETPTopicOrder0=2661 -[External Topic Properties\RsMapiInvalidIndex] +[External Topic Properties\RsPeOperatingSystemVersion] Count=1 ETPCommand0=2 -ETPTopicOrder0=3192 +ETPTopicOrder0=2662 -[External Topic Properties\RsMapiMailBCC] +[External Topic Properties\RsPePkgBCB4Produced] Count=1 ETPCommand0=2 -ETPTopicOrder0=3193 +ETPTopicOrder0=2663 -[External Topic Properties\RsMapiMailBody] +[External Topic Properties\RsPePkgDelphi4Produced] Count=1 ETPCommand0=2 -ETPTopicOrder0=3194 +ETPTopicOrder0=2664 -[External Topic Properties\RsMapiMailCC] +[External Topic Properties\RsPePkgDesignOnly] Count=1 ETPCommand0=2 -ETPTopicOrder0=3195 +ETPTopicOrder0=2665 -[External Topic Properties\RsMapiMailNoClient] +[External Topic Properties\RsPePkgExecutable] Count=1 ETPCommand0=2 -ETPTopicOrder0=3196 +ETPTopicOrder0=2666 -[External Topic Properties\RsMapiMailORIG] +[External Topic Properties\RsPePkgIgnoreDupUnits] Count=1 ETPCommand0=2 -ETPTopicOrder0=3197 +ETPTopicOrder0=2667 -[External Topic Properties\RsMapiMailSubject] +[External Topic Properties\RsPePkgImplicit] Count=1 ETPCommand0=2 -ETPTopicOrder0=3198 +ETPTopicOrder0=2668 -[External Topic Properties\RsMapiMailTO] +[External Topic Properties\RsPePkgMain] Count=1 ETPCommand0=2 -ETPTopicOrder0=3199 +ETPTopicOrder0=2669 -[External Topic Properties\RsMapiMissingExport] +[External Topic Properties\RsPePkgNeverBuild] Count=1 ETPCommand0=2 -ETPTopicOrder0=3200 +ETPTopicOrder0=2670 -[External Topic Properties\RsMapSizeFmt] +[External Topic Properties\RsPePkgOrgWeak] Count=1 ETPCommand0=2 -ETPTopicOrder0=3201 +ETPTopicOrder0=2671 -[External Topic Properties\RsMathDomainError] +[External Topic Properties\RsPePkgPackage] Count=1 ETPCommand0=2 -ETPTopicOrder0=3202 +ETPTopicOrder0=2672 -[External Topic Properties\RsMetSectInitialize] +[External Topic Properties\RsPePkgProducerUndefined] Count=1 ETPCommand0=2 -ETPTopicOrder0=3203 +ETPTopicOrder0=2673 -[External Topic Properties\RsMetSectInvalidParameter] +[External Topic Properties\RsPePkgRunOnly] Count=1 ETPCommand0=2 -ETPTopicOrder0=3204 +ETPTopicOrder0=2674 -[External Topic Properties\RsMetSectNameEmpty] +[External Topic Properties\RsPePkgV3Produced] Count=1 ETPCommand0=2 -ETPTopicOrder0=3205 +ETPTopicOrder0=2675 -[External Topic Properties\RsMidiInUnknownError] +[External Topic Properties\RsPePkgWeak] Count=1 ETPCommand0=2 -ETPTopicOrder0=3206 +ETPTopicOrder0=2676 -[External Topic Properties\RsMidiInvalidChannelNum] +[External Topic Properties\RsPePointerToSymbolTable] Count=1 ETPCommand0=2 -ETPTopicOrder0=3207 +ETPTopicOrder0=2677 -[External Topic Properties\RsMidiNotImplemented] +[External Topic Properties\RsPeProcessAffinityMask] Count=1 ETPCommand0=2 -ETPTopicOrder0=3208 +ETPTopicOrder0=2678 -[External Topic Properties\RsMidiOutUnknownError] +[External Topic Properties\RsPeProcessHeapFlags] Count=1 ETPCommand0=2 -ETPTopicOrder0=3209 +ETPTopicOrder0=2679 -[External Topic Properties\RsMMCdTimeFormat] +[External Topic Properties\RsPeReadOnlyStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=3210 +ETPTopicOrder0=2680 -[External Topic Properties\RsMmCdTrackNo] +[External Topic Properties\RsPeReserved] Count=1 ETPCommand0=2 -ETPTopicOrder0=3211 +ETPTopicOrder0=2681 -[External Topic Properties\RsMmInconsistentId] +[External Topic Properties\RsPersonal] Count=1 ETPCommand0=2 -ETPTopicOrder0=3212 +ETPTopicOrder0=2682 -[External Topic Properties\RsMmMciErrorPrefix] +[External Topic Properties\RsPeSectionAlignment] Count=1 ETPCommand0=2 -ETPTopicOrder0=3213 +ETPTopicOrder0=2683 -[External Topic Properties\RsMmMixerAnalog] +[External Topic Properties\RsPeSectionNotFound] Count=1 ETPCommand0=2 -ETPTopicOrder0=3214 +ETPTopicOrder0=2684 -[External Topic Properties\RsMmMixerAuxiliary] +[External Topic Properties\RsPeSignature] Count=1 ETPCommand0=2 -ETPTopicOrder0=3215 +ETPTopicOrder0=2685 -[External Topic Properties\RsMmMixerCompactDisc] +[External Topic Properties\RsPeSizeOfCode] Count=1 ETPCommand0=2 -ETPTopicOrder0=3216 +ETPTopicOrder0=2686 -[External Topic Properties\RsMmMixerCtlNotFound] +[External Topic Properties\RsPeSizeOfHeaders] Count=1 ETPCommand0=2 -ETPTopicOrder0=3217 +ETPTopicOrder0=2687 -[External Topic Properties\RsMmMixerDestination] +[External Topic Properties\RsPeSizeOfHeapCommit] Count=1 ETPCommand0=2 -ETPTopicOrder0=3218 +ETPTopicOrder0=2688 -[External Topic Properties\RsMmMixerDigital] +[External Topic Properties\RsPeSizeOfHeapReserve] Count=1 ETPCommand0=2 -ETPTopicOrder0=3219 +ETPTopicOrder0=2689 -[External Topic Properties\RsMmMixerHeadphones] +[External Topic Properties\RsPeSizeOfImage] Count=1 ETPCommand0=2 -ETPTopicOrder0=3220 +ETPTopicOrder0=2690 -[External Topic Properties\RsMmMixerLine] +[External Topic Properties\RsPeSizeOfInitializedData] Count=1 ETPCommand0=2 -ETPTopicOrder0=3221 +ETPTopicOrder0=2691 -[External Topic Properties\RsMmMixerMicrophone] +[External Topic Properties\RsPeSizeOfOptionalHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=3222 +ETPTopicOrder0=2692 -[External Topic Properties\RsMmMixerMonitor] +[External Topic Properties\RsPeSizeOfStackCommit] Count=1 ETPCommand0=2 -ETPTopicOrder0=3223 +ETPTopicOrder0=2693 -[External Topic Properties\RsMmMixerNoDevices] +[External Topic Properties\RsPeSizeOfStackReserve] Count=1 ETPCommand0=2 -ETPTopicOrder0=3224 +ETPTopicOrder0=2694 -[External Topic Properties\RsMmMixerPcSpeaker] +[External Topic Properties\RsPeSizeOfUninitializedData] Count=1 ETPCommand0=2 -ETPTopicOrder0=3225 +ETPTopicOrder0=2695 -[External Topic Properties\RsMmMixerSource] +[External Topic Properties\RsPeSubsystem] Count=1 ETPCommand0=2 -ETPTopicOrder0=3226 +ETPTopicOrder0=2696 -[External Topic Properties\RsMmMixerSpeakers] +[External Topic Properties\RsPeSUBSYSTEM_NATIVE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3227 +ETPTopicOrder0=2697 -[External Topic Properties\RsMmMixerSynthesizer] +[External Topic Properties\RsPeSUBSYSTEM_OS2_CUI] Count=1 ETPCommand0=2 -ETPTopicOrder0=3228 +ETPTopicOrder0=2698 -[External Topic Properties\RsMmMixerTelephone] +[External Topic Properties\RsPeSUBSYSTEM_POSIX_CUI] Count=1 ETPCommand0=2 -ETPTopicOrder0=3229 +ETPTopicOrder0=2699 -[External Topic Properties\RsMmMixerUndefined] +[External Topic Properties\RsPeSUBSYSTEM_RESERVED8] Count=1 ETPCommand0=2 -ETPTopicOrder0=3230 +ETPTopicOrder0=2700 -[External Topic Properties\RsMmMixerVoiceIn] +[External Topic Properties\RsPeSUBSYSTEM_UNKNOWN] Count=1 ETPCommand0=2 -ETPTopicOrder0=3231 +ETPTopicOrder0=2701 -[External Topic Properties\RsMmMixerWaveIn] +[External Topic Properties\RsPeSUBSYSTEM_WINDOWS_CUI] Count=1 ETPCommand0=2 -ETPTopicOrder0=3232 +ETPTopicOrder0=2702 -[External Topic Properties\RsMmMixerWaveOut] +[External Topic Properties\RsPeSUBSYSTEM_WINDOWS_GUI] Count=1 ETPCommand0=2 -ETPTopicOrder0=3233 +ETPTopicOrder0=2703 -[External Topic Properties\RsMmNoCdAudio] +[External Topic Properties\RsPeSubsystemVersion] Count=1 ETPCommand0=2 -ETPTopicOrder0=3234 +ETPTopicOrder0=2704 -[External Topic Properties\RsMmSetEvent] +[External Topic Properties\RsPeTimeDateStamp] Count=1 ETPCommand0=2 -ETPTopicOrder0=3235 +ETPTopicOrder0=2705 -[External Topic Properties\RsMmTimerActive] +[External Topic Properties\RsPeUnknownTarget] Count=1 ETPCommand0=2 -ETPTopicOrder0=3236 +ETPTopicOrder0=2706 -[External Topic Properties\RsMmTimerBeginPeriod] +[External Topic Properties\RsPeVersion] Count=1 ETPCommand0=2 -ETPTopicOrder0=3237 +ETPTopicOrder0=2707 -[External Topic Properties\RsMmTimerGetCaps] +[External Topic Properties\RsPeVirtualMemoryThreshold] Count=1 ETPCommand0=2 -ETPTopicOrder0=3238 +ETPTopicOrder0=2708 -[External Topic Properties\RsMMTrackAudio] +[External Topic Properties\RsPeWin32VersionValue] Count=1 ETPCommand0=2 -ETPTopicOrder0=3239 +ETPTopicOrder0=2709 -[External Topic Properties\RsMMTrackOther] +[External Topic Properties\RsPngExtension] Count=1 ETPCommand0=2 -ETPTopicOrder0=3240 +ETPTopicOrder0=2710 -[External Topic Properties\RsMmUnknownError] +[External Topic Properties\RsPowerComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=3241 +ETPTopicOrder0=2711 -[External Topic Properties\RsMsBuildNotSupported] +[External Topic Properties\RsPowerInfinite] Count=1 ETPCommand0=2 -ETPTopicOrder0=3242 +ETPTopicOrder0=2712 -[External Topic Properties\RsNAEndDocument] +[External Topic Properties\RsProductTypeAdvancedServer] Count=1 ETPCommand0=2 -ETPTopicOrder0=3243 +ETPTopicOrder0=2713 -[External Topic Properties\RsNAEndPage] +[External Topic Properties\RsProductTypeDatacenterServer] Count=1 ETPCommand0=2 -ETPTopicOrder0=3244 +ETPTopicOrder0=2714 -[External Topic Properties\RsNaNSignal] +[External Topic Properties\RsProductTypeEnterprise] Count=1 ETPCommand0=2 -ETPTopicOrder0=3245 +ETPTopicOrder0=2715 -[External Topic Properties\RsNaNTagError] +[External Topic Properties\RsProductTypePersonal] Count=1 ETPCommand0=2 -ETPTopicOrder0=3246 +ETPTopicOrder0=2716 -[External Topic Properties\RsNASendData] +[External Topic Properties\RsProductTypeProfessional] Count=1 ETPCommand0=2 -ETPTopicOrder0=3247 +ETPTopicOrder0=2717 -[External Topic Properties\RsNAStartDocument] +[External Topic Properties\RsProductTypeServer] Count=1 ETPCommand0=2 -ETPTopicOrder0=3248 +ETPTopicOrder0=2718 -[External Topic Properties\RsNAStartPage] +[External Topic Properties\RsProductTypeWebEdition] Count=1 ETPCommand0=2 -ETPTopicOrder0=3249 +ETPTopicOrder0=2719 -[External Topic Properties\RsNATransmission] +[External Topic Properties\RsProductTypeWorkStation] Count=1 ETPCommand0=2 -ETPTopicOrder0=3250 +ETPTopicOrder0=2720 -[External Topic Properties\RsNeedUpdate] +[External Topic Properties\RsProfessional] Count=1 ETPCommand0=2 -ETPTopicOrder0=3251 +ETPTopicOrder0=2721 -[External Topic Properties\RsNoBitmapForRegion] +[External Topic Properties\RsPS10X14] Count=1 ETPCommand0=2 -ETPTopicOrder0=3252 +ETPTopicOrder0=2722 -[External Topic Properties\RsNoCounter] +[External Topic Properties\RsPS11X17] Count=1 ETPCommand0=2 -ETPTopicOrder0=3253 +ETPTopicOrder0=2723 -[External Topic Properties\RsNoDeviceContextForWindow] +[External Topic Properties\RsPSA3] Count=1 ETPCommand0=2 -ETPTopicOrder0=3254 +ETPTopicOrder0=2724 -[External Topic Properties\RsNoLocalVarSig] +[External Topic Properties\RsPSA4] Count=1 ETPCommand0=2 -ETPTopicOrder0=3255 +ETPTopicOrder0=2725 -[External Topic Properties\RsNoNaN] +[External Topic Properties\RsPSA4Small] Count=1 ETPCommand0=2 -ETPTopicOrder0=3256 +ETPTopicOrder0=2726 -[External Topic Properties\RsNonPositiveArray] +[External Topic Properties\RsPSA5] Count=1 ETPCommand0=2 -ETPTopicOrder0=3257 +ETPTopicOrder0=2727 -[External Topic Properties\RsNtfsUnableToDeleteSymbolicLink] +[External Topic Properties\RsPSB4] Count=1 ETPCommand0=2 -ETPTopicOrder0=3258 +ETPTopicOrder0=2728 -[External Topic Properties\RsNumericConstantTooLarge] +[External Topic Properties\RsPSB5] Count=1 ETPCommand0=2 -ETPTopicOrder0=3259 +ETPTopicOrder0=2729 -[External Topic Properties\RsOctaveA] +[External Topic Properties\RsPSCSheet] Count=1 ETPCommand0=2 -ETPTopicOrder0=3260 +ETPTopicOrder0=2730 -[External Topic Properties\RsOctaveASharp] +[External Topic Properties\RsPSDSheet] Count=1 ETPCommand0=2 -ETPTopicOrder0=3261 +ETPTopicOrder0=2731 -[External Topic Properties\RsOctaveB] +[External Topic Properties\RsPSEnv10] Count=1 ETPCommand0=2 -ETPTopicOrder0=3262 +ETPTopicOrder0=2732 -[External Topic Properties\RsOctaveC] +[External Topic Properties\RsPSEnv11] Count=1 ETPCommand0=2 -ETPTopicOrder0=3263 +ETPTopicOrder0=2733 -[External Topic Properties\RsOctaveCSharp] +[External Topic Properties\RsPSEnv12] Count=1 ETPCommand0=2 -ETPTopicOrder0=3264 +ETPTopicOrder0=2734 -[External Topic Properties\RsOctaveD] +[External Topic Properties\RsPSEnv14] Count=1 ETPCommand0=2 -ETPTopicOrder0=3265 +ETPTopicOrder0=2735 -[External Topic Properties\RsOctaveDSharp] +[External Topic Properties\RsPSEnv9] Count=1 ETPCommand0=2 -ETPTopicOrder0=3266 +ETPTopicOrder0=2736 -[External Topic Properties\RsOctaveE] +[External Topic Properties\RsPSESheet] Count=1 ETPCommand0=2 -ETPTopicOrder0=3267 +ETPTopicOrder0=2737 -[External Topic Properties\RsOctaveF] +[External Topic Properties\RsPSExecutive] Count=1 ETPCommand0=2 -ETPTopicOrder0=3268 +ETPTopicOrder0=2738 -[External Topic Properties\RsOctaveFSharp] +[External Topic Properties\RsPSFolio] Count=1 ETPCommand0=2 -ETPTopicOrder0=3269 +ETPTopicOrder0=2739 -[External Topic Properties\RsOctaveG] +[External Topic Properties\RsPSLedger] Count=1 ETPCommand0=2 -ETPTopicOrder0=3270 +ETPTopicOrder0=2740 -[External Topic Properties\RsOctaveGSharp] +[External Topic Properties\RsPSLegal] Count=1 ETPCommand0=2 -ETPTopicOrder0=3271 +ETPTopicOrder0=2741 -[External Topic Properties\RsOpenEdition] +[External Topic Properties\RsPSLetter] Count=1 ETPCommand0=2 -ETPTopicOrder0=3272 +ETPTopicOrder0=2742 -[External Topic Properties\RsOpenGLInfoError] +[External Topic Properties\RsPSLetterSmall] Count=1 ETPCommand0=2 -ETPTopicOrder0=3273 +ETPTopicOrder0=2743 -[External Topic Properties\RsOSVersionWin2000] +[External Topic Properties\RsPSNote] Count=1 ETPCommand0=2 -ETPTopicOrder0=3274 +ETPTopicOrder0=2744 -[External Topic Properties\RsOSVersionWin2003] +[External Topic Properties\RsPSQuarto] Count=1 ETPCommand0=2 -ETPTopicOrder0=3275 +ETPTopicOrder0=2745 -[External Topic Properties\RsOSVersionWin2003R2] +[External Topic Properties\RsPSStatement] Count=1 ETPCommand0=2 -ETPTopicOrder0=3276 +ETPTopicOrder0=2746 -[External Topic Properties\RsOSVersionWin95] +[External Topic Properties\RsPSTabloid] Count=1 ETPCommand0=2 -ETPTopicOrder0=3277 +ETPTopicOrder0=2747 -[External Topic Properties\RsOSVersionWin95OSR2] +[External Topic Properties\RsPSUnknown] Count=1 ETPCommand0=2 -ETPTopicOrder0=3278 +ETPTopicOrder0=2748 -[External Topic Properties\RsOSVersionWin98] +[External Topic Properties\RsPSUser] Count=1 ETPCommand0=2 -ETPTopicOrder0=3279 +ETPTopicOrder0=2749 -[External Topic Properties\RsOSVersionWin98SE] +[External Topic Properties\RsRamDisk] Count=1 ETPCommand0=2 -ETPTopicOrder0=3280 +ETPTopicOrder0=2750 -[External Topic Properties\RsOSVersionWinME] +[External Topic Properties\RsRangeError] Count=1 ETPCommand0=2 -ETPTopicOrder0=3281 +ETPTopicOrder0=3463 -[External Topic Properties\RsOSVersionWinNT3] +[External Topic Properties\RsRationalDivByZero] Count=1 ETPCommand0=2 -ETPTopicOrder0=3282 +ETPTopicOrder0=2751 -[External Topic Properties\RsOSVersionWinNT4] +[External Topic Properties\RsReadKeyError] Count=1 ETPCommand0=2 -ETPTopicOrder0=3283 +ETPTopicOrder0=2752 -[External Topic Properties\RsOSVersionWinServer2008] +[External Topic Properties\RsRegionCouldNotCreated] Count=1 ETPCommand0=2 -ETPTopicOrder0=3284 +ETPTopicOrder0=2753 -[External Topic Properties\RsOSVersionWinVista] +[External Topic Properties\RsRegionDataOutOfBound] Count=1 ETPCommand0=2 -ETPTopicOrder0=3285 +ETPTopicOrder0=2754 -[External Topic Properties\RsOSVersionWinXP] +[External Topic Properties\RsRegisteringExpert] Count=1 ETPCommand0=2 -ETPTopicOrder0=3286 +ETPTopicOrder0=2755 -[External Topic Properties\RsOSVersionWinXP64] +[External Topic Properties\RsRegisteringIdePackage] Count=1 ETPCommand0=2 -ETPTopicOrder0=3287 +ETPTopicOrder0=2756 -[External Topic Properties\RsPackageInstallationFinished] +[External Topic Properties\RsRegisteringPackage] Count=1 ETPCommand0=2 -ETPTopicOrder0=3288 +ETPTopicOrder0=2757 -[External Topic Properties\RsPackageInstallationStarted] +[External Topic Properties\RsRegistrationFailed] Count=1 ETPCommand0=2 -ETPTopicOrder0=3289 +ETPTopicOrder0=2758 -[External Topic Properties\RsPackageUninstallationFinished] +[External Topic Properties\RsRegistrationOk] Count=1 ETPCommand0=2 -ETPTopicOrder0=3290 +ETPTopicOrder0=2759 -[External Topic Properties\RsPackageUninstallationStarted] +[External Topic Properties\RsRemoteDrive] Count=1 ETPCommand0=2 -ETPTopicOrder0=3291 +ETPTopicOrder0=2760 -[External Topic Properties\RsPathInvalidDrive] +[External Topic Properties\RsRemovableDrive] Count=1 ETPCommand0=2 -ETPTopicOrder0=3292 +ETPTopicOrder0=2761 -[External Topic Properties\RsPeAddressOfEntryPoint] +[External Topic Properties\RsRetrievingPaperSource] Count=1 ETPCommand0=2 -ETPTopicOrder0=3293 +ETPTopicOrder0=2762 -[External Topic Properties\RsPeBaseOfCode] +[External Topic Properties\RsRetrievingSource] Count=1 ETPCommand0=2 -ETPTopicOrder0=3294 +ETPTopicOrder0=2763 -[External Topic Properties\RsPeBaseOfData] +[External Topic Properties\RsRSName] Count=1 ETPCommand0=2 -ETPTopicOrder0=3295 +ETPTopicOrder0=2764 -[External Topic Properties\RsPeCantOpen] +[External Topic Properties\RsRTTIArrayOf] Count=1 ETPCommand0=2 -ETPTopicOrder0=3296 +ETPTopicOrder0=2765 -[External Topic Properties\RsPeCharacteristics] +[External Topic Properties\RsRTTIBasedOn] Count=1 ETPCommand0=2 -ETPTopicOrder0=3297 +ETPTopicOrder0=2766 -[External Topic Properties\RsPeCheckSum] +[External Topic Properties\RsRTTIBits] Count=1 ETPCommand0=2 -ETPTopicOrder0=3298 +ETPTopicOrder0=2767 -[External Topic Properties\RsPeCriticalSectionDefaultTimeout] +[External Topic Properties\RsRTTIClassName] Count=1 ETPCommand0=2 -ETPTopicOrder0=3299 +ETPTopicOrder0=2768 -[External Topic Properties\RsPeCSDVersion] +[External Topic Properties\RsRTTIConst] Count=1 ETPCommand0=2 -ETPTopicOrder0=3300 +ETPTopicOrder0=2769 -[External Topic Properties\RsPeDEBUG_BORLAND] +[External Topic Properties\RsRTTIDefault] Count=1 ETPCommand0=2 -ETPTopicOrder0=3301 +ETPTopicOrder0=2770 -[External Topic Properties\RsPeDEBUG_CODEVIEW] +[External Topic Properties\RsRTTIElNeedCleanup] Count=1 ETPCommand0=2 -ETPTopicOrder0=3302 +ETPTopicOrder0=2771 -[External Topic Properties\RsPeDEBUG_COFF] +[External Topic Properties\RsRTTIElSize] Count=1 ETPCommand0=2 -ETPTopicOrder0=3303 +ETPTopicOrder0=2772 -[External Topic Properties\RsPeDEBUG_EXCEPTION] +[External Topic Properties\RsRTTIElType] Count=1 ETPCommand0=2 -ETPTopicOrder0=3304 +ETPTopicOrder0=2773 -[External Topic Properties\RsPeDEBUG_FIXUP] +[External Topic Properties\RsRTTIFalse] Count=1 ETPCommand0=2 -ETPTopicOrder0=3305 +ETPTopicOrder0=2774 -[External Topic Properties\RsPeDEBUG_FPO] +[External Topic Properties\RsRTTIField] Count=1 ETPCommand0=2 -ETPTopicOrder0=3306 +ETPTopicOrder0=2775 -[External Topic Properties\RsPeDEBUG_MISC] +[External Topic Properties\RsRTTIFlags] Count=1 ETPCommand0=2 -ETPTopicOrder0=3307 +ETPTopicOrder0=2776 -[External Topic Properties\RsPeDEBUG_OMAP_FROM_SRC] +[External Topic Properties\RsRTTIFloatType] Count=1 ETPCommand0=2 -ETPTopicOrder0=3308 +ETPTopicOrder0=2777 -[External Topic Properties\RsPeDEBUG_OMAP_TO_SRC] +[External Topic Properties\RsRTTIGUID] Count=1 ETPCommand0=2 -ETPTopicOrder0=3309 +ETPTopicOrder0=2778 -[External Topic Properties\RsPeDEBUG_UNKNOWN] +[External Topic Properties\RsRTTIIndex] Count=1 ETPCommand0=2 -ETPTopicOrder0=3310 +ETPTopicOrder0=2779 -[External Topic Properties\RsPeDeCommitFreeBlockThreshold] +[External Topic Properties\RsRTTIInvalidBaseType] Count=1 ETPCommand0=2 -ETPTopicOrder0=3311 +ETPTopicOrder0=2780 -[External Topic Properties\RsPeDeCommitTotalFreeThreshold] +[External Topic Properties\RsRTTIMaxLen] Count=1 ETPCommand0=2 -ETPTopicOrder0=3312 +ETPTopicOrder0=2781 -[External Topic Properties\RsPeDllCharacteristics] +[External Topic Properties\RsRTTIMaxValue] Count=1 ETPCommand0=2 -ETPTopicOrder0=3313 +ETPTopicOrder0=2782 -[External Topic Properties\RsPeEditList] +[External Topic Properties\RsRTTIMethodKind] Count=1 ETPCommand0=2 -ETPTopicOrder0=3314 +ETPTopicOrder0=2783 -[External Topic Properties\RsPeFileAlignment] +[External Topic Properties\RsRTTIMinValue] Count=1 ETPCommand0=2 -ETPTopicOrder0=3315 +ETPTopicOrder0=2784 -[External Topic Properties\RsPeGlobalFlagsClear] +[External Topic Properties\RsRTTIName] Count=1 ETPCommand0=2 -ETPTopicOrder0=3316 +ETPTopicOrder0=2785 -[External Topic Properties\RsPeGlobalFlagsSet] +[External Topic Properties\RsRTTINameList] Count=1 ETPCommand0=2 -ETPTopicOrder0=3317 +ETPTopicOrder0=2786 -[External Topic Properties\RsPeImageBase] +[External Topic Properties\RsRTTIOrdinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=3318 +ETPTopicOrder0=2787 -[External Topic Properties\RsPeImageVersion] +[External Topic Properties\RsRTTIOrdinalType] Count=1 ETPCommand0=2 -ETPTopicOrder0=3319 +ETPTopicOrder0=2788 -[External Topic Properties\RsPeImg_00] +[External Topic Properties\RsRTTIOut] Count=1 ETPCommand0=2 -ETPTopicOrder0=3320 +ETPTopicOrder0=2789 -[External Topic Properties\RsPeImg_01] +[External Topic Properties\RsRTTIParamCount] Count=1 ETPCommand0=2 -ETPTopicOrder0=3321 +ETPTopicOrder0=2790 -[External Topic Properties\RsPeImg_02] +[External Topic Properties\RsRTTIParent] Count=1 ETPCommand0=2 -ETPTopicOrder0=3322 +ETPTopicOrder0=2791 -[External Topic Properties\RsPeImg_03] +[External Topic Properties\RsRTTIPropCount] Count=1 ETPCommand0=2 -ETPTopicOrder0=3323 +ETPTopicOrder0=2792 -[External Topic Properties\RsPeImg_04] +[External Topic Properties\RsRTTIPropRead] Count=1 ETPCommand0=2 -ETPTopicOrder0=3324 +ETPTopicOrder0=2793 -[External Topic Properties\RsPeImg_05] +[External Topic Properties\RsRTTIPropStored] Count=1 ETPCommand0=2 -ETPTopicOrder0=3325 +ETPTopicOrder0=2794 -[External Topic Properties\RsPeImg_06] +[External Topic Properties\RsRTTIPropWrite] Count=1 ETPCommand0=2 -ETPTopicOrder0=3326 +ETPTopicOrder0=2795 -[External Topic Properties\RsPeImg_07] +[External Topic Properties\RsRTTIReturnType] Count=1 ETPCommand0=2 -ETPTopicOrder0=3327 +ETPTopicOrder0=2796 -[External Topic Properties\RsPeImg_08] +[External Topic Properties\RsRTTIStaticMethod] Count=1 ETPCommand0=2 -ETPTopicOrder0=3328 +ETPTopicOrder0=2797 -[External Topic Properties\RsPeImg_09] +[External Topic Properties\RsRTTITrue] Count=1 ETPCommand0=2 -ETPTopicOrder0=3329 +ETPTopicOrder0=2798 -[External Topic Properties\RsPeImg_10] +[External Topic Properties\RsRTTIType] Count=1 ETPCommand0=2 -ETPTopicOrder0=3330 +ETPTopicOrder0=2799 -[External Topic Properties\RsPeImg_11] +[External Topic Properties\RsRTTITypeError] Count=1 ETPCommand0=2 -ETPTopicOrder0=3331 +ETPTopicOrder0=2800 -[External Topic Properties\RsPeImg_12] +[External Topic Properties\RsRTTITypeInfoAt] Count=1 ETPCommand0=2 -ETPTopicOrder0=3332 +ETPTopicOrder0=2801 -[External Topic Properties\RsPeImg_13] +[External Topic Properties\RsRTTITypeKind] Count=1 ETPCommand0=2 -ETPTopicOrder0=3333 +ETPTopicOrder0=2802 -[External Topic Properties\RsPeImg_14] +[External Topic Properties\RsRTTIUnitName] Count=1 ETPCommand0=2 -ETPTopicOrder0=3334 +ETPTopicOrder0=2803 -[External Topic Properties\RsPeLinkerVersion] +[External Topic Properties\RsRTTIUnknownIdentifier] Count=1 ETPCommand0=2 -ETPTopicOrder0=3335 +ETPTopicOrder0=2804 -[External Topic Properties\RsPeLoaderFlags] +[External Topic Properties\RsRTTIValueOutOfRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=3336 +ETPTopicOrder0=2805 -[External Topic Properties\RsPeLockPrefixTable] +[External Topic Properties\RsRTTIVar] Count=1 ETPCommand0=2 -ETPTopicOrder0=3337 +ETPTopicOrder0=2806 -[External Topic Properties\RsPeMachine] +[External Topic Properties\RsRTTIVarType] Count=1 ETPCommand0=2 -ETPTopicOrder0=3338 +ETPTopicOrder0=2807 -[External Topic Properties\RsPeMACHINE_ALPHA] +[External Topic Properties\RsRTTIVirtualMethod] Count=1 ETPCommand0=2 -ETPTopicOrder0=3339 +ETPTopicOrder0=2808 -[External Topic Properties\RsPeMACHINE_AM33] +[External Topic Properties\RsScheduleDayInRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=3340 +ETPTopicOrder0=2809 -[External Topic Properties\RsPeMACHINE_AMD64] +[External Topic Properties\RsScheduleDayNotSupported] Count=1 ETPCommand0=2 -ETPTopicOrder0=3341 +ETPTopicOrder0=2810 -[External Topic Properties\RsPeMACHINE_AMPHA64] +[External Topic Properties\RsScheduleEndBeforeStart] Count=1 ETPCommand0=2 -ETPTopicOrder0=3342 +ETPTopicOrder0=2811 -[External Topic Properties\RsPeMACHINE_ARM] +[External Topic Properties\RsScheduleIndexValueSup] Count=1 ETPCommand0=2 -ETPTopicOrder0=3343 +ETPTopicOrder0=2812 -[External Topic Properties\RsPeMACHINE_CEE] +[External Topic Properties\RsScheduleIndexValueZero] Count=1 ETPCommand0=2 -ETPTopicOrder0=3344 +ETPTopicOrder0=2813 -[External Topic Properties\RsPeMACHINE_CEF] +[External Topic Properties\RsScheduleIntervalZero] Count=1 ETPCommand0=2 -ETPTopicOrder0=3345 +ETPTopicOrder0=2814 -[External Topic Properties\RsPeMACHINE_EBC] +[External Topic Properties\RsScheduleInvalidTime] Count=1 ETPCommand0=2 -ETPTopicOrder0=3346 +ETPTopicOrder0=2815 -[External Topic Properties\RsPeMACHINE_I386] +[External Topic Properties\RsScheduleMonthInRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=3347 +ETPTopicOrder0=2816 -[External Topic Properties\RsPeMACHINE_IA64] +[External Topic Properties\RsScheduleNoDaySpecified] Count=1 ETPCommand0=2 -ETPTopicOrder0=3348 +ETPTopicOrder0=2817 -[External Topic Properties\RsPeMACHINE_M32R] +[External Topic Properties\RsSelectObjectInDc] Count=1 ETPCommand0=2 -ETPTopicOrder0=3349 +ETPTopicOrder0=2818 -[External Topic Properties\RsPeMACHINE_MIPS16] +[External Topic Properties\RsServerDeveloper] Count=1 ETPCommand0=2 -ETPTopicOrder0=3350 +ETPTopicOrder0=3532 -[External Topic Properties\RsPeMACHINE_MIPSFPU] +[External Topic Properties\RsSIDBufferTooSmall] Count=1 ETPCommand0=2 -ETPTopicOrder0=3351 +ETPTopicOrder0=2819 -[External Topic Properties\RsPeMACHINE_MIPSFPU16] +[External Topic Properties\RsSourceBitmapEmpty] Count=1 ETPCommand0=2 -ETPTopicOrder0=3352 +ETPTopicOrder0=2820 -[External Topic Properties\RsPeMACHINE_POWERPC] +[External Topic Properties\RsSourceBitmapInvalid] Count=1 ETPCommand0=2 -ETPTopicOrder0=3353 +ETPTopicOrder0=2821 -[External Topic Properties\RsPeMACHINE_POWERPCFP] +[External Topic Properties\RsSPInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=3354 +ETPTopicOrder0=2822 -[External Topic Properties\RsPeMACHINE_R10000] +[External Topic Properties\RsSpoolerDocName] Count=1 ETPCommand0=2 -ETPTopicOrder0=3355 +ETPTopicOrder0=2823 -[External Topic Properties\RsPeMACHINE_R3000] +[External Topic Properties\RsStandard] Count=1 ETPCommand0=2 -ETPTopicOrder0=3356 +ETPTopicOrder0=2824 -[External Topic Properties\RsPeMACHINE_R4000] +[External Topic Properties\RsStreamsCRCError] Count=1 ETPCommand0=2 -ETPTopicOrder0=3357 +ETPTopicOrder0=2825 -[External Topic Properties\RsPeMACHINE_SH3] +[External Topic Properties\RsStreamsCreateError] Count=1 ETPCommand0=2 -ETPTopicOrder0=3358 +ETPTopicOrder0=2826 -[External Topic Properties\RsPeMACHINE_SH3DSP] +[External Topic Properties\RsStreamsOpenError] Count=1 ETPCommand0=2 -ETPTopicOrder0=3359 +ETPTopicOrder0=2827 -[External Topic Properties\RsPeMACHINE_SH3E] +[External Topic Properties\RsStreamsSeekError] Count=1 ETPCommand0=2 -ETPTopicOrder0=3360 +ETPTopicOrder0=2828 -[External Topic Properties\RsPeMACHINE_SH4] +[External Topic Properties\RsStreamsSetSizeError] Count=1 ETPCommand0=2 -ETPTopicOrder0=3361 +ETPTopicOrder0=2829 -[External Topic Properties\RsPeMACHINE_SH5] +[External Topic Properties\RsStringHashMapDuplicate] Count=1 ETPCommand0=2 -ETPTopicOrder0=3362 +ETPTopicOrder0=2830 -[External Topic Properties\RsPeMACHINE_THUMB] +[External Topic Properties\RsStringHashMapInvalidNode] Count=1 ETPCommand0=2 -ETPTopicOrder0=3363 +ETPTopicOrder0=2831 -[External Topic Properties\RsPeMACHINE_TRICORE] +[External Topic Properties\RsStringHashMapMustBeEmpty] Count=1 ETPCommand0=2 -ETPTopicOrder0=3364 +ETPTopicOrder0=2832 -[External Topic Properties\RsPeMACHINE_UNKNOWN] +[External Topic Properties\RsStringHashMapNoTraits] Count=1 ETPCommand0=2 -ETPTopicOrder0=3365 +ETPTopicOrder0=2833 -[External Topic Properties\RsPeMACHINE_WCEMIPSV2] +[External Topic Properties\RsStringToBoolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=3366 +ETPTopicOrder0=2834 -[External Topic Properties\RsPeMagic] +[External Topic Properties\RsSynchAttachDispatcher] Count=1 ETPCommand0=2 -ETPTopicOrder0=3367 +ETPTopicOrder0=2835 -[External Topic Properties\RsPeMaximumAllocationSize] +[External Topic Properties\RsSynchAttachWin32Handle] Count=1 ETPCommand0=2 -ETPTopicOrder0=3368 +ETPTopicOrder0=2836 -[External Topic Properties\RsPeNotAvailableForAttached] +[External Topic Properties\RsSynchCreateEvent] Count=1 ETPCommand0=2 -ETPTopicOrder0=3369 +ETPTopicOrder0=2837 -[External Topic Properties\RsPeNotPE] +[External Topic Properties\RsSynchCreateMutex] Count=1 ETPCommand0=2 -ETPTopicOrder0=3370 +ETPTopicOrder0=2838 -[External Topic Properties\RsPeNotResDir] +[External Topic Properties\RsSynchCreateSemaphore] Count=1 ETPCommand0=2 -ETPTopicOrder0=3371 +ETPTopicOrder0=2839 -[External Topic Properties\RsPeNumberOfRvaAndSizes] +[External Topic Properties\RsSynchCreateWaitableTimer] Count=1 ETPCommand0=2 -ETPTopicOrder0=3372 +ETPTopicOrder0=2840 -[External Topic Properties\RsPeNumberOfSections] +[External Topic Properties\RsSynchDuplicateWin32Handle] Count=1 ETPCommand0=2 -ETPTopicOrder0=3373 +ETPTopicOrder0=2841 -[External Topic Properties\RsPeNumberOfSymbols] +[External Topic Properties\RsSynchInitCriticalSection] Count=1 ETPCommand0=2 -ETPTopicOrder0=3374 +ETPTopicOrder0=2842 -[External Topic Properties\RsPeOperatingSystemVersion] +[External Topic Properties\RsSynchOpenEvent] Count=1 ETPCommand0=2 -ETPTopicOrder0=3375 +ETPTopicOrder0=2843 -[External Topic Properties\RsPePkgBCB4Produced] +[External Topic Properties\RsSynchOpenMutex] Count=1 ETPCommand0=2 -ETPTopicOrder0=3376 +ETPTopicOrder0=2844 -[External Topic Properties\RsPePkgDelphi4Produced] +[External Topic Properties\RsSynchOpenSemaphore] Count=1 ETPCommand0=2 -ETPTopicOrder0=3377 +ETPTopicOrder0=2845 -[External Topic Properties\RsPePkgDesignOnly] +[External Topic Properties\RsSynchOpenWaitableTimer] Count=1 ETPCommand0=2 -ETPTopicOrder0=3378 +ETPTopicOrder0=2846 -[External Topic Properties\RsPePkgExecutable] +[External Topic Properties\RsSysErrorMessageFmt] Count=1 ETPCommand0=2 -ETPTopicOrder0=3379 +ETPTopicOrder0=3560 -[External Topic Properties\RsPePkgIgnoreDupUnits] +[External Topic Properties\RsSystemIdleProcess] Count=1 ETPCommand0=2 -ETPTopicOrder0=3380 +ETPTopicOrder0=2847 -[External Topic Properties\RsPePkgImplicit] +[External Topic Properties\RsSystemProcess] Count=1 ETPCommand0=2 -ETPTopicOrder0=3381 +ETPTopicOrder0=2848 -[External Topic Properties\RsPePkgMain] +[External Topic Properties\RsTabs_CloseBracketExpected] Count=1 ETPCommand0=2 -ETPTopicOrder0=3382 +ETPTopicOrder0=2849 -[External Topic Properties\RsPePkgNeverBuild] +[External Topic Properties\RsTabs_DuplicatesNotAllowed] Count=1 ETPCommand0=2 -ETPTopicOrder0=3383 +ETPTopicOrder0=2850 -[External Topic Properties\RsPePkgOrgWeak] +[External Topic Properties\RsTabs_StopExpected] Count=1 ETPCommand0=2 -ETPTopicOrder0=3384 +ETPTopicOrder0=2851 -[External Topic Properties\RsPePkgPackage] +[External Topic Properties\RsTabs_TabWidthExpected] Count=1 ETPCommand0=2 -ETPTopicOrder0=3385 +ETPTopicOrder0=2852 -[External Topic Properties\RsPePkgProducerUndefined] +[External Topic Properties\RsTempConvTypeError] Count=1 ETPCommand0=2 -ETPTopicOrder0=3386 +ETPTopicOrder0=2853 -[External Topic Properties\RsPePkgRunOnly] +[External Topic Properties\RsUnableToAccessValue] Count=1 ETPCommand0=2 -ETPTopicOrder0=3387 +ETPTopicOrder0=2854 -[External Topic Properties\RsPePkgV3Produced] +[External Topic Properties\RsUnableToOpenKeyRead] Count=1 ETPCommand0=2 -ETPTopicOrder0=3388 +ETPTopicOrder0=2855 -[External Topic Properties\RsPePkgWeak] +[External Topic Properties\RsUnableToOpenKeyWrite] Count=1 ETPCommand0=2 -ETPTopicOrder0=3389 +ETPTopicOrder0=2856 -[External Topic Properties\RsPePointerToSymbolTable] +[External Topic Properties\RsUnexpectedDataType] Count=1 ETPCommand0=2 -ETPTopicOrder0=3390 +ETPTopicOrder0=3567 -[External Topic Properties\RsPeProcessAffinityMask] +[External Topic Properties\RsUnexpectedValue] Count=1 ETPCommand0=2 -ETPTopicOrder0=3391 +ETPTopicOrder0=2857 -[External Topic Properties\RsPeProcessHeapFlags] +[External Topic Properties\RsUnknownAMDModel] Count=1 ETPCommand0=2 -ETPTopicOrder0=3392 +ETPTopicOrder0=2858 -[External Topic Properties\RsPeReadOnlyStream] +[External Topic Properties\RsUnknownAttribute] Count=1 ETPCommand0=2 -ETPTopicOrder0=3393 +ETPTopicOrder0=3570 -[External Topic Properties\RsPeReserved] +[External Topic Properties\RsUnknownClassLayout] Count=1 ETPCommand0=2 -ETPTopicOrder0=3394 +ETPTopicOrder0=2859 -[External Topic Properties\RsPersonal] +[External Topic Properties\RsUnknownDrive] Count=1 ETPCommand0=2 -ETPTopicOrder0=3395 +ETPTopicOrder0=2860 -[External Topic Properties\RsPeSectionAlignment] +[External Topic Properties\RsUnknownFunctionAt] Count=1 ETPCommand0=2 -ETPTopicOrder0=3396 +ETPTopicOrder0=2861 -[External Topic Properties\RsPeSectionNotFound] +[External Topic Properties\RsUnknownManifestResource] Count=1 ETPCommand0=2 -ETPTopicOrder0=3397 +ETPTopicOrder0=2862 -[External Topic Properties\RsPeSignature] +[External Topic Properties\RsUnknownProjectType] Count=1 ETPCommand0=2 -ETPTopicOrder0=3398 +ETPTopicOrder0=3575 -[External Topic Properties\RsPeSizeOfCode] +[External Topic Properties\RsUnknownStringFormatting] Count=1 ETPCommand0=2 -ETPTopicOrder0=3399 +ETPTopicOrder0=2863 -[External Topic Properties\RsPeSizeOfHeaders] +[External Topic Properties\RsUnknownTable] Count=1 ETPCommand0=2 -ETPTopicOrder0=3400 +ETPTopicOrder0=2864 -[External Topic Properties\RsPeSizeOfHeapCommit] +[External Topic Properties\RsUnknownTableFmt] Count=1 ETPCommand0=2 -ETPTopicOrder0=3401 +ETPTopicOrder0=2865 -[External Topic Properties\RsPeSizeOfHeapReserve] +[External Topic Properties\RsUnregisteringExpert] Count=1 ETPCommand0=2 -ETPTopicOrder0=3402 +ETPTopicOrder0=2866 -[External Topic Properties\RsPeSizeOfImage] +[External Topic Properties\RsUnregisteringIdePackage] Count=1 ETPCommand0=2 -ETPTopicOrder0=3403 +ETPTopicOrder0=2867 -[External Topic Properties\RsPeSizeOfInitializedData] +[External Topic Properties\RsUnregisteringPackage] Count=1 ETPCommand0=2 -ETPTopicOrder0=3404 +ETPTopicOrder0=2868 -[External Topic Properties\RsPeSizeOfOptionalHeader] +[External Topic Properties\RsUnregistrationFailed] Count=1 ETPCommand0=2 -ETPTopicOrder0=3405 +ETPTopicOrder0=2869 -[External Topic Properties\RsPeSizeOfStackCommit] +[External Topic Properties\RsUnregistrationOk] Count=1 ETPCommand0=2 -ETPTopicOrder0=3406 +ETPTopicOrder0=2870 -[External Topic Properties\RsPeSizeOfStackReserve] +[External Topic Properties\RsUpdatePackName] Count=1 ETPCommand0=2 -ETPTopicOrder0=3407 +ETPTopicOrder0=2871 -[External Topic Properties\RsPeSizeOfUninitializedData] +[External Topic Properties\RsUpdatingPrinter] Count=1 ETPCommand0=2 -ETPTopicOrder0=3408 +ETPTopicOrder0=2872 -[External Topic Properties\RsPeSubsystem] +[External Topic Properties\RsUREBaseString] Count=1 ETPCommand0=2 -ETPTopicOrder0=3409 +ETPTopicOrder0=2873 -[External Topic Properties\RsPeSUBSYSTEM_NATIVE] +[External Topic Properties\RsURECharacterClassOpen] Count=1 ETPCommand0=2 -ETPTopicOrder0=3410 +ETPTopicOrder0=2874 -[External Topic Properties\RsPeSUBSYSTEM_OS2_CUI] +[External Topic Properties\RsUREErrorFmt] Count=1 ETPCommand0=2 -ETPTopicOrder0=3411 +ETPTopicOrder0=2875 -[External Topic Properties\RsPeSUBSYSTEM_POSIX_CUI] +[External Topic Properties\RsUREExpressionEmpty] Count=1 ETPCommand0=2 -ETPTopicOrder0=3412 +ETPTopicOrder0=2876 -[External Topic Properties\RsPeSUBSYSTEM_RESERVED8] +[External Topic Properties\RsUREInvalidCharProperty] Count=1 ETPCommand0=2 -ETPTopicOrder0=3413 +ETPTopicOrder0=2877 -[External Topic Properties\RsPeSUBSYSTEM_UNKNOWN] +[External Topic Properties\RsUREInvalidRepeatRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=3414 +ETPTopicOrder0=2878 -[External Topic Properties\RsPeSUBSYSTEM_WINDOWS_CUI] +[External Topic Properties\RsURERepeatRangeOpen] Count=1 ETPCommand0=2 -ETPTopicOrder0=3415 +ETPTopicOrder0=2879 -[External Topic Properties\RsPeSUBSYSTEM_WINDOWS_GUI] +[External Topic Properties\RsUREUnbalancedGroup] Count=1 ETPCommand0=2 -ETPTopicOrder0=3416 +ETPTopicOrder0=2880 -[External Topic Properties\RsPeSubsystemVersion] +[External Topic Properties\RsUREUnexpectedEOS] Count=1 ETPCommand0=2 -ETPTopicOrder0=3417 +ETPTopicOrder0=2881 -[External Topic Properties\RsPeTimeDateStamp] +[External Topic Properties\RsVclIncludeDir] Count=1 ETPCommand0=2 -ETPTopicOrder0=3418 +ETPTopicOrder0=3595 -[External Topic Properties\RsPeUnknownTarget] +[External Topic Properties\RsVersionCtrlAddCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3419 +ETPTopicOrder0=2882 -[External Topic Properties\RsPeVersion] +[External Topic Properties\RsVersionCtrlAddSandboxCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3420 +ETPTopicOrder0=2883 -[External Topic Properties\RsPeVirtualMemoryThreshold] +[External Topic Properties\RsVersionCtrlBlameCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3421 +ETPTopicOrder0=2884 -[External Topic Properties\RsPeWin32VersionValue] +[External Topic Properties\RsVersionCtrlBranchCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3422 +ETPTopicOrder0=2885 -[External Topic Properties\RsPowerComplex] +[External Topic Properties\RsVersionCtrlBranchSandboxCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3423 +ETPTopicOrder0=2886 -[External Topic Properties\RsPowerInfinite] +[External Topic Properties\RsVersionCtrlCheckOutSandboxCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3424 +ETPTopicOrder0=2887 -[External Topic Properties\RsProductTypeAdvancedServer] +[External Topic Properties\RsVersionCtrlCommitCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3425 +ETPTopicOrder0=2888 -[External Topic Properties\RsProductTypeDatacenterServer] +[External Topic Properties\RsVersionCtrlCommitSandboxCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3426 +ETPTopicOrder0=2889 -[External Topic Properties\RsProductTypeEnterprise] +[External Topic Properties\RsVersionCtrlContextMenuCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3427 +ETPTopicOrder0=2890 -[External Topic Properties\RsProductTypePersonal] +[External Topic Properties\RsVersionCtrlCVSName] Count=1 ETPCommand0=2 -ETPTopicOrder0=3428 +ETPTopicOrder0=2891 -[External Topic Properties\RsProductTypeProfessional] +[External Topic Properties\RsVersionCtrlDiffCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3429 +ETPTopicOrder0=2892 -[External Topic Properties\RsProductTypeServer] +[External Topic Properties\RsVersionCtrlExploreCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3430 +ETPTopicOrder0=2893 -[External Topic Properties\RsProductTypeWebEdition] +[External Topic Properties\RsVersionCtrlExploreSandboxCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3431 +ETPTopicOrder0=2894 -[External Topic Properties\RsProductTypeWorkStation] +[External Topic Properties\RsVersionCtrlGraphCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3432 +ETPTopicOrder0=2895 -[External Topic Properties\RsProfessional] +[External Topic Properties\RsVersionCtrlLockCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3433 +ETPTopicOrder0=2896 -[External Topic Properties\RsPS10X14] +[External Topic Properties\RsVersionCtrlLockSandboxCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3434 +ETPTopicOrder0=2897 -[External Topic Properties\RsPS11X17] +[External Topic Properties\RsVersionCtrlLogCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3435 +ETPTopicOrder0=2898 -[External Topic Properties\RsPSA3] +[External Topic Properties\RsVersionCtrlLogSandboxCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3436 +ETPTopicOrder0=2899 -[External Topic Properties\RsPSA4] +[External Topic Properties\RsVersionCtrlMergeCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3437 +ETPTopicOrder0=2900 -[External Topic Properties\RsPSA4Small] +[External Topic Properties\RsVersionCtrlMergeSandboxCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3438 +ETPTopicOrder0=2901 -[External Topic Properties\RsPSA5] +[External Topic Properties\RsVersionCtrlPropertiesCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3439 +ETPTopicOrder0=2902 -[External Topic Properties\RsPSB4] +[External Topic Properties\RsVersionCtrlPropertiesSandboxCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3440 +ETPTopicOrder0=2903 -[External Topic Properties\RsPSB5] +[External Topic Properties\RsVersionCtrlRenameCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3441 +ETPTopicOrder0=2904 -[External Topic Properties\RsPSCSheet] +[External Topic Properties\RsVersionCtrlRenameSandboxCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3442 +ETPTopicOrder0=2905 -[External Topic Properties\RsPSDSheet] +[External Topic Properties\RsVersionCtrlRepoBrowserCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3443 +ETPTopicOrder0=2906 -[External Topic Properties\RsPSEnv10] +[External Topic Properties\RsVersionCtrlRevertCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3444 +ETPTopicOrder0=2907 -[External Topic Properties\RsPSEnv11] +[External Topic Properties\RsVersionCtrlRevertSandboxCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3445 +ETPTopicOrder0=2908 -[External Topic Properties\RsPSEnv12] +[External Topic Properties\RsVersionCtrlStatusCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3446 +ETPTopicOrder0=2909 -[External Topic Properties\RsPSEnv14] +[External Topic Properties\RsVersionCtrlStatusSandboxCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3447 +ETPTopicOrder0=2910 -[External Topic Properties\RsPSEnv9] +[External Topic Properties\RsVersionCtrlSVNName] Count=1 ETPCommand0=2 -ETPTopicOrder0=3448 +ETPTopicOrder0=2911 -[External Topic Properties\RsPSESheet] +[External Topic Properties\RsVersionCtrlTagCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3449 +ETPTopicOrder0=2912 -[External Topic Properties\RsPSExecutive] +[External Topic Properties\RsVersionCtrlTagSandboxCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3450 +ETPTopicOrder0=2913 -[External Topic Properties\RsPSFolio] +[External Topic Properties\RsVersionCtrlUnlockCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3451 +ETPTopicOrder0=2914 -[External Topic Properties\RsPSLedger] +[External Topic Properties\RsVersionCtrlUnlockSandboxCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3452 +ETPTopicOrder0=2915 -[External Topic Properties\RsPSLegal] +[External Topic Properties\RsVersionCtrlUpdateCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3453 +ETPTopicOrder0=2916 -[External Topic Properties\RsPSLetter] +[External Topic Properties\RsVersionCtrlUpdateSandboxCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3454 +ETPTopicOrder0=2917 -[External Topic Properties\RsPSLetterSmall] +[External Topic Properties\RsVersionCtrlUpdateSandboxToCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3455 +ETPTopicOrder0=2918 -[External Topic Properties\RsPSNote] +[External Topic Properties\RsVersionCtrlUpdateToCaption] Count=1 ETPCommand0=2 -ETPTopicOrder0=3456 +ETPTopicOrder0=2919 -[External Topic Properties\RsPSQuarto] +[External Topic Properties\RsVft2DrvCOMM] Count=1 ETPCommand0=2 -ETPTopicOrder0=3457 +ETPTopicOrder0=2920 -[External Topic Properties\RsPSStatement] +[External Topic Properties\RsVft2DrvDISPLAY] Count=1 ETPCommand0=2 -ETPTopicOrder0=3458 +ETPTopicOrder0=2921 -[External Topic Properties\RsPSTabloid] +[External Topic Properties\RsVft2DrvINSTALLABLE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3459 +ETPTopicOrder0=2922 -[External Topic Properties\RsPSUnknown] +[External Topic Properties\RsVft2DrvKEYBOARD] Count=1 ETPCommand0=2 -ETPTopicOrder0=3460 +ETPTopicOrder0=2923 -[External Topic Properties\RsPSUser] +[External Topic Properties\RsVft2DrvLANGUAGE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3461 +ETPTopicOrder0=2924 -[External Topic Properties\RsRamDisk] +[External Topic Properties\RsVft2DrvMOUSE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3462 +ETPTopicOrder0=2925 -[External Topic Properties\RsRangeError] +[External Topic Properties\RsVft2DrvNETWORK] Count=1 ETPCommand0=2 -ETPTopicOrder0=3463 +ETPTopicOrder0=2926 -[External Topic Properties\RsRationalDivByZero] +[External Topic Properties\RsVft2DrvPRINTER] Count=1 ETPCommand0=2 -ETPTopicOrder0=3464 +ETPTopicOrder0=2927 -[External Topic Properties\RsReadKeyError] +[External Topic Properties\RsVft2DrvSOUND] Count=1 ETPCommand0=2 -ETPTopicOrder0=3465 +ETPTopicOrder0=2928 -[External Topic Properties\RsRegionCouldNotCreated] +[External Topic Properties\RsVft2DrvSYSTEM] Count=1 ETPCommand0=2 -ETPTopicOrder0=3466 +ETPTopicOrder0=2929 -[External Topic Properties\RsRegionDataOutOfBound] +[External Topic Properties\RsVft2FontRASTER] Count=1 ETPCommand0=2 -ETPTopicOrder0=3467 +ETPTopicOrder0=2930 -[External Topic Properties\RsRegisteringExpert] +[External Topic Properties\RsVft2FontTRUETYPE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3468 +ETPTopicOrder0=2931 -[External Topic Properties\RsRegisteringIdePackage] +[External Topic Properties\RsVft2FontVECTOR] Count=1 ETPCommand0=2 -ETPTopicOrder0=3469 +ETPTopicOrder0=2932 -[External Topic Properties\RsRegisteringPackage] +[External Topic Properties\RsVftApp] Count=1 ETPCommand0=2 -ETPTopicOrder0=3470 +ETPTopicOrder0=2933 -[External Topic Properties\RsRegistrationFailed] +[External Topic Properties\RsVftDll] Count=1 ETPCommand0=2 -ETPTopicOrder0=3471 +ETPTopicOrder0=2934 -[External Topic Properties\RsRegistrationOk] +[External Topic Properties\RsVftDrv] Count=1 ETPCommand0=2 -ETPTopicOrder0=3472 +ETPTopicOrder0=2935 -[External Topic Properties\RsRemoteDrive] +[External Topic Properties\RsVftFont] Count=1 ETPCommand0=2 -ETPTopicOrder0=3473 +ETPTopicOrder0=2936 -[External Topic Properties\RsRemovableDrive] +[External Topic Properties\RsVftStaticLib] Count=1 ETPCommand0=2 -ETPTopicOrder0=3474 +ETPTopicOrder0=2937 -[External Topic Properties\RsRetrievingPaperSource] +[External Topic Properties\RsVftUnknown] Count=1 ETPCommand0=2 -ETPTopicOrder0=3475 +ETPTopicOrder0=2938 -[External Topic Properties\RsRetrievingSource] +[External Topic Properties\RsVftVxd] Count=1 ETPCommand0=2 -ETPTopicOrder0=3476 +ETPTopicOrder0=2939 -[External Topic Properties\RsRSName] +[External Topic Properties\RsViewNeedsMapping] Count=1 ETPCommand0=2 -ETPTopicOrder0=3477 +ETPTopicOrder0=2940 -[External Topic Properties\RsRTTIArrayOf] +[External Topic Properties\RsVMTMemoryWriteError] Count=1 ETPCommand0=2 -ETPTopicOrder0=3478 +ETPTopicOrder0=2941 -[External Topic Properties\RsRTTIBasedOn] +[External Topic Properties\RsVosDesignedFor] Count=1 ETPCommand0=2 -ETPTopicOrder0=3479 +ETPTopicOrder0=2942 -[External Topic Properties\RsRTTIBits] +[External Topic Properties\RsVosDos] Count=1 ETPCommand0=2 -ETPTopicOrder0=3480 +ETPTopicOrder0=2943 -[External Topic Properties\RsRTTIClassName] +[External Topic Properties\RsVosDosWindows16] Count=1 ETPCommand0=2 -ETPTopicOrder0=3481 +ETPTopicOrder0=2944 -[External Topic Properties\RsRTTIConst] +[External Topic Properties\RsVosDosWindows32] Count=1 ETPCommand0=2 -ETPTopicOrder0=3482 +ETPTopicOrder0=2945 -[External Topic Properties\RsRTTIDefault] +[External Topic Properties\RsVosNT] Count=1 ETPCommand0=2 -ETPTopicOrder0=3483 +ETPTopicOrder0=2946 -[External Topic Properties\RsRTTIElNeedCleanup] +[External Topic Properties\RsVosNTWindows32] Count=1 ETPCommand0=2 -ETPTopicOrder0=3484 +ETPTopicOrder0=2947 -[External Topic Properties\RsRTTIElSize] +[External Topic Properties\RsVosOS216] Count=1 ETPCommand0=2 -ETPTopicOrder0=3485 +ETPTopicOrder0=2948 -[External Topic Properties\RsRTTIElType] +[External Topic Properties\RsVosOS216PM16] Count=1 ETPCommand0=2 -ETPTopicOrder0=3486 +ETPTopicOrder0=2949 -[External Topic Properties\RsRTTIFalse] +[External Topic Properties\RsVosOS232] Count=1 ETPCommand0=2 -ETPTopicOrder0=3487 +ETPTopicOrder0=2950 -[External Topic Properties\RsRTTIField] +[External Topic Properties\RsVosOS232PM32] Count=1 ETPCommand0=2 -ETPTopicOrder0=3488 +ETPTopicOrder0=2951 -[External Topic Properties\RsRTTIFlags] +[External Topic Properties\RsVosPM16] Count=1 ETPCommand0=2 -ETPTopicOrder0=3489 +ETPTopicOrder0=2952 -[External Topic Properties\RsRTTIFloatType] +[External Topic Properties\RsVosPM32] Count=1 ETPCommand0=2 -ETPTopicOrder0=3490 +ETPTopicOrder0=2953 -[External Topic Properties\RsRTTIGUID] +[External Topic Properties\RsVosUnknown] Count=1 ETPCommand0=2 -ETPTopicOrder0=3491 +ETPTopicOrder0=2954 -[External Topic Properties\RsRTTIIndex] +[External Topic Properties\RsVosWindows16] Count=1 ETPCommand0=2 -ETPTopicOrder0=3492 +ETPTopicOrder0=2955 -[External Topic Properties\RsRTTIInvalidBaseType] +[External Topic Properties\RsVosWindows32] Count=1 ETPCommand0=2 -ETPTopicOrder0=3493 +ETPTopicOrder0=2956 -[External Topic Properties\RsRTTIMaxLen] +[External Topic Properties\RsWin32Error] Count=1 ETPCommand0=2 -ETPTopicOrder0=3494 +ETPTopicOrder0=2957 -[External Topic Properties\RsRTTIMaxValue] +[External Topic Properties\RsWin32Prefix] Count=1 ETPCommand0=2 -ETPTopicOrder0=3495 +ETPTopicOrder0=3633 -[External Topic Properties\RsRTTIMethodKind] +[External Topic Properties\RsWrongDataType] Count=1 ETPCommand0=2 -ETPTopicOrder0=3496 +ETPTopicOrder0=2958 -[External Topic Properties\RsRTTIMinValue] +[External Topic Properties\RT_ACCELERATOR] Count=1 ETPCommand0=2 -ETPTopicOrder0=3497 +ETPTopicOrder0=3635 -[External Topic Properties\RsRTTIName] +[External Topic Properties\RT_ANICURSOR] Count=1 ETPCommand0=2 -ETPTopicOrder0=3498 +ETPTopicOrder0=3636 -[External Topic Properties\RsRTTINameList] +[External Topic Properties\RT_ANIICON] Count=1 ETPCommand0=2 -ETPTopicOrder0=3499 +ETPTopicOrder0=3637 -[External Topic Properties\RsRTTIOrdinal] +[External Topic Properties\RT_BITMAP] Count=1 ETPCommand0=2 -ETPTopicOrder0=3500 +ETPTopicOrder0=3638 -[External Topic Properties\RsRTTIOrdinalType] +[External Topic Properties\RT_CURSOR] Count=1 ETPCommand0=2 -ETPTopicOrder0=3501 +ETPTopicOrder0=3639 -[External Topic Properties\RsRTTIOut] +[External Topic Properties\RT_DIALOG] Count=1 ETPCommand0=2 -ETPTopicOrder0=3502 +ETPTopicOrder0=3640 -[External Topic Properties\RsRTTIParamCount] +[External Topic Properties\RT_DLGINCLUDE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3503 +ETPTopicOrder0=3641 -[External Topic Properties\RsRTTIParent] +[External Topic Properties\RT_FONT] Count=1 ETPCommand0=2 -ETPTopicOrder0=3504 +ETPTopicOrder0=3642 -[External Topic Properties\RsRTTIPropCount] +[External Topic Properties\RT_FONTDIR] Count=1 ETPCommand0=2 -ETPTopicOrder0=3505 +ETPTopicOrder0=3643 -[External Topic Properties\RsRTTIPropRead] +[External Topic Properties\RT_GROUP_CURSOR] Count=1 ETPCommand0=2 -ETPTopicOrder0=3506 +ETPTopicOrder0=3644 -[External Topic Properties\RsRTTIPropStored] +[External Topic Properties\RT_GROUP_ICON] Count=1 ETPCommand0=2 -ETPTopicOrder0=3507 +ETPTopicOrder0=3645 -[External Topic Properties\RsRTTIPropWrite] +[External Topic Properties\RT_ICON] Count=1 ETPCommand0=2 -ETPTopicOrder0=3508 +ETPTopicOrder0=3646 -[External Topic Properties\RsRTTIReturnType] +[External Topic Properties\RT_MENU] Count=1 ETPCommand0=2 -ETPTopicOrder0=3509 +ETPTopicOrder0=3647 -[External Topic Properties\RsRTTIStaticMethod] +[External Topic Properties\RT_MESSAGETABLE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3510 +ETPTopicOrder0=3648 -[External Topic Properties\RsRTTITrue] +[External Topic Properties\RT_PLUGPLAY] Count=1 ETPCommand0=2 -ETPTopicOrder0=3511 +ETPTopicOrder0=3649 -[External Topic Properties\RsRTTIType] +[External Topic Properties\RT_RCDATA] Count=1 ETPCommand0=2 -ETPTopicOrder0=3512 +ETPTopicOrder0=3650 -[External Topic Properties\RsRTTITypeError] +[External Topic Properties\RT_STRING] Count=1 ETPCommand0=2 -ETPTopicOrder0=3513 +ETPTopicOrder0=3651 -[External Topic Properties\RsRTTITypeInfoAt] +[External Topic Properties\RT_VERSION] Count=1 ETPCommand0=2 -ETPTopicOrder0=3514 +ETPTopicOrder0=3652 -[External Topic Properties\RsRTTITypeKind] +[External Topic Properties\RT_VXD] Count=1 ETPCommand0=2 -ETPTopicOrder0=3515 +ETPTopicOrder0=3653 -[External Topic Properties\RsRTTIUnitName] +[External Topic Properties\RtdlDeleteVolumeMountPoint] Count=1 ETPCommand0=2 -ETPTopicOrder0=3516 +ETPTopicOrder0=3654 -[External Topic Properties\RsRTTIUnknownIdentifier] +[External Topic Properties\RtdlDeleteVolumeMountPointW] Count=1 ETPCommand0=2 -ETPTopicOrder0=3517 +ETPTopicOrder0=2959 -[External Topic Properties\RsRTTIValueOutOfRange] +[External Topic Properties\RtdlEnumCalendarInfoExA] Count=1 ETPCommand0=2 -ETPTopicOrder0=3518 +ETPTopicOrder0=3655 -[External Topic Properties\RsRTTIVar] +[External Topic Properties\RtdlEnumCalendarInfoExW] Count=1 ETPCommand0=2 -ETPTopicOrder0=3519 +ETPTopicOrder0=2960 -[External Topic Properties\RsRTTIVarType] +[External Topic Properties\RtdlGetCalendarInfoA] Count=1 ETPCommand0=2 -ETPTopicOrder0=3520 +ETPTopicOrder0=2961 -[External Topic Properties\RsRTTIVirtualMethod] +[External Topic Properties\RtdlGetCalendarInfoW] Count=1 ETPCommand0=2 -ETPTopicOrder0=3521 +ETPTopicOrder0=2962 -[External Topic Properties\RsScheduleDayInRange] +[External Topic Properties\RtdlGetVolumeNameForVolumeMountPoint] Count=1 ETPCommand0=2 -ETPTopicOrder0=3522 +ETPTopicOrder0=3658 -[External Topic Properties\RsScheduleDayNotSupported] +[External Topic Properties\RtdlGetVolumeNameForVolumeMountPointW] Count=1 ETPCommand0=2 -ETPTopicOrder0=3523 +ETPTopicOrder0=2963 -[External Topic Properties\RsScheduleEndBeforeStart] +[External Topic Properties\RtdlMsiGetComponentPath] Count=1 ETPCommand0=2 -ETPTopicOrder0=3524 +ETPTopicOrder0=32 -[External Topic Properties\RsScheduleIndexValueSup] +[External Topic Properties\RtdlMsiGetShortcutTarget] Count=1 ETPCommand0=2 -ETPTopicOrder0=3525 +ETPTopicOrder0=33 -[External Topic Properties\RsScheduleIndexValueZero] +[External Topic Properties\RtdlMsiLibHandle] Count=1 ETPCommand0=2 -ETPTopicOrder0=3526 +ETPTopicOrder0=34 -[External Topic Properties\RsScheduleIntervalZero] +[External Topic Properties\RtdlNetApiBufferFree] Count=1 ETPCommand0=2 -ETPTopicOrder0=3527 +ETPTopicOrder0=2964 -[External Topic Properties\RsScheduleInvalidTime] +[External Topic Properties\RtdlNetBios] Count=1 ETPCommand0=2 -ETPTopicOrder0=3528 +ETPTopicOrder0=2965 -[External Topic Properties\RsScheduleMonthInRange] +[External Topic Properties\RtdlNetGroupAdd] Count=1 ETPCommand0=2 -ETPTopicOrder0=3529 +ETPTopicOrder0=2966 -[External Topic Properties\RsScheduleNoDaySpecified] +[External Topic Properties\RtdlNetGroupDel] Count=1 ETPCommand0=2 -ETPTopicOrder0=3530 +ETPTopicOrder0=2967 -[External Topic Properties\RsSelectObjectInDc] +[External Topic Properties\RtdlNetGroupEnum] Count=1 ETPCommand0=2 -ETPTopicOrder0=3531 +ETPTopicOrder0=2968 -[External Topic Properties\RsServerDeveloper] +[External Topic Properties\RtdlNetLocalGroupAdd] Count=1 ETPCommand0=2 -ETPTopicOrder0=3532 +ETPTopicOrder0=2969 -[External Topic Properties\RsSIDBufferTooSmall] +[External Topic Properties\RtdlNetLocalGroupAddMembers] Count=1 ETPCommand0=2 -ETPTopicOrder0=3533 +ETPTopicOrder0=2970 -[External Topic Properties\RsSourceBitmapEmpty] +[External Topic Properties\RtdlNetLocalGroupDel] Count=1 ETPCommand0=2 -ETPTopicOrder0=3534 +ETPTopicOrder0=2971 -[External Topic Properties\RsSourceBitmapInvalid] +[External Topic Properties\RtdlNetLocalGroupEnum] Count=1 ETPCommand0=2 -ETPTopicOrder0=3535 +ETPTopicOrder0=2972 -[External Topic Properties\RsSPInfo] +[External Topic Properties\RtdlNetUserAdd] Count=1 ETPCommand0=2 -ETPTopicOrder0=3536 +ETPTopicOrder0=2973 -[External Topic Properties\RsSpoolerDocName] +[External Topic Properties\RtdlNetUserDel] Count=1 ETPCommand0=2 -ETPTopicOrder0=3537 +ETPTopicOrder0=2974 -[External Topic Properties\RsStandard] +[External Topic Properties\RtdlSetNamedSecurityInfoW] Count=1 ETPCommand0=2 -ETPTopicOrder0=3538 +ETPTopicOrder0=2975 -[External Topic Properties\RsStreamsCRCError] +[External Topic Properties\RtdlSetVolumeMountPoint] Count=1 ETPCommand0=2 -ETPTopicOrder0=3539 +ETPTopicOrder0=3671 -[External Topic Properties\RsStreamsCreateError] +[External Topic Properties\RtdlSetVolumeMountPointW] Count=1 ETPCommand0=2 -ETPTopicOrder0=3540 +ETPTopicOrder0=2976 -[External Topic Properties\RsStreamsOpenError] +[External Topic Properties\RtdlSetWaitableTimer] Count=1 ETPCommand0=2 -ETPTopicOrder0=3541 +ETPTopicOrder0=2977 -[External Topic Properties\RsStreamsSetSizeError] +[External Topic Properties\RTL_OSVERSIONINFOEXW] Count=1 ETPCommand0=2 -ETPTopicOrder0=3542 +ETPTopicOrder0=390 -[External Topic Properties\RsStringHashMapDuplicate] -Count=1 +[External Topic Properties\RTLFeatures] +Count=2 ETPCommand0=2 -ETPTopicOrder0=3543 +ETPCommand1=3 +ETPGroup1=jedi.inc +ETPTopicOrder0=3 -[External Topic Properties\RsStringHashMapInvalidNode] +[External Topic Properties\RunDll32ShimW@THandle@HMODULE@PWideChar@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=3544 +ETPTopicOrder0=1115 -[External Topic Properties\RsStringHashMapMustBeEmpty] +[External Topic Properties\RUNTIME_INFO_DONT_RETURN_DIRECTORY] Count=1 ETPCommand0=2 -ETPTopicOrder0=3545 +ETPTopicOrder0=2978 -[External Topic Properties\RsStringHashMapNoTraits] +[External Topic Properties\RUNTIME_INFO_DONT_RETURN_VERSION] Count=1 ETPCommand0=2 -ETPTopicOrder0=3546 +ETPTopicOrder0=2979 -[External Topic Properties\RsStringToBoolean] +[External Topic Properties\RUNTIME_INFO_DONT_SHOW_ERROR_DIALOG] Count=1 ETPCommand0=2 -ETPTopicOrder0=3547 +ETPTopicOrder0=2980 -[External Topic Properties\RsSynchAttachDispatcher] +[External Topic Properties\RUNTIME_INFO_REQUEST_AMD64] Count=1 ETPCommand0=2 -ETPTopicOrder0=3548 +ETPTopicOrder0=2981 -[External Topic Properties\RsSynchAttachWin32Handle] +[External Topic Properties\RUNTIME_INFO_REQUEST_IA64] Count=1 ETPCommand0=2 -ETPTopicOrder0=3549 +ETPTopicOrder0=2982 -[External Topic Properties\RsSynchCreateEvent] +[External Topic Properties\RUNTIME_INFO_REQUEST_X86] Count=1 ETPCommand0=2 -ETPTopicOrder0=3550 +ETPTopicOrder0=2983 -[External Topic Properties\RsSynchCreateMutex] +[External Topic Properties\RUNTIME_INFO_UPGRADE_VERSION] Count=1 ETPCommand0=2 -ETPTopicOrder0=3551 +ETPTopicOrder0=2984 -[External Topic Properties\RsSynchCreateSemaphore] +[External Topic Properties\RuntimeTypeInformation] Count=1 ETPCommand0=2 -ETPTopicOrder0=3552 +ETPTopicOrder0=18 -[External Topic Properties\RsSynchCreateWaitableTimer] +[External Topic Properties\RVA] Count=1 ETPCommand0=2 -ETPTopicOrder0=3553 +ETPTopicOrder0=391 -[External Topic Properties\RsSynchDuplicateWin32Handle] +[External Topic Properties\SamePath@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3554 +ETPTopicOrder0=1116 -[External Topic Properties\RsSynchInitCriticalSection] +[External Topic Properties\Sar@Shortint@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=3555 +ETPTopicOrder0=1118 -[External Topic Properties\RsSynchOpenEvent] +[External Topic Properties\Sar@Smallint@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=3556 +ETPTopicOrder0=1117 -[External Topic Properties\RsSynchOpenMutex] +[External Topic Properties\SCHED_E_ACCOUNT_DBASE_CORRUPT] Count=1 ETPCommand0=2 -ETPTopicOrder0=3557 +ETPTopicOrder0=3680 -[External Topic Properties\RsSynchOpenSemaphore] +[External Topic Properties\SCHED_E_ACCOUNT_INFORMATION_NOT_SET] Count=1 ETPCommand0=2 -ETPTopicOrder0=3558 +ETPTopicOrder0=3681 -[External Topic Properties\RsSynchOpenWaitableTimer] +[External Topic Properties\SCHED_E_ACCOUNT_NAME_NOT_FOUND] Count=1 ETPCommand0=2 -ETPTopicOrder0=3559 +ETPTopicOrder0=3682 -[External Topic Properties\RsSysErrorMessageFmt] +[External Topic Properties\SCHED_E_CANNOT_OPEN_TASK] Count=1 ETPCommand0=2 -ETPTopicOrder0=3560 +ETPTopicOrder0=3683 -[External Topic Properties\RsSystemIdleProcess] +[External Topic Properties\SCHED_E_INVALID_TASK] Count=1 ETPCommand0=2 -ETPTopicOrder0=3561 +ETPTopicOrder0=3684 -[External Topic Properties\RsSystemProcess] +[External Topic Properties\SCHED_E_NO_SECURITY_SERVICES] Count=1 ETPCommand0=2 -ETPTopicOrder0=3562 +ETPTopicOrder0=3685 -[External Topic Properties\RsTempConvTypeError] +[External Topic Properties\SCHED_E_SERVICE_NOT_INSTALLED] Count=1 ETPCommand0=2 -ETPTopicOrder0=3563 +ETPTopicOrder0=3686 -[External Topic Properties\RsUnableToAccessValue] +[External Topic Properties\SCHED_E_SERVICE_NOT_RUNNING] Count=1 ETPCommand0=2 -ETPTopicOrder0=3564 +ETPTopicOrder0=3687 -[External Topic Properties\RsUnableToOpenKeyRead] +[External Topic Properties\SCHED_E_TASK_NOT_READY] Count=1 ETPCommand0=2 -ETPTopicOrder0=3565 +ETPTopicOrder0=3688 -[External Topic Properties\RsUnableToOpenKeyWrite] +[External Topic Properties\SCHED_E_TASK_NOT_RUNNING] Count=1 ETPCommand0=2 -ETPTopicOrder0=3566 +ETPTopicOrder0=3689 -[External Topic Properties\RsUnexpectedDataType] +[External Topic Properties\SCHED_E_TRIGGER_NOT_FOUND] Count=1 ETPCommand0=2 -ETPTopicOrder0=3567 +ETPTopicOrder0=3690 -[External Topic Properties\RsUnexpectedValue] +[External Topic Properties\SCHED_E_UNKNOWN_OBJECT_VERSION] Count=1 ETPCommand0=2 -ETPTopicOrder0=3568 +ETPTopicOrder0=3691 -[External Topic Properties\RsUnknownAMDModel] +[External Topic Properties\SCHED_E_UNSUPPORTED_ACCOUNT_OPTION] Count=1 ETPCommand0=2 -ETPTopicOrder0=3569 +ETPTopicOrder0=3692 -[External Topic Properties\RsUnknownAttribute] +[External Topic Properties\SCHED_S_EVENT_TRIGGER] Count=1 ETPCommand0=2 -ETPTopicOrder0=3570 +ETPTopicOrder0=3693 -[External Topic Properties\RsUnknownClassLayout] +[External Topic Properties\SCHED_S_TASK_DISABLED] Count=1 ETPCommand0=2 -ETPTopicOrder0=3571 +ETPTopicOrder0=3694 -[External Topic Properties\RsUnknownDrive] +[External Topic Properties\SCHED_S_TASK_HAS_NOT_RUN] Count=1 ETPCommand0=2 -ETPTopicOrder0=3572 +ETPTopicOrder0=3695 -[External Topic Properties\RsUnknownFunctionAt] +[External Topic Properties\SCHED_S_TASK_NO_MORE_RUNS] Count=1 ETPCommand0=2 -ETPTopicOrder0=3573 +ETPTopicOrder0=3696 -[External Topic Properties\RsUnknownManifestResource] +[External Topic Properties\SCHED_S_TASK_NO_VALID_TRIGGERS] Count=1 ETPCommand0=2 -ETPTopicOrder0=3574 +ETPTopicOrder0=3697 -[External Topic Properties\RsUnknownProjectType] +[External Topic Properties\SCHED_S_TASK_NOT_SCHEDULED] Count=1 ETPCommand0=2 -ETPTopicOrder0=3575 +ETPTopicOrder0=3698 -[External Topic Properties\RsUnknownStringFormatting] +[External Topic Properties\SCHED_S_TASK_READY] Count=1 ETPCommand0=2 -ETPTopicOrder0=3576 +ETPTopicOrder0=3699 -[External Topic Properties\RsUnknownTable] +[External Topic Properties\SCHED_S_TASK_RUNNING] Count=1 ETPCommand0=2 -ETPTopicOrder0=3577 +ETPTopicOrder0=3700 -[External Topic Properties\RsUnknownTableFmt] +[External Topic Properties\SCHED_S_TASK_TERMINATED] Count=1 ETPCommand0=2 -ETPTopicOrder0=3578 +ETPTopicOrder0=3701 -[External Topic Properties\RsUnregisteringExpert] +[External Topic Properties\ScreenShot@TBitmap@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=3579 +ETPTopicOrder0=1120 -[External Topic Properties\RsUnregisteringIdePackage] +[External Topic Properties\ScreenShot@TBitmap@Integer@Integer@Integer@Integer@THandle] Count=1 ETPCommand0=2 -ETPTopicOrder0=3580 +ETPTopicOrder0=1119 -[External Topic Properties\RsUnregisteringPackage] +[External Topic Properties\SE_CREATE_GLOBAL_NAME] Count=1 ETPCommand0=2 -ETPTopicOrder0=3581 +ETPTopicOrder0=3702 -[External Topic Properties\RsUnregistrationFailed] +[External Topic Properties\SE_IMPERSONATE_NAME] Count=1 ETPCommand0=2 -ETPTopicOrder0=3582 +ETPTopicOrder0=3703 -[External Topic Properties\RsUnregistrationOk] +[External Topic Properties\SE_MANAGE_VOLUME_NAME] Count=1 ETPCommand0=2 -ETPTopicOrder0=3583 +ETPTopicOrder0=3704 -[External Topic Properties\RsUpdatePackName] +[External Topic Properties\SearchDynArray@Pointer@Cardinal@TDynArraySortCompare@Pointer@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=3584 +ETPTopicOrder0=1121 -[External Topic Properties\RsUpdatingPrinter] +[External Topic Properties\SearchSortedList@TList@TListSortCompare@Pointer@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=3585 +ETPTopicOrder0=1122 -[External Topic Properties\RsUREBaseString] +[External Topic Properties\SearchSortedUntyped@Pointer@Integer@TUntypedSearchCompare@@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=3586 +ETPTopicOrder0=1123 -[External Topic Properties\RsURECharacterClassOpen] +[External Topic Properties\Sec@TRectComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=3587 +ETPTopicOrder0=1124 -[External Topic Properties\RsUREErrorFmt] +[External Topic Properties\SecH@TRectComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=3588 +ETPTopicOrder0=1125 -[External Topic Properties\RsUREExpressionEmpty] +[External Topic Properties\SectionTag_] Count=1 ETPCommand0=2 -ETPTopicOrder0=3589 +ETPTopicOrder0=3705 -[External Topic Properties\RsUREInvalidCharProperty] +[External Topic Properties\SectionTag_CODES] Count=1 ETPCommand0=2 -ETPTopicOrder0=3590 +ETPTopicOrder0=3706 -[External Topic Properties\RsUREInvalidRepeatRange] +[External Topic Properties\SectionTag_COMS] Count=1 ETPCommand0=2 -ETPTopicOrder0=3591 +ETPTopicOrder0=3707 -[External Topic Properties\RsURERepeatRangeOpen] +[External Topic Properties\SectionTag_ELMS] Count=1 ETPCommand0=2 -ETPTopicOrder0=3592 +ETPTopicOrder0=3708 -[External Topic Properties\RsUREUnbalancedGroup] +[External Topic Properties\SectionTag_INI] Count=1 ETPCommand0=2 -ETPTopicOrder0=3593 +ETPTopicOrder0=3709 -[External Topic Properties\RsUREUnexpectedEOS] +[External Topic Properties\SectionTag_JCL_COMSEXT] Count=1 ETPCommand0=2 -ETPTopicOrder0=3594 +ETPTopicOrder0=3710 -[External Topic Properties\RsVclIncludeDir] +[External Topic Properties\SectionTag_JCL_ELMSEXT] Count=1 ETPCommand0=2 -ETPTopicOrder0=3595 +ETPTopicOrder0=3711 -[External Topic Properties\RsVft2DrvCOMM] +[External Topic Properties\SectionTag_JCL_SEGSEXT] Count=1 ETPCommand0=2 -ETPTopicOrder0=3596 +ETPTopicOrder0=3712 -[External Topic Properties\RsVft2DrvDISPLAY] +[External Topic Properties\SectionTag_JCL_SETSEXT] Count=1 ETPCommand0=2 -ETPTopicOrder0=3597 +ETPTopicOrder0=3713 -[External Topic Properties\RsVft2DrvINSTALLABLE] +[External Topic Properties\SectionTag_OBJVARS] Count=1 ETPCommand0=2 -ETPTopicOrder0=3598 +ETPTopicOrder0=3714 -[External Topic Properties\RsVft2DrvKEYBOARD] +[External Topic Properties\SectionTag_PRIVATE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3599 +ETPTopicOrder0=3715 -[External Topic Properties\RsVft2DrvLANGUAGE] +[External Topic Properties\SectionTag_PUBLIC] Count=1 ETPCommand0=2 -ETPTopicOrder0=3600 +ETPTopicOrder0=3716 -[External Topic Properties\RsVft2DrvMOUSE] +[External Topic Properties\SectionTag_SEGS] Count=1 ETPCommand0=2 -ETPTopicOrder0=3601 +ETPTopicOrder0=3717 -[External Topic Properties\RsVft2DrvNETWORK] +[External Topic Properties\SectionTag_SEMREFS] Count=1 ETPCommand0=2 -ETPTopicOrder0=3602 +ETPTopicOrder0=3718 -[External Topic Properties\RsVft2DrvPRINTER] +[External Topic Properties\SectionTag_SETS] Count=1 ETPCommand0=2 -ETPTopicOrder0=3603 +ETPTopicOrder0=3719 -[External Topic Properties\RsVft2DrvSOUND] +[External Topic Properties\SectionTag_STD] Count=1 ETPCommand0=2 -ETPTopicOrder0=3604 +ETPTopicOrder0=3720 -[External Topic Properties\RsVft2DrvSYSTEM] +[External Topic Properties\SectionTag_TEXT] Count=1 ETPCommand0=2 -ETPTopicOrder0=3605 +ETPTopicOrder0=3721 -[External Topic Properties\RsVft2FontRASTER] +[External Topic Properties\SectionTag_TEXTSETS] Count=1 ETPCommand0=2 -ETPTopicOrder0=3606 +ETPTopicOrder0=3722 -[External Topic Properties\RsVft2FontTRUETYPE] +[External Topic Properties\SectionTag_VALLISTS] Count=1 ETPCommand0=2 -ETPTopicOrder0=3607 +ETPTopicOrder0=3723 -[External Topic Properties\RsVft2FontVECTOR] +[External Topic Properties\SectionTag_VER] Count=1 ETPCommand0=2 -ETPTopicOrder0=3608 +ETPTopicOrder0=3724 -[External Topic Properties\RsVftApp] +[External Topic Properties\SECURITY_LOCAL_SERVICE_RID] Count=1 ETPCommand0=2 -ETPTopicOrder0=3609 +ETPTopicOrder0=3725 -[External Topic Properties\RsVftDll] +[External Topic Properties\SECURITY_MAX_ALWAYS_FILTERED] Count=1 ETPCommand0=2 -ETPTopicOrder0=3610 +ETPTopicOrder0=3726 -[External Topic Properties\RsVftDrv] +[External Topic Properties\SECURITY_MAX_SID_SIZE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3611 +ETPTopicOrder0=3727 -[External Topic Properties\RsVftFont] +[External Topic Properties\SECURITY_MIN_NEVER_FILTERED] Count=1 ETPCommand0=2 -ETPTopicOrder0=3612 +ETPTopicOrder0=3728 -[External Topic Properties\RsVftStaticLib] +[External Topic Properties\SECURITY_NETWORK_SERVICE_RID] Count=1 ETPCommand0=2 -ETPTopicOrder0=3613 +ETPTopicOrder0=3729 -[External Topic Properties\RsVftUnknown] +[External Topic Properties\SECURITY_NT_NON_UNIQUE_SUB_AUTH_COUNT] Count=1 ETPCommand0=2 -ETPTopicOrder0=3614 +ETPTopicOrder0=3730 -[External Topic Properties\RsVftVxd] +[External Topic Properties\SECURITY_OTHER_ORGANIZATION_RID] Count=1 ETPCommand0=2 -ETPTopicOrder0=3615 +ETPTopicOrder0=3731 -[External Topic Properties\RsViewNeedsMapping] +[External Topic Properties\SECURITY_PACKAGE_BASE_RID] Count=1 ETPCommand0=2 -ETPTopicOrder0=3616 +ETPTopicOrder0=3732 -[External Topic Properties\RsVMTMemoryWriteError] +[External Topic Properties\SECURITY_PACKAGE_DIGEST_RID] Count=1 ETPCommand0=2 -ETPTopicOrder0=3617 +ETPTopicOrder0=3733 -[External Topic Properties\RsVosDesignedFor] +[External Topic Properties\SECURITY_PACKAGE_NTLM_RID] Count=1 ETPCommand0=2 -ETPTopicOrder0=3618 +ETPTopicOrder0=3734 -[External Topic Properties\RsVosDos] +[External Topic Properties\SECURITY_PACKAGE_RID_COUNT] Count=1 ETPCommand0=2 -ETPTopicOrder0=3619 +ETPTopicOrder0=3735 -[External Topic Properties\RsVosDosWindows16] +[External Topic Properties\SECURITY_PACKAGE_SCHANNEL_RID] Count=1 ETPCommand0=2 -ETPTopicOrder0=3620 +ETPTopicOrder0=3736 -[External Topic Properties\RsVosDosWindows32] +[External Topic Properties\SECURITY_REMOTE_LOGON_RID] Count=1 ETPCommand0=2 -ETPTopicOrder0=3621 +ETPTopicOrder0=3737 -[External Topic Properties\RsVosNT] +[External Topic Properties\SECURITY_RESOURCE_MANAGER_AUTHORITY] Count=1 ETPCommand0=2 -ETPTopicOrder0=3622 +ETPTopicOrder0=3738 -[External Topic Properties\RsVosNTWindows32] +[External Topic Properties\SECURITY_THIS_ORGANIZATION_RID] Count=1 ETPCommand0=2 -ETPTopicOrder0=3623 +ETPTopicOrder0=3739 -[External Topic Properties\RsVosOS216] +[External Topic Properties\SEFTextCR] Count=1 ETPCommand0=2 -ETPTopicOrder0=3624 +ETPTopicOrder0=3740 -[External Topic Properties\RsVosOS216PM16] +[External Topic Properties\SEFTextCRLF] Count=1 ETPCommand0=2 -ETPTopicOrder0=3625 +ETPTopicOrder0=3741 -[External Topic Properties\RsVosOS232] +[External Topic Properties\SEFTextLF] Count=1 ETPCommand0=2 -ETPTopicOrder0=3626 +ETPTopicOrder0=3742 -[External Topic Properties\RsVosOS232PM32] +[External Topic Properties\SEFTextSetsCode_Elm0] Count=1 ETPCommand0=2 -ETPTopicOrder0=3627 +ETPTopicOrder0=3743 -[External Topic Properties\RsVosPM16] +[External Topic Properties\SEFTextSetsCode_Elm0_Desc] Count=1 ETPCommand0=2 -ETPTopicOrder0=3628 +ETPTopicOrder0=3744 -[External Topic Properties\RsVosPM32] +[External Topic Properties\SEFTextSetsCode_Elm1] Count=1 ETPCommand0=2 -ETPTopicOrder0=3629 +ETPTopicOrder0=3745 -[External Topic Properties\RsVosUnknown] +[External Topic Properties\SEFTextSetsCode_Elm1_Desc] Count=1 ETPCommand0=2 -ETPTopicOrder0=3630 +ETPTopicOrder0=3746 -[External Topic Properties\RsVosWindows16] +[External Topic Properties\SEFTextSetsCode_Elm2] Count=1 ETPCommand0=2 -ETPTopicOrder0=3631 +ETPTopicOrder0=3747 -[External Topic Properties\RsVosWindows32] +[External Topic Properties\SEFTextSetsCode_Elm2_Desc] Count=1 ETPCommand0=2 -ETPTopicOrder0=3632 +ETPTopicOrder0=3748 -[External Topic Properties\RsWin32Prefix] +[External Topic Properties\SEFTextSetsCode_Elm4] Count=1 ETPCommand0=2 -ETPTopicOrder0=3633 +ETPTopicOrder0=3749 -[External Topic Properties\RsWrongDataType] +[External Topic Properties\SEFTextSetsCode_Elm4_Desc] Count=1 ETPCommand0=2 -ETPTopicOrder0=3634 +ETPTopicOrder0=3750 -[External Topic Properties\RT_ACCELERATOR] +[External Topic Properties\SEFTextSetsCode_Seg0] Count=1 ETPCommand0=2 -ETPTopicOrder0=3635 +ETPTopicOrder0=3751 -[External Topic Properties\RT_ANICURSOR] +[External Topic Properties\SEFTextSetsCode_Seg0_Desc] Count=1 ETPCommand0=2 -ETPTopicOrder0=3636 +ETPTopicOrder0=3752 -[External Topic Properties\RT_ANIICON] +[External Topic Properties\SEFTextSetsCode_Seg1] Count=1 ETPCommand0=2 -ETPTopicOrder0=3637 +ETPTopicOrder0=3753 -[External Topic Properties\RT_BITMAP] +[External Topic Properties\SEFTextSetsCode_Seg1_Desc] Count=1 ETPCommand0=2 -ETPTopicOrder0=3638 +ETPTopicOrder0=3754 -[External Topic Properties\RT_CURSOR] +[External Topic Properties\SEFTextSetsCode_Seg2] Count=1 ETPCommand0=2 -ETPTopicOrder0=3639 +ETPTopicOrder0=3755 -[External Topic Properties\RT_DIALOG] +[External Topic Properties\SEFTextSetsCode_Seg2_Desc] Count=1 ETPCommand0=2 -ETPTopicOrder0=3640 +ETPTopicOrder0=3756 -[External Topic Properties\RT_DLGINCLUDE] +[External Topic Properties\SEFTextSetsCode_Seg3] Count=1 ETPCommand0=2 -ETPTopicOrder0=3641 +ETPTopicOrder0=3757 -[External Topic Properties\RT_FONT] +[External Topic Properties\SEFTextSetsCode_Seg3_Desc] Count=1 ETPCommand0=2 -ETPTopicOrder0=3642 +ETPTopicOrder0=3758 -[External Topic Properties\RT_FONTDIR] +[External Topic Properties\SEFTextSetsCode_Seg4] Count=1 ETPCommand0=2 -ETPTopicOrder0=3643 +ETPTopicOrder0=3759 -[External Topic Properties\RT_GROUP_CURSOR] +[External Topic Properties\SEFTextSetsCode_Seg4_Desc] Count=1 ETPCommand0=2 -ETPTopicOrder0=3644 +ETPTopicOrder0=3760 -[External Topic Properties\RT_GROUP_ICON] +[External Topic Properties\SEFTextSetsCode_Seg5] Count=1 ETPCommand0=2 -ETPTopicOrder0=3645 +ETPTopicOrder0=3761 -[External Topic Properties\RT_ICON] +[External Topic Properties\SEFTextSetsCode_Seg5_Desc] Count=1 ETPCommand0=2 -ETPTopicOrder0=3646 +ETPTopicOrder0=3762 -[External Topic Properties\RT_MENU] +[External Topic Properties\SEFTextSetsCode_Seg6] Count=1 ETPCommand0=2 -ETPTopicOrder0=3647 +ETPTopicOrder0=3763 -[External Topic Properties\RT_MESSAGETABLE] +[External Topic Properties\SEFTextSetsCode_Seg6_Desc] Count=1 ETPCommand0=2 -ETPTopicOrder0=3648 +ETPTopicOrder0=3764 -[External Topic Properties\RT_PLUGPLAY] +[External Topic Properties\SEFTextSetsCode_Seg7] Count=1 ETPCommand0=2 -ETPTopicOrder0=3649 +ETPTopicOrder0=3765 -[External Topic Properties\RT_RCDATA] +[External Topic Properties\SEFTextSetsCode_Seg7_Desc] Count=1 ETPCommand0=2 -ETPTopicOrder0=3650 +ETPTopicOrder0=3766 -[External Topic Properties\RT_STRING] +[External Topic Properties\SEFTextSetsCode_Set0] Count=1 ETPCommand0=2 -ETPTopicOrder0=3651 +ETPTopicOrder0=3767 -[External Topic Properties\RT_VERSION] +[External Topic Properties\SEFTextSetsCode_Set0_Desc] Count=1 ETPCommand0=2 -ETPTopicOrder0=3652 +ETPTopicOrder0=3768 -[External Topic Properties\RT_VXD] +[External Topic Properties\SEFTextSetsCode_Set1] Count=1 ETPCommand0=2 -ETPTopicOrder0=3653 +ETPTopicOrder0=3769 -[External Topic Properties\RtdlDeleteVolumeMountPoint] +[External Topic Properties\SEFTextSetsCode_Set1_Desc] Count=1 ETPCommand0=2 -ETPTopicOrder0=3654 +ETPTopicOrder0=3770 -[External Topic Properties\RtdlEnumCalendarInfoExA] +[External Topic Properties\SEFTextSetsCode_Set2] Count=1 ETPCommand0=2 -ETPTopicOrder0=3655 +ETPTopicOrder0=3771 -[External Topic Properties\RtdlGetCalendarInfoA] +[External Topic Properties\SEFTextSetsCode_Set2_Desc] Count=1 ETPCommand0=2 -ETPTopicOrder0=3656 +ETPTopicOrder0=3772 -[External Topic Properties\RtdlGetCalendarInfoW] +[External Topic Properties\SEFTextSetsCode_Set3] Count=1 ETPCommand0=2 -ETPTopicOrder0=3657 +ETPTopicOrder0=3773 -[External Topic Properties\RtdlGetVolumeNameForVolumeMountPoint] +[External Topic Properties\SEFTextSetsCode_Set3_Desc] Count=1 ETPCommand0=2 -ETPTopicOrder0=3658 +ETPTopicOrder0=3774 -[External Topic Properties\RtdlMsiGetComponentPath] +[External Topic Properties\SEFTextSetsCode_Set4] Count=1 ETPCommand0=2 -ETPTopicOrder0=51 +ETPTopicOrder0=3775 -[External Topic Properties\RtdlMsiGetShortcutTarget] +[External Topic Properties\SEFTextSetsCode_Set4_Desc] Count=1 ETPCommand0=2 -ETPTopicOrder0=52 +ETPTopicOrder0=3776 -[External Topic Properties\RtdlMsiLibHandle] +[External Topic Properties\SEFTextSetsCode_Set5] Count=1 ETPCommand0=2 -ETPTopicOrder0=53 +ETPTopicOrder0=3777 -[External Topic Properties\RtdlNetApiBufferFree] +[External Topic Properties\SEFTextSetsCode_Set5_Desc] Count=1 ETPCommand0=2 -ETPTopicOrder0=3659 +ETPTopicOrder0=3778 -[External Topic Properties\RtdlNetBios] +[External Topic Properties\SendCmdLineParams@HWND@HWND] Count=1 ETPCommand0=2 -ETPTopicOrder0=3660 +ETPTopicOrder0=1126 -[External Topic Properties\RtdlNetGroupAdd] +[External Topic Properties\SendData@HWND@HWND@TJclAppInstDataKind@Pointer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=3661 +ETPTopicOrder0=1127 -[External Topic Properties\RtdlNetGroupDel] +[External Topic Properties\SendString@HWND@HWND@TJclAppInstDataKind@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3662 +ETPTopicOrder0=1128 -[External Topic Properties\RtdlNetGroupEnum] +[External Topic Properties\SendStrings@HWND@HWND@TJclAppInstDataKind@TStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=3663 +ETPTopicOrder0=1129 -[External Topic Properties\RtdlNetLocalGroupAdd] +[External Topic Properties\SEP_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=3664 +ETPTopicOrder0=2985 -[External Topic Properties\RtdlNetLocalGroupAddMembers] +[External Topic Properties\SERVICE_CONFIG_DESCRIPTION] Count=1 ETPCommand0=2 -ETPTopicOrder0=3665 +ETPTopicOrder0=2986 -[External Topic Properties\RtdlNetLocalGroupDel] +[External Topic Properties\SERVICE_CONFIG_FAILURE_ACTIONS] Count=1 ETPCommand0=2 -ETPTopicOrder0=3666 +ETPTopicOrder0=2987 -[External Topic Properties\RtdlNetLocalGroupEnum] +[External Topic Properties\SERVICE_DESCRIPTIONA] Count=1 ETPCommand0=2 -ETPTopicOrder0=3667 +ETPTopicOrder0=10 -[External Topic Properties\RtdlNetUserAdd] +[External Topic Properties\SERVICE_DESCRIPTIONA.lpDescription] Count=1 ETPCommand0=2 -ETPTopicOrder0=3668 +ETPTopicOrder0=0 -[External Topic Properties\RtdlNetUserDel] +[External Topic Properties\SESSION_ABORTED] Count=1 ETPCommand0=2 -ETPTopicOrder0=3669 +ETPTopicOrder0=3782 -[External Topic Properties\RtdlSetNamedSecurityInfoW] +[External Topic Properties\SESSION_BUFFER] Count=1 ETPCommand0=2 -ETPTopicOrder0=3670 +ETPTopicOrder0=392 -[External Topic Properties\RtdlSetVolumeMountPoint] +[External Topic Properties\SESSION_CRYPT_KLEN] Count=1 ETPCommand0=2 -ETPTopicOrder0=3671 +ETPTopicOrder0=3783 -[External Topic Properties\RtdlSetWaitableTimer] +[External Topic Properties\SESSION_ESTABLISHED] Count=1 ETPCommand0=2 -ETPTopicOrder0=3672 +ETPTopicOrder0=3784 -[External Topic Properties\RTL_OSVERSIONINFOEXW] +[External Topic Properties\SESSION_HEADER] Count=1 ETPCommand0=2 -ETPTopicOrder0=390 +ETPTopicOrder0=393 -[External Topic Properties\RunDll32ShimW@THandle@HMODULE@PWideChar@Integer] +[External Topic Properties\SESSION_PWLEN] Count=1 ETPCommand0=2 -ETPTopicOrder0=938 +ETPTopicOrder0=3785 -[External Topic Properties\RUNTIME_INFO_DONT_RETURN_DIRECTORY] +[External Topic Properties\Set8087ControlWord] Count=1 ETPCommand0=2 -ETPTopicOrder0=3673 +ETPTopicOrder0=1130 -[External Topic Properties\RUNTIME_INFO_DONT_RETURN_VERSION] +[External Topic Properties\Set8087Infinity] Count=1 ETPCommand0=2 -ETPTopicOrder0=3674 +ETPTopicOrder0=1131 -[External Topic Properties\RUNTIME_INFO_DONT_SHOW_ERROR_DIALOG] +[External Topic Properties\Set8087Precision] Count=1 ETPCommand0=2 -ETPTopicOrder0=3675 +ETPTopicOrder0=1132 -[External Topic Properties\RUNTIME_INFO_REQUEST_AMD64] +[External Topic Properties\Set8087Rounding] Count=1 ETPCommand0=2 -ETPTopicOrder0=3676 +ETPTopicOrder0=1133 -[External Topic Properties\RUNTIME_INFO_REQUEST_IA64] +[External Topic Properties\SetAlpha@TColor32@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=3677 +ETPTopicOrder0=1134 -[External Topic Properties\RUNTIME_INFO_REQUEST_X86] +[External Topic Properties\SetBit@Cardinal@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=3678 +ETPTopicOrder0=1138 -[External Topic Properties\RUNTIME_INFO_UPGRADE_VERSION] +[External Topic Properties\SetBit@Int64@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=3679 +ETPTopicOrder0=1140 -[External Topic Properties\RuntimeTypeInformation] +[External Topic Properties\SetBit@Integer@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=19 +ETPTopicOrder0=1137 -[External Topic Properties\RVA] +[External Topic Properties\SetBit@Shortint@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=391 +ETPTopicOrder0=1136 -[External Topic Properties\SamePath@string@string] +[External Topic Properties\SetBit@Smallint@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=939 +ETPTopicOrder0=1139 -[External Topic Properties\Sar@Shortint@TBitRange] +[External Topic Properties\SetBit@Word@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=940 +ETPTopicOrder0=1135 -[External Topic Properties\Sar@Smallint@TBitRange] +[External Topic Properties\SetBitBuffer@@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=941 +ETPTopicOrder0=1141 -[External Topic Properties\SCHED_E_ACCOUNT_DBASE_CORRUPT] +[External Topic Properties\SetBitBuffer@@Int64] Count=1 ETPCommand0=2 -ETPTopicOrder0=3680 +ETPTopicOrder0=1142 -[External Topic Properties\SCHED_E_ACCOUNT_INFORMATION_NOT_SET] +[External Topic Properties\SetBitmapColors@TBitmap@array of TColor@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=3681 +ETPTopicOrder0=1143 -[External Topic Properties\SCHED_E_ACCOUNT_NAME_NOT_FOUND] +[External Topic Properties\SetBytesEx@@TBytes] Count=1 ETPCommand0=2 -ETPTopicOrder0=3682 +ETPTopicOrder0=962 -[External Topic Properties\SCHED_E_CANNOT_OPEN_TASK] +[External Topic Properties\SetFileSecurity@LPCTSTR@SECURITY_INFORMATION@PSECURITY_DESCRIPTOR] Count=1 ETPCommand0=2 -ETPTopicOrder0=3683 +ETPTopicOrder0=963 -[External Topic Properties\SCHED_E_INVALID_TASK] +[External Topic Properties\SetFileSecurityA@LPCSTR@SECURITY_INFORMATION@PSECURITY_DESCRIPTOR] Count=1 ETPCommand0=2 -ETPTopicOrder0=3684 +ETPTopicOrder0=964 -[External Topic Properties\SCHED_E_NO_SECURITY_SERVICES] +[External Topic Properties\SetFileSecurityW@LPCWSTR@SECURITY_INFORMATION@PSECURITY_DESCRIPTOR] Count=1 ETPCommand0=2 -ETPTopicOrder0=3685 +ETPTopicOrder0=965 -[External Topic Properties\SCHED_E_SERVICE_NOT_INSTALLED] +[External Topic Properties\SetGlobalEnvironmentVariable@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3686 +ETPTopicOrder0=1144 -[External Topic Properties\SCHED_E_SERVICE_NOT_RUNNING] +[External Topic Properties\SetIntegerSet@TIntegerSet@UInt32] Count=1 ETPCommand0=2 -ETPTopicOrder0=3687 +ETPTopicOrder0=967 -[External Topic Properties\SCHED_E_TASK_NOT_READY] +[External Topic Properties\SetMasked8087Exceptions] Count=1 ETPCommand0=2 -ETPTopicOrder0=3688 +ETPTopicOrder0=1145 -[External Topic Properties\SCHED_E_TASK_NOT_RUNNING] +[External Topic Properties\SetNamedSecurityInfoW@LPWSTR@SE_OBJECT_TYPE@SECURITY_INFORMATION@PSID@PSID@PACL@PACL] Count=1 ETPCommand0=2 -ETPTopicOrder0=3689 +ETPTopicOrder0=969 -[External Topic Properties\SCHED_E_TRIGGER_NOT_FOUND] +[External Topic Properties\SetObjectFontToSystemFont@TObject@TFontType] Count=1 ETPCommand0=2 -ETPTopicOrder0=3690 +ETPTopicOrder0=1146 -[External Topic Properties\SCHED_E_UNKNOWN_OBJECT_VERSION] +[External Topic Properties\SetPCRECalloutCallback@pcre_callout_callback] Count=1 ETPCommand0=2 -ETPTopicOrder0=3691 +ETPTopicOrder0=971 -[External Topic Properties\SCHED_E_UNSUPPORTED_ACCOUNT_OPTION] +[External Topic Properties\SetPCREFreeCallback@pcre_free_callback] Count=1 ETPCommand0=2 -ETPTopicOrder0=3692 +ETPTopicOrder0=972 -[External Topic Properties\SCHED_S_EVENT_TRIGGER] +[External Topic Properties\SetPCREMallocCallback@pcre_malloc_callback] Count=1 ETPCommand0=2 -ETPTopicOrder0=3693 +ETPTopicOrder0=973 -[External Topic Properties\SCHED_S_TASK_DISABLED] +[External Topic Properties\SetPCREStackFreeCallback@pcre_stack_free_callback] Count=1 ETPCommand0=2 -ETPTopicOrder0=3694 +ETPTopicOrder0=974 -[External Topic Properties\SCHED_S_TASK_HAS_NOT_RUN] +[External Topic Properties\SetPCREStackMallocCallback@pcre_stack_malloc_callback] Count=1 ETPCommand0=2 -ETPTopicOrder0=3695 +ETPTopicOrder0=975 -[External Topic Properties\SCHED_S_TASK_NO_MORE_RUNS] +[External Topic Properties\SetPolarComplexFormatStr@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3696 +ETPTopicOrder0=1147 -[External Topic Properties\SCHED_S_TASK_NO_VALID_TRIGGERS] +[External Topic Properties\SetPrinterPixelsPerInch] Count=1 ETPCommand0=2 -ETPTopicOrder0=3697 +ETPTopicOrder0=1148 -[External Topic Properties\SCHED_S_TASK_NOT_SCHEDULED] +[External Topic Properties\SetRectComplexFormatStr@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3698 +ETPTopicOrder0=1149 -[External Topic Properties\SCHED_S_TASK_READY] +[External Topic Properties\SetSevenzipArchiveCompressionProperties@IInterface@IInterface] Count=1 ETPCommand0=2 -ETPTopicOrder0=3699 +ETPTopicOrder0=1150 -[External Topic Properties\SCHED_S_TASK_RUNNING] +[External Topic Properties\SetSuspendState@BOOL@BOOL@BOOL] Count=1 ETPCommand0=2 -ETPTopicOrder0=3700 +ETPTopicOrder0=977 -[External Topic Properties\SCHED_S_TASK_TERMINATED] +[External Topic Properties\SetVolumeMountPoint@LPCSTR@LPCSTR] Count=1 ETPCommand0=2 -ETPTopicOrder0=3701 +ETPTopicOrder0=978 -[External Topic Properties\ScreenShot@TBitmap@Boolean] +[External Topic Properties\SetWaitableTimer@THandle@TLargeInteger@Longint@TFNTimerAPCRoutine@Pointer@BOOL] Count=1 ETPCommand0=2 -ETPTopicOrder0=942 +ETPTopicOrder0=979 -[External Topic Properties\ScreenShot@TBitmap@Integer@Integer@Integer@Integer@THandle] +[External Topic Properties\sevenzip.pas] Count=1 ETPCommand0=2 -ETPTopicOrder0=943 +ETPTopicOrder0=88 -[External Topic Properties\SE_CREATE_GLOBAL_NAME] +[External Topic Properties\SevenzipCheck@HRESULT] Count=1 ETPCommand0=2 -ETPTopicOrder0=3702 +ETPTopicOrder0=1151 -[External Topic Properties\SE_IMPERSONATE_NAME] +[External Topic Properties\sfUnicodeLSB] Count=1 ETPCommand0=2 -ETPTopicOrder0=3703 +ETPTopicOrder0=2988 -[External Topic Properties\SE_MANAGE_VOLUME_NAME] +[External Topic Properties\sfUnicodeMSB] Count=1 ETPCommand0=2 -ETPTopicOrder0=3704 +ETPTopicOrder0=2989 -[External Topic Properties\SearchDynArray@Pointer@Cardinal@TDynArraySortCompare@Pointer@Boolean] +[External Topic Properties\SharedAllocMem@string@Cardinal@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=944 +ETPTopicOrder0=1152 -[External Topic Properties\SearchSortedList@TList@TListSortCompare@Pointer@Boolean] +[External Topic Properties\SharedCloseMem@] Count=1 ETPCommand0=2 -ETPTopicOrder0=945 +ETPTopicOrder0=1153 -[External Topic Properties\SearchSortedUntyped@Pointer@Integer@TUntypedSearchCompare@@Boolean] +[External Topic Properties\SharedFreeMem@] Count=1 ETPCommand0=2 -ETPTopicOrder0=946 +ETPTopicOrder0=1154 -[External Topic Properties\Sec@TRectComplex] +[External Topic Properties\SharedGetMem@@string@Cardinal@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=947 +ETPTopicOrder0=1155 -[External Topic Properties\SecH@TRectComplex] +[External Topic Properties\SharedOpenMem@@string@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=948 +ETPTopicOrder0=1156 -[External Topic Properties\SectionTag_] +[External Topic Properties\SharedOpenMem@string@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=3705 +ETPTopicOrder0=1157 -[External Topic Properties\SectionTag_CODES] +[External Topic Properties\SHCopy@THandle@string@string@TSHCopyOptions] Count=1 ETPCommand0=2 -ETPTopicOrder0=3706 +ETPTopicOrder0=1158 -[External Topic Properties\SectionTag_COMS] +[External Topic Properties\ShellExecEx@string@string@string@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=3707 +ETPTopicOrder0=1159 -[External Topic Properties\SectionTag_ELMS] +[External Topic Properties\ShellLinkIcon@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3708 +ETPTopicOrder0=1161 -[External Topic Properties\SectionTag_INI] +[External Topic Properties\ShellLinkIcon@TShellLink] Count=1 ETPCommand0=2 -ETPTopicOrder0=3709 +ETPTopicOrder0=1160 -[External Topic Properties\SectionTag_JCL_COMSEXT] +[External Topic Properties\ShellLinkResolve@string@TShellLink@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=3710 +ETPTopicOrder0=1162 -[External Topic Properties\SectionTag_JCL_ELMSEXT] +[External Topic Properties\SHEnumSpecialFolderFirst@DWORD@TEnumFolderFlags@TEnumFolderRec] Count=1 ETPCommand0=2 -ETPTopicOrder0=3711 +ETPTopicOrder0=1163 -[External Topic Properties\SectionTag_JCL_SEGSEXT] +[External Topic Properties\SHMove@THandle@string@string@TSHMoveOptions] Count=1 ETPCommand0=2 -ETPTopicOrder0=3712 +ETPTopicOrder0=1164 -[External Topic Properties\SectionTag_JCL_SETSEXT] +[External Topic Properties\ShortenString@HDC@WideString@Integer@Boolean@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=3713 +ETPTopicOrder0=1165 -[External Topic Properties\SectionTag_OBJVARS] +[External Topic Properties\ShortintMask] Count=1 ETPCommand0=2 -ETPTopicOrder0=3714 +ETPTopicOrder0=2990 -[External Topic Properties\SectionTag_PRIVATE] +[External Topic Properties\SHPWLEN] Count=1 ETPCommand0=2 -ETPTopicOrder0=3715 +ETPTopicOrder0=3789 -[External Topic Properties\SectionTag_PUBLIC] +[External Topic Properties\SHTDN_REASON_FLAG_CLEAN_UI] Count=1 ETPCommand0=2 -ETPTopicOrder0=3716 +ETPTopicOrder0=3790 -[External Topic Properties\SectionTag_SEGS] +[External Topic Properties\SHTDN_REASON_FLAG_COMMENT_REQUIRED] Count=1 ETPCommand0=2 -ETPTopicOrder0=3717 +ETPTopicOrder0=3791 -[External Topic Properties\SectionTag_SEMREFS] +[External Topic Properties\SHTDN_REASON_FLAG_DIRTY_PROBLEM_ID_REQUIRED] Count=1 ETPCommand0=2 -ETPTopicOrder0=3718 +ETPTopicOrder0=3792 -[External Topic Properties\SectionTag_SETS] +[External Topic Properties\SHTDN_REASON_FLAG_DIRTY_UI] Count=1 ETPCommand0=2 -ETPTopicOrder0=3719 +ETPTopicOrder0=3793 -[External Topic Properties\SectionTag_STD] +[External Topic Properties\SHTDN_REASON_FLAG_PLANNED] Count=1 ETPCommand0=2 -ETPTopicOrder0=3720 +ETPTopicOrder0=3794 -[External Topic Properties\SectionTag_TEXT] +[External Topic Properties\SHTDN_REASON_FLAG_USER_DEFINED] Count=1 ETPCommand0=2 -ETPTopicOrder0=3721 +ETPTopicOrder0=3795 -[External Topic Properties\SectionTag_TEXTSETS] +[External Topic Properties\SHTDN_REASON_LEGACY_API] Count=1 ETPCommand0=2 -ETPTopicOrder0=3722 +ETPTopicOrder0=3796 -[External Topic Properties\SectionTag_VALLISTS] +[External Topic Properties\SHTDN_REASON_MAJOR_APPLICATION] Count=1 ETPCommand0=2 -ETPTopicOrder0=3723 +ETPTopicOrder0=3797 -[External Topic Properties\SectionTag_VER] +[External Topic Properties\SHTDN_REASON_MAJOR_HARDWARE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3724 +ETPTopicOrder0=3798 -[External Topic Properties\SECURITY_LOCAL_SERVICE_RID] +[External Topic Properties\SHTDN_REASON_MAJOR_LEGACY_API] Count=1 ETPCommand0=2 -ETPTopicOrder0=3725 +ETPTopicOrder0=3799 -[External Topic Properties\SECURITY_MAX_ALWAYS_FILTERED] +[External Topic Properties\SHTDN_REASON_MAJOR_NONE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3726 +ETPTopicOrder0=3800 -[External Topic Properties\SECURITY_MAX_SID_SIZE] +[External Topic Properties\SHTDN_REASON_MAJOR_OPERATINGSYSTEM] Count=1 ETPCommand0=2 -ETPTopicOrder0=3727 +ETPTopicOrder0=3801 -[External Topic Properties\SECURITY_MIN_NEVER_FILTERED] +[External Topic Properties\SHTDN_REASON_MAJOR_OTHER] Count=1 ETPCommand0=2 -ETPTopicOrder0=3728 +ETPTopicOrder0=3802 -[External Topic Properties\SECURITY_NETWORK_SERVICE_RID] +[External Topic Properties\SHTDN_REASON_MAJOR_POWER] Count=1 ETPCommand0=2 -ETPTopicOrder0=3729 +ETPTopicOrder0=3803 -[External Topic Properties\SECURITY_NT_NON_UNIQUE_SUB_AUTH_COUNT] +[External Topic Properties\SHTDN_REASON_MAJOR_SOFTWARE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3730 +ETPTopicOrder0=3804 -[External Topic Properties\SECURITY_OTHER_ORGANIZATION_RID] +[External Topic Properties\SHTDN_REASON_MAJOR_SYSTEM] Count=1 ETPCommand0=2 -ETPTopicOrder0=3731 +ETPTopicOrder0=3805 -[External Topic Properties\SECURITY_PACKAGE_BASE_RID] +[External Topic Properties\SHTDN_REASON_MINOR_BLUESCREEN] Count=1 ETPCommand0=2 -ETPTopicOrder0=3732 +ETPTopicOrder0=3806 -[External Topic Properties\SECURITY_PACKAGE_DIGEST_RID] +[External Topic Properties\SHTDN_REASON_MINOR_CORDUNPLUGGED] Count=1 ETPCommand0=2 -ETPTopicOrder0=3733 +ETPTopicOrder0=3807 -[External Topic Properties\SECURITY_PACKAGE_NTLM_RID] +[External Topic Properties\SHTDN_REASON_MINOR_DC_DEMOTION] Count=1 ETPCommand0=2 -ETPTopicOrder0=3734 +ETPTopicOrder0=3808 -[External Topic Properties\SECURITY_PACKAGE_RID_COUNT] +[External Topic Properties\SHTDN_REASON_MINOR_DC_PROMOTION] Count=1 ETPCommand0=2 -ETPTopicOrder0=3735 +ETPTopicOrder0=3809 -[External Topic Properties\SECURITY_PACKAGE_SCHANNEL_RID] +[External Topic Properties\SHTDN_REASON_MINOR_DISK] Count=1 ETPCommand0=2 -ETPTopicOrder0=3736 +ETPTopicOrder0=3810 -[External Topic Properties\SECURITY_REMOTE_LOGON_RID] +[External Topic Properties\SHTDN_REASON_MINOR_ENVIRONMENT] Count=1 ETPCommand0=2 -ETPTopicOrder0=3737 +ETPTopicOrder0=3811 -[External Topic Properties\SECURITY_RESOURCE_MANAGER_AUTHORITY] +[External Topic Properties\SHTDN_REASON_MINOR_HARDWARE_DRIVER] Count=1 ETPCommand0=2 -ETPTopicOrder0=3738 +ETPTopicOrder0=3812 -[External Topic Properties\SECURITY_THIS_ORGANIZATION_RID] +[External Topic Properties\SHTDN_REASON_MINOR_HOTFIX] Count=1 ETPCommand0=2 -ETPTopicOrder0=3739 +ETPTopicOrder0=3813 -[External Topic Properties\SEFTextCR] +[External Topic Properties\SHTDN_REASON_MINOR_HOTFIX_UNINSTALL] Count=1 ETPCommand0=2 -ETPTopicOrder0=3740 +ETPTopicOrder0=3814 -[External Topic Properties\SEFTextCRLF] +[External Topic Properties\SHTDN_REASON_MINOR_HUNG] Count=1 ETPCommand0=2 -ETPTopicOrder0=3741 +ETPTopicOrder0=3815 -[External Topic Properties\SEFTextLF] +[External Topic Properties\SHTDN_REASON_MINOR_INSTALLATION] Count=1 ETPCommand0=2 -ETPTopicOrder0=3742 +ETPTopicOrder0=3816 -[External Topic Properties\SEFTextSetsCode_Elm0] +[External Topic Properties\SHTDN_REASON_MINOR_MAINTENANCE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3743 +ETPTopicOrder0=3817 -[External Topic Properties\SEFTextSetsCode_Elm0_Desc] +[External Topic Properties\SHTDN_REASON_MINOR_MMC] Count=1 ETPCommand0=2 -ETPTopicOrder0=3744 +ETPTopicOrder0=3818 -[External Topic Properties\SEFTextSetsCode_Elm1] +[External Topic Properties\SHTDN_REASON_MINOR_NETWORK_CONNECTIVITY] Count=1 ETPCommand0=2 -ETPTopicOrder0=3745 +ETPTopicOrder0=3819 -[External Topic Properties\SEFTextSetsCode_Elm1_Desc] +[External Topic Properties\SHTDN_REASON_MINOR_NETWORKCARD] Count=1 ETPCommand0=2 -ETPTopicOrder0=3746 +ETPTopicOrder0=3820 -[External Topic Properties\SEFTextSetsCode_Elm2] +[External Topic Properties\SHTDN_REASON_MINOR_NONE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3747 +ETPTopicOrder0=3821 -[External Topic Properties\SEFTextSetsCode_Elm2_Desc] +[External Topic Properties\SHTDN_REASON_MINOR_OTHER] Count=1 ETPCommand0=2 -ETPTopicOrder0=3748 +ETPTopicOrder0=3822 -[External Topic Properties\SEFTextSetsCode_Elm4] +[External Topic Properties\SHTDN_REASON_MINOR_OTHERDRIVER] Count=1 ETPCommand0=2 -ETPTopicOrder0=3749 +ETPTopicOrder0=3823 -[External Topic Properties\SEFTextSetsCode_Elm4_Desc] +[External Topic Properties\SHTDN_REASON_MINOR_POWER_SUPPLY] Count=1 ETPCommand0=2 -ETPTopicOrder0=3750 +ETPTopicOrder0=3824 -[External Topic Properties\SEFTextSetsCode_Seg0] +[External Topic Properties\SHTDN_REASON_MINOR_PROCESSOR] Count=1 ETPCommand0=2 -ETPTopicOrder0=3751 +ETPTopicOrder0=3825 -[External Topic Properties\SEFTextSetsCode_Seg0_Desc] +[External Topic Properties\SHTDN_REASON_MINOR_RECONFIG] Count=1 ETPCommand0=2 -ETPTopicOrder0=3752 +ETPTopicOrder0=3826 -[External Topic Properties\SEFTextSetsCode_Seg1] +[External Topic Properties\SHTDN_REASON_MINOR_SECURITY] Count=1 ETPCommand0=2 -ETPTopicOrder0=3753 +ETPTopicOrder0=3827 -[External Topic Properties\SEFTextSetsCode_Seg1_Desc] +[External Topic Properties\SHTDN_REASON_MINOR_SECURITYFIX] Count=1 ETPCommand0=2 -ETPTopicOrder0=3754 +ETPTopicOrder0=3828 -[External Topic Properties\SEFTextSetsCode_Seg2] +[External Topic Properties\SHTDN_REASON_MINOR_SECURITYFIX_UNINSTALL] Count=1 ETPCommand0=2 -ETPTopicOrder0=3755 +ETPTopicOrder0=3829 -[External Topic Properties\SEFTextSetsCode_Seg2_Desc] +[External Topic Properties\SHTDN_REASON_MINOR_SERVICEPACK] Count=1 ETPCommand0=2 -ETPTopicOrder0=3756 +ETPTopicOrder0=3830 -[External Topic Properties\SEFTextSetsCode_Seg3] +[External Topic Properties\SHTDN_REASON_MINOR_SERVICEPACK_UNINSTALL] Count=1 ETPCommand0=2 -ETPTopicOrder0=3757 +ETPTopicOrder0=3831 -[External Topic Properties\SEFTextSetsCode_Seg3_Desc] +[External Topic Properties\SHTDN_REASON_MINOR_TERMSRV] Count=1 ETPCommand0=2 -ETPTopicOrder0=3758 +ETPTopicOrder0=3832 -[External Topic Properties\SEFTextSetsCode_Seg4] +[External Topic Properties\SHTDN_REASON_MINOR_UNSTABLE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3759 +ETPTopicOrder0=3833 -[External Topic Properties\SEFTextSetsCode_Seg4_Desc] +[External Topic Properties\SHTDN_REASON_MINOR_UPGRADE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3760 +ETPTopicOrder0=3834 -[External Topic Properties\SEFTextSetsCode_Seg5] +[External Topic Properties\SHTDN_REASON_MINOR_WMI] Count=1 ETPCommand0=2 -ETPTopicOrder0=3761 +ETPTopicOrder0=3835 -[External Topic Properties\SEFTextSetsCode_Seg5_Desc] +[External Topic Properties\SHTDN_REASON_UNKNOWN] Count=1 ETPCommand0=2 -ETPTopicOrder0=3762 +ETPTopicOrder0=3836 -[External Topic Properties\SEFTextSetsCode_Seg6] +[External Topic Properties\SHTDN_REASON_VALID_BIT_MASK] Count=1 ETPCommand0=2 -ETPTopicOrder0=3763 +ETPTopicOrder0=3837 -[External Topic Properties\SEFTextSetsCode_Seg6_Desc] +[External Topic Properties\ShutDownDialog@string@DWORD@Boolean@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=3764 +ETPTopicOrder0=1166 -[External Topic Properties\SEFTextSetsCode_Seg7] +[External Topic Properties\ShutDownDialog@string@string@DWORD@Boolean@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=3765 +ETPTopicOrder0=1167 -[External Topic Properties\SEFTextSetsCode_Seg7_Desc] +[External Topic Properties\SID] Count=1 ETPCommand0=2 -ETPTopicOrder0=3766 +ETPTopicOrder0=394 -[External Topic Properties\SEFTextSetsCode_Set0] +[External Topic Properties\SID_AND_ATTRIBUTES] Count=1 ETPCommand0=2 -ETPTopicOrder0=3767 +ETPTopicOrder0=395 -[External Topic Properties\SEFTextSetsCode_Set0_Desc] +[External Topic Properties\SID_AND_ATTRIBUTES_ARRAY] Count=1 ETPCommand0=2 -ETPTopicOrder0=3768 +ETPTopicOrder0=396 -[External Topic Properties\SEFTextSetsCode_Set1] +[External Topic Properties\SID_IDENTIFIER_AUTHORITY] Count=1 ETPCommand0=2 -ETPTopicOrder0=3769 +ETPTopicOrder0=397 -[External Topic Properties\SEFTextSetsCode_Set1_Desc] +[External Topic Properties\SID_MAX_SUB_AUTHORITIES] Count=1 ETPCommand0=2 -ETPTopicOrder0=3770 +ETPTopicOrder0=3838 -[External Topic Properties\SEFTextSetsCode_Set2] +[External Topic Properties\SID_RECOMMENDED_SUB_AUTHORITIES] Count=1 ETPCommand0=2 -ETPTopicOrder0=3771 +ETPTopicOrder0=3839 -[External Topic Properties\SEFTextSetsCode_Set2_Desc] +[External Topic Properties\SID_REVISION] Count=1 ETPCommand0=2 -ETPTopicOrder0=3772 +ETPTopicOrder0=3840 -[External Topic Properties\SEFTextSetsCode_Set3] +[External Topic Properties\SIDToString@PSID] Count=1 ETPCommand0=2 -ETPTopicOrder0=3773 +ETPTopicOrder0=1168 -[External Topic Properties\SEFTextSetsCode_Set3_Desc] +[External Topic Properties\SidTypeAlias] Count=1 ETPCommand0=2 -ETPTopicOrder0=3774 +ETPTopicOrder0=3841 -[External Topic Properties\SEFTextSetsCode_Set4] +[External Topic Properties\SidTypeComputer] Count=1 ETPCommand0=2 -ETPTopicOrder0=3775 +ETPTopicOrder0=3842 -[External Topic Properties\SEFTextSetsCode_Set4_Desc] +[External Topic Properties\SidTypeDeletedAccount] Count=1 ETPCommand0=2 -ETPTopicOrder0=3776 +ETPTopicOrder0=3843 -[External Topic Properties\SEFTextSetsCode_Set5] +[External Topic Properties\SidTypeDomain] Count=1 ETPCommand0=2 -ETPTopicOrder0=3777 +ETPTopicOrder0=3844 -[External Topic Properties\SEFTextSetsCode_Set5_Desc] +[External Topic Properties\SidTypeGroup] Count=1 ETPCommand0=2 -ETPTopicOrder0=3778 +ETPTopicOrder0=3845 -[External Topic Properties\SEP_FLAG] +[External Topic Properties\SidTypeInvalid] Count=1 ETPCommand0=2 -ETPTopicOrder0=3779 +ETPTopicOrder0=3846 -[External Topic Properties\SERVICE_CONFIG_DESCRIPTION] +[External Topic Properties\SidTypeUnknown] Count=1 ETPCommand0=2 -ETPTopicOrder0=3780 +ETPTopicOrder0=3847 -[External Topic Properties\SERVICE_CONFIG_FAILURE_ACTIONS] +[External Topic Properties\SidTypeUser] Count=1 ETPCommand0=2 -ETPTopicOrder0=3781 +ETPTopicOrder0=3848 -[External Topic Properties\SERVICE_DESCRIPTIONA] +[External Topic Properties\SidTypeWellKnownGroup] Count=1 ETPCommand0=2 -ETPTopicOrder0=82 +ETPTopicOrder0=3849 -[External Topic Properties\SERVICE_DESCRIPTIONA.lpDescription] -Count=1 +[External Topic Properties\SimpleCompare@TObject@TObject] +Count=2 ETPCommand0=2 -ETPTopicOrder0=0 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1169 -[External Topic Properties\SESSION_ABORTED] -Count=1 +[External Topic Properties\SimpleEqualityCompare@TObject@TObject] +Count=2 ETPCommand0=2 -ETPTopicOrder0=3782 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1170 -[External Topic Properties\SESSION_BUFFER] -Count=1 +[External Topic Properties\SimpleHashConvert@TObject] +Count=2 ETPCommand0=2 -ETPTopicOrder0=392 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1171 -[External Topic Properties\SESSION_CRYPT_KLEN] +[External Topic Properties\SimpleLog] Count=1 ETPCommand0=2 -ETPTopicOrder0=3783 +ETPTopicOrder0=35 -[External Topic Properties\SESSION_ESTABLISHED] +[External Topic Properties\SimpleXMLDecode@string@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=3784 +ETPTopicOrder0=1172 -[External Topic Properties\SESSION_HEADER] +[External Topic Properties\SimpleXMLEncode@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=393 +ETPTopicOrder0=1173 -[External Topic Properties\SESSION_PWLEN] +[External Topic Properties\Sin@TRectComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=3785 +ETPTopicOrder0=1174 -[External Topic Properties\Set8087ControlWord] +[External Topic Properties\SinCos@Extended@Extended@Extended] Count=1 ETPCommand0=2 -ETPTopicOrder0=949 +ETPTopicOrder0=1175 -[External Topic Properties\Set8087Infinity] +[External Topic Properties\SinCos@Single@Single@Single] Count=1 ETPCommand0=2 -ETPTopicOrder0=950 +ETPTopicOrder0=1176 -[External Topic Properties\Set8087Precision] -Count=1 +[External Topic Properties\SingleSimpleCompare@Single@Single] +Count=2 ETPCommand0=2 -ETPTopicOrder0=951 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1177 -[External Topic Properties\Set8087Rounding] -Count=1 +[External Topic Properties\SingleSimpleEqualityCompare@Single@Single] +Count=2 ETPCommand0=2 -ETPTopicOrder0=952 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1178 -[External Topic Properties\SetAlpha@TColor32@Integer] -Count=1 +[External Topic Properties\SingleSimpleHashConvert@Single] +Count=2 ETPCommand0=2 -ETPTopicOrder0=953 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1179 -[External Topic Properties\SetBit@Cardinal@TBitRange] +[External Topic Properties\SingleSortProc] Count=1 ETPCommand0=2 -ETPTopicOrder0=954 +ETPTopicOrder0=36 -[External Topic Properties\SetBit@Int64@TBitRange] +[External Topic Properties\SinH@TRectComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=956 +ETPTopicOrder0=1180 -[External Topic Properties\SetBit@Integer@TBitRange] +[External Topic Properties\sivFirst] Count=1 ETPCommand0=2 -ETPTopicOrder0=955 +ETPTopicOrder0=2991 -[External Topic Properties\SetBit@Shortint@TBitRange] +[External Topic Properties\sivFourth] Count=1 ETPCommand0=2 -ETPTopicOrder0=958 +ETPTopicOrder0=2992 -[External Topic Properties\SetBit@Smallint@TBitRange] +[External Topic Properties\sivLast] Count=1 ETPCommand0=2 -ETPTopicOrder0=957 +ETPTopicOrder0=2993 -[External Topic Properties\SetBit@Word@TBitRange] +[External Topic Properties\sivSecond] Count=1 ETPCommand0=2 -ETPTopicOrder0=959 +ETPTopicOrder0=2994 -[External Topic Properties\SetBitBuffer@@Cardinal] +[External Topic Properties\sivThird] Count=1 ETPCommand0=2 -ETPTopicOrder0=960 +ETPTopicOrder0=2995 -[External Topic Properties\SetBitmapColors@TBitmap@array of TColor@Integer] +[External Topic Properties\SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=961 +ETPTopicOrder0=121 -[External Topic Properties\SetBytesEx@@TBytes] +[External Topic Properties\SIZEOF_RFPO_DATA] Count=1 ETPCommand0=2 -ETPTopicOrder0=962 +ETPTopicOrder0=3855 -[External Topic Properties\SetFileSecurity@LPCTSTR@SECURITY_INFORMATION@PSECURITY_DESCRIPTOR] +[External Topic Properties\SizeOfIStreamContents@IStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=963 +ETPTopicOrder0=1181 -[External Topic Properties\SetFileSecurityA@LPCSTR@SECURITY_INFORMATION@PSECURITY_DESCRIPTOR] +[External Topic Properties\sLineBreak] Count=1 ETPCommand0=2 -ETPTopicOrder0=964 +ETPTopicOrder0=3856 -[External Topic Properties\SetFileSecurityW@LPCWSTR@SECURITY_INFORMATION@PSECURITY_DESCRIPTOR] +[External Topic Properties\SmallintMask] Count=1 ETPCommand0=2 -ETPTopicOrder0=965 +ETPTopicOrder0=2996 -[External Topic Properties\SetGlobalEnvironmentVariable@string@string] +[External Topic Properties\SNLEN] Count=1 ETPCommand0=2 -ETPTopicOrder0=966 +ETPTopicOrder0=3858 -[External Topic Properties\SetIntegerSet@TIntegerSet@UInt32] +[External Topic Properties\Snmp.pas] Count=1 ETPCommand0=2 -ETPTopicOrder0=967 +ETPTopicOrder0=89 -[External Topic Properties\SetMasked8087Exceptions] +[External Topic Properties\SnmpExtensionLoaded] Count=1 ETPCommand0=2 -ETPTopicOrder0=968 +ETPTopicOrder0=1182 -[External Topic Properties\SetNamedSecurityInfoW@LPWSTR@SE_OBJECT_TYPE@SECURITY_INFORMATION@PSID@PSID@PACL@PACL] +[External Topic Properties\SnmpLoaded] Count=1 ETPCommand0=2 -ETPTopicOrder0=969 +ETPTopicOrder0=1183 -[External Topic Properties\SetObjectFontToSystemFont@TObject@TFontType] -Count=1 +[External Topic Properties\Sort@IJclAnsiStrList@Integer@Integer@TAnsiStrCompare] +Count=2 ETPCommand0=2 -ETPTopicOrder0=970 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1193 -[External Topic Properties\SetPCRECalloutCallback@pcre_callout_callback] -Count=1 +[External Topic Properties\Sort@IJclCardinalList@Integer@Integer@TCardinalCompare] +Count=2 ETPCommand0=2 -ETPTopicOrder0=971 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1187 -[External Topic Properties\SetPCREFreeCallback@pcre_free_callback] -Count=1 +[External Topic Properties\Sort@IJclDoubleList@Integer@Integer@TDoubleCompare] +Count=2 ETPCommand0=2 -ETPTopicOrder0=972 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1184 -[External Topic Properties\SetPCREMallocCallback@pcre_malloc_callback] -Count=1 +[External Topic Properties\Sort@IJclExtendedList@Integer@Integer@TExtendedCompare] +Count=2 ETPCommand0=2 -ETPTopicOrder0=973 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1195 -[External Topic Properties\SetPCREStackFreeCallback@pcre_stack_free_callback] -Count=1 +[External Topic Properties\Sort@IJclInt64List@Integer@Integer@TInt64Compare] +Count=2 ETPCommand0=2 -ETPTopicOrder0=974 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1185 -[External Topic Properties\SetPCREStackMallocCallback@pcre_stack_malloc_callback] -Count=1 +[External Topic Properties\Sort@IJclIntegerList@Integer@Integer@TIntegerCompare] +Count=2 ETPCommand0=2 -ETPTopicOrder0=975 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1186 -[External Topic Properties\SetPrinterPixelsPerInch] -Count=1 +[External Topic Properties\Sort@IJclIntfList@Integer@Integer@TIntfCompare] +Count=2 ETPCommand0=2 -ETPTopicOrder0=976 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1194 -[External Topic Properties\SetSuspendState@BOOL@BOOL@BOOL] -Count=1 +[External Topic Properties\Sort@IJclList@Integer@Integer@TCompare] +Count=2 ETPCommand0=2 -ETPTopicOrder0=977 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1192 -[External Topic Properties\SetVolumeMountPoint@LPCSTR@LPCSTR] -Count=1 +[External Topic Properties\Sort@IJclPtrList@Integer@Integer@TPtrCompare] +Count=2 ETPCommand0=2 -ETPTopicOrder0=978 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1190 -[External Topic Properties\SetWaitableTimer@THandle@TLargeInteger@Longint@TFNTimerAPCRoutine@Pointer@BOOL] -Count=1 +[External Topic Properties\Sort@IJclSingleList@Integer@Integer@TSingleCompare] +Count=2 ETPCommand0=2 -ETPTopicOrder0=979 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1189 -[External Topic Properties\sfUnicodeLSB] +[External Topic Properties\Sort@IJclStrList@Integer@Integer@TStrCompare] Count=1 ETPCommand0=2 -ETPTopicOrder0=3786 +ETPTopicOrder0=1001 -[External Topic Properties\sfUnicodeMSB] -Count=1 +[External Topic Properties\Sort@IJclUnicodeStrList@Integer@Integer@TUnicodeStrCompare] +Count=2 ETPCommand0=2 -ETPTopicOrder0=3787 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1188 -[External Topic Properties\SharedAllocMem@string@Cardinal@Cardinal] -Count=1 +[External Topic Properties\Sort@IJclWideStrList@Integer@Integer@TWideStrCompare] +Count=2 ETPCommand0=2 -ETPTopicOrder0=980 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1191 -[External Topic Properties\SharedCloseMem@] +[External Topic Properties\SortDynArray@Pointer@Cardinal@TDynArraySortCompare] Count=1 ETPCommand0=2 -ETPTopicOrder0=981 +ETPTopicOrder0=1196 -[External Topic Properties\SharedFreeMem@] +[External Topic Properties\SORTIDFROMLCID@LCID] Count=1 ETPCommand0=2 -ETPTopicOrder0=982 +ETPTopicOrder0=1005 -[External Topic Properties\SharedGetMem@@string@Cardinal@Cardinal] +[External Topic Properties\SortProc] Count=1 ETPCommand0=2 -ETPTopicOrder0=983 +ETPTopicOrder0=37 -[External Topic Properties\SharedOpenMem@@string@Cardinal] +[External Topic Properties\SORTVERSIONFROMLCID@LCID] Count=1 ETPCommand0=2 -ETPTopicOrder0=985 +ETPTopicOrder0=1006 -[External Topic Properties\SharedOpenMem@string@Cardinal] -Count=1 +[External Topic Properties\Source files] +Count=2 ETPCommand0=2 -ETPTopicOrder0=984 +ETPCommand1=3 +ETPGroup1=JCL +ETPTopicOrder0=26 -[External Topic Properties\SHCopy@THandle@string@string@TSHCopyOptions] +[External Topic Properties\SourceDescriptionCPP] Count=1 ETPCommand0=2 -ETPTopicOrder0=986 +ETPTopicOrder0=2997 -[External Topic Properties\ShellExecEx@string@string@string@Integer] +[External Topic Properties\SourceDescriptionPAS] Count=1 ETPCommand0=2 -ETPTopicOrder0=987 +ETPTopicOrder0=2998 -[External Topic Properties\ShellLinkIcon@string] +[External Topic Properties\SourceExtensionBCBPackage] Count=1 ETPCommand0=2 -ETPTopicOrder0=988 +ETPTopicOrder0=2999 -[External Topic Properties\ShellLinkIcon@TShellLink] +[External Topic Properties\SourceExtensionBCBProject] Count=1 ETPCommand0=2 -ETPTopicOrder0=989 +ETPTopicOrder0=3000 -[External Topic Properties\ShellLinkResolve@string@TShellLink@Cardinal] +[External Topic Properties\SourceExtensionBDSProject] Count=1 ETPCommand0=2 -ETPTopicOrder0=990 +ETPTopicOrder0=3001 -[External Topic Properties\SHEnumSpecialFolderFirst@DWORD@TEnumFolderFlags@TEnumFolderRec] +[External Topic Properties\SourceExtensionConfiguration] Count=1 ETPCommand0=2 -ETPTopicOrder0=991 +ETPTopicOrder0=3002 -[External Topic Properties\SHMove@THandle@string@string@TSHMoveOptions] +[External Topic Properties\SourceExtensionCPP] Count=1 ETPCommand0=2 -ETPTopicOrder0=992 +ETPTopicOrder0=3003 -[External Topic Properties\ShortenString@HDC@WideString@Integer@Boolean@Integer] +[External Topic Properties\SourceExtensionDelphiPackage] Count=1 ETPCommand0=2 -ETPTopicOrder0=993 +ETPTopicOrder0=3004 -[External Topic Properties\ShortintMask] +[External Topic Properties\SourceExtensionDelphiProject] Count=1 ETPCommand0=2 -ETPTopicOrder0=3788 +ETPTopicOrder0=3005 -[External Topic Properties\SHPWLEN] +[External Topic Properties\SourceExtensionDFM] Count=1 ETPCommand0=2 -ETPTopicOrder0=3789 +ETPTopicOrder0=3006 -[External Topic Properties\SHTDN_REASON_FLAG_CLEAN_UI] +[External Topic Properties\SourceExtensionDOFProject] Count=1 ETPCommand0=2 -ETPTopicOrder0=3790 +ETPTopicOrder0=3007 -[External Topic Properties\SHTDN_REASON_FLAG_COMMENT_REQUIRED] +[External Topic Properties\SourceExtensionDProject] Count=1 ETPCommand0=2 -ETPTopicOrder0=3791 +ETPTopicOrder0=3008 -[External Topic Properties\SHTDN_REASON_FLAG_DIRTY_PROBLEM_ID_REQUIRED] +[External Topic Properties\SourceExtensionH] Count=1 ETPCommand0=2 -ETPTopicOrder0=3792 +ETPTopicOrder0=3009 -[External Topic Properties\SHTDN_REASON_FLAG_DIRTY_UI] +[External Topic Properties\SourceExtensionPAS] Count=1 ETPCommand0=2 -ETPTopicOrder0=3793 +ETPTopicOrder0=3010 -[External Topic Properties\SHTDN_REASON_FLAG_PLANNED] +[External Topic Properties\SourceExtensionXFM] Count=1 ETPCommand0=2 -ETPTopicOrder0=3794 +ETPTopicOrder0=3011 -[External Topic Properties\SHTDN_REASON_FLAG_USER_DEFINED] -Count=1 +[External Topic Properties\SourceFiles] +Count=2 ETPCommand0=2 -ETPTopicOrder0=3795 +ETPCommand1=3 +ETPGroup1=JCL +ETPTopicOrder0=31 -[External Topic Properties\SHTDN_REASON_LEGACY_API] +[External Topic Properties\Sqrt10] Count=1 ETPCommand0=2 -ETPTopicOrder0=3796 +ETPTopicOrder0=3012 -[External Topic Properties\SHTDN_REASON_MAJOR_APPLICATION] +[External Topic Properties\Sqrt2] Count=1 ETPCommand0=2 -ETPTopicOrder0=3797 +ETPTopicOrder0=3013 -[External Topic Properties\SHTDN_REASON_MAJOR_HARDWARE] +[External Topic Properties\Sqrt2Pi] Count=1 ETPCommand0=2 -ETPTopicOrder0=3798 +ETPTopicOrder0=3014 -[External Topic Properties\SHTDN_REASON_MAJOR_LEGACY_API] +[External Topic Properties\Sqrt3] Count=1 ETPCommand0=2 -ETPTopicOrder0=3799 +ETPTopicOrder0=3015 -[External Topic Properties\SHTDN_REASON_MAJOR_NONE] +[External Topic Properties\Sqrt5] Count=1 ETPCommand0=2 -ETPTopicOrder0=3800 +ETPTopicOrder0=3016 -[External Topic Properties\SHTDN_REASON_MAJOR_OPERATINGSYSTEM] +[External Topic Properties\SqrtPi] Count=1 ETPCommand0=2 -ETPTopicOrder0=3801 +ETPTopicOrder0=3017 -[External Topic Properties\SHTDN_REASON_MAJOR_OTHER] +[External Topic Properties\SS_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=3802 +ETPTopicOrder0=3018 -[External Topic Properties\SHTDN_REASON_MAJOR_POWER] +[External Topic Properties\SSE_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=3803 +ETPTopicOrder0=3019 -[External Topic Properties\SHTDN_REASON_MAJOR_SOFTWARE] +[External Topic Properties\SSE2_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=3804 +ETPTopicOrder0=3020 -[External Topic Properties\SHTDN_REASON_MAJOR_SYSTEM] +[External Topic Properties\ssPendingStates] Count=1 ETPCommand0=2 -ETPTopicOrder0=3805 +ETPTopicOrder0=3021 -[External Topic Properties\SHTDN_REASON_MINOR_BLUESCREEN] +[External Topic Properties\stAllTypeService] Count=1 ETPCommand0=2 -ETPTopicOrder0=3806 +ETPTopicOrder0=3022 -[External Topic Properties\SHTDN_REASON_MINOR_CORDUNPLUGGED] +[External Topic Properties\StartServiceByName@String@String] Count=1 ETPCommand0=2 -ETPTopicOrder0=3807 +ETPTopicOrder0=1197 -[External Topic Properties\SHTDN_REASON_MINOR_DC_DEMOTION] +[External Topic Properties\STARTUP_CONCURRENT_GC] Count=1 ETPCommand0=2 -ETPTopicOrder0=3808 +ETPTopicOrder0=3023 -[External Topic Properties\SHTDN_REASON_MINOR_DC_PROMOTION] +[External Topic Properties\STARTUP_LOADER_OPTIMIZATION_MASK] Count=1 ETPCommand0=2 -ETPTopicOrder0=3809 +ETPTopicOrder0=3024 -[External Topic Properties\SHTDN_REASON_MINOR_DISK] +[External Topic Properties\STARTUP_LOADER_OPTIMIZATION_MULTI_DOMAIN] Count=1 ETPCommand0=2 -ETPTopicOrder0=3810 +ETPTopicOrder0=3025 -[External Topic Properties\SHTDN_REASON_MINOR_ENVIRONMENT] +[External Topic Properties\STARTUP_LOADER_OPTIMIZATION_MULTI_DOMAIN_HOST] Count=1 ETPCommand0=2 -ETPTopicOrder0=3811 +ETPTopicOrder0=3026 -[External Topic Properties\SHTDN_REASON_MINOR_HARDWARE_DRIVER] +[External Topic Properties\STARTUP_LOADER_OPTIMIZATION_SINGLE_DOMAIN] Count=1 ETPCommand0=2 -ETPTopicOrder0=3812 +ETPTopicOrder0=3027 -[External Topic Properties\SHTDN_REASON_MINOR_HOTFIX] +[External Topic Properties\STARTUP_LOADER_SAFEMODE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3813 +ETPTopicOrder0=3028 -[External Topic Properties\SHTDN_REASON_MINOR_HOTFIX_UNINSTALL] +[External Topic Properties\STARTUP_LOADER_SETPREFERENCE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3814 +ETPTopicOrder0=3029 -[External Topic Properties\SHTDN_REASON_MINOR_HUNG] +[External Topic Properties\stat64@PChar@TStatBuf64] Count=1 ETPCommand0=2 -ETPTopicOrder0=3815 +ETPTopicOrder0=1008 -[External Topic Properties\SHTDN_REASON_MINOR_INSTALLATION] +[External Topic Properties\StdError@Float@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=3816 +ETPTopicOrder0=1199 -[External Topic Properties\SHTDN_REASON_MINOR_MAINTENANCE] +[External Topic Properties\StdError@TDynFloatArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=3817 +ETPTopicOrder0=1198 -[External Topic Properties\SHTDN_REASON_MINOR_MMC] +[External Topic Properties\stDriverService] Count=1 ETPCommand0=2 -ETPTopicOrder0=3818 +ETPTopicOrder0=3030 -[External Topic Properties\SHTDN_REASON_MINOR_NETWORK_CONNECTIVITY] +[External Topic Properties\StgCreateStorageEx@PWideChar@DWORD@DWORD@DWORD@PSTGOPTIONS@Pointer@PGUID@IInterface] Count=1 ETPCommand0=2 -ETPTopicOrder0=3819 +ETPTopicOrder0=1011 -[External Topic Properties\SHTDN_REASON_MINOR_NETWORKCARD] +[External Topic Properties\STGFMT_ANY] Count=1 ETPCommand0=2 -ETPTopicOrder0=3820 +ETPTopicOrder0=3891 -[External Topic Properties\SHTDN_REASON_MINOR_NONE] +[External Topic Properties\STGFMT_DOCFILE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3821 +ETPTopicOrder0=3892 -[External Topic Properties\SHTDN_REASON_MINOR_OTHER] +[External Topic Properties\STGFMT_DOCUMENT] Count=1 ETPCommand0=2 -ETPTopicOrder0=3822 +ETPTopicOrder0=3893 -[External Topic Properties\SHTDN_REASON_MINOR_OTHERDRIVER] +[External Topic Properties\STGFMT_FILE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3823 +ETPTopicOrder0=3894 -[External Topic Properties\SHTDN_REASON_MINOR_POWER_SUPPLY] +[External Topic Properties\STGFMT_NATIVE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3824 +ETPTopicOrder0=3895 -[External Topic Properties\SHTDN_REASON_MINOR_PROCESSOR] +[External Topic Properties\STGFMT_STORAGE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3825 +ETPTopicOrder0=3896 -[External Topic Properties\SHTDN_REASON_MINOR_RECONFIG] +[External Topic Properties\StgOpenStorageEx@PWideChar@DWORD@DWORD@DWORD@PSTGOPTIONS@Pointer@PGUID@IInterface] Count=1 ETPCommand0=2 -ETPTopicOrder0=3826 +ETPTopicOrder0=1012 -[External Topic Properties\SHTDN_REASON_MINOR_SECURITY] +[External Topic Properties\STGOPTIONS] Count=1 ETPCommand0=2 -ETPTopicOrder0=3827 +ETPTopicOrder0=398 -[External Topic Properties\SHTDN_REASON_MINOR_SECURITYFIX] +[External Topic Properties\StopServiceByName@String@String] Count=1 ETPCommand0=2 -ETPTopicOrder0=3828 +ETPTopicOrder0=1200 -[External Topic Properties\SHTDN_REASON_MINOR_SECURITYFIX_UNINSTALL] +[External Topic Properties\StrAddRef@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3829 +ETPTopicOrder0=1201 -[External Topic Properties\SHTDN_REASON_MINOR_SERVICEPACK] +[External Topic Properties\StrAfter@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3830 +ETPTopicOrder0=1202 -[External Topic Properties\SHTDN_REASON_MINOR_SERVICEPACK_UNINSTALL] +[External Topic Properties\StrAllocSize@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3831 +ETPTopicOrder0=1016 -[External Topic Properties\SHTDN_REASON_MINOR_TERMSRV] +[External Topic Properties\StrAnsiToOem@AnsiString] Count=1 ETPCommand0=2 -ETPTopicOrder0=3832 +ETPTopicOrder0=1203 -[External Topic Properties\SHTDN_REASON_MINOR_UNSTABLE] +[External Topic Properties\StrAnsiToOem@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3833 +ETPTopicOrder0=1017 -[External Topic Properties\SHTDN_REASON_MINOR_UPGRADE] +[External Topic Properties\STRANSMETA_BIT_10] Count=1 ETPCommand0=2 -ETPTopicOrder0=3834 +ETPTopicOrder0=3031 -[External Topic Properties\SHTDN_REASON_MINOR_WMI] +[External Topic Properties\STRANSMETA_BIT_11] Count=1 ETPCommand0=2 -ETPTopicOrder0=3835 +ETPTopicOrder0=3032 -[External Topic Properties\SHTDN_REASON_UNKNOWN] +[External Topic Properties\STRANSMETA_BIT_12] Count=1 ETPCommand0=2 -ETPTopicOrder0=3836 +ETPTopicOrder0=3033 -[External Topic Properties\SHTDN_REASON_VALID_BIT_MASK] +[External Topic Properties\STRANSMETA_BIT_13] Count=1 ETPCommand0=2 -ETPTopicOrder0=3837 +ETPTopicOrder0=3034 -[External Topic Properties\ShutDownDialog@string@DWORD@Boolean@Boolean] +[External Topic Properties\STRANSMETA_BIT_14] Count=1 ETPCommand0=2 -ETPTopicOrder0=994 +ETPTopicOrder0=3035 -[External Topic Properties\ShutDownDialog@string@string@DWORD@Boolean@Boolean] +[External Topic Properties\STRANSMETA_BIT_15] Count=1 ETPCommand0=2 -ETPTopicOrder0=995 +ETPTopicOrder0=3036 -[External Topic Properties\SID] +[External Topic Properties\STRANSMETA_BIT_16] Count=1 ETPCommand0=2 -ETPTopicOrder0=394 +ETPTopicOrder0=3037 -[External Topic Properties\SID_AND_ATTRIBUTES] +[External Topic Properties\STRANSMETA_BIT_17] Count=1 ETPCommand0=2 -ETPTopicOrder0=395 +ETPTopicOrder0=3038 -[External Topic Properties\SID_AND_ATTRIBUTES_ARRAY] +[External Topic Properties\STRANSMETA_BIT_18] Count=1 ETPCommand0=2 -ETPTopicOrder0=396 +ETPTopicOrder0=3039 -[External Topic Properties\SID_IDENTIFIER_AUTHORITY] +[External Topic Properties\STRANSMETA_BIT_19] Count=1 ETPCommand0=2 -ETPTopicOrder0=397 +ETPTopicOrder0=3040 -[External Topic Properties\SID_MAX_SUB_AUTHORITIES] +[External Topic Properties\STRANSMETA_BIT_2] Count=1 ETPCommand0=2 -ETPTopicOrder0=3838 +ETPTopicOrder0=3041 -[External Topic Properties\SID_RECOMMENDED_SUB_AUTHORITIES] +[External Topic Properties\STRANSMETA_BIT_20] Count=1 ETPCommand0=2 -ETPTopicOrder0=3839 +ETPTopicOrder0=3042 -[External Topic Properties\SID_REVISION] +[External Topic Properties\STRANSMETA_BIT_21] Count=1 ETPCommand0=2 -ETPTopicOrder0=3840 +ETPTopicOrder0=3043 -[External Topic Properties\SIDToString@PSID] +[External Topic Properties\STRANSMETA_BIT_22] Count=1 ETPCommand0=2 -ETPTopicOrder0=996 +ETPTopicOrder0=3044 -[External Topic Properties\SidTypeAlias] +[External Topic Properties\STRANSMETA_BIT_23] Count=1 ETPCommand0=2 -ETPTopicOrder0=3841 +ETPTopicOrder0=3045 -[External Topic Properties\SidTypeComputer] +[External Topic Properties\STRANSMETA_BIT_24] Count=1 ETPCommand0=2 -ETPTopicOrder0=3842 +ETPTopicOrder0=3046 -[External Topic Properties\SidTypeDeletedAccount] +[External Topic Properties\STRANSMETA_BIT_25] Count=1 ETPCommand0=2 -ETPTopicOrder0=3843 +ETPTopicOrder0=3047 -[External Topic Properties\SidTypeDomain] +[External Topic Properties\STRANSMETA_BIT_26] Count=1 ETPCommand0=2 -ETPTopicOrder0=3844 +ETPTopicOrder0=3048 -[External Topic Properties\SidTypeGroup] +[External Topic Properties\STRANSMETA_BIT_27] Count=1 ETPCommand0=2 -ETPTopicOrder0=3845 +ETPTopicOrder0=3049 -[External Topic Properties\SidTypeInvalid] +[External Topic Properties\STRANSMETA_BIT_28] Count=1 ETPCommand0=2 -ETPTopicOrder0=3846 +ETPTopicOrder0=3050 -[External Topic Properties\SidTypeUnknown] +[External Topic Properties\STRANSMETA_BIT_29] Count=1 ETPCommand0=2 -ETPTopicOrder0=3847 +ETPTopicOrder0=3051 -[External Topic Properties\SidTypeUser] +[External Topic Properties\STRANSMETA_BIT_30] Count=1 ETPCommand0=2 -ETPTopicOrder0=3848 +ETPTopicOrder0=3052 -[External Topic Properties\SidTypeWellKnownGroup] +[External Topic Properties\STRANSMETA_BIT_31] Count=1 ETPCommand0=2 -ETPTopicOrder0=3849 +ETPTopicOrder0=3053 -[External Topic Properties\SimpleCompare@TObject@TObject] +[External Topic Properties\STRANSMETA_BIT_4] Count=1 ETPCommand0=2 -ETPTopicOrder0=997 +ETPTopicOrder0=3054 -[External Topic Properties\Sin@TRectComplex] +[External Topic Properties\STRANSMETA_BIT_5] Count=1 ETPCommand0=2 -ETPTopicOrder0=998 +ETPTopicOrder0=3055 -[External Topic Properties\SinH@TRectComplex] +[External Topic Properties\STRANSMETA_BIT_6] Count=1 ETPCommand0=2 -ETPTopicOrder0=999 +ETPTopicOrder0=3056 -[External Topic Properties\sivFirst] +[External Topic Properties\STRANSMETA_BIT_9] Count=1 ETPCommand0=2 -ETPTopicOrder0=3850 +ETPTopicOrder0=3057 -[External Topic Properties\sivFourth] +[External Topic Properties\STRANSMETA_LONGRUN] Count=1 ETPCommand0=2 -ETPTopicOrder0=3851 +ETPTopicOrder0=3058 -[External Topic Properties\sivLast] +[External Topic Properties\STRANSMETA_LRTI] Count=1 ETPCommand0=2 -ETPTopicOrder0=3852 +ETPTopicOrder0=3059 -[External Topic Properties\sivSecond] +[External Topic Properties\STRANSMETA_PTTI1] Count=1 ETPCommand0=2 -ETPTopicOrder0=3853 +ETPTopicOrder0=3060 -[External Topic Properties\sivThird] +[External Topic Properties\STRANSMETA_PTTI2] Count=1 ETPCommand0=2 -ETPTopicOrder0=3854 +ETPTopicOrder0=3061 -[External Topic Properties\SIZEOF_RFPO_DATA] +[External Topic Properties\STRANSMETA_RECOVERY] Count=1 ETPCommand0=2 -ETPTopicOrder0=3855 +ETPTopicOrder0=3062 -[External Topic Properties\SizeOfIStreamContents@IStream] +[External Topic Properties\StrBefore@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1000 +ETPTopicOrder0=1204 -[External Topic Properties\sLineBreak] +[External Topic Properties\StrBetween@string@Char@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=3856 +ETPTopicOrder0=1205 -[External Topic Properties\SmallintMask] +[External Topic Properties\StrCaseMap] Count=1 ETPCommand0=2 -ETPTopicOrder0=3857 +ETPTopicOrder0=38 -[External Topic Properties\SNLEN] +[External Topic Properties\StrCaseMapReady] Count=1 ETPCommand0=2 -ETPTopicOrder0=3858 +ETPTopicOrder0=39 -[External Topic Properties\Sort@IJclIntfList@Integer@Integer@TIntfCompare] +[External Topic Properties\StrCaseMapSize] Count=1 ETPCommand0=2 -ETPTopicOrder0=1002 +ETPTopicOrder0=3063 -[External Topic Properties\Sort@IJclList@Integer@Integer@TCompare] +[External Topic Properties\StrCenter@string@Integer@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=1003 +ETPTopicOrder0=1020 -[External Topic Properties\Sort@IJclStrList@Integer@Integer@TStrCompare] +[External Topic Properties\StrCenter@string@SizeInt@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=1001 +ETPTopicOrder0=1206 -[External Topic Properties\SortDynArray@Pointer@Cardinal@TDynArraySortCompare] +[External Topic Properties\StrCharCount@string@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=1004 +ETPTopicOrder0=1207 -[External Topic Properties\SORTIDFROMLCID@LCID] +[External Topic Properties\StrCharPosLower@AnsiString@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1005 +ETPTopicOrder0=1208 -[External Topic Properties\SortProc] +[External Topic Properties\StrCharPosLower@string@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=54 +ETPTopicOrder0=1022 -[External Topic Properties\SORTVERSIONFROMLCID@LCID] +[External Topic Properties\StrCharPosLower@string@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1006 +ETPTopicOrder0=1209 -[External Topic Properties\Source files] -Count=2 +[External Topic Properties\StrCharPosUpper@AnsiString@SizeInt] +Count=1 ETPCommand0=2 -ETPCommand1=3 -ETPGroup1=JCL -ETPTopicOrder0=26 +ETPTopicOrder0=1210 -[External Topic Properties\SourceDescriptionCPP] +[External Topic Properties\StrCharPosUpper@string@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=3859 +ETPTopicOrder0=1023 -[External Topic Properties\SourceDescriptionPAS] +[External Topic Properties\StrCharPosUpper@string@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=3860 +ETPTopicOrder0=1211 -[External Topic Properties\SourceExtensionBCBPackage] +[External Topic Properties\StrCharsCount@string@array of Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=3861 +ETPTopicOrder0=1212 -[External Topic Properties\SourceExtensionBCBProject] +[External Topic Properties\StrCharsCount@string@TCharValidator] Count=1 ETPCommand0=2 -ETPTopicOrder0=3862 +ETPTopicOrder0=1213 -[External Topic Properties\SourceExtensionBDSProject] +[External Topic Properties\StrCharsCount@string@TSysCharSet] Count=1 ETPCommand0=2 -ETPTopicOrder0=3863 +ETPTopicOrder0=1024 -[External Topic Properties\SourceExtensionCPP] +[External Topic Properties\StrCharTypes] Count=1 ETPCommand0=2 -ETPTopicOrder0=3864 +ETPTopicOrder0=40 -[External Topic Properties\SourceExtensionDelphiPackage] +[External Topic Properties\StrChopRight@string@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=3865 +ETPTopicOrder0=1025 -[External Topic Properties\SourceExtensionDelphiProject] +[External Topic Properties\StrChopRight@string@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=3866 +ETPTopicOrder0=1214 -[External Topic Properties\SourceExtensionDFM] +[External Topic Properties\StrCompare@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3867 +ETPTopicOrder0=1026 -[External Topic Properties\SourceExtensionDProject] +[External Topic Properties\StrCompare@string@string@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=3868 +ETPTopicOrder0=1215 -[External Topic Properties\SourceExtensionH] +[External Topic Properties\StrCompareRange@string@string@Integer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=3869 +ETPTopicOrder0=1027 -[External Topic Properties\SourceExtensionPAS] +[External Topic Properties\StrCompareRange@string@string@SizeInt@SizeInt@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=3870 +ETPTopicOrder0=1216 -[External Topic Properties\SourceExtensionXFM] +[External Topic Properties\StrCompareRangeEx@AnsiString@AnsiString@SizeInt@SizeInt@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=3871 +ETPTopicOrder0=1218 -[External Topic Properties\SourceFiles] -Count=2 +[External Topic Properties\StrCompareRangeEx@string@string@SizeInt@SizeInt@Boolean] +Count=1 ETPCommand0=2 -ETPCommand1=3 -ETPGroup1=JCL -ETPTopicOrder0=31 +ETPTopicOrder0=1217 -[External Topic Properties\Sqrt10] +[External Topic Properties\StrConsistsOfNumberChars@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3872 +ETPTopicOrder0=1219 -[External Topic Properties\Sqrt2] +[External Topic Properties\StrContainsChars@string@array of Char@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=3873 +ETPTopicOrder0=1221 -[External Topic Properties\Sqrt2Pi] +[External Topic Properties\StrContainsChars@string@TCharValidator@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=3874 +ETPTopicOrder0=1220 -[External Topic Properties\Sqrt3] +[External Topic Properties\StrContainsChars@string@TSysCharSet@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=3875 +ETPTopicOrder0=1029 -[External Topic Properties\Sqrt5] +[External Topic Properties\StrDecRef@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3876 +ETPTopicOrder0=1222 -[External Topic Properties\SqrtPi] +[External Topic Properties\StrDisposeAndNilW@PWideChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=3877 +ETPTopicOrder0=1223 -[External Topic Properties\SS_FLAG] +[External Topic Properties\StrDoubleQuote@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3878 +ETPTopicOrder0=1224 -[External Topic Properties\SSE_FLAG] +[External Topic Properties\StreamCopy@TStream@TStream@Longint] Count=1 ETPCommand0=2 -ETPTopicOrder0=3879 +ETPTopicOrder0=1225 -[External Topic Properties\SSE2_FLAG] +[External Topic Properties\StreamDefaultBufferSize] Count=1 ETPCommand0=2 -ETPTopicOrder0=3880 +ETPTopicOrder0=3064 -[External Topic Properties\ssPendingStates] -Count=1 +[External Topic Properties\Streams] +Count=2 ETPCommand0=2 -ETPTopicOrder0=3881 +ETPCommand1=3 +ETPGroup1=JCL +ETPTopicOrder0=30 -[External Topic Properties\stAllTypeService] -Count=1 +[External Topic Properties\StreamSeek@TStream@Int64@TSeekOrigin] +Count=2 ETPCommand0=2 -ETPTopicOrder0=3882 +ETPCommand1=3 +ETPGroup1=Streams +ETPTopicOrder0=16 -[External Topic Properties\StartServiceByName@String@String] +[External Topic Properties\StreamToVariantArray@IStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=1007 +ETPTopicOrder0=1226 -[External Topic Properties\STARTUP_CONCURRENT_GC] +[External Topic Properties\StreamToVariantArray@TStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=3883 +ETPTopicOrder0=1227 -[External Topic Properties\STARTUP_LOADER_OPTIMIZATION_MASK] +[External Topic Properties\StrEnsureNoPrefix@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3884 +ETPTopicOrder0=1228 -[External Topic Properties\STARTUP_LOADER_OPTIMIZATION_MULTI_DOMAIN] +[External Topic Properties\StrEnsureNoSuffix@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3885 +ETPTopicOrder0=1229 -[External Topic Properties\STARTUP_LOADER_OPTIMIZATION_MULTI_DOMAIN_HOST] +[External Topic Properties\StrEnsurePrefix@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3886 +ETPTopicOrder0=1230 -[External Topic Properties\STARTUP_LOADER_OPTIMIZATION_SINGLE_DOMAIN] +[External Topic Properties\StrEnsureSuffix@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3887 +ETPTopicOrder0=1231 -[External Topic Properties\STARTUP_LOADER_SAFEMODE] +[External Topic Properties\StrEscapedToString@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3888 +ETPTopicOrder0=1232 -[External Topic Properties\STARTUP_LOADER_SETPREFERENCE] +[External Topic Properties\StrExpandTabs@string@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=3889 +ETPTopicOrder0=1233 -[External Topic Properties\stat64@PChar@TStatBuf64] +[External Topic Properties\StrFillChar@Char@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1008 +ETPTopicOrder0=1041 -[External Topic Properties\StdError@Float@Integer] +[External Topic Properties\StrFind@string@string@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1010 +ETPTopicOrder0=1042 -[External Topic Properties\StdError@TDynFloatArray] +[External Topic Properties\StrFind@string@string@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1009 +ETPTopicOrder0=1234 -[External Topic Properties\stDriverService] +[External Topic Properties\StrHasPrefix@string@array of string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3890 +ETPTopicOrder0=1235 -[External Topic Properties\StgCreateStorageEx@PWideChar@DWORD@DWORD@DWORD@PSTGOPTIONS@Pointer@PGUID@IInterface] +[External Topic Properties\StrIdent@AnsiString@SizeInt@AnsiString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1011 +ETPTopicOrder0=1236 -[External Topic Properties\STGFMT_ANY] +[External Topic Properties\StrIdent@PAnsiChar@AnsiString] Count=1 ETPCommand0=2 -ETPTopicOrder0=3891 +ETPTopicOrder0=1237 -[External Topic Properties\STGFMT_DOCFILE] +[External Topic Properties\StrIdent@PChar@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3892 +ETPTopicOrder0=1239 -[External Topic Properties\STGFMT_DOCUMENT] +[External Topic Properties\StrIdent@string@SizeInt@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3893 +ETPTopicOrder0=1238 -[External Topic Properties\STGFMT_FILE] +[External Topic Properties\StrILastPos@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3894 +ETPTopicOrder0=1240 -[External Topic Properties\STGFMT_NATIVE] +[External Topic Properties\StrIndex@string@array of string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3895 +ETPTopicOrder0=1045 -[External Topic Properties\STGFMT_STORAGE] +[External Topic Properties\StrIndex@string@array of string@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=3896 +ETPTopicOrder0=1241 -[External Topic Properties\StgOpenStorageEx@PWideChar@DWORD@DWORD@DWORD@PSTGOPTIONS@Pointer@PGUID@IInterface] +[External Topic Properties\String bases] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=BaseServices +ETPTopicOrder0=11 + +[External Topic Properties\StringGetNextChar@string@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1012 +ETPTopicOrder0=1242 -[External Topic Properties\STGOPTIONS] +[External Topic Properties\StringManipulation] Count=1 ETPCommand0=2 -ETPTopicOrder0=398 +ETPTopicOrder0=19 -[External Topic Properties\StopServiceByName@String@String] +[External Topic Properties\StringOf@array of Byte] Count=1 ETPCommand0=2 -ETPTopicOrder0=1013 +ETPTopicOrder0=1243 -[External Topic Properties\StrAddRef@string] +[External Topic Properties\StringOf@Pointer@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=1014 +ETPTopicOrder0=1244 -[External Topic Properties\StrAfter@string@string] +[External Topic Properties\StringRemove@string@string@TReplaceFlags] Count=1 ETPCommand0=2 -ETPTopicOrder0=1015 +ETPTopicOrder0=1046 -[External Topic Properties\StrAllocSize@string] +[External Topic Properties\StringReplace@string@string@string@TReplaceFlags] Count=1 ETPCommand0=2 -ETPTopicOrder0=1016 +ETPTopicOrder0=1047 -[External Topic Properties\StrAnsiToOem@string] +[External Topic Properties\StringSetNextChar@string@SizeInt@UCS4] Count=1 ETPCommand0=2 -ETPTopicOrder0=1017 +ETPTopicOrder0=1245 -[External Topic Properties\STRANSMETA_BIT_10] +[External Topic Properties\StringSkipChars@string@SizeInt@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=3897 +ETPTopicOrder0=1246 -[External Topic Properties\STRANSMETA_BIT_11] +[External Topic Properties\StringsToMultiSz@PMultiSz@TStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=3898 +ETPTopicOrder0=1247 -[External Topic Properties\STRANSMETA_BIT_12] +[External Topic Properties\StringsToMultiSz@PWideMultiSz@TJclWideStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=3899 +ETPTopicOrder0=1248 -[External Topic Properties\STRANSMETA_BIT_13] +[External Topic Properties\StringsToPCharVector@PCharVector@TStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=3900 +ETPTopicOrder0=1249 -[External Topic Properties\STRANSMETA_BIT_14] +[External Topic Properties\StringsToStr@TStrings@string@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=3901 +ETPTopicOrder0=1250 -[External Topic Properties\STRANSMETA_BIT_15] +[External Topic Properties\StringStreamCopy@TJclStringStream@TJclStringStream@Longint] Count=1 ETPCommand0=2 -ETPTopicOrder0=3902 +ETPTopicOrder0=1251 -[External Topic Properties\STRANSMETA_BIT_16] +[External Topic Properties\StringToAnsiByteArray@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3903 +ETPTopicOrder0=1252 -[External Topic Properties\STRANSMETA_BIT_17] +[External Topic Properties\StringToByteArray@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3904 +ETPTopicOrder0=1049 -[External Topic Properties\STRANSMETA_BIT_18] +[External Topic Properties\StringToFile@string@AnsiString] Count=1 ETPCommand0=2 -ETPTopicOrder0=3905 +ETPTopicOrder0=1050 -[External Topic Properties\STRANSMETA_BIT_19] +[External Topic Properties\StringToFile@string@RawByteString AnsiString@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=3906 +ETPTopicOrder0=1253 -[External Topic Properties\STRANSMETA_BIT_2] +[External Topic Properties\StringToSID@String@PSID@DWORD] Count=1 ETPCommand0=2 -ETPTopicOrder0=3907 +ETPTopicOrder0=1254 -[External Topic Properties\STRANSMETA_BIT_20] +[External Topic Properties\StringToUCS4@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3908 +ETPTopicOrder0=1255 -[External Topic Properties\STRANSMETA_BIT_21] +[External Topic Properties\StringToUTF16@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3909 +ETPTopicOrder0=1256 -[External Topic Properties\STRANSMETA_BIT_22] +[External Topic Properties\StringToUTF8@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3910 +ETPTopicOrder0=1257 -[External Topic Properties\STRANSMETA_BIT_23] +[External Topic Properties\StrIPos@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3911 +ETPTopicOrder0=1258 -[External Topic Properties\STRANSMETA_BIT_24] +[External Topic Properties\StrIsAlpha@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3912 +ETPTopicOrder0=1259 -[External Topic Properties\STRANSMETA_BIT_25] +[External Topic Properties\StrIsAlphaNum@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3913 +ETPTopicOrder0=1260 -[External Topic Properties\STRANSMETA_BIT_26] +[External Topic Properties\StrIsAlphaNumUnderscore@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3914 +ETPTopicOrder0=1261 -[External Topic Properties\STRANSMETA_BIT_27] +[External Topic Properties\StrIsDigit@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3915 +ETPTopicOrder0=1262 -[External Topic Properties\STRANSMETA_BIT_28] +[External Topic Properties\StrIsOneOf@string@array of string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3916 +ETPTopicOrder0=1263 -[External Topic Properties\STRANSMETA_BIT_29] +[External Topic Properties\StrIsSubset@string@array of Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=3917 +ETPTopicOrder0=1265 -[External Topic Properties\STRANSMETA_BIT_30] +[External Topic Properties\StrIsSubset@string@TCharValidator] Count=1 ETPCommand0=2 -ETPTopicOrder0=3918 +ETPTopicOrder0=1264 -[External Topic Properties\STRANSMETA_BIT_31] +[External Topic Properties\StrIsSubset@string@TSysCharSet] Count=1 ETPCommand0=2 -ETPTopicOrder0=3919 +ETPTopicOrder0=1058 -[External Topic Properties\STRANSMETA_BIT_4] +[External Topic Properties\StrIToStrings@AnsiString@AnsiString@TJclAnsiStrings@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=3920 +ETPTopicOrder0=1266 -[External Topic Properties\STRANSMETA_BIT_5] +[External Topic Properties\StrIToStrings@AnsiString@AnsiString@TStrings@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=3921 +ETPTopicOrder0=1059 -[External Topic Properties\STRANSMETA_BIT_6] +[External Topic Properties\StrIToStrings@string@string@TStrings@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=3922 +ETPTopicOrder0=1267 -[External Topic Properties\STRANSMETA_BIT_9] +[External Topic Properties\StrKeepChars@string@array of Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=3923 +ETPTopicOrder0=1269 -[External Topic Properties\STRANSMETA_LONGRUN] +[External Topic Properties\StrKeepChars@string@TCharValidator] Count=1 ETPCommand0=2 -ETPTopicOrder0=3924 +ETPTopicOrder0=1268 -[External Topic Properties\STRANSMETA_LRTI] +[External Topic Properties\StrKeepChars@string@TSysCharSet] Count=1 ETPCommand0=2 -ETPTopicOrder0=3925 +ETPTopicOrder0=1061 -[External Topic Properties\STRANSMETA_PTTI1] +[External Topic Properties\StrLastPos@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=3926 +ETPTopicOrder0=1270 -[External Topic Properties\STRANSMETA_PTTI2] +[External Topic Properties\StrLeft@string@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=3927 +ETPTopicOrder0=1063 -[External Topic Properties\STRANSMETA_RECOVERY] +[External Topic Properties\StrLeft@string@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=3928 +ETPTopicOrder0=1271 -[External Topic Properties\StrBefore@string@string] +[External Topic Properties\StrLen@PChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=1018 +ETPTopicOrder0=1064 -[External Topic Properties\StrBetween@string@Char@Char] +[External Topic Properties\StrLength@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1019 +ETPTopicOrder0=1272 -[External Topic Properties\StrCenter@string@Integer@Char] +[External Topic Properties\StrLICompW2@PWideChar@PWideChar@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=1020 +ETPTopicOrder0=1066 -[External Topic Properties\StrCharCount@string@Char] +[External Topic Properties\StrLICompW2@PWideChar@PWideChar@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1021 +ETPTopicOrder0=1273 -[External Topic Properties\StrCharPosLower@string@Integer] +[External Topic Properties\StrLoOffset] Count=1 ETPCommand0=2 -ETPTopicOrder0=1022 +ETPTopicOrder0=3065 -[External Topic Properties\StrCharPosUpper@string@Integer] +[External Topic Properties\StrLower@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1023 +ETPTopicOrder0=1274 -[External Topic Properties\StrCharsCount@string@TSysCharSet] +[External Topic Properties\StrLowerBuff@PChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=1024 +ETPTopicOrder0=1275 -[External Topic Properties\StrChopRight@string@Integer] +[External Topic Properties\StrLowerInPlace@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1025 +ETPTopicOrder0=1276 -[External Topic Properties\StrCompare@string@string] +[External Topic Properties\StrMatch@string@string@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1026 +ETPTopicOrder0=1070 -[External Topic Properties\StrCompareRange@string@string@Integer@Integer] +[External Topic Properties\StrMatch@string@string@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1027 +ETPTopicOrder0=1277 -[External Topic Properties\StrConsistsOfNumberChars@string] +[External Topic Properties\StrMatches@string@string@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1028 +ETPTopicOrder0=1071 -[External Topic Properties\StrContainsChars@string@TSysCharSet@Boolean] +[External Topic Properties\StrMatches@string@string@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1029 +ETPTopicOrder0=1278 -[External Topic Properties\StrDecRef@string] +[External Topic Properties\StrMid@string@Integer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1030 +ETPTopicOrder0=1072 -[External Topic Properties\StrDisposeAndNilW@PWideChar] +[External Topic Properties\StrMid@string@SizeInt@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1031 +ETPTopicOrder0=1279 -[External Topic Properties\StrDoubleQuote@string] +[External Topic Properties\StrMove@string@string@Integer@Integer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1032 +ETPTopicOrder0=1073 -[External Topic Properties\Streams] -Count=2 +[External Topic Properties\StrMove@string@string@SizeInt@SizeInt@SizeInt] +Count=1 ETPCommand0=2 -ETPCommand1=3 -ETPGroup1=JCL -ETPTopicOrder0=32 +ETPTopicOrder0=1280 -[External Topic Properties\StreamSeek@TStream@Int64@TSeekOrigin] -Count=2 +[External Topic Properties\StrNewW@WideString] +Count=1 ETPCommand0=2 -ETPCommand1=3 -ETPGroup1=Streams -ETPTopicOrder0=16 +ETPTopicOrder0=1281 -[External Topic Properties\StreamToVariantArray@IStream] +[External Topic Properties\StrNIPos@string@string@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1034 +ETPTopicOrder0=1075 -[External Topic Properties\StreamToVariantArray@TStream] +[External Topic Properties\StrNIPos@string@string@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1035 +ETPTopicOrder0=1282 -[External Topic Properties\StrEnsureNoPrefix@string@string] +[External Topic Properties\StrNPos@string@string@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1036 +ETPTopicOrder0=1076 -[External Topic Properties\StrEnsureNoSuffix@string@string] +[External Topic Properties\StrNPos@string@string@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1037 +ETPTopicOrder0=1283 -[External Topic Properties\StrEnsurePrefix@string@string] +[External Topic Properties\StrOemToAnsi@AnsiString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1038 +ETPTopicOrder0=1284 -[External Topic Properties\StrEnsureSuffix@string@string] +[External Topic Properties\StrOemToAnsi@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1039 +ETPTopicOrder0=1077 -[External Topic Properties\StrEscapedToString@string] +[External Topic Properties\StrOptimizeTabs@string@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1040 +ETPTopicOrder0=1285 -[External Topic Properties\StrFillChar@Char@Integer] +[External Topic Properties\StrPadLeft@string@Integer@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=1041 +ETPTopicOrder0=1078 -[External Topic Properties\StrFind@string@string@Integer] +[External Topic Properties\StrPadLeft@string@SizeInt@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=1042 +ETPTopicOrder0=1286 -[External Topic Properties\StrHasPrefix@string@array of string] +[External Topic Properties\StrPadRight@string@Integer@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=1043 +ETPTopicOrder0=1079 -[External Topic Properties\StrILastPos@string@string] +[External Topic Properties\StrPadRight@string@SizeInt@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=1044 +ETPTopicOrder0=1287 -[External Topic Properties\StrIndex@string@array of string] +[External Topic Properties\StrPCopyWW@PWideChar@WideString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1045 +ETPTopicOrder0=1288 -[External Topic Properties\StringManipulation] +[External Topic Properties\StrPLCopyWW@PWideChar@WideString@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=20 +ETPTopicOrder0=1081 -[External Topic Properties\StringRemove@string@string@TReplaceFlags] +[External Topic Properties\StrPLCopyWW@PWideChar@WideString@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1046 +ETPTopicOrder0=1289 -[External Topic Properties\StringReplace@string@string@string@TReplaceFlags] +[External Topic Properties\StrPrefixIndex@string@array of string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1047 +ETPTopicOrder0=1290 -[External Topic Properties\StringsToStr@TStrings@string@Boolean] +[External Topic Properties\StrProper@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1048 +ETPTopicOrder0=1291 -[External Topic Properties\StringToByteArray@string] +[External Topic Properties\StrProperBuff@PChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=1049 +ETPTopicOrder0=1292 -[External Topic Properties\StringToFile@string@AnsiString] +[External Topic Properties\StrQuote@string@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=1050 +ETPTopicOrder0=1293 -[External Topic Properties\StringToSID@String@PSID@DWORD] +[External Topic Properties\StrRefCount@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1051 +ETPTopicOrder0=1294 -[External Topic Properties\StrIPos@string@string] +[External Topic Properties\StrRemoveChars@string@array of Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=1052 +ETPTopicOrder0=1295 -[External Topic Properties\StrIsAlpha@string] +[External Topic Properties\StrRemoveChars@string@TCharValidator] Count=1 ETPCommand0=2 -ETPTopicOrder0=1053 +ETPTopicOrder0=1296 -[External Topic Properties\StrIsAlphaNum@string] +[External Topic Properties\StrRemoveChars@string@TSysCharSet] Count=1 ETPCommand0=2 -ETPTopicOrder0=1054 +ETPTopicOrder0=1087 -[External Topic Properties\StrIsAlphaNumUnderscore@string] +[External Topic Properties\StrRemoveEndChars@string@array of Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=1055 +ETPTopicOrder0=1298 -[External Topic Properties\StrIsDigit@string] +[External Topic Properties\StrRemoveEndChars@string@TCharValidator] Count=1 ETPCommand0=2 -ETPTopicOrder0=1056 +ETPTopicOrder0=1297 -[External Topic Properties\StrIsOneOf@string@array of string] +[External Topic Properties\StrRemoveLeadingChars@string@array of Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=1057 +ETPTopicOrder0=1299 -[External Topic Properties\StrIsSubset@string@TSysCharSet] +[External Topic Properties\StrRemoveLeadingChars@string@TCharValidator] Count=1 ETPCommand0=2 -ETPTopicOrder0=1058 +ETPTopicOrder0=1300 -[External Topic Properties\StrIToStrings@AnsiString@AnsiString@TStrings@Boolean] +[External Topic Properties\StrReOffset] Count=1 ETPCommand0=2 -ETPTopicOrder0=1059 +ETPTopicOrder0=3066 -[External Topic Properties\StrIToStrings@string@string@TStrings@Boolean] +[External Topic Properties\StrRepeat@string@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1060 +ETPTopicOrder0=1088 -[External Topic Properties\StrKeepChars@string@TSysCharSet] +[External Topic Properties\StrRepeat@string@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1061 +ETPTopicOrder0=1301 -[External Topic Properties\StrLastPos@string@string] +[External Topic Properties\StrRepeatChar@AnsiChar@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1062 +ETPTopicOrder0=1302 -[External Topic Properties\StrLeft@string@Integer] +[External Topic Properties\StrRepeatChar@Char@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1063 +ETPTopicOrder0=1303 -[External Topic Properties\StrLen@PChar] +[External Topic Properties\StrRepeatLength@AnsiString@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1064 +ETPTopicOrder0=1304 -[External Topic Properties\StrLength@string] +[External Topic Properties\StrRepeatLength@string@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1065 +ETPTopicOrder0=1089 -[External Topic Properties\StrLICompW2@PWideChar@PWideChar@Cardinal] +[External Topic Properties\StrRepeatLength@string@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1066 +ETPTopicOrder0=1305 -[External Topic Properties\StrLower@string] +[External Topic Properties\StrReplace@string@string@string@TReplaceFlags] Count=1 ETPCommand0=2 -ETPTopicOrder0=1067 +ETPTopicOrder0=1306 -[External Topic Properties\StrLowerBuff@PChar] +[External Topic Properties\StrReplaceButChars@string@array of Char@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=1068 +ETPTopicOrder0=1308 -[External Topic Properties\StrLowerInPlace@string] +[External Topic Properties\StrReplaceButChars@string@TCharValidator@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=1069 +ETPTopicOrder0=1307 -[External Topic Properties\StrMatch@string@string@Integer] +[External Topic Properties\StrReplaceButChars@string@TSysCharSet@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=1070 +ETPTopicOrder0=1091 -[External Topic Properties\StrMatches@string@string@Integer] +[External Topic Properties\StrReplaceChar@string@Char@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=1071 +ETPTopicOrder0=1309 -[External Topic Properties\StrMid@string@Integer@Integer] +[External Topic Properties\StrReplaceChars@string@array of Char@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=1072 +ETPTopicOrder0=1311 -[External Topic Properties\StrMove@string@string@Integer@Integer@Integer] +[External Topic Properties\StrReplaceChars@string@TCharValidator@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=1073 +ETPTopicOrder0=1310 -[External Topic Properties\StrNewW@WideString] +[External Topic Properties\StrReplaceChars@string@TSysCharSet@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=1074 +ETPTopicOrder0=1093 -[External Topic Properties\StrNIPos@string@string@Integer] +[External Topic Properties\StrReplaceRegEx@AnsiString@AnsiString@array of const] Count=1 ETPCommand0=2 -ETPTopicOrder0=1075 +ETPTopicOrder0=1094 -[External Topic Properties\StrNPos@string@string@Integer] +[External Topic Properties\StrReplaceRegEx@string@string@array of const] Count=1 ETPCommand0=2 -ETPTopicOrder0=1076 +ETPTopicOrder0=1312 -[External Topic Properties\StrOemToAnsi@string] +[External Topic Properties\StrResetLength@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1077 +ETPTopicOrder0=1096 -[External Topic Properties\StrPadLeft@string@Integer@Char] +[External Topic Properties\StrResetLength@StringBuilder] Count=1 ETPCommand0=2 -ETPTopicOrder0=1078 +ETPTopicOrder0=1095 -[External Topic Properties\StrPadRight@string@Integer@Char] +[External Topic Properties\StrResetLength@TJclStringBuilder] Count=1 ETPCommand0=2 -ETPTopicOrder0=1079 +ETPTopicOrder0=1313 -[External Topic Properties\StrPCopyWW@PWideChar@WideString] +[External Topic Properties\StrResetLength@UnicodeString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1080 +ETPTopicOrder0=1314 -[External Topic Properties\StrPLCopyWW@PWideChar@WideString@Cardinal] +[External Topic Properties\StrResetLength@WideString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1081 +ETPTopicOrder0=1315 -[External Topic Properties\StrPrefixIndex@string@array of string] +[External Topic Properties\StrRestOf@string@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1082 +ETPTopicOrder0=1097 -[External Topic Properties\StrProper@string] +[External Topic Properties\StrRestOf@string@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1083 +ETPTopicOrder0=1316 -[External Topic Properties\StrProperBuff@PChar] +[External Topic Properties\StrReverse@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1084 +ETPTopicOrder0=1317 -[External Topic Properties\StrQuote@string@Char] +[External Topic Properties\StrReverseInPlace@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1085 +ETPTopicOrder0=1318 -[External Topic Properties\StrRefCount@string] +[External Topic Properties\StrRight@string@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1086 +ETPTopicOrder0=1100 -[External Topic Properties\StrRemoveChars@string@TSysCharSet] +[External Topic Properties\StrRight@string@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1087 +ETPTopicOrder0=1319 -[External Topic Properties\StrRepeat@string@Integer] +[External Topic Properties\StrSame@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1088 +ETPTopicOrder0=1101 -[External Topic Properties\StrRepeatLength@string@Integer] +[External Topic Properties\StrSame@string@string@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=1089 +ETPTopicOrder0=1320 -[External Topic Properties\StrReplace@string@string@string@TReplaceFlags] +[External Topic Properties\StrScanW@PWideChar@WideChar@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=1090 +ETPTopicOrder0=1102 -[External Topic Properties\StrReplaceButChars@string@TSysCharSet@Char] +[External Topic Properties\StrScanW@PWideChar@WideChar@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1091 +ETPTopicOrder0=1321 -[External Topic Properties\StrReplaceChar@string@Char@Char] +[External Topic Properties\StrSearch@string@string@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1092 +ETPTopicOrder0=1103 -[External Topic Properties\StrReplaceChars@string@TSysCharSet@Char] +[External Topic Properties\StrSearch@string@string@SizeInt] Count=1 ETPCommand0=2 -ETPTopicOrder0=1093 +ETPTopicOrder0=1322 -[External Topic Properties\StrReplaceRegEx@AnsiString@AnsiString@array of const] -Count=1 +[External Topic Properties\StrSimpleCompare@string@string] +Count=2 ETPCommand0=2 -ETPTopicOrder0=1094 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1323 -[External Topic Properties\StrResetLength@string] -Count=1 +[External Topic Properties\StrSimpleEqualityCompare@string@string] +Count=2 ETPCommand0=2 -ETPTopicOrder0=1096 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1324 -[External Topic Properties\StrResetLength@StringBuilder] -Count=1 +[External Topic Properties\StrSimpleHashConvert@string] +Count=2 ETPCommand0=2 -ETPTopicOrder0=1095 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1325 -[External Topic Properties\StrRestOf@string@Integer] +[External Topic Properties\StrSingleQuote@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1097 +ETPTopicOrder0=1326 -[External Topic Properties\StrReverse@string] +[External Topic Properties\StrSkipChars@AnsiString@SizeInt@TSysCharSet] Count=1 ETPCommand0=2 -ETPTopicOrder0=1098 +ETPTopicOrder0=1329 -[External Topic Properties\StrReverseInPlace@string] +[External Topic Properties\StrSkipChars@PAnsiChar@TSysCharSet] Count=1 ETPCommand0=2 -ETPTopicOrder0=1099 +ETPTopicOrder0=1330 -[External Topic Properties\StrRight@string@Integer] +[External Topic Properties\StrSkipChars@PChar@array of Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=1100 +ETPTopicOrder0=1328 -[External Topic Properties\StrSame@string@string] +[External Topic Properties\StrSkipChars@PChar@TCharValidator] Count=1 ETPCommand0=2 -ETPTopicOrder0=1101 +ETPTopicOrder0=1327 -[External Topic Properties\StrScanW@PWideChar@WideChar@Cardinal] +[External Topic Properties\StrSkipChars@string@SizeInt@array of Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=1102 +ETPTopicOrder0=1331 -[External Topic Properties\StrSearch@string@string@Integer] +[External Topic Properties\StrSkipChars@string@SizeInt@TCharValidator] Count=1 ETPCommand0=2 -ETPTopicOrder0=1103 +ETPTopicOrder0=1332 -[External Topic Properties\StrSimpleCompare@string@string] +[External Topic Properties\StrSmartCase@string@array of Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=1104 +ETPTopicOrder0=1333 -[External Topic Properties\StrSingleQuote@string] +[External Topic Properties\StrSmartCase@string@TCharValidator] Count=1 ETPCommand0=2 -ETPTopicOrder0=1105 +ETPTopicOrder0=1334 [External Topic Properties\StrSmartCase@string@TSysCharSet] Count=1 @@ -100013,118 +113184,158 @@ ETPTopicOrder0=55 [External Topic Properties\StrStrCount@string@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1107 +ETPTopicOrder0=1335 [External Topic Properties\StrStringToEscaped@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1108 +ETPTopicOrder0=1336 [External Topic Properties\StrStripNonNumberChars@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1109 +ETPTopicOrder0=1337 [External Topic Properties\StrToBoolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=1110 +ETPTopicOrder0=1338 [External Topic Properties\StrToFloatSafe@AnsiString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1112 +ETPTopicOrder0=1339 [External Topic Properties\StrToFloatSafe@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1111 +ETPTopicOrder0=1340 [External Topic Properties\StrToHex@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1113 +ETPTopicOrder0=1341 [External Topic Properties\StrToIntSafe@AnsiString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1114 +ETPTopicOrder0=1342 [External Topic Properties\StrToIntSafe@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1115 +ETPTopicOrder0=1343 [External Topic Properties\StrToken@string@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=1116 +ETPTopicOrder0=1344 [External Topic Properties\StrTokens@string@TStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=1117 +ETPTopicOrder0=1345 [External Topic Properties\StrTokenToStrings@string@Char@TStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=1118 +ETPTopicOrder0=1346 [External Topic Properties\StrToStrings@string@string@TStrings@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=1119 +ETPTopicOrder0=1347 [External Topic Properties\StrTrimCharLeft@string@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=1120 +ETPTopicOrder0=1348 [External Topic Properties\StrTrimCharRight@string@Char] Count=1 ETPCommand0=2 -ETPTopicOrder0=1121 +ETPTopicOrder0=1349 + +[External Topic Properties\StrTrimCharsLeft@string@array of Char] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1350 + +[External Topic Properties\StrTrimCharsLeft@string@TCharValidator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1351 [External Topic Properties\StrTrimCharsLeft@string@TSysCharSet] Count=1 ETPCommand0=2 ETPTopicOrder0=1122 +[External Topic Properties\StrTrimCharsRight@string@array of Char] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1352 + +[External Topic Properties\StrTrimCharsRight@string@TCharValidator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1353 + [External Topic Properties\StrTrimCharsRight@string@TSysCharSet] Count=1 ETPCommand0=2 ETPTopicOrder0=1123 +[External Topic Properties\StrTrimQuotes@AnsiString@AnsiChar] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1354 + [External Topic Properties\StrTrimQuotes@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1124 +ETPTopicOrder0=1355 + +[External Topic Properties\StrUpOffset] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3067 [External Topic Properties\StrUpper@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1125 +ETPTopicOrder0=1356 [External Topic Properties\StrUpperBuff@PChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=1126 +ETPTopicOrder0=1357 [External Topic Properties\StrUpperInPlace@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1127 +ETPTopicOrder0=1358 + +[External Topic Properties\StrWord@PAnsiChar@AnsiString] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1360 [External Topic Properties\StrWord@PChar@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1129 +ETPTopicOrder0=1361 [External Topic Properties\StrWord@string@Integer@string] Count=1 ETPCommand0=2 ETPTopicOrder0=1128 +[External Topic Properties\StrWord@string@SizeInt@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1359 + [External Topic Properties\stTraceEAbort] Count=1 ETPCommand0=2 @@ -100133,7 +113344,7 @@ ETPTopicOrder0=3929 [External Topic Properties\stWin32Service] Count=1 ETPCommand0=2 -ETPTopicOrder0=3930 +ETPTopicOrder0=3068 [External Topic Properties\STXTLEN] Count=1 @@ -100148,292 +113359,300 @@ ETPTopicOrder0=1130 [External Topic Properties\SUBSECTION_TYPE_ALIGN_SYMBOLS] Count=1 ETPCommand0=2 -ETPTopicOrder0=3932 +ETPTopicOrder0=3069 [External Topic Properties\SUBSECTION_TYPE_GLOBAL_SYMBOLS] Count=1 ETPCommand0=2 -ETPTopicOrder0=3933 +ETPTopicOrder0=3070 [External Topic Properties\SUBSECTION_TYPE_GLOBAL_TYPES] Count=1 ETPCommand0=2 -ETPTopicOrder0=3934 +ETPTopicOrder0=3071 [External Topic Properties\SUBSECTION_TYPE_MODULE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3935 +ETPTopicOrder0=3072 [External Topic Properties\SUBSECTION_TYPE_NAMES] Count=1 ETPCommand0=2 -ETPTopicOrder0=3936 +ETPTopicOrder0=3073 [External Topic Properties\SUBSECTION_TYPE_SOURCE_MODULE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3937 +ETPTopicOrder0=3074 [External Topic Properties\SUBSECTION_TYPE_SYMBOLS] Count=1 ETPCommand0=2 -ETPTopicOrder0=3938 +ETPTopicOrder0=3075 [External Topic Properties\SUBSECTION_TYPE_TYPES] Count=1 ETPCommand0=2 -ETPTopicOrder0=3939 +ETPTopicOrder0=3076 [External Topic Properties\Sum@array of TRectComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=1132 +ETPTopicOrder0=1362 [External Topic Properties\Sum@TRectComplex@TRectComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=1131 +ETPTopicOrder0=1363 [External Topic Properties\SumOfSquares@TDynFloatArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=1133 +ETPTopicOrder0=1364 [External Topic Properties\SupportedBCBVersions] Count=1 ETPCommand0=2 -ETPTopicOrder0=3940 +ETPTopicOrder0=3077 [External Topic Properties\SupportedBDSVersions] Count=1 ETPCommand0=2 -ETPTopicOrder0=3941 +ETPTopicOrder0=3078 [External Topic Properties\SupportedDelphiVersions] Count=1 ETPCommand0=2 -ETPTopicOrder0=3942 +ETPTopicOrder0=3079 [External Topic Properties\SurrogateHighEnd] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=3943 +ETPCommand1=3 +ETPGroup1=Unicode +ETPTopicOrder0=17 [External Topic Properties\SurrogateHighStart] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=3944 +ETPCommand1=3 +ETPGroup1=Unicode +ETPTopicOrder0=18 [External Topic Properties\SurrogateLowEnd] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=3945 +ETPCommand1=3 +ETPGroup1=Unicode +ETPTopicOrder0=19 [External Topic Properties\SurrogateLowStart] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=3946 +ETPCommand1=3 +ETPGroup1=Unicode +ETPTopicOrder0=20 [External Topic Properties\SuspendOS@Boolean@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=1134 +ETPTopicOrder0=1365 [External Topic Properties\SwapOrd@Cardinal@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=1140 +ETPTopicOrder0=1367 [External Topic Properties\SwapOrd@Int64@Int64] Count=1 ETPCommand0=2 -ETPTopicOrder0=1138 +ETPTopicOrder0=1371 [External Topic Properties\SwapOrd@Integer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1137 +ETPTopicOrder0=1369 [External Topic Properties\SwapOrd@Shortint@Shortint] Count=1 ETPCommand0=2 -ETPTopicOrder0=1135 +ETPTopicOrder0=1370 [External Topic Properties\SwapOrd@Smallint@Smallint] Count=1 ETPCommand0=2 -ETPTopicOrder0=1136 +ETPTopicOrder0=1366 [External Topic Properties\SwapOrd@Word@Word] Count=1 ETPCommand0=2 -ETPTopicOrder0=1139 +ETPTopicOrder0=1368 [External Topic Properties\SYMBOL_TYPE_BLOCK16] Count=1 ETPCommand0=2 -ETPTopicOrder0=3947 +ETPTopicOrder0=3080 [External Topic Properties\SYMBOL_TYPE_BLOCK32] Count=1 ETPCommand0=2 -ETPTopicOrder0=3948 +ETPTopicOrder0=3081 [External Topic Properties\SYMBOL_TYPE_BPREL16] Count=1 ETPCommand0=2 -ETPTopicOrder0=3949 +ETPTopicOrder0=3082 [External Topic Properties\SYMBOL_TYPE_BPREL32] Count=1 ETPCommand0=2 -ETPTopicOrder0=3950 +ETPTopicOrder0=3083 [External Topic Properties\SYMBOL_TYPE_CEXMODEL16] Count=1 ETPCommand0=2 -ETPTopicOrder0=3951 +ETPTopicOrder0=3084 [External Topic Properties\SYMBOL_TYPE_CEXMODEL32] Count=1 ETPCommand0=2 -ETPTopicOrder0=3952 +ETPTopicOrder0=3085 [External Topic Properties\SYMBOL_TYPE_COMPILE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3953 +ETPTopicOrder0=3086 [External Topic Properties\SYMBOL_TYPE_CONST] Count=1 ETPCommand0=2 -ETPTopicOrder0=3954 +ETPTopicOrder0=3087 [External Topic Properties\SYMBOL_TYPE_CVRESERVE] Count=1 ETPCommand0=2 -ETPTopicOrder0=3955 +ETPTopicOrder0=3088 [External Topic Properties\SYMBOL_TYPE_END] Count=1 ETPCommand0=2 -ETPTopicOrder0=3956 +ETPTopicOrder0=3089 [External Topic Properties\SYMBOL_TYPE_GDATA16] Count=1 ETPCommand0=2 -ETPTopicOrder0=3957 +ETPTopicOrder0=3090 [External Topic Properties\SYMBOL_TYPE_GDATA32] Count=1 ETPCommand0=2 -ETPTopicOrder0=3958 +ETPTopicOrder0=3091 [External Topic Properties\SYMBOL_TYPE_GPROC16] Count=1 ETPCommand0=2 -ETPTopicOrder0=3959 +ETPTopicOrder0=3092 [External Topic Properties\SYMBOL_TYPE_GPROC32] Count=1 ETPCommand0=2 -ETPTopicOrder0=3960 +ETPTopicOrder0=3093 [External Topic Properties\SYMBOL_TYPE_LABEL16] Count=1 ETPCommand0=2 -ETPTopicOrder0=3961 +ETPTopicOrder0=3094 [External Topic Properties\SYMBOL_TYPE_LABEL32] Count=1 ETPCommand0=2 -ETPTopicOrder0=3962 +ETPTopicOrder0=3095 [External Topic Properties\SYMBOL_TYPE_LDATA16] Count=1 ETPCommand0=2 -ETPTopicOrder0=3963 +ETPTopicOrder0=3096 [External Topic Properties\SYMBOL_TYPE_LDATA32] Count=1 ETPCommand0=2 -ETPTopicOrder0=3964 +ETPTopicOrder0=3097 [External Topic Properties\SYMBOL_TYPE_LPROC16] Count=1 ETPCommand0=2 -ETPTopicOrder0=3965 +ETPTopicOrder0=3098 [External Topic Properties\SYMBOL_TYPE_LPROC32] Count=1 ETPCommand0=2 -ETPTopicOrder0=3966 +ETPTopicOrder0=3099 [External Topic Properties\SYMBOL_TYPE_OBJNAME] Count=1 ETPCommand0=2 -ETPTopicOrder0=3967 +ETPTopicOrder0=3100 [External Topic Properties\SYMBOL_TYPE_PUB16] Count=1 ETPCommand0=2 -ETPTopicOrder0=3968 +ETPTopicOrder0=3101 [External Topic Properties\SYMBOL_TYPE_PUB32] Count=1 ETPCommand0=2 -ETPTopicOrder0=3969 +ETPTopicOrder0=3102 [External Topic Properties\SYMBOL_TYPE_REGISTER] Count=1 ETPCommand0=2 -ETPTopicOrder0=3970 +ETPTopicOrder0=3103 [External Topic Properties\SYMBOL_TYPE_SKIP] Count=1 ETPCommand0=2 -ETPTopicOrder0=3971 +ETPTopicOrder0=3104 [External Topic Properties\SYMBOL_TYPE_SSEARCH] Count=1 ETPCommand0=2 -ETPTopicOrder0=3972 +ETPTopicOrder0=3105 [External Topic Properties\SYMBOL_TYPE_THUNK16] Count=1 ETPCommand0=2 -ETPTopicOrder0=3973 +ETPTopicOrder0=3106 [External Topic Properties\SYMBOL_TYPE_THUNK32] Count=1 ETPCommand0=2 -ETPTopicOrder0=3974 +ETPTopicOrder0=3107 [External Topic Properties\SYMBOL_TYPE_UDT] Count=1 ETPCommand0=2 -ETPTopicOrder0=3975 +ETPTopicOrder0=3108 [External Topic Properties\SYMBOL_TYPE_VFTPATH16] Count=1 ETPCommand0=2 -ETPTopicOrder0=3976 +ETPTopicOrder0=3109 [External Topic Properties\SYMBOL_TYPE_VFTPATH32] Count=1 ETPCommand0=2 -ETPTopicOrder0=3977 +ETPTopicOrder0=3110 [External Topic Properties\SYMBOL_TYPE_WITH16] Count=1 ETPCommand0=2 -ETPTopicOrder0=3978 +ETPTopicOrder0=3111 [External Topic Properties\SYMBOL_TYPE_WITH32] Count=1 ETPCommand0=2 -ETPTopicOrder0=3979 +ETPTopicOrder0=3112 [External Topic Properties\SYMOPT_ALLOW_ABSOLUTE_SYMBOLS] Count=1 @@ -100523,22 +113742,22 @@ ETPTopicOrder0=3996 [External Topic Properties\SystemInformationRoutines] Count=1 ETPCommand0=2 -ETPTopicOrder0=21 +ETPTopicOrder0=20 [External Topic Properties\SystemTimeToFileTime@TSystemTime@TFileTime] Count=1 ETPCommand0=2 -ETPTopicOrder0=1141 +ETPTopicOrder0=1372 [External Topic Properties\SystemTObjectInstance] Count=1 ETPCommand0=2 -ETPTopicOrder0=1142 +ETPTopicOrder0=1373 [External Topic Properties\T8087Exception] Count=1 ETPCommand0=2 -ETPTopicOrder0=83 +ETPTopicOrder0=11 [External Topic Properties\T8087Exception.emDenormalizedOperand] Count=1 @@ -100575,6 +113794,61 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=3997 +[External Topic Properties\TabSetFormatting_AlwaysUseBrackets] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3113 + +[External Topic Properties\TabSetFormatting_AutoTabWidth] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3114 + +[External Topic Properties\TabSetFormatting_Default] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3115 + +[External Topic Properties\TabSetFormatting_EmptyBracketsIfNoStops] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3116 + +[External Topic Properties\TabSetFormatting_Full] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3117 + +[External Topic Properties\TabSetFormatting_NoTabStops] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3118 + +[External Topic Properties\TabSetFormatting_NoTabWidth] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3119 + +[External Topic Properties\TabSetFormatting_StopsOnly] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3120 + +[External Topic Properties\TabSetFormatting_StopsWithoutBracketsAndTabWidth] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3121 + +[External Topic Properties\TabSetFormatting_SurroundStopsWithBrackets] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3122 + +[External Topic Properties\TabSetFormatting_TabWidthOnly] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3123 + [External Topic Properties\TActionHeader] Count=1 ETPCommand0=2 @@ -100658,12 +113932,12 @@ ETPTopicOrder0=3 [External Topic Properties\Tan@TRectComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=1143 +ETPTopicOrder0=1374 [External Topic Properties\TanH@TRectComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=1144 +ETPTopicOrder0=1375 [External Topic Properties\TAnonObjectHeader] Count=1 @@ -100675,85 +113949,156 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=401 +[External Topic Properties\TAnsiStrApplyFunction] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=122 + +[External Topic Properties\TAnsiStrCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=123 + +[External Topic Properties\TAnsiStrEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=124 + +[External Topic Properties\TAnsiStrHashConvert] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=125 + +[External Topic Properties\TAnsiStringList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=126 + +[External Topic Properties\TAnsiStrings] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=127 + +[External Topic Properties\TAnsiStrIterateProcedure] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=128 + +[External Topic Properties\TAnsiStrSortProc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=129 + [External Topic Properties\TAPMBatteryFlags] Count=1 ETPCommand0=2 -ETPTopicOrder0=402 +ETPTopicOrder0=130 [External Topic Properties\TApplyFunction] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=403 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=131 + +[External Topic Properties\TargetOS] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=jedi.inc +ETPTopicOrder0=5 [External Topic Properties\TArrayCatID] Count=1 ETPCommand0=2 -ETPTopicOrder0=404 +ETPTopicOrder0=132 [External Topic Properties\TArrayOfColor32] Count=1 ETPCommand0=2 -ETPTopicOrder0=405 +ETPTopicOrder0=133 [External Topic Properties\TBinary32Func] Count=1 ETPCommand0=2 -ETPTopicOrder0=406 +ETPTopicOrder0=134 [External Topic Properties\TBinary64Func] Count=1 ETPCommand0=2 -ETPTopicOrder0=407 +ETPTopicOrder0=135 [External Topic Properties\TBinary80Func] Count=1 ETPCommand0=2 -ETPTopicOrder0=408 +ETPTopicOrder0=136 [External Topic Properties\TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=409 +ETPTopicOrder0=137 [External Topic Properties\TBlendLine] Count=1 ETPCommand0=2 -ETPTopicOrder0=410 +ETPTopicOrder0=138 [External Topic Properties\TBlendLineEx] Count=1 ETPCommand0=2 -ETPTopicOrder0=411 +ETPTopicOrder0=139 [External Topic Properties\TBlendMem] Count=1 ETPCommand0=2 -ETPTopicOrder0=412 +ETPTopicOrder0=140 [External Topic Properties\TBlendMemEx] Count=1 ETPCommand0=2 -ETPTopicOrder0=413 +ETPTopicOrder0=141 [External Topic Properties\TBlendReg] Count=1 ETPCommand0=2 -ETPTopicOrder0=414 +ETPTopicOrder0=142 [External Topic Properties\TBlendRegEx] Count=1 ETPCommand0=2 -ETPTopicOrder0=415 +ETPTopicOrder0=143 [External Topic Properties\TBooleanArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=416 +ETPTopicOrder0=144 + +[External Topic Properties\TBoolSetter] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=145 + +[External Topic Properties\TBytes] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=146 [External Topic Properties\TCacheFamily] Count=1 ETPCommand0=2 -ETPTopicOrder0=86 +ETPTopicOrder0=12 [External Topic Properties\TCacheFamily.cfDataTLB] Count=1 @@ -100798,7 +114143,7 @@ ETPTopicOrder0=7 [External Topic Properties\TCacheInformation] Count=1 ETPCommand0=2 -ETPTopicOrder0=87 +ETPTopicOrder0=13 [External Topic Properties\TCacheInformation.ciAssociativity] Count=1 @@ -100825,15 +114170,82 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=417 +[External Topic Properties\TCardinalApplyFunction] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=147 + +[External Topic Properties\TCardinalCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=148 + +[External Topic Properties\TCardinalEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=149 + +[External Topic Properties\TCardinalHashConvert] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=150 + +[External Topic Properties\TCardinalIterateProcedure] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=151 + +[External Topic Properties\TCardinalSetter] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=152 + +[External Topic Properties\TCardinalSortProc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=153 + +[External Topic Properties\TCaseType] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=14 + +[External Topic Properties\TCharacterCategories] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1 + +[External Topic Properties\TCharacterCategory] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + [External Topic Properties\TCharDynArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=418 +ETPTopicOrder0=154 + +[External Topic Properties\TCharValidator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=155 [External Topic Properties\TClipCode] Count=1 ETPCommand0=2 -ETPTopicOrder0=88 +ETPTopicOrder0=15 [External Topic Properties\TClipCode.ccAbove] Count=1 @@ -100858,12 +114270,12 @@ ETPTopicOrder0=3 [External Topic Properties\TClipCodes] Count=1 ETPCommand0=2 -ETPTopicOrder0=419 +ETPTopicOrder0=156 [External Topic Properties\TClrMetadataHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=89 +ETPTopicOrder0=16 [External Topic Properties\TClrMetadataHeader.Length] Count=1 @@ -100898,7 +114310,7 @@ ETPTopicOrder0=5 [External Topic Properties\TClrStreamHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=90 +ETPTopicOrder0=17 [External Topic Properties\TClrStreamHeader.Name] Count=1 @@ -100918,7 +114330,7 @@ ETPTopicOrder0=2 [External Topic Properties\TClrTableStreamHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=91 +ETPTopicOrder0=18 [External Topic Properties\TClrTableStreamHeader.HeapSizes] Count=1 @@ -100963,7 +114375,7 @@ ETPTopicOrder0=7 [External Topic Properties\TColorChannel] Count=1 ETPCommand0=2 -ETPTopicOrder0=92 +ETPTopicOrder0=19 [External Topic Properties\TColorChannel.ccAlpha] Count=1 @@ -100988,7 +114400,7 @@ ETPTopicOrder0=3 [External Topic Properties\TColorRec] Count=1 ETPCommand0=2 -ETPTopicOrder0=93 +ETPTopicOrder0=20 [External Topic Properties\TColorRec.B] Count=1 @@ -101038,7 +114450,7 @@ ETPTopicOrder0=8 [External Topic Properties\TColorVector] Count=1 ETPCommand0=2 -ETPTopicOrder0=94 +ETPTopicOrder0=21 [External Topic Properties\TColorVector.B] Count=1 @@ -101078,17 +114490,17 @@ ETPTopicOrder0=6 [External Topic Properties\TCombineMem] Count=1 ETPCommand0=2 -ETPTopicOrder0=420 +ETPTopicOrder0=157 [External Topic Properties\TCombineReg] Count=1 ETPCommand0=2 -ETPTopicOrder0=421 +ETPTopicOrder0=158 [External Topic Properties\TCommandLineTool] Count=1 ETPCommand0=2 -ETPTopicOrder0=95 +ETPTopicOrder0=22 [External Topic Properties\TCommandLineTool.clAsm] Count=1 @@ -101123,12 +114535,12 @@ ETPTopicOrder0=5 [External Topic Properties\TCommandLineTools] Count=1 ETPCommand0=2 -ETPTopicOrder0=422 +ETPTopicOrder0=159 [External Topic Properties\TCompactPath] Count=1 ETPCommand0=2 -ETPTopicOrder0=96 +ETPTopicOrder0=23 [External Topic Properties\TCompactPath.cpCenter] Count=1 @@ -101141,29 +114553,36 @@ ETPCommand0=2 ETPTopicOrder0=1 [External Topic Properties\TCompare] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=423 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=160 [External Topic Properties\TCompareFunc] Count=1 ETPCommand0=2 -ETPTopicOrder0=424 +ETPTopicOrder0=161 + +[External Topic Properties\TCompatibilityFormattingTag] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=24 [External Topic Properties\TComplex_VERSION] Count=1 ETPCommand0=2 -ETPTopicOrder0=3998 +ETPTopicOrder0=3124 [External Topic Properties\TConfirmConversionEvent] Count=1 ETPCommand0=2 -ETPTopicOrder0=425 +ETPTopicOrder0=162 [External Topic Properties\TCoords] Count=1 ETPCommand0=2 -ETPTopicOrder0=97 +ETPTopicOrder0=25 [External Topic Properties\TCoords.R] Count=1 @@ -101185,15 +114604,30 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=3 +[External Topic Properties\TCrc16Table] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=163 + +[External Topic Properties\TCrc32Table] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=164 + [External Topic Properties\TCustomData] Count=1 ETPCommand0=2 ETPTopicOrder0=426 +[External Topic Properties\TCustomGoal] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=67 + [External Topic Properties\TCustomUnitVersioningProvider] Count=1 ETPCommand0=2 -ETPTopicOrder0=58 +ETPTopicOrder0=68 [External Topic Properties\TCustomUnitVersioningProvider.Create] Count=1 @@ -101213,17 +114647,17 @@ ETPTopicOrder0=2 [External Topic Properties\TDateTimeArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=427 +ETPTopicOrder0=165 [External Topic Properties\TDelphiSet] Count=1 ETPCommand0=2 -ETPTopicOrder0=428 +ETPTopicOrder0=166 [External Topic Properties\TDFA] Count=1 ETPCommand0=2 -ETPTopicOrder0=98 +ETPTopicOrder0=26 [External Topic Properties\TDFA.Flags] Count=1 @@ -101248,7 +114682,7 @@ ETPTopicOrder0=3 [External Topic Properties\TDFAState] Count=1 ETPCommand0=2 -ETPTopicOrder0=99 +ETPTopicOrder0=27 [External Topic Properties\TDFAState.Accepting] Count=1 @@ -101268,7 +114702,7 @@ ETPTopicOrder0=2 [External Topic Properties\TDFAStates] Count=1 ETPCommand0=2 -ETPTopicOrder0=100 +ETPTopicOrder0=28 [External Topic Properties\TDFAStates.States] Count=1 @@ -101283,17 +114717,17 @@ ETPTopicOrder0=1 [External Topic Properties\TDigitCount] Count=1 ETPCommand0=2 -ETPTopicOrder0=429 +ETPTopicOrder0=167 [External Topic Properties\TDigitValue] Count=1 ETPCommand0=2 -ETPTopicOrder0=430 +ETPTopicOrder0=168 [External Topic Properties\TDirectoryEntry] Count=1 ETPCommand0=2 -ETPTopicOrder0=101 +ETPTopicOrder0=29 [External Topic Properties\TDirectoryEntry.ModuleIndex] Count=1 @@ -101318,7 +114752,7 @@ ETPTopicOrder0=3 [External Topic Properties\TDirectoryHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=102 +ETPTopicOrder0=30 [External Topic Properties\TDirectoryHeader.DirEntries] Count=1 @@ -101358,102 +114792,179 @@ ETPTopicOrder0=431 [External Topic Properties\TDosDateTime] Count=1 ETPCommand0=2 -ETPTopicOrder0=432 +ETPTopicOrder0=169 + +[External Topic Properties\TDoubleApplyFunction] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=170 + +[External Topic Properties\TDoubleCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=171 + +[External Topic Properties\TDoubleEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=172 + +[External Topic Properties\TDoubleHashConvert] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=173 + +[External Topic Properties\TDoubleIterateProcedure] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=174 + +[External Topic Properties\TDoubleSortProc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=175 + +[External Topic Properties\TDWORD_PTRArray] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=176 [External Topic Properties\TDWORDArray] Count=1 ETPCommand0=2 ETPTopicOrder0=433 +[External Topic Properties\TDynAnsiCharArray] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=177 + +[External Topic Properties\TDynAnsiStringArray] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=178 + [External Topic Properties\TDynArraySortCompare] Count=1 ETPCommand0=2 -ETPTopicOrder0=434 +ETPTopicOrder0=179 [External Topic Properties\TDynByteArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=435 +ETPTopicOrder0=180 [External Topic Properties\TDynCardinalArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=436 +ETPTopicOrder0=181 + +[External Topic Properties\TDynCharArray] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=182 [External Topic Properties\TDynDoubleArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=437 +ETPTopicOrder0=183 [External Topic Properties\TDynExtendedArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=438 +ETPTopicOrder0=184 [External Topic Properties\TDynFloatArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=439 +ETPTopicOrder0=185 [External Topic Properties\TDynIInterfaceArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=440 +ETPTopicOrder0=186 [External Topic Properties\TDynInt64Array] Count=1 ETPCommand0=2 -ETPTopicOrder0=441 +ETPTopicOrder0=187 [External Topic Properties\TDynIntegerArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=442 +ETPTopicOrder0=188 [External Topic Properties\TDynLongIntArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=443 +ETPTopicOrder0=189 [External Topic Properties\TDynObjectArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=444 +ETPTopicOrder0=190 [External Topic Properties\TDynPointerArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=445 +ETPTopicOrder0=191 [External Topic Properties\TDynShortIntArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=446 +ETPTopicOrder0=192 [External Topic Properties\TDynSingleArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=447 +ETPTopicOrder0=193 + +[External Topic Properties\TDynSizeIntArray] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=194 [External Topic Properties\TDynSmallIntArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=448 +ETPTopicOrder0=195 [External Topic Properties\TDynStringArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=449 +ETPTopicOrder0=196 + +[External Topic Properties\TDynUnicodeStringArray] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=197 [External Topic Properties\TDynWideCharArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=450 +ETPTopicOrder0=198 + +[External Topic Properties\TDynWideStringArray] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=199 [External Topic Properties\TDynWordArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=451 +ETPTopicOrder0=200 [External Topic Properties\TEDI_ANSIX12_Document] Count=1 @@ -107925,80 +121436,92 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=1 +[External Topic Properties\TEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=201 + [External Topic Properties\TerminateLocaleSupport] Count=1 ETPCommand0=2 -ETPTopicOrder0=1145 +ETPTopicOrder0=1376 [External Topic Properties\TestBit@Cardinal@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=1146 +ETPTopicOrder0=1380 [External Topic Properties\TestBit@Int64@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=1149 +ETPTopicOrder0=1377 [External Topic Properties\TestBit@Integer@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=1151 +ETPTopicOrder0=1379 [External Topic Properties\TestBit@Shortint@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=1150 +ETPTopicOrder0=1378 [External Topic Properties\TestBit@Smallint@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=1148 +ETPTopicOrder0=1382 [External Topic Properties\TestBit@Word@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=1147 +ETPTopicOrder0=1381 [External Topic Properties\TestBitBuffer@@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=1152 +ETPTopicOrder0=1384 + +[External Topic Properties\TestBitBuffer@@Int64] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1383 [External Topic Properties\TestBits@Cardinal@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=1153 +ETPTopicOrder0=1388 [External Topic Properties\TestBits@Int64@Int64] Count=1 ETPCommand0=2 -ETPTopicOrder0=1154 +ETPTopicOrder0=1389 [External Topic Properties\TestBits@Integer@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1155 +ETPTopicOrder0=1390 [External Topic Properties\TestBits@Shortint@Shortint] Count=1 ETPCommand0=2 -ETPTopicOrder0=1156 +ETPTopicOrder0=1387 [External Topic Properties\TestBits@Smallint@Smallint] Count=1 ETPCommand0=2 -ETPTopicOrder0=1157 +ETPTopicOrder0=1385 [External Topic Properties\TestBits@Word@Word] Count=1 ETPCommand0=2 -ETPTopicOrder0=1158 +ETPTopicOrder0=1386 [External Topic Properties\TEventInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=111 +ETPTopicOrder0=31 [External Topic Properties\TEventInfo.EventType] Count=1 @@ -108010,10 +121533,52 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=1 +[External Topic Properties\TExtendedApplyFunction] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=202 + +[External Topic Properties\TExtendedCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=203 + +[External Topic Properties\TExtendedEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=204 + +[External Topic Properties\TExtendedHashConvert] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=205 + +[External Topic Properties\TExtendedIterateProcedure] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=206 + +[External Topic Properties\TExtendedSortProc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=207 + [External Topic Properties\TFileEnumeratorSyncMode] Count=1 ETPCommand0=2 -ETPTopicOrder0=112 +ETPTopicOrder0=32 [External Topic Properties\TFileEnumeratorSyncMode.smPerDirectory] Count=1 @@ -108028,7 +121593,7 @@ ETPTopicOrder0=1 [External Topic Properties\TFileFlag] Count=1 ETPCommand0=2 -ETPTopicOrder0=113 +ETPTopicOrder0=33 [External Topic Properties\TFileFlag.ffDebug] Count=1 @@ -108063,17 +121628,22 @@ ETPTopicOrder0=5 [External Topic Properties\TFileHandler] Count=1 ETPCommand0=2 -ETPTopicOrder0=476 +ETPTopicOrder0=208 [External Topic Properties\TFileHandlerEx] Count=1 ETPCommand0=2 -ETPTopicOrder0=477 +ETPTopicOrder0=209 + +[External Topic Properties\TFileInfoHandlerEx] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=210 [External Topic Properties\TFileListOption] Count=1 ETPCommand0=2 -ETPTopicOrder0=114 +ETPTopicOrder0=34 [External Topic Properties\TFileListOption.flFullNames] Count=1 @@ -108093,12 +121663,12 @@ ETPTopicOrder0=2 [External Topic Properties\TFileMatchFunc] Count=1 ETPCommand0=2 -ETPTopicOrder0=478 +ETPTopicOrder0=211 [External Topic Properties\TFileSearchOption] Count=1 ETPCommand0=2 -ETPTopicOrder0=115 +ETPTopicOrder0=35 [External Topic Properties\TFileSearchOption.fsIncludeHiddenSubDirectories] Count=1 @@ -108133,17 +121703,17 @@ ETPTopicOrder0=5 [External Topic Properties\TFileSearchTaskID] Count=1 ETPCommand0=2 -ETPTopicOrder0=479 +ETPTopicOrder0=212 [External Topic Properties\TFileSearchTerminationEvent] Count=1 ETPCommand0=2 -ETPTopicOrder0=480 +ETPTopicOrder0=213 [External Topic Properties\TFileSystemFlag] Count=1 ETPCommand0=2 -ETPTopicOrder0=116 +ETPTopicOrder0=36 [External Topic Properties\TFileSystemFlag.fsCasePreservedNames] Count=1 @@ -108218,17 +121788,22 @@ ETPTopicOrder0=13 [External Topic Properties\TFileSystemFlags] Count=1 ETPCommand0=2 -ETPTopicOrder0=481 +ETPTopicOrder0=214 [External Topic Properties\TFileTime] Count=1 ETPCommand0=2 ETPTopicOrder0=482 +[External Topic Properties\TFileTimeSetter] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=215 + [External Topic Properties\TFileVersionFormat] Count=1 ETPCommand0=2 -ETPTopicOrder0=117 +ETPTopicOrder0=37 [External Topic Properties\TFileVersionFormat.vfFull] Count=1 @@ -108253,17 +121828,59 @@ ETPTopicOrder0=484 [External Topic Properties\TFloat32Func] Count=1 ETPCommand0=2 -ETPTopicOrder0=485 +ETPTopicOrder0=216 [External Topic Properties\TFloat64Func] Count=1 ETPCommand0=2 -ETPTopicOrder0=486 +ETPTopicOrder0=217 [External Topic Properties\TFloat80Func] Count=1 ETPCommand0=2 -ETPTopicOrder0=487 +ETPTopicOrder0=218 + +[External Topic Properties\TFloatApplyFunction] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=219 + +[External Topic Properties\TFloatCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=220 + +[External Topic Properties\TFloatEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=221 + +[External Topic Properties\TFloatHashConvert] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=222 + +[External Topic Properties\TFloatIterateProcedure] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=223 + +[External Topic Properties\TFloatSortProc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=224 [External Topic Properties\TFNCreateHardLinkA] Count=1 @@ -108283,7 +121900,7 @@ ETPTopicOrder0=490 [External Topic Properties\TFontType] Count=1 ETPCommand0=2 -ETPTopicOrder0=118 +ETPTopicOrder0=38 [External Topic Properties\TFontType.ftAuto] Count=1 @@ -108308,7 +121925,7 @@ ETPTopicOrder0=491 [External Topic Properties\TFreeSysResKind] Count=1 ETPCommand0=2 -ETPTopicOrder0=119 +ETPTopicOrder0=39 [External Topic Properties\TFreeSysResKind.rtGdi] Count=1 @@ -108328,7 +121945,7 @@ ETPTopicOrder0=2 [External Topic Properties\TFreeSystemResources] Count=1 ETPCommand0=2 -ETPTopicOrder0=120 +ETPTopicOrder0=40 [External Topic Properties\TFreeSystemResources.GdiRes] Count=1 @@ -108363,7 +121980,7 @@ ETPTopicOrder0=492 [External Topic Properties\TGlobalTypeInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=122 +ETPTopicOrder0=41 [External Topic Properties\TGlobalTypeInfo.Count] Count=1 @@ -108385,15 +122002,22 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=494 +[External Topic Properties\THashConvert] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=225 + [External Topic Properties\THLSValue] Count=1 ETPCommand0=2 -ETPTopicOrder0=495 +ETPTopicOrder0=226 [External Topic Properties\THLSVector] Count=1 ETPCommand0=2 -ETPTopicOrder0=123 +ETPTopicOrder0=42 [External Topic Properties\THLSVector.Hue] Count=1 @@ -108410,30 +122034,37 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=2 +[External Topic Properties\THREADSAFE] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=6 + [External Topic Properties\ThreeEpsDouble] Count=1 ETPCommand0=2 -ETPTopicOrder0=56 +ETPTopicOrder0=41 [External Topic Properties\ThreeEpsExtended] Count=1 ETPCommand0=2 -ETPTopicOrder0=57 +ETPTopicOrder0=42 [External Topic Properties\ThreeEpsilon] Count=1 ETPCommand0=2 -ETPTopicOrder0=58 +ETPTopicOrder0=43 [External Topic Properties\ThreeEpsSingle] Count=1 ETPCommand0=2 -ETPTopicOrder0=59 +ETPTopicOrder0=44 [External Topic Properties\ThreePi] Count=1 ETPCommand0=2 -ETPTopicOrder0=3999 +ETPTopicOrder0=3125 [External Topic Properties\TIIDUnion] Count=1 @@ -108473,12 +122104,12 @@ ETPTopicOrder0=499 [External Topic Properties\TImageCorILMethodFat] Count=1 ETPCommand0=2 -ETPTopicOrder0=500 +ETPTopicOrder0=227 [External Topic Properties\TImageCorILMethodHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=125 +ETPTopicOrder0=43 [External Topic Properties\TImageCorILMethodHeader.Fat] Count=1 @@ -108493,37 +122124,37 @@ ETPTopicOrder0=1 [External Topic Properties\TImageCorILMethodSectEH] Count=1 ETPCommand0=2 -ETPTopicOrder0=501 +ETPTopicOrder0=228 [External Topic Properties\TImageCorILMethodSectEHClauseFat] Count=1 ETPCommand0=2 -ETPTopicOrder0=502 +ETPTopicOrder0=229 [External Topic Properties\TImageCorILMethodSectEHClauseSmall] Count=1 ETPCommand0=2 -ETPTopicOrder0=503 +ETPTopicOrder0=230 [External Topic Properties\TImageCorILMethodSectEHFat] Count=1 ETPCommand0=2 -ETPTopicOrder0=504 +ETPTopicOrder0=231 [External Topic Properties\TImageCorILMethodSectEHSmall] Count=1 ETPCommand0=2 -ETPTopicOrder0=505 +ETPTopicOrder0=232 [External Topic Properties\TImageCorILMethodSectFat] Count=1 ETPCommand0=2 -ETPTopicOrder0=506 +ETPTopicOrder0=233 [External Topic Properties\TImageCorILMethodSectHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=126 +ETPTopicOrder0=44 [External Topic Properties\TImageCorILMethodSectHeader.Fat] Count=1 @@ -108538,22 +122169,22 @@ ETPTopicOrder0=1 [External Topic Properties\TImageCorILMethodSectSmall] Count=1 ETPCommand0=2 -ETPTopicOrder0=507 +ETPTopicOrder0=234 [External Topic Properties\TImageCorILMethodTiny] Count=1 ETPCommand0=2 -ETPTopicOrder0=508 +ETPTopicOrder0=235 [External Topic Properties\TImageCorVTableFixup] Count=1 ETPCommand0=2 -ETPTopicOrder0=509 +ETPTopicOrder0=236 [External Topic Properties\TImageCorVTableFixupArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=510 +ETPTopicOrder0=237 [External Topic Properties\TImageDataDirectory] Count=1 @@ -108678,7 +122309,7 @@ ETPTopicOrder0=4000 [External Topic Properties\TimeStampDOW@TTimeStamp] Count=1 ETPCommand0=2 -ETPTopicOrder0=1159 +ETPTopicOrder0=1391 [External Topic Properties\TImgDelayDescrV1] Count=1 @@ -108735,15 +122366,104 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=538 +[External Topic Properties\TInt64ApplyFunction] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=238 + +[External Topic Properties\TInt64Compare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=239 + +[External Topic Properties\TInt64EqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=240 + +[External Topic Properties\TInt64HashConvert] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=241 + +[External Topic Properties\TInt64IterateProcedure] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=242 + +[External Topic Properties\TInt64Setter] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=243 + +[External Topic Properties\TInt64SortProc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=244 + +[External Topic Properties\TIntegerApplyFunction] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=245 + +[External Topic Properties\TIntegerCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=246 + +[External Topic Properties\TIntegerEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=247 + +[External Topic Properties\TIntegerHashConvert] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=248 + +[External Topic Properties\TIntegerIterateProcedure] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=249 + [External Topic Properties\TIntegerSet] Count=1 ETPCommand0=2 ETPTopicOrder0=539 +[External Topic Properties\TIntegerSortProc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=250 + [External Topic Properties\TInternalFindStreamData] Count=1 ETPCommand0=2 -ETPTopicOrder0=129 +ETPTopicOrder0=45 [External Topic Properties\TInternalFindStreamData.Context] Count=1 @@ -108761,39 +122481,113 @@ ETPCommand0=2 ETPTopicOrder0=2 [External Topic Properties\TIntfApplyFunction] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=540 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=251 [External Topic Properties\TIntfCompare] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=541 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=252 + +[External Topic Properties\TIntfEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=253 + +[External Topic Properties\TIntfHashConvert] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=254 + +[External Topic Properties\TIntfIterateProcedure] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=255 [External Topic Properties\TIntfSortProc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=256 + +[External Topic Properties\TIterateProcedure] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=257 + +[External Topic Properties\TItrStart] Count=1 ETPCommand0=2 -ETPTopicOrder0=542 +ETPTopicOrder0=46 + +[External Topic Properties\TJcl7zCompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=69 + +[External Topic Properties\TJcl7zDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=70 + +[External Topic Properties\TJcl7zUpdateArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=71 + +[External Topic Properties\TJclAbstractContainer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\TJclAbstractContainerBase] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=72 + +[External Topic Properties\TJclAbstractIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=73 + +[External Topic Properties\TJclAbstractLockable] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=74 [External Topic Properties\TJclAddr] Count=1 ETPCommand0=2 -ETPTopicOrder0=543 +ETPTopicOrder0=258 [External Topic Properties\TJclAddr32] Count=1 ETPCommand0=2 -ETPTopicOrder0=544 +ETPTopicOrder0=259 [External Topic Properties\TJclAddr64] Count=1 ETPCommand0=2 -ETPTopicOrder0=545 +ETPTopicOrder0=260 [External Topic Properties\TJclAllowedPowerOperation] Count=1 ETPCommand0=2 -ETPTopicOrder0=130 +ETPTopicOrder0=47 [External Topic Properties\TJclAllowedPowerOperation.apoHibernate] Count=1 @@ -108813,7 +122607,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclAllowedPowerOperations] Count=1 ETPCommand0=2 -ETPTopicOrder0=546 +ETPTopicOrder0=261 [External Topic Properties\TJclAnsiCaptureOffset] Count=2 @@ -108839,7 +122633,7 @@ ETPTopicOrder0=5 [External Topic Properties\TJclAnsiCaptureRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=131 +ETPTopicOrder0=262 [External Topic Properties\TJclAnsiCaptureRange.FirstPos] Count=1 @@ -108851,10 +122645,15 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=1 +[External Topic Properties\TJclAnsiMappedTextReader] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=75 + [External Topic Properties\TJclAnsiRegEx] Count=1 ETPCommand0=2 -ETPTopicOrder0=133 +ETPTopicOrder0=263 [External Topic Properties\TJclAnsiRegEx.CalloutHandler@pcre_callout_block] Count=1 @@ -109108,12 +122907,12 @@ ETPTopicOrder0=46 [External Topic Properties\TJclAnsiRegExCallout] Count=1 ETPCommand0=2 -ETPTopicOrder0=547 +ETPTopicOrder0=264 [External Topic Properties\TJclAnsiRegExOption] Count=1 ETPCommand0=2 -ETPTopicOrder0=132 +ETPTopicOrder0=265 [External Topic Properties\TJclAnsiRegExOption.roAnchored] Count=1 @@ -109238,12 +123037,239 @@ ETPTopicOrder0=23 [External Topic Properties\TJclAnsiRegExOptions] Count=1 ETPCommand0=2 -ETPTopicOrder0=548 +ETPTopicOrder0=266 + +[External Topic Properties\TJclAnsiStrAbstractCollection] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=76 + +[External Topic Properties\TJclAnsiStrAbstractContainer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=77 + +[External Topic Properties\TJclAnsiStrAnsiStrBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=78 + +[External Topic Properties\TJclAnsiStrAnsiStrHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=48 + +[External Topic Properties\TJclAnsiStrAnsiStrHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=79 + +[External Topic Properties\TJclAnsiStrAnsiStrSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=49 + +[External Topic Properties\TJclAnsiStrAnsiStrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=80 + +[External Topic Properties\TJclAnsiStrArrayIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=81 + +[External Topic Properties\TJclAnsiStrArrayList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=82 + +[External Topic Properties\TJclAnsiStrArraySet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=83 + +[External Topic Properties\TJclAnsiStrBinaryNode] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=84 + +[External Topic Properties\TJclAnsiStrBinaryTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=85 + +[External Topic Properties\TJclAnsiStrBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=86 + +[External Topic Properties\TJclAnsiStrBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=87 + +[External Topic Properties\TJclAnsiStream] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=88 + +[External Topic Properties\TJclAnsiStrEncoding] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=50 + +[External Topic Properties\TJclAnsiStrHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=51 + +[External Topic Properties\TJclAnsiStrHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=89 + +[External Topic Properties\TJclAnsiStrHashSet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=90 + +[External Topic Properties\TJclAnsiStringList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=91 + +[External Topic Properties\TJclAnsiStringListSortCompare] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=267 + +[External Topic Properties\TJclAnsiStringObjectHolder] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=52 + +[External Topic Properties\TJclAnsiStrings] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=92 + +[External Topic Properties\TJclAnsiStrIntfBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=93 + +[External Topic Properties\TJclAnsiStrIntfHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=53 + +[External Topic Properties\TJclAnsiStrIntfHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=94 + +[External Topic Properties\TJclAnsiStrIntfSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=54 + +[External Topic Properties\TJclAnsiStrIntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=95 + +[External Topic Properties\TJclAnsiStrLinkedList] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=96 + +[External Topic Properties\TJclAnsiStrLinkedListItem] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=97 + +[External Topic Properties\TJclAnsiStrLinkedListIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=98 + +[External Topic Properties\TJclAnsiStrQueue] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=99 + +[External Topic Properties\TJclAnsiStrSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=55 + +[External Topic Properties\TJclAnsiStrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=100 + +[External Topic Properties\TJclAnsiStrStack] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=101 + +[External Topic Properties\TJclAnsiStrTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=102 + +[External Topic Properties\TJclAnsiStrTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=103 + +[External Topic Properties\TJclAnsiStrTreeNode] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=104 + +[External Topic Properties\TJclAnsiStrVector] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=105 + +[External Topic Properties\TJclAnsiStrVectorIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=106 + +[External Topic Properties\TJclAPMDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=107 [External Topic Properties\TJclAppInstances] Count=1 ETPCommand0=2 -ETPTopicOrder0=134 +ETPTopicOrder0=108 [External Topic Properties\TJclAppInstances.AppWnds] Count=1 @@ -109408,12 +123434,22 @@ ETPTopicOrder0=31 [External Topic Properties\TJclAppInstDataKind] Count=1 ETPCommand0=2 -ETPTopicOrder0=549 +ETPTopicOrder0=268 + +[External Topic Properties\TJclArjDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=109 + +[External Topic Properties\TJclArrayIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=110 [External Topic Properties\TJclArraySet] Count=1 ETPCommand0=2 -ETPTopicOrder0=135 +ETPTopicOrder0=111 [External Topic Properties\TJclArraySet.Add@TObject] Count=1 @@ -109458,7 +123494,7 @@ ETPTopicOrder0=7 [External Topic Properties\TJclASet] Count=1 ETPCommand0=2 -ETPTopicOrder0=136 +ETPTopicOrder0=112 [External Topic Properties\TJclASet.Clear] Count=1 @@ -109493,7 +123529,7 @@ ETPTopicOrder0=5 [External Topic Properties\TJclAttributeMatch] Count=1 ETPCommand0=2 -ETPTopicOrder0=133 +ETPTopicOrder0=56 [External Topic Properties\TJclAttributeMatch.amAny] Count=1 @@ -109523,7 +123559,7 @@ ETPTopicOrder0=4 [External Topic Properties\TJclAudioSummaryInformation] Count=1 ETPCommand0=2 -ETPTopicOrder0=137 +ETPTopicOrder0=113 [External Topic Properties\TJclAudioSummaryInformation.AverageDataRate] Count=1 @@ -109575,10 +123611,45 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=9 +[External Topic Properties\TJclAutoGrowStrategy] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=57 + +[External Topic Properties\TJclAutoPackStrategy] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=58 + +[External Topic Properties\TJclAutoPtr] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=114 + +[External Topic Properties\TJclAutoStream] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=115 + +[External Topic Properties\TJclBaseListener] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=116 + +[External Topic Properties\TJclBaseNotificationMessage] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=117 + +[External Topic Properties\TJclBaseNotifier] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=118 + [External Topic Properties\TJclBCBInstallation] Count=1 ETPCommand0=2 -ETPTopicOrder0=138 +ETPTopicOrder0=119 [External Topic Properties\TJclBCBInstallation.ConfigFileName@string] Count=1 @@ -109628,7 +123699,7 @@ ETPTopicOrder0=8 [External Topic Properties\TJclBCC32] Count=1 ETPCommand0=2 -ETPTopicOrder0=139 +ETPTopicOrder0=120 [External Topic Properties\TJclBCC32.Create@TJclBorRADToolInstallation] Count=1 @@ -109648,7 +123719,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclBDSInstallation] Count=1 ETPCommand0=2 -ETPTopicOrder0=140 +ETPTopicOrder0=121 [External Topic Properties\TJclBDSInstallation.AddToCppBrowsingPath@string] Count=1 @@ -109953,12 +124024,12 @@ ETPTopicOrder0=59 [External Topic Properties\TJclBinaryInstruction] Count=1 ETPCommand0=2 -ETPTopicOrder0=141 +ETPTopicOrder0=122 [External Topic Properties\TJclBinaryNode] Count=1 ETPCommand0=2 -ETPTopicOrder0=142 +ETPTopicOrder0=123 [External Topic Properties\TJclBinaryNode.Color] Count=1 @@ -109988,7 +124059,7 @@ ETPTopicOrder0=4 [External Topic Properties\TJclBinaryTree] Count=1 ETPCommand0=2 -ETPTopicOrder0=143 +ETPTopicOrder0=124 [External Topic Properties\TJclBinaryTree.Add@TObject] Count=1 @@ -110110,10 +124181,15 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=23 +[External Topic Properties\TJclBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=125 + [External Topic Properties\TJclBinDbgNameCache] Count=1 ETPCommand0=2 -ETPTopicOrder0=134 +ETPTopicOrder0=59 [External Topic Properties\TJclBinDbgNameCache.Addr] Count=1 @@ -110130,10 +124206,30 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=2 +[External Topic Properties\TJclBooleanEvent] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=269 + +[External Topic Properties\TJclBooleanEventBroadcast] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=126 + +[External Topic Properties\TJclBooleanProcedureEvent] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=270 + +[External Topic Properties\TJclBooleanProcedureEventBroadcast] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=127 + [External Topic Properties\TJclBorDesigner] Count=1 ETPCommand0=2 -ETPTopicOrder0=135 +ETPTopicOrder0=60 [External Topic Properties\TJclBorDesigner.bdCLX] Count=1 @@ -110148,12 +124244,12 @@ ETPTopicOrder0=1 [External Topic Properties\TJclBorDesigners] Count=1 ETPCommand0=2 -ETPTopicOrder0=550 +ETPTopicOrder0=271 [External Topic Properties\TJclBorlandCommandLineTool] Count=1 ETPCommand0=2 -ETPTopicOrder0=144 +ETPTopicOrder0=128 [External Topic Properties\TJclBorlandCommandLineTool.AddPathOption@string@string] Count=1 @@ -110245,10 +124341,15 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=17 +[External Topic Properties\TJclBorlandCommandLineToolEvent] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=272 + [External Topic Properties\TJclBorlandMake] Count=1 ETPCommand0=2 -ETPTopicOrder0=145 +ETPTopicOrder0=129 [External Topic Properties\TJclBorlandMake.GetExeName] Count=1 @@ -110258,7 +124359,7 @@ ETPTopicOrder0=0 [External Topic Properties\TJclBorlandOpenHelp] Count=1 ETPCommand0=2 -ETPTopicOrder0=146 +ETPTopicOrder0=130 [External Topic Properties\TJclBorlandOpenHelp.AddHelpFile@string@string] Count=1 @@ -110328,12 +124429,12 @@ ETPTopicOrder0=12 [External Topic Properties\TJclBorPersonalities] Count=1 ETPCommand0=2 -ETPTopicOrder0=551 +ETPTopicOrder0=273 [External Topic Properties\TJclBorPersonality] Count=1 ETPCommand0=2 -ETPTopicOrder0=136 +ETPTopicOrder0=61 [External Topic Properties\TJclBorPersonality.bpBCBuilder32] Count=1 @@ -110398,7 +124499,7 @@ ETPTopicOrder0=11 [External Topic Properties\TJclBorPlatform] Count=1 ETPCommand0=2 -ETPTopicOrder0=137 +ETPTopicOrder0=62 [External Topic Properties\TJclBorPlatform.bp32bit] Count=1 @@ -110413,7 +124514,7 @@ ETPTopicOrder0=1 [External Topic Properties\TJclBorRADToolEdition] Count=1 ETPCommand0=2 -ETPTopicOrder0=138 +ETPTopicOrder0=63 [External Topic Properties\TJclBorRADToolEdition.deARC] Count=1 @@ -110438,7 +124539,7 @@ ETPTopicOrder0=3 [External Topic Properties\TJclBorRADToolIdePackages] Count=1 ETPCommand0=2 -ETPTopicOrder0=147 +ETPTopicOrder0=131 [External Topic Properties\TJclBorRADToolIdePackages.AddExpert@string@string] Count=1 @@ -110618,7 +124719,7 @@ ETPTopicOrder0=34 [External Topic Properties\TJclBorRADToolIdeTool] Count=1 ETPCommand0=2 -ETPTopicOrder0=148 +ETPTopicOrder0=132 [External Topic Properties\TJclBorRADToolIdeTool.CheckIndex@Integer] Count=1 @@ -110733,7 +124834,7 @@ ETPTopicOrder0=21 [External Topic Properties\TJclBorRADToolInstallation] Count=1 ETPCommand0=2 -ETPTopicOrder0=149 +ETPTopicOrder0=133 [External Topic Properties\TJclBorRADToolInstallation.AddToDebugDCUPath@string] Count=1 @@ -111568,12 +125669,12 @@ ETPTopicOrder0=164 [External Topic Properties\TJclBorRADToolInstallationClass] Count=1 ETPCommand0=2 -ETPTopicOrder0=552 +ETPTopicOrder0=274 [External Topic Properties\TJclBorRADToolInstallationObject] Count=1 ETPCommand0=2 -ETPTopicOrder0=150 +ETPTopicOrder0=134 [External Topic Properties\TJclBorRADToolInstallationObject.Create@TJclBorRADToolInstallation] Count=1 @@ -111593,7 +125694,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclBorRADToolInstallations] Count=1 ETPCommand0=2 -ETPTopicOrder0=151 +ETPTopicOrder0=135 [External Topic Properties\TJclBorRADToolInstallations.AnyInstanceRunning] Count=1 @@ -111713,7 +125814,7 @@ ETPTopicOrder0=22 [External Topic Properties\TJclBorRADToolKind] Count=1 ETPCommand0=2 -ETPTopicOrder0=139 +ETPTopicOrder0=64 [External Topic Properties\TJclBorRADToolKind.brBorlandDevStudio] Count=1 @@ -111733,7 +125834,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclBorRADToolPalette] Count=1 ETPCommand0=2 -ETPTopicOrder0=152 +ETPTopicOrder0=136 [External Topic Properties\TJclBorRADToolPalette.ComponentsOnTab] Count=1 @@ -111823,12 +125924,12 @@ ETPTopicOrder0=16 [External Topic Properties\TJclBorRADToolPath] Count=1 ETPCommand0=2 -ETPTopicOrder0=553 +ETPTopicOrder0=275 [External Topic Properties\TJclBorRADToolRepository] Count=1 ETPCommand0=2 -ETPTopicOrder0=153 +ETPTopicOrder0=137 [External Topic Properties\TJclBorRADToolRepository.AddObject@string@string@string@string@string@string@string@string@string] Count=1 @@ -111903,12 +126004,12 @@ ETPTopicOrder0=13 [External Topic Properties\TJclBorUmSymbolModifiers] Count=1 ETPCommand0=2 -ETPTopicOrder0=554 +ETPTopicOrder0=276 [External Topic Properties\TJclBpr2Mak] Count=1 ETPCommand0=2 -ETPTopicOrder0=154 +ETPTopicOrder0=138 [External Topic Properties\TJclBpr2Mak.GetExeName] Count=1 @@ -111918,7 +126019,7 @@ ETPTopicOrder0=0 [External Topic Properties\TJclBriefCaseSummaryInformation] Count=1 ETPCommand0=2 -ETPTopicOrder0=155 +ETPTopicOrder0=139 [External Topic Properties\TJclBriefCaseSummaryInformation.GetFMTID] Count=1 @@ -111928,7 +126029,7 @@ ETPTopicOrder0=0 [External Topic Properties\TJclBucket] Count=1 ETPCommand0=2 -ETPTopicOrder0=156 +ETPTopicOrder0=140 [External Topic Properties\TJclBucket.Entries] Count=1 @@ -111948,7 +126049,7 @@ ETPTopicOrder0=555 [External Topic Properties\TJclBufferedStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=157 +ETPTopicOrder0=141 [External Topic Properties\TJclBufferedStream.BufferHit] Count=1 @@ -112053,12 +126154,12 @@ ETPTopicOrder0=19 [External Topic Properties\TJclByteArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=556 +ETPTopicOrder0=277 [External Topic Properties\TJclByteMap] Count=1 ETPCommand0=2 -ETPTopicOrder0=158 +ETPTopicOrder0=142 [External Topic Properties\TJclByteMap.Assign] Count=1 @@ -112153,12 +126254,27 @@ ETPTopicOrder0=1 [External Topic Properties\TJclBytes] Count=1 ETPCommand0=2 -ETPTopicOrder0=557 +ETPTopicOrder0=278 + +[External Topic Properties\TJclBZ2CompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=143 + +[External Topic Properties\TJclBZ2DecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=144 + +[External Topic Properties\TJclBZ2UpdateArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=145 [External Topic Properties\TJclBZIP2CompressionStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=159 +ETPTopicOrder0=146 [External Topic Properties\TJclBZIP2CompressionStream.BZLibRecord] Count=1 @@ -112213,7 +126329,7 @@ ETPTopicOrder0=9 [External Topic Properties\TJclBZIP2DecompressionStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=160 +ETPTopicOrder0=147 [External Topic Properties\TJclBZIP2DecompressionStream.BZLibRecord] Count=1 @@ -112245,10 +126361,207 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=5 +[External Topic Properties\TJclCabDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=148 + +[External Topic Properties\TJclCaptureRange] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=65 + +[External Topic Properties\TJclCardinalAbstractContainer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=149 + +[External Topic Properties\TJclCardinalArrayIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=150 + +[External Topic Properties\TJclCardinalArrayList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=151 + +[External Topic Properties\TJclCardinalArraySet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=152 + +[External Topic Properties\TJclCardinalBinaryNode] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=153 + +[External Topic Properties\TJclCardinalBinaryTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=154 + +[External Topic Properties\TJclCardinalBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=155 + +[External Topic Properties\TJclCardinalBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=156 + +[External Topic Properties\TJclCardinalCardinalBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=157 + +[External Topic Properties\TJclCardinalCardinalHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=66 + +[External Topic Properties\TJclCardinalCardinalHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=158 + +[External Topic Properties\TJclCardinalCardinalSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=67 + +[External Topic Properties\TJclCardinalCardinalSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=159 + +[External Topic Properties\TJclCardinalHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=68 + +[External Topic Properties\TJclCardinalHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=160 + +[External Topic Properties\TJclCardinalHashSet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=161 + +[External Topic Properties\TJclCardinalIntfBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=162 + +[External Topic Properties\TJclCardinalIntfHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=69 + +[External Topic Properties\TJclCardinalIntfHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=163 + +[External Topic Properties\TJclCardinalIntfSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=70 + +[External Topic Properties\TJclCardinalIntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=164 + +[External Topic Properties\TJclCardinalLinkedList] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=165 + +[External Topic Properties\TJclCardinalLinkedListItem] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=166 + +[External Topic Properties\TJclCardinalLinkedListIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=167 + +[External Topic Properties\TJclCardinalQueue] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=168 + +[External Topic Properties\TJclCardinalSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=71 + +[External Topic Properties\TJclCardinalSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=169 + +[External Topic Properties\TJclCardinalStack] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=170 + +[External Topic Properties\TJclCardinalTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=171 + +[External Topic Properties\TJclCardinalTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=172 + +[External Topic Properties\TJclCardinalTreeNode] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=173 + +[External Topic Properties\TJclCardinalVector] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=174 + +[External Topic Properties\TJclCardinalVectorIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=175 + [External Topic Properties\TJclCdMediaInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=140 +ETPTopicOrder0=72 [External Topic Properties\TJclCdMediaInfo.miIdentity] Count=1 @@ -112268,7 +126581,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclCdTrackInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=141 +ETPTopicOrder0=73 [External Topic Properties\TJclCdTrackInfo.Minute] Count=1 @@ -112288,12 +126601,12 @@ ETPTopicOrder0=2 [External Topic Properties\TJclCdTrackInfoArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=558 +ETPTopicOrder0=279 [External Topic Properties\TJclCdTrackType] Count=1 ETPCommand0=2 -ETPTopicOrder0=142 +ETPTopicOrder0=74 [External Topic Properties\TJclCdTrackType.ttAudio] Count=1 @@ -112305,10 +126618,25 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=1 +[External Topic Properties\TJclCharsetInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=75 + +[External Topic Properties\TJclChmDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=176 + +[External Topic Properties\TJclClassTypeInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=177 + [External Topic Properties\TJclClrAppDomain] Count=1 ETPCommand0=2 -ETPTopicOrder0=161 +ETPTopicOrder0=178 [External Topic Properties\TJclClrAppDomain.Create@TJclClrHost@IJclClrAppDomain] Count=1 @@ -112368,7 +126696,7 @@ ETPTopicOrder0=7 [External Topic Properties\TJclClrAppDomainSetup] Count=1 ETPCommand0=2 -ETPTopicOrder0=162 +ETPTopicOrder0=179 [External Topic Properties\TJclClrAppDomainSetup.ApplicationBase] Count=1 @@ -112538,7 +126866,7 @@ ETPTopicOrder0=32 [External Topic Properties\TJclClrArrayData] Count=1 ETPCommand0=2 -ETPTopicOrder0=143 +ETPTopicOrder0=76 [External Topic Properties\TJclClrArrayData.adLowBound] Count=1 @@ -112553,7 +126881,7 @@ ETPTopicOrder0=1 [External Topic Properties\TJclClrArraySign] Count=1 ETPCommand0=2 -ETPTopicOrder0=163 +ETPTopicOrder0=180 [External Topic Properties\TJclClrArraySign.Create@TJclClrBlobRecord] Count=1 @@ -112568,17 +126896,17 @@ ETPTopicOrder0=1 [External Topic Properties\TJclClrArraySignBound] Count=1 ETPCommand0=2 -ETPTopicOrder0=559 +ETPTopicOrder0=280 [External Topic Properties\TJclClrArraySignBounds] Count=1 ETPCommand0=2 -ETPTopicOrder0=560 +ETPTopicOrder0=281 [External Topic Properties\TJclClrAssembly] Count=1 ETPCommand0=2 -ETPTopicOrder0=164 +ETPTopicOrder0=181 [External Topic Properties\TJclClrAssembly.Create@IJclClrAssembly] Count=1 @@ -112598,12 +126926,12 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrAssemblyArguments] Count=1 ETPCommand0=2 -ETPTopicOrder0=561 +ETPTopicOrder0=282 [External Topic Properties\TJclClrAssemblyFlag] Count=1 ETPCommand0=2 -ETPTopicOrder0=144 +ETPTopicOrder0=77 [External Topic Properties\TJclClrAssemblyFlag.cafCompatibilityMask] Count=1 @@ -112648,17 +126976,17 @@ ETPTopicOrder0=7 [External Topic Properties\TJclClrAssemblyFlags] Count=1 ETPCommand0=2 -ETPTopicOrder0=562 +ETPTopicOrder0=283 [External Topic Properties\TJclClrBase] Count=1 ETPCommand0=2 -ETPTopicOrder0=563 +ETPTopicOrder0=284 [External Topic Properties\TJclClrBlobRecord] Count=1 ETPCommand0=2 -ETPTopicOrder0=165 +ETPTopicOrder0=182 [External Topic Properties\TJclClrBlobRecord.Create@TJclClrStream@PJclByteArray] Count=1 @@ -112703,7 +127031,7 @@ ETPTopicOrder0=7 [External Topic Properties\TJclClrBlobStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=166 +ETPTopicOrder0=183 [External Topic Properties\TJclClrBlobStream.At@DWORD] Count=1 @@ -112748,7 +127076,7 @@ ETPTopicOrder0=7 [External Topic Properties\TJclClrClassLayout] Count=1 ETPCommand0=2 -ETPTopicOrder0=145 +ETPTopicOrder0=78 [External Topic Properties\TJclClrClassLayout.clAuto] Count=1 @@ -112768,7 +127096,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrClassSemantics] Count=1 ETPCommand0=2 -ETPTopicOrder0=146 +ETPTopicOrder0=79 [External Topic Properties\TJclClrClassSemantics.csClass] Count=1 @@ -112783,7 +127111,7 @@ ETPTopicOrder0=1 [External Topic Properties\TJclClrCodeBlock] Count=1 ETPCommand0=2 -ETPTopicOrder0=147 +ETPTopicOrder0=80 [External Topic Properties\TJclClrCodeBlock.Length] Count=1 @@ -112798,7 +127126,7 @@ ETPTopicOrder0=1 [External Topic Properties\TJclClrComboIndex] Count=1 ETPCommand0=2 -ETPTopicOrder0=148 +ETPTopicOrder0=81 [External Topic Properties\TJclClrComboIndex.ciResolutionScope] Count=1 @@ -112808,7 +127136,7 @@ ETPTopicOrder0=0 [External Topic Properties\TJclClrCustomModifierSign] Count=1 ETPCommand0=2 -ETPTopicOrder0=167 +ETPTopicOrder0=184 [External Topic Properties\TJclClrCustomModifierSign.Create@TJclClrBlobRecord] Count=1 @@ -112838,7 +127166,7 @@ ETPTopicOrder0=4 [External Topic Properties\TJclClrElementType] Count=1 ETPCommand0=2 -ETPTopicOrder0=149 +ETPTopicOrder0=82 [External Topic Properties\TJclClrElementType.etArray] Count=1 @@ -113008,7 +127336,7 @@ ETPTopicOrder0=32 [External Topic Properties\TJclClrExceptionClauseFlag] Count=1 ETPCommand0=2 -ETPTopicOrder0=150 +ETPTopicOrder0=83 [External Topic Properties\TJclClrExceptionClauseFlag.cfException] Count=1 @@ -113033,12 +127361,12 @@ ETPTopicOrder0=3 [External Topic Properties\TJclClrExceptionClauseFlags] Count=1 ETPCommand0=2 -ETPTopicOrder0=564 +ETPTopicOrder0=285 [External Topic Properties\TJclClrExceptionHandler] Count=1 ETPCommand0=2 -ETPTopicOrder0=168 +ETPTopicOrder0=185 [External Topic Properties\TJclClrExceptionHandler.ClassToken] Count=1 @@ -113113,12 +127441,12 @@ ETPTopicOrder0=12 [External Topic Properties\TJclClrField] Count=1 ETPCommand0=2 -ETPTopicOrder0=169 +ETPTopicOrder0=186 [External Topic Properties\TJclClrGuidStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=170 +ETPTopicOrder0=187 [External Topic Properties\TJclClrGuidStream.Create@TJclPeMetadata@PClrStreamHeader] Count=1 @@ -113153,7 +127481,7 @@ ETPTopicOrder0=5 [External Topic Properties\TJclClrHeaderEx] Count=1 ETPCommand0=2 -ETPTopicOrder0=171 +ETPTopicOrder0=188 [External Topic Properties\TJclClrHeaderEx.ClrImageFlag@DWORD] Count=1 @@ -113308,7 +127636,7 @@ ETPTopicOrder0=28 [External Topic Properties\TJclClrHeapKind] Count=1 ETPCommand0=2 -ETPTopicOrder0=151 +ETPTopicOrder0=84 [External Topic Properties\TJclClrHeapKind.hkBlob] Count=1 @@ -113328,7 +127656,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrHost] Count=1 ETPCommand0=2 -ETPTopicOrder0=172 +ETPTopicOrder0=189 [External Topic Properties\TJclClrHost.AddAppDomain@TJclClrAppDomain] Count=1 @@ -113473,7 +127801,7 @@ ETPTopicOrder0=25 [External Topic Properties\TJclClrHostFlavor] Count=1 ETPCommand0=2 -ETPTopicOrder0=152 +ETPTopicOrder0=85 [External Topic Properties\TJclClrHostFlavor.hfServer] Count=1 @@ -113488,7 +127816,7 @@ ETPTopicOrder0=1 [External Topic Properties\TJclClrHostLoaderFlag] Count=1 ETPCommand0=2 -ETPTopicOrder0=153 +ETPTopicOrder0=86 [External Topic Properties\TJclClrHostLoaderFlag.hlOptMultiDomain] Count=1 @@ -113518,12 +127846,12 @@ ETPTopicOrder0=4 [External Topic Properties\TJclClrHostLoaderFlags] Count=1 ETPCommand0=2 -ETPTopicOrder0=565 +ETPTopicOrder0=286 [External Topic Properties\TJclClrILGenerator] Count=1 ETPCommand0=2 -ETPTopicOrder0=173 +ETPTopicOrder0=190 [External Topic Properties\TJclClrILGenerator.Create@TJclClrMethodBody] Count=1 @@ -113578,7 +127906,7 @@ ETPTopicOrder0=9 [External Topic Properties\TJclClrImageFlag] Count=1 ETPCommand0=2 -ETPTopicOrder0=154 +ETPTopicOrder0=87 [External Topic Properties\TJclClrImageFlag.cif32BitRequired] Count=1 @@ -113603,12 +127931,12 @@ ETPTopicOrder0=3 [External Topic Properties\TJclClrImageFlags] Count=1 ETPCommand0=2 -ETPTopicOrder0=566 +ETPTopicOrder0=287 [External Topic Properties\TJclClrLocalVar] Count=1 ETPCommand0=2 -ETPTopicOrder0=174 +ETPTopicOrder0=191 [External Topic Properties\TJclClrLocalVar.ElementType] Count=1 @@ -113653,7 +127981,7 @@ ETPTopicOrder0=7 [External Topic Properties\TJclClrLocalVarFlag] Count=1 ETPCommand0=2 -ETPTopicOrder0=155 +ETPTopicOrder0=88 [External Topic Properties\TJclClrLocalVarFlag.lvfByRef] Count=1 @@ -113668,12 +127996,12 @@ ETPTopicOrder0=1 [External Topic Properties\TJclClrLocalVarFlags] Count=1 ETPCommand0=2 -ETPTopicOrder0=567 +ETPTopicOrder0=288 [External Topic Properties\TJclClrLocalVarSign] Count=1 ETPCommand0=2 -ETPTopicOrder0=175 +ETPTopicOrder0=192 [External Topic Properties\TJclClrLocalVarSign.Create@TJclClrBlobRecord] Count=1 @@ -113713,7 +128041,7 @@ ETPTopicOrder0=6 [External Topic Properties\TJclClrMemberAccess] Count=1 ETPCommand0=2 -ETPTopicOrder0=156 +ETPTopicOrder0=89 [External Topic Properties\TJclClrMemberAccess.maAssembly] Count=1 @@ -113753,7 +128081,7 @@ ETPTopicOrder0=6 [External Topic Properties\TJclClrMethod] Count=1 ETPCommand0=2 -ETPTopicOrder0=176 +ETPTopicOrder0=193 [External Topic Properties\TJclClrMethod.DefaultInterface] Count=1 @@ -113768,7 +128096,7 @@ ETPTopicOrder0=1 [External Topic Properties\TJclClrMethodBody] Count=1 ETPCommand0=2 -ETPTopicOrder0=177 +ETPTopicOrder0=194 [External Topic Properties\TJclClrMethodBody.AddEHTable@PImageCorILMethodSectEH] Count=1 @@ -113898,7 +128226,7 @@ ETPTopicOrder0=24 [External Topic Properties\TJclClrMethodCodeType] Count=1 ETPCommand0=2 -ETPTopicOrder0=157 +ETPTopicOrder0=90 [External Topic Properties\TJclClrMethodCodeType.ctIL] Count=1 @@ -113923,7 +128251,7 @@ ETPTopicOrder0=3 [External Topic Properties\TJclClrMethodFlag] Count=1 ETPCommand0=2 -ETPTopicOrder0=158 +ETPTopicOrder0=91 [External Topic Properties\TJclClrMethodFlag.mfAbstract] Count=1 @@ -113988,12 +128316,12 @@ ETPTopicOrder0=11 [External Topic Properties\TJclClrMethodFlags] Count=1 ETPCommand0=2 -ETPTopicOrder0=568 +ETPTopicOrder0=289 [External Topic Properties\TJclClrMethodImplFlag] Count=1 ETPCommand0=2 -ETPTopicOrder0=159 +ETPTopicOrder0=92 [External Topic Properties\TJclClrMethodImplFlag.mifForwardRef] Count=1 @@ -114023,12 +128351,12 @@ ETPTopicOrder0=4 [External Topic Properties\TJclClrMethodImplFlags] Count=1 ETPCommand0=2 -ETPTopicOrder0=569 +ETPTopicOrder0=290 [External Topic Properties\TJclClrMethodParam] Count=1 ETPCommand0=2 -ETPTopicOrder0=178 +ETPTopicOrder0=195 [External Topic Properties\TJclClrMethodParam.ArraySign] Count=1 @@ -114118,12 +128446,12 @@ ETPTopicOrder0=16 [External Topic Properties\TJclClrMethodRetType] Count=1 ETPCommand0=2 -ETPTopicOrder0=179 +ETPTopicOrder0=196 [External Topic Properties\TJclClrMethodSign] Count=1 ETPCommand0=2 -ETPTopicOrder0=180 +ETPTopicOrder0=197 [External Topic Properties\TJclClrMethodSign.Create@TJclClrBlobRecord] Count=1 @@ -114183,7 +128511,7 @@ ETPTopicOrder0=10 [External Topic Properties\TJclClrMethodSignFlag] Count=1 ETPCommand0=2 -ETPTopicOrder0=160 +ETPTopicOrder0=93 [External Topic Properties\TJclClrMethodSignFlag.mfDefault] Count=1 @@ -114208,12 +128536,12 @@ ETPTopicOrder0=3 [External Topic Properties\TJclClrMethodSignFlags] Count=1 ETPCommand0=2 -ETPTopicOrder0=570 +ETPTopicOrder0=291 [External Topic Properties\TJclClrObject] Count=1 ETPCommand0=2 -ETPTopicOrder0=181 +ETPTopicOrder0=198 [External Topic Properties\TJclClrObject.Create@WideString@WideString@WideString@array of const] Count=1 @@ -114258,7 +128586,7 @@ ETPTopicOrder0=6 [External Topic Properties\TJclClrParamKind] Count=1 ETPCommand0=2 -ETPTopicOrder0=161 +ETPTopicOrder0=94 [External Topic Properties\TJclClrParamKind.pkHasDefault] Count=1 @@ -114288,17 +128616,17 @@ ETPTopicOrder0=4 [External Topic Properties\TJclClrParamKinds] Count=1 ETPCommand0=2 -ETPTopicOrder0=571 +ETPTopicOrder0=292 [External Topic Properties\TJclClrProperty] Count=1 ETPCommand0=2 -ETPTopicOrder0=182 +ETPTopicOrder0=199 [External Topic Properties\TJclClrResourceRecord] Count=1 ETPCommand0=2 -ETPTopicOrder0=183 +ETPTopicOrder0=200 [External Topic Properties\TJclClrResourceRecord.Create@PChar@DWORD@DWORD] Count=1 @@ -114338,7 +128666,7 @@ ETPTopicOrder0=6 [External Topic Properties\TJclClrSignature] Count=1 ETPCommand0=2 -ETPTopicOrder0=184 +ETPTopicOrder0=201 [External Topic Properties\TJclClrSignature.Blob] Count=1 @@ -114438,7 +128766,7 @@ ETPTopicOrder0=18 [External Topic Properties\TJclClrStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=185 +ETPTopicOrder0=202 [External Topic Properties\TJclClrStream.Create@TJclPeMetadata@PClrStreamHeader] Count=1 @@ -114508,12 +128836,12 @@ ETPTopicOrder0=12 [External Topic Properties\TJclClrStreamClass] Count=1 ETPCommand0=2 -ETPTopicOrder0=572 +ETPTopicOrder0=293 [External Topic Properties\TJclClrStringFormatting] Count=1 ETPCommand0=2 -ETPTopicOrder0=162 +ETPTopicOrder0=95 [External Topic Properties\TJclClrStringFormatting.sfAnsi] Count=1 @@ -114533,7 +128861,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrStringsStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=186 +ETPTopicOrder0=203 [External Topic Properties\TJclClrStringsStream.At@DWORD] Count=1 @@ -114588,7 +128916,7 @@ ETPTopicOrder0=9 [External Topic Properties\TJclClrTable] Count=1 ETPCommand0=2 -ETPTopicOrder0=187 +ETPTopicOrder0=204 [External Topic Properties\TJclClrTable.AddRow@TJclClrTableRow] Count=1 @@ -114768,7 +129096,7 @@ ETPTopicOrder0=32 [External Topic Properties\TJclClrTableAssembly] Count=1 ETPCommand0=2 -ETPTopicOrder0=188 +ETPTopicOrder0=205 [External Topic Properties\TJclClrTableAssembly.GetRow@Integer] Count=1 @@ -114788,7 +129116,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableAssemblyOS] Count=1 ETPCommand0=2 -ETPTopicOrder0=189 +ETPTopicOrder0=206 [External Topic Properties\TJclClrTableAssemblyOS.GetRow@Integer] Count=1 @@ -114808,7 +129136,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableAssemblyOSRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=190 +ETPTopicOrder0=207 [External Topic Properties\TJclClrTableAssemblyOSRow.Create@TJclClrTable] Count=1 @@ -114858,7 +129186,7 @@ ETPTopicOrder0=8 [External Topic Properties\TJclClrTableAssemblyProcessor] Count=1 ETPCommand0=2 -ETPTopicOrder0=191 +ETPTopicOrder0=208 [External Topic Properties\TJclClrTableAssemblyProcessor.GetRow@Integer] Count=1 @@ -114878,7 +129206,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableAssemblyProcessorRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=192 +ETPTopicOrder0=209 [External Topic Properties\TJclClrTableAssemblyProcessorRow.Create@TJclClrTable] Count=1 @@ -114898,7 +129226,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableAssemblyRef] Count=1 ETPCommand0=2 -ETPTopicOrder0=193 +ETPTopicOrder0=210 [External Topic Properties\TJclClrTableAssemblyRef.GetRow@Integer] Count=1 @@ -114918,7 +129246,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableAssemblyRefOS] Count=1 ETPCommand0=2 -ETPTopicOrder0=194 +ETPTopicOrder0=211 [External Topic Properties\TJclClrTableAssemblyRefOS.GetRow@Integer] Count=1 @@ -114938,7 +129266,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableAssemblyRefOSRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=195 +ETPTopicOrder0=212 [External Topic Properties\TJclClrTableAssemblyRefOSRow.AssemblyRef] Count=1 @@ -114968,7 +129296,7 @@ ETPTopicOrder0=4 [External Topic Properties\TJclClrTableAssemblyRefProcessor] Count=1 ETPCommand0=2 -ETPTopicOrder0=196 +ETPTopicOrder0=213 [External Topic Properties\TJclClrTableAssemblyRefProcessor.GetRow@Integer] Count=1 @@ -114988,7 +129316,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableAssemblyRefProcessorRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=197 +ETPTopicOrder0=214 [External Topic Properties\TJclClrTableAssemblyRefProcessorRow.AssemblyRef] Count=1 @@ -115018,7 +129346,7 @@ ETPTopicOrder0=4 [External Topic Properties\TJclClrTableAssemblyRefRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=198 +ETPTopicOrder0=215 [External Topic Properties\TJclClrTableAssemblyRefRow.BuildNumber] Count=1 @@ -115183,7 +129511,7 @@ ETPTopicOrder0=31 [External Topic Properties\TJclClrTableAssemblyRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=199 +ETPTopicOrder0=216 [External Topic Properties\TJclClrTableAssemblyRow.AssemblyFlags@DWORD] Count=1 @@ -115348,12 +129676,12 @@ ETPTopicOrder0=30 [External Topic Properties\TJclClrTableClass] Count=1 ETPCommand0=2 -ETPTopicOrder0=573 +ETPTopicOrder0=294 [External Topic Properties\TJclClrTableClassLayout] Count=1 ETPCommand0=2 -ETPTopicOrder0=200 +ETPTopicOrder0=217 [External Topic Properties\TJclClrTableClassLayout.GetRow@Integer] Count=1 @@ -115373,7 +129701,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableClassLayoutRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=201 +ETPTopicOrder0=218 [External Topic Properties\TJclClrTableClassLayoutRow.ClassSize] Count=1 @@ -115413,7 +129741,7 @@ ETPTopicOrder0=6 [External Topic Properties\TJclClrTableConstant] Count=1 ETPCommand0=2 -ETPTopicOrder0=202 +ETPTopicOrder0=219 [External Topic Properties\TJclClrTableConstant.GetRow@Integer] Count=1 @@ -115433,7 +129761,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableConstantRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=203 +ETPTopicOrder0=220 [External Topic Properties\TJclClrTableConstantRow.Create@TJclClrTable] Count=1 @@ -115508,7 +129836,7 @@ ETPTopicOrder0=13 [External Topic Properties\TJclClrTableCustomAttribute] Count=1 ETPCommand0=2 -ETPTopicOrder0=204 +ETPTopicOrder0=221 [External Topic Properties\TJclClrTableCustomAttribute.GetRow@Integer] Count=1 @@ -115528,7 +129856,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableCustomAttributeRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=205 +ETPTopicOrder0=222 [External Topic Properties\TJclClrTableCustomAttributeRow.Create@TJclClrTable] Count=1 @@ -115603,7 +129931,7 @@ ETPTopicOrder0=13 [External Topic Properties\TJclClrTableDeclSecurity] Count=1 ETPCommand0=2 -ETPTopicOrder0=206 +ETPTopicOrder0=223 [External Topic Properties\TJclClrTableDeclSecurity.GetRow@Integer] Count=1 @@ -115623,7 +129951,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableDeclSecurityRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=207 +ETPTopicOrder0=224 [External Topic Properties\TJclClrTableDeclSecurityRow.Action] Count=1 @@ -115663,7 +129991,7 @@ ETPTopicOrder0=6 [External Topic Properties\TJclClrTableENCLog] Count=1 ETPCommand0=2 -ETPTopicOrder0=208 +ETPTopicOrder0=225 [External Topic Properties\TJclClrTableENCLog.GetRow@Integer] Count=1 @@ -115683,7 +130011,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableENCLogRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=209 +ETPTopicOrder0=226 [External Topic Properties\TJclClrTableENCLogRow.Create@TJclClrTable] Count=1 @@ -115703,7 +130031,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableENCMap] Count=1 ETPCommand0=2 -ETPTopicOrder0=210 +ETPTopicOrder0=227 [External Topic Properties\TJclClrTableENCMap.GetRow@Integer] Count=1 @@ -115723,7 +130051,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableENCMapRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=211 +ETPTopicOrder0=228 [External Topic Properties\TJclClrTableENCMapRow.Create@TJclClrTable] Count=1 @@ -115748,7 +130076,7 @@ ETPTopicOrder0=3 [External Topic Properties\TJclClrTableEventDef] Count=1 ETPCommand0=2 -ETPTopicOrder0=212 +ETPTopicOrder0=229 [External Topic Properties\TJclClrTableEventDef.GetRow@Integer] Count=1 @@ -115768,7 +130096,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableEventDefRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=213 +ETPTopicOrder0=230 [External Topic Properties\TJclClrTableEventDefRow.Create@TJclClrTable] Count=1 @@ -115818,7 +130146,7 @@ ETPTopicOrder0=8 [External Topic Properties\TJclClrTableEventFlag] Count=1 ETPCommand0=2 -ETPTopicOrder0=163 +ETPTopicOrder0=96 [External Topic Properties\TJclClrTableEventFlag.efRTSpecialName] Count=1 @@ -115833,12 +130161,12 @@ ETPTopicOrder0=1 [External Topic Properties\TJclClrTableEventFlags] Count=1 ETPCommand0=2 -ETPTopicOrder0=574 +ETPTopicOrder0=295 [External Topic Properties\TJclClrTableEventMap] Count=1 ETPCommand0=2 -ETPTopicOrder0=214 +ETPTopicOrder0=231 [External Topic Properties\TJclClrTableEventMap.GetRow@Integer] Count=1 @@ -115858,7 +130186,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableEventMapRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=215 +ETPTopicOrder0=232 [External Topic Properties\TJclClrTableEventMapRow.Create@TJclClrTable] Count=1 @@ -115888,7 +130216,7 @@ ETPTopicOrder0=4 [External Topic Properties\TJclClrTableEventPtr] Count=1 ETPCommand0=2 -ETPTopicOrder0=216 +ETPTopicOrder0=233 [External Topic Properties\TJclClrTableEventPtr.GetRow@Integer] Count=1 @@ -115908,7 +130236,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableEventPtrRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=217 +ETPTopicOrder0=234 [External Topic Properties\TJclClrTableEventPtrRow.Create@TJclClrTable] Count=1 @@ -115938,7 +130266,7 @@ ETPTopicOrder0=4 [External Topic Properties\TJclClrTableExportedType] Count=1 ETPCommand0=2 -ETPTopicOrder0=218 +ETPTopicOrder0=235 [External Topic Properties\TJclClrTableExportedType.GetRow@Integer] Count=1 @@ -115958,7 +130286,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableExportedTypeRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=219 +ETPTopicOrder0=236 [External Topic Properties\TJclClrTableExportedTypeRow.Create@TJclClrTable] Count=1 @@ -116038,7 +130366,7 @@ ETPTopicOrder0=14 [External Topic Properties\TJclClrTableFieldDef] Count=1 ETPCommand0=2 -ETPTopicOrder0=220 +ETPTopicOrder0=237 [External Topic Properties\TJclClrTableFieldDef.GetRow@Integer] Count=1 @@ -116058,7 +130386,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableFieldDefFlag] Count=1 ETPCommand0=2 -ETPTopicOrder0=164 +ETPTopicOrder0=97 [External Topic Properties\TJclClrTableFieldDefFlag.ffHasDefault] Count=1 @@ -116113,12 +130441,12 @@ ETPTopicOrder0=9 [External Topic Properties\TJclClrTableFieldDefFlags] Count=1 ETPCommand0=2 -ETPTopicOrder0=575 +ETPTopicOrder0=296 [External Topic Properties\TJclClrTableFieldDefRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=221 +ETPTopicOrder0=238 [External Topic Properties\TJclClrTableFieldDefRow.Create@TJclClrTable] Count=1 @@ -116218,7 +130546,7 @@ ETPTopicOrder0=18 [External Topic Properties\TJclClrTableFieldDefVisibility] Count=1 ETPCommand0=2 -ETPTopicOrder0=165 +ETPTopicOrder0=98 [External Topic Properties\TJclClrTableFieldDefVisibility.fvAssembly] Count=1 @@ -116258,7 +130586,7 @@ ETPTopicOrder0=6 [External Topic Properties\TJclClrTableFieldLayout] Count=1 ETPCommand0=2 -ETPTopicOrder0=222 +ETPTopicOrder0=239 [External Topic Properties\TJclClrTableFieldLayout.GetRow@Integer] Count=1 @@ -116278,7 +130606,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableFieldLayoutRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=223 +ETPTopicOrder0=240 [External Topic Properties\TJclClrTableFieldLayoutRow.Create@TJclClrTable] Count=1 @@ -116308,7 +130636,7 @@ ETPTopicOrder0=4 [External Topic Properties\TJclClrTableFieldMarshal] Count=1 ETPCommand0=2 -ETPTopicOrder0=224 +ETPTopicOrder0=241 [External Topic Properties\TJclClrTableFieldMarshal.GetRow@Integer] Count=1 @@ -116328,7 +130656,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableFieldMarshalRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=225 +ETPTopicOrder0=242 [External Topic Properties\TJclClrTableFieldMarshalRow.Create@TJclClrTable] Count=1 @@ -116358,7 +130686,7 @@ ETPTopicOrder0=4 [External Topic Properties\TJclClrTableFieldPtr] Count=1 ETPCommand0=2 -ETPTopicOrder0=226 +ETPTopicOrder0=243 [External Topic Properties\TJclClrTableFieldPtr.GetRow@Integer] Count=1 @@ -116378,7 +130706,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableFieldPtrRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=227 +ETPTopicOrder0=244 [External Topic Properties\TJclClrTableFieldPtrRow.Create@TJclClrTable] Count=1 @@ -116408,7 +130736,7 @@ ETPTopicOrder0=4 [External Topic Properties\TJclClrTableFieldRVA] Count=1 ETPCommand0=2 -ETPTopicOrder0=228 +ETPTopicOrder0=245 [External Topic Properties\TJclClrTableFieldRVA.GetRow@Integer] Count=1 @@ -116428,7 +130756,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableFieldRVARow] Count=1 ETPCommand0=2 -ETPTopicOrder0=229 +ETPTopicOrder0=246 [External Topic Properties\TJclClrTableFieldRVARow.Create@TJclClrTable] Count=1 @@ -116458,7 +130786,7 @@ ETPTopicOrder0=4 [External Topic Properties\TJclClrTableFile] Count=1 ETPCommand0=2 -ETPTopicOrder0=230 +ETPTopicOrder0=247 [External Topic Properties\TJclClrTableFile.GetRow@Integer] Count=1 @@ -116478,7 +130806,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableFileRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=231 +ETPTopicOrder0=248 [External Topic Properties\TJclClrTableFileRow.ContainsMetadata] Count=1 @@ -116553,7 +130881,7 @@ ETPTopicOrder0=13 [External Topic Properties\TJclClrTableImplMap] Count=1 ETPCommand0=2 -ETPTopicOrder0=232 +ETPTopicOrder0=249 [External Topic Properties\TJclClrTableImplMap.GetRow@Integer] Count=1 @@ -116573,7 +130901,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableImplMapRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=233 +ETPTopicOrder0=250 [External Topic Properties\TJclClrTableImplMapRow.Create@TJclClrTable] Count=1 @@ -116633,7 +130961,7 @@ ETPTopicOrder0=10 [External Topic Properties\TJclClrTableInterfaceImpl] Count=1 ETPCommand0=2 -ETPTopicOrder0=234 +ETPTopicOrder0=251 [External Topic Properties\TJclClrTableInterfaceImpl.GetRow@Integer] Count=1 @@ -116653,7 +130981,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableInterfaceImplRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=235 +ETPTopicOrder0=252 [External Topic Properties\TJclClrTableInterfaceImplRow.ClassIdx] Count=1 @@ -116708,7 +131036,7 @@ ETPTopicOrder0=9 [External Topic Properties\TJclClrTableKind] Count=1 ETPCommand0=2 -ETPTopicOrder0=166 +ETPTopicOrder0=99 [External Topic Properties\TJclClrTableKind.ttAssembly] Count=1 @@ -116933,7 +131261,7 @@ ETPTopicOrder0=43 [External Topic Properties\TJclClrTableManifestResource] Count=1 ETPCommand0=2 -ETPTopicOrder0=236 +ETPTopicOrder0=253 [External Topic Properties\TJclClrTableManifestResource.GetRow@Integer] Count=1 @@ -116953,7 +131281,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableManifestResourceRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=237 +ETPTopicOrder0=254 [External Topic Properties\TJclClrTableManifestResourceRow.Create@TJclClrTable] Count=1 @@ -117038,7 +131366,7 @@ ETPTopicOrder0=15 [External Topic Properties\TJclClrTableManifestResourceVisibility] Count=1 ETPCommand0=2 -ETPTopicOrder0=167 +ETPTopicOrder0=100 [External Topic Properties\TJclClrTableManifestResourceVisibility.rvPrivate] Count=1 @@ -117053,7 +131381,7 @@ ETPTopicOrder0=1 [External Topic Properties\TJclClrTableMemberRef] Count=1 ETPCommand0=2 -ETPTopicOrder0=238 +ETPTopicOrder0=255 [External Topic Properties\TJclClrTableMemberRef.GetRow@Integer] Count=1 @@ -117073,7 +131401,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableMemberRefRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=239 +ETPTopicOrder0=256 [External Topic Properties\TJclClrTableMemberRefRow.ClassIdx] Count=1 @@ -117153,7 +131481,7 @@ ETPTopicOrder0=14 [External Topic Properties\TJclClrTableMethodDef] Count=1 ETPCommand0=2 -ETPTopicOrder0=240 +ETPTopicOrder0=257 [External Topic Properties\TJclClrTableMethodDef.GetRow@Integer] Count=1 @@ -117173,7 +131501,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableMethodDefRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=241 +ETPTopicOrder0=258 [External Topic Properties\TJclClrTableMethodDefRow.CodeType] Count=1 @@ -117428,7 +131756,7 @@ ETPTopicOrder0=49 [External Topic Properties\TJclClrTableMethodImpl] Count=1 ETPCommand0=2 -ETPTopicOrder0=242 +ETPTopicOrder0=259 [External Topic Properties\TJclClrTableMethodImpl.GetRow@Integer] Count=1 @@ -117448,7 +131776,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableMethodImplRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=243 +ETPTopicOrder0=260 [External Topic Properties\TJclClrTableMethodImplRow.ClassIdx] Count=1 @@ -117488,7 +131816,7 @@ ETPTopicOrder0=6 [External Topic Properties\TJclClrTableMethodPtr] Count=1 ETPCommand0=2 -ETPTopicOrder0=244 +ETPTopicOrder0=261 [External Topic Properties\TJclClrTableMethodPtr.GetRow@Integer] Count=1 @@ -117508,7 +131836,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableMethodPtrRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=245 +ETPTopicOrder0=262 [External Topic Properties\TJclClrTableMethodPtrRow.Create@TJclClrTable] Count=1 @@ -117538,7 +131866,7 @@ ETPTopicOrder0=4 [External Topic Properties\TJclClrTableMethodSemantics] Count=1 ETPCommand0=2 -ETPTopicOrder0=246 +ETPTopicOrder0=263 [External Topic Properties\TJclClrTableMethodSemantics.GetRow@Integer] Count=1 @@ -117558,7 +131886,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableMethodSemanticsRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=247 +ETPTopicOrder0=264 [External Topic Properties\TJclClrTableMethodSemanticsRow.AssociationIdx] Count=1 @@ -117598,7 +131926,7 @@ ETPTopicOrder0=6 [External Topic Properties\TJclClrTableMethodSpec] Count=1 ETPCommand0=2 -ETPTopicOrder0=248 +ETPTopicOrder0=265 [External Topic Properties\TJclClrTableMethodSpec.GetRow@Integer] Count=1 @@ -117618,7 +131946,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableMethodSpecRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=249 +ETPTopicOrder0=266 [External Topic Properties\TJclClrTableMethodSpecRow.Create@TJclClrTable] Count=1 @@ -117668,7 +131996,7 @@ ETPTopicOrder0=8 [External Topic Properties\TJclClrTableModule] Count=1 ETPCommand0=2 -ETPTopicOrder0=250 +ETPTopicOrder0=267 [External Topic Properties\TJclClrTableModule.GetRow@Integer] Count=1 @@ -117688,7 +132016,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableModuleRef] Count=1 ETPCommand0=2 -ETPTopicOrder0=251 +ETPTopicOrder0=268 [External Topic Properties\TJclClrTableModuleRef.GetRow@Integer] Count=1 @@ -117708,7 +132036,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableModuleRefRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=252 +ETPTopicOrder0=269 [External Topic Properties\TJclClrTableModuleRefRow.Create@TJclClrTable] Count=1 @@ -117743,7 +132071,7 @@ ETPTopicOrder0=5 [External Topic Properties\TJclClrTableModuleRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=253 +ETPTopicOrder0=270 [External Topic Properties\TJclClrTableModuleRow.Create@TJclClrTable] Count=1 @@ -117858,7 +132186,7 @@ ETPTopicOrder0=21 [External Topic Properties\TJclClrTableNestedClass] Count=1 ETPCommand0=2 -ETPTopicOrder0=254 +ETPTopicOrder0=271 [External Topic Properties\TJclClrTableNestedClass.GetRow@Integer] Count=1 @@ -117878,7 +132206,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableNestedClassRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=255 +ETPTopicOrder0=272 [External Topic Properties\TJclClrTableNestedClassRow.Create@TJclClrTable] Count=1 @@ -117908,7 +132236,7 @@ ETPTopicOrder0=4 [External Topic Properties\TJclClrTableParamDef] Count=1 ETPCommand0=2 -ETPTopicOrder0=256 +ETPTopicOrder0=273 [External Topic Properties\TJclClrTableParamDef.GetRow@Integer] Count=1 @@ -117928,7 +132256,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableParamDefRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=257 +ETPTopicOrder0=274 [External Topic Properties\TJclClrTableParamDefRow.Create@TJclClrTable] Count=1 @@ -118018,7 +132346,7 @@ ETPTopicOrder0=15 [External Topic Properties\TJclClrTableParamPtr] Count=1 ETPCommand0=2 -ETPTopicOrder0=258 +ETPTopicOrder0=275 [External Topic Properties\TJclClrTableParamPtr.GetRow@Integer] Count=1 @@ -118038,7 +132366,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableParamPtrRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=259 +ETPTopicOrder0=276 [External Topic Properties\TJclClrTableParamPtrRow.Create@TJclClrTable] Count=1 @@ -118068,7 +132396,7 @@ ETPTopicOrder0=4 [External Topic Properties\TJclClrTablePropertyDef] Count=1 ETPCommand0=2 -ETPTopicOrder0=260 +ETPTopicOrder0=277 [External Topic Properties\TJclClrTablePropertyDef.GetRow@Integer] Count=1 @@ -118088,7 +132416,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTablePropertyDefRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=261 +ETPTopicOrder0=278 [External Topic Properties\TJclClrTablePropertyDefRow.Create@TJclClrTable] Count=1 @@ -118153,7 +132481,7 @@ ETPTopicOrder0=11 [External Topic Properties\TJclClrTablePropertyFlag] Count=1 ETPCommand0=2 -ETPTopicOrder0=168 +ETPTopicOrder0=101 [External Topic Properties\TJclClrTablePropertyFlag.pfHasDefault] Count=1 @@ -118173,12 +132501,12 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTablePropertyFlags] Count=1 ETPCommand0=2 -ETPTopicOrder0=576 +ETPTopicOrder0=297 [External Topic Properties\TJclClrTablePropertyMap] Count=1 ETPCommand0=2 -ETPTopicOrder0=262 +ETPTopicOrder0=279 [External Topic Properties\TJclClrTablePropertyMap.GetRow@Integer] Count=1 @@ -118203,7 +132531,7 @@ ETPTopicOrder0=3 [External Topic Properties\TJclClrTablePropertyMapRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=263 +ETPTopicOrder0=280 [External Topic Properties\TJclClrTablePropertyMapRow.Add@TJclClrTablePropertyDefRow] Count=1 @@ -118278,7 +132606,7 @@ ETPTopicOrder0=13 [External Topic Properties\TJclClrTablePropertyPtr] Count=1 ETPCommand0=2 -ETPTopicOrder0=264 +ETPTopicOrder0=281 [External Topic Properties\TJclClrTablePropertyPtr.GetRow@Integer] Count=1 @@ -118298,7 +132626,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTablePropertyPtrRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=265 +ETPTopicOrder0=282 [External Topic Properties\TJclClrTablePropertyPtrRow._Property] Count=1 @@ -118328,7 +132656,7 @@ ETPTopicOrder0=4 [External Topic Properties\TJclClrTableRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=266 +ETPTopicOrder0=283 [External Topic Properties\TJclClrTableRow.Create@TJclClrTable] Count=1 @@ -118388,12 +132716,12 @@ ETPTopicOrder0=10 [External Topic Properties\TJclClrTableRowClass] Count=1 ETPCommand0=2 -ETPTopicOrder0=577 +ETPTopicOrder0=298 [External Topic Properties\TJclClrTableStandAloneSig] Count=1 ETPCommand0=2 -ETPTopicOrder0=267 +ETPTopicOrder0=284 [External Topic Properties\TJclClrTableStandAloneSig.GetRow@Integer] Count=1 @@ -118413,7 +132741,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableStandAloneSigRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=268 +ETPTopicOrder0=285 [External Topic Properties\TJclClrTableStandAloneSigRow.Create@TJclClrTable] Count=1 @@ -118443,7 +132771,7 @@ ETPTopicOrder0=4 [External Topic Properties\TJclClrTableStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=269 +ETPTopicOrder0=286 [External Topic Properties\TJclClrTableStream.BigHeap] Count=1 @@ -118528,7 +132856,7 @@ ETPTopicOrder0=15 [External Topic Properties\TJclClrTableTypeDef] Count=1 ETPCommand0=2 -ETPTopicOrder0=270 +ETPTopicOrder0=287 [External Topic Properties\TJclClrTableTypeDef.GetRow@Integer] Count=1 @@ -118548,7 +132876,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableTypeDefRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=271 +ETPTopicOrder0=288 [External Topic Properties\TJclClrTableTypeDefRow.Attributes] Count=1 @@ -118793,7 +133121,7 @@ ETPTopicOrder0=47 [External Topic Properties\TJclClrTableTypeRef] Count=1 ETPCommand0=2 -ETPTopicOrder0=272 +ETPTopicOrder0=289 [External Topic Properties\TJclClrTableTypeRef.GetRow@Integer] Count=1 @@ -118813,7 +133141,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableTypeRefRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=273 +ETPTopicOrder0=290 [External Topic Properties\TJclClrTableTypeRefRow.Create@TJclClrTable] Count=1 @@ -118908,7 +133236,7 @@ ETPTopicOrder0=17 [External Topic Properties\TJclClrTableTypeSpec] Count=1 ETPCommand0=2 -ETPTopicOrder0=274 +ETPTopicOrder0=291 [External Topic Properties\TJclClrTableTypeSpec.GetRow@Integer] Count=1 @@ -118928,7 +133256,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclClrTableTypeSpecRow] Count=1 ETPCommand0=2 -ETPTopicOrder0=275 +ETPTopicOrder0=292 [External Topic Properties\TJclClrTableTypeSpecRow.Create@TJclClrTable] Count=1 @@ -118958,12 +133286,12 @@ ETPTopicOrder0=4 [External Topic Properties\TJclClrToken] Count=1 ETPCommand0=2 -ETPTopicOrder0=578 +ETPTopicOrder0=299 [External Topic Properties\TJclClrTypeAttribute] Count=1 ETPCommand0=2 -ETPTopicOrder0=169 +ETPTopicOrder0=102 [External Topic Properties\TJclClrTypeAttribute.taAbstract] Count=1 @@ -119008,12 +133336,12 @@ ETPTopicOrder0=7 [External Topic Properties\TJclClrTypeAttributes] Count=1 ETPCommand0=2 -ETPTopicOrder0=579 +ETPTopicOrder0=300 [External Topic Properties\TJclClrTypeVisibility] Count=1 ETPCommand0=2 -ETPTopicOrder0=170 +ETPTopicOrder0=103 [External Topic Properties\TJclClrTypeVisibility.tvNestedAssembly] Count=1 @@ -119058,7 +133386,7 @@ ETPTopicOrder0=7 [External Topic Properties\TJclClrUserStringStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=276 +ETPTopicOrder0=293 [External Topic Properties\TJclClrUserStringStream.At@DWORD] Count=1 @@ -119103,7 +133431,7 @@ ETPTopicOrder0=7 [External Topic Properties\TJclClrVTableFixupRecord] Count=1 ETPCommand0=2 -ETPTopicOrder0=277 +ETPTopicOrder0=294 [External Topic Properties\TJclClrVTableFixupRecord.Count] Count=1 @@ -119163,7 +133491,7 @@ ETPTopicOrder0=1 [External Topic Properties\TJclClrVTableKind] Count=1 ETPCommand0=2 -ETPTopicOrder0=171 +ETPTopicOrder0=104 [External Topic Properties\TJclClrVTableKind.vtk32Bit] Count=1 @@ -119188,12 +133516,12 @@ ETPTopicOrder0=3 [External Topic Properties\TJclClrVTableKinds] Count=1 ETPCommand0=2 -ETPTopicOrder0=580 +ETPTopicOrder0=301 [External Topic Properties\TJclCommandLineTool] Count=1 ETPCommand0=2 -ETPTopicOrder0=278 +ETPTopicOrder0=295 [External Topic Properties\TJclCommandLineTool.AddPathOption@string@string] Count=1 @@ -119270,15 +133598,115 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=14 +[External Topic Properties\TJclCompilerSettingsFormat] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=105 + +[External Topic Properties\TJclCompoundDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=296 + +[External Topic Properties\TJclCompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=297 + +[External Topic Properties\TJclCompressArchiveClass] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=302 + +[External Topic Properties\TJclCompressionArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=298 + +[External Topic Properties\TJclCompressionArchiveClass] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=303 + +[External Topic Properties\TJclCompressionArchiveFormats] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=299 + +[External Topic Properties\TJclCompressionDuplicateAction] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=106 + +[External Topic Properties\TJclCompressionDuplicateCheck] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=107 + +[External Topic Properties\TJclCompressionExtractEvent] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=304 + +[External Topic Properties\TJclCompressionItem] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=300 + +[External Topic Properties\TJclCompressionItemClass] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=305 + +[External Topic Properties\TJclCompressionItemKind] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=108 + +[External Topic Properties\TJclCompressionItemProperties] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=306 + +[External Topic Properties\TJclCompressionItemProperty] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=109 + [External Topic Properties\TJclCompressionLevel] Count=1 ETPCommand0=2 -ETPTopicOrder0=581 +ETPTopicOrder0=307 + +[External Topic Properties\TJclCompressionMethod] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=110 + +[External Topic Properties\TJclCompressionMethods] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=308 + +[External Topic Properties\TJclCompressionOperationSuccess] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=111 + +[External Topic Properties\TJclCompressionProgressEvent] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=309 + +[External Topic Properties\TJclCompressionReplaceEvent] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=310 [External Topic Properties\TJclCompressionStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=279 +ETPTopicOrder0=301 [External Topic Properties\TJclCompressionStream.Create@TStream] Count=1 @@ -119345,10 +133773,40 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=12 +[External Topic Properties\TJclCompressionStreamClass] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=311 + +[External Topic Properties\TJclCompressionStreamFormats] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=302 + +[External Topic Properties\TJclCompressionVolume] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=303 + +[External Topic Properties\TJclCompressionVolumeEvent] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=312 + +[External Topic Properties\TJclCompressionVolumeMaxSizeEvent] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=313 + +[External Topic Properties\TJclCompressItem] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=304 + [External Topic Properties\TJclCompressStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=280 +ETPTopicOrder0=305 [External Topic Properties\TJclCompressStream.Create@TStream] Count=1 @@ -119360,15 +133818,20 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=1 +[External Topic Properties\TJclCompressStreamClass] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=314 + [External Topic Properties\TJclCompressStreamProgressCallback] Count=1 ETPCommand0=2 -ETPTopicOrder0=582 +ETPTopicOrder0=315 [External Topic Properties\TJclConsole] Count=1 ETPCommand0=2 -ETPTopicOrder0=281 +ETPTopicOrder0=306 [External Topic Properties\TJclConsole.ActiveScreen] Count=1 @@ -119593,7 +134056,7 @@ ETPTopicOrder0=42 [External Topic Properties\TJclConsoleInputMode] Count=1 ETPCommand0=2 -ETPTopicOrder0=172 +ETPTopicOrder0=112 [External Topic Properties\TJclConsoleInputMode.imEcho] Count=1 @@ -119623,12 +134086,12 @@ ETPTopicOrder0=4 [External Topic Properties\TJclConsoleInputModes] Count=1 ETPCommand0=2 -ETPTopicOrder0=583 +ETPTopicOrder0=316 [External Topic Properties\TJclConsoleOutputMode] Count=1 ETPCommand0=2 -ETPTopicOrder0=173 +ETPTopicOrder0=113 [External Topic Properties\TJclConsoleOutputMode.omProcessed] Count=1 @@ -119643,7 +134106,7 @@ ETPTopicOrder0=1 [External Topic Properties\TJclConsoleOutputModes] Count=1 ETPCommand0=2 -ETPTopicOrder0=584 +ETPTopicOrder0=317 [External Topic Properties\TJclConstantSymbolInfo] Count=1 @@ -119688,13 +134151,18 @@ ETPTopicOrder0=6 [External Topic Properties\TJclControlPanelSummaryInformation] Count=1 ETPCommand0=2 -ETPTopicOrder0=283 +ETPTopicOrder0=307 [External Topic Properties\TJclControlPanelSummaryInformation.GetFMTID] Count=1 ETPCommand0=2 ETPTopicOrder0=0 +[External Topic Properties\TJclCpioDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=308 + [External Topic Properties\TJclCRC16Stream] Count=2 ETPCommand0=2 @@ -119739,6 +134207,26 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=2 +[External Topic Properties\TJclCustomLocationInfoList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=309 + +[External Topic Properties\TJclCustomLocationInfoListClass] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=318 + +[External Topic Properties\TJclCustomSimpleSerializer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=310 + +[External Topic Properties\TJclCustomThreadInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=311 + [External Topic Properties\TJclDataSymbolInfo] Count=1 ETPCommand0=2 @@ -119782,7 +134270,7 @@ ETPTopicOrder0=6 [External Topic Properties\TJclDbgHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=174 +ETPTopicOrder0=114 [External Topic Properties\TJclDbgHeader.CheckSum] Count=1 @@ -119842,7 +134330,7 @@ ETPTopicOrder0=585 [External Topic Properties\TJclDCC32] Count=1 ETPCommand0=2 -ETPTopicOrder0=287 +ETPTopicOrder0=312 [External Topic Properties\TJclDCC32.AddProjectOptions@string@string] Count=1 @@ -119917,7 +134405,7 @@ ETPTopicOrder0=13 [External Topic Properties\TJclDCCIL] Count=1 ETPCommand0=2 -ETPTopicOrder0=288 +ETPTopicOrder0=313 [External Topic Properties\TJclDCCIL.FMaxCLRVersion] Count=1 @@ -119954,15 +134442,20 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=6 +[External Topic Properties\TJclDebDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=314 + [External Topic Properties\TJclDebugInfoSourceClass] Count=1 ETPCommand0=2 -ETPTopicOrder0=586 +ETPTopicOrder0=319 [External Topic Properties\TJclDebugInfoSymbols] Count=1 ETPCommand0=2 -ETPTopicOrder0=289 +ETPTopicOrder0=315 [External Topic Properties\TJclDebugInfoSymbols.CleanupDebugSymbols] Count=1 @@ -119997,7 +134490,7 @@ ETPTopicOrder0=5 [External Topic Properties\TJclDebugInfoTD32] Count=1 ETPCommand0=2 -ETPTopicOrder0=290 +ETPTopicOrder0=316 [External Topic Properties\TJclDebugInfoTD32.Destroy] Count=1 @@ -120022,7 +134515,7 @@ ETPTopicOrder0=3 [External Topic Properties\TJclDebugThread] Count=1 ETPCommand0=2 -ETPTopicOrder0=291 +ETPTopicOrder0=317 [External Topic Properties\TJclDebugThread.Create@Boolean@string] Count=1 @@ -120084,10 +134577,15 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=11 +[External Topic Properties\TJclDebugThreadInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=318 + [External Topic Properties\TJclDebugThreadList] Count=1 ETPCommand0=2 -ETPTopicOrder0=292 +ETPTopicOrder0=319 [External Topic Properties\TJclDebugThreadList.Create] Count=1 @@ -120277,22 +134775,42 @@ ETPTopicOrder0=36 [External Topic Properties\TJclDebugThreadNotifyEvent] Count=1 ETPCommand0=2 -ETPTopicOrder0=587 +ETPTopicOrder0=320 + +[External Topic Properties\TJclDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=320 + +[External Topic Properties\TJclDecompressArchiveClass] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=321 + +[External Topic Properties\TJclDecompressItem] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=321 [External Topic Properties\TJclDecompressStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=293 +ETPTopicOrder0=322 [External Topic Properties\TJclDecompressStream.Create@TStream] Count=1 ETPCommand0=2 ETPTopicOrder0=0 +[External Topic Properties\TJclDecompressStreamClass] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=322 + [External Topic Properties\TJclDefaultUnitVersioningProvider] Count=1 ETPCommand0=2 -ETPTopicOrder0=294 +ETPTopicOrder0=323 [External Topic Properties\TJclDefaultUnitVersioningProvider.Create] Count=1 @@ -120394,7 +134912,7 @@ ETPTopicOrder0=11 [External Topic Properties\TJclDelphiInstallation] Count=1 ETPCommand0=2 -ETPTopicOrder0=296 +ETPTopicOrder0=324 [External Topic Properties\TJclDelphiInstallation.ConfigFileName@string] Count=1 @@ -120449,17 +134967,22 @@ ETPTopicOrder0=9 [External Topic Properties\TJclDisplacedSummaryInformation] Count=1 ETPCommand0=2 -ETPTopicOrder0=297 +ETPTopicOrder0=325 [External Topic Properties\TJclDisplacedSummaryInformation.GetFMTID] Count=1 ETPCommand0=2 ETPTopicOrder0=0 +[External Topic Properties\TJclDmgDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=326 + [External Topic Properties\TJclDocSummaryInformation] Count=1 ETPCommand0=2 -ETPTopicOrder0=298 +ETPTopicOrder0=327 [External Topic Properties\TJclDocSummaryInformation.ByteCount] Count=1 @@ -120541,16 +135064,213 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=15 +[External Topic Properties\TJclDoubleAbstractContainer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=328 + +[External Topic Properties\TJclDoubleArrayIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=329 + +[External Topic Properties\TJclDoubleArrayList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=330 + +[External Topic Properties\TJclDoubleArraySet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=331 + +[External Topic Properties\TJclDoubleBinaryNode] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=332 + +[External Topic Properties\TJclDoubleBinaryTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=333 + +[External Topic Properties\TJclDoubleBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=334 + +[External Topic Properties\TJclDoubleBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=335 + +[External Topic Properties\TJclDoubleDoubleBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=336 + +[External Topic Properties\TJclDoubleDoubleHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=115 + +[External Topic Properties\TJclDoubleDoubleHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=337 + +[External Topic Properties\TJclDoubleDoubleSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=116 + +[External Topic Properties\TJclDoubleDoubleSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=338 + +[External Topic Properties\TJclDoubleHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=117 + +[External Topic Properties\TJclDoubleHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=339 + +[External Topic Properties\TJclDoubleHashSet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=340 + +[External Topic Properties\TJclDoubleIntfBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=341 + +[External Topic Properties\TJclDoubleIntfHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=118 + +[External Topic Properties\TJclDoubleIntfHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=342 + +[External Topic Properties\TJclDoubleIntfSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=119 + +[External Topic Properties\TJclDoubleIntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=343 + +[External Topic Properties\TJclDoubleLinkedList] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=344 + +[External Topic Properties\TJclDoubleLinkedListItem] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=345 + +[External Topic Properties\TJclDoubleLinkedListIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=346 + +[External Topic Properties\TJclDoubleQueue] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=347 + +[External Topic Properties\TJclDoubleSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=120 + +[External Topic Properties\TJclDoubleSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=348 + +[External Topic Properties\TJclDoubleStack] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=349 + +[External Topic Properties\TJclDoubleTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=350 + +[External Topic Properties\TJclDoubleTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=351 + +[External Topic Properties\TJclDoubleTreeNode] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=352 + +[External Topic Properties\TJclDoubleVector] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=353 + +[External Topic Properties\TJclDoubleVectorIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=354 + [External Topic Properties\TJclDRMSummaryInformation] Count=1 ETPCommand0=2 -ETPTopicOrder0=299 +ETPTopicOrder0=355 [External Topic Properties\TJclDRMSummaryInformation.GetFMTID] Count=1 ETPCommand0=2 ETPTopicOrder0=0 +[External Topic Properties\TJclDynamicSplitStream] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=356 + +[External Topic Properties\TJclDynArrayTypeInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=357 + [External Topic Properties\TJclEasyStream] Count=2 ETPCommand0=2 @@ -120683,6 +135403,11 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=24 +[External Topic Properties\TJclElfDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=358 + [External Topic Properties\TJclEmptyStream] Count=2 ETPCommand0=2 @@ -120715,6 +135440,16 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=3 +[External Topic Properties\TJclEncryptionMethod] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=121 + +[External Topic Properties\TJclEncryptionMethods] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=323 + [External Topic Properties\TJclEntry] Count=1 ETPCommand0=2 @@ -120735,6 +135470,16 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=588 +[External Topic Properties\TJclEnumerationTypeInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=359 + +[External Topic Properties\TJclEventParamInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=360 + [External Topic Properties\TJclEventStream] Count=2 ETPCommand0=2 @@ -120802,10 +135547,15 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=9 +[External Topic Properties\TJclEventTypeInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=361 + [External Topic Properties\TJclExceptNotifyPriority] Count=1 ETPCommand0=2 -ETPTopicOrder0=176 +ETPTopicOrder0=122 [External Topic Properties\TJclExceptNotifyPriority.npFirstChain] Count=1 @@ -120820,12 +135570,204 @@ ETPTopicOrder0=1 [External Topic Properties\TJclExceptNotifyProcEx] Count=1 ETPCommand0=2 -ETPTopicOrder0=589 +ETPTopicOrder0=324 + +[External Topic Properties\TJclExtendedAbstractContainer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=362 + +[External Topic Properties\TJclExtendedArrayIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=363 + +[External Topic Properties\TJclExtendedArrayList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=364 + +[External Topic Properties\TJclExtendedArraySet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=365 + +[External Topic Properties\TJclExtendedBinaryNode] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=366 + +[External Topic Properties\TJclExtendedBinaryTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=367 + +[External Topic Properties\TJclExtendedBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=368 + +[External Topic Properties\TJclExtendedBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=369 + +[External Topic Properties\TJclExtendedExtendedBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=370 + +[External Topic Properties\TJclExtendedExtendedHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=123 + +[External Topic Properties\TJclExtendedExtendedHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=371 + +[External Topic Properties\TJclExtendedExtendedSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=124 + +[External Topic Properties\TJclExtendedExtendedSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=372 + +[External Topic Properties\TJclExtendedHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=125 + +[External Topic Properties\TJclExtendedHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=373 + +[External Topic Properties\TJclExtendedHashSet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=374 + +[External Topic Properties\TJclExtendedIntfBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=375 + +[External Topic Properties\TJclExtendedIntfHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=126 + +[External Topic Properties\TJclExtendedIntfHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=376 + +[External Topic Properties\TJclExtendedIntfSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=127 + +[External Topic Properties\TJclExtendedIntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=377 + +[External Topic Properties\TJclExtendedLinkedList] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=378 + +[External Topic Properties\TJclExtendedLinkedListItem] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=379 + +[External Topic Properties\TJclExtendedLinkedListIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=380 + +[External Topic Properties\TJclExtendedQueue] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=381 + +[External Topic Properties\TJclExtendedSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=128 + +[External Topic Properties\TJclExtendedSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=382 + +[External Topic Properties\TJclExtendedStack] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=383 + +[External Topic Properties\TJclExtendedTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=384 + +[External Topic Properties\TJclExtendedTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=385 + +[External Topic Properties\TJclExtendedTreeNode] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=386 + +[External Topic Properties\TJclExtendedVector] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=387 + +[External Topic Properties\TJclExtendedVectorIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=388 + +[External Topic Properties\TJclFatDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=389 [External Topic Properties\TJclFileMappingRoundOffset] Count=1 ETPCommand0=2 -ETPTopicOrder0=177 +ETPTopicOrder0=129 [External Topic Properties\TJclFileMappingRoundOffset.rvDown] Count=1 @@ -120840,7 +135782,7 @@ ETPTopicOrder0=1 [External Topic Properties\TJclFileMappingStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=303 +ETPTopicOrder0=390 [External Topic Properties\TJclFileMappingStream.Close] Count=1 @@ -120875,7 +135817,7 @@ ETPTopicOrder0=5 [External Topic Properties\TJclFileMaskComparator] Count=1 ETPCommand0=2 -ETPTopicOrder0=304 +ETPTopicOrder0=391 [External Topic Properties\TJclFileMaskComparator.Compare@string] Count=1 @@ -120980,7 +135922,7 @@ ETPTopicOrder0=19 [External Topic Properties\TJclFilePropertySet] Count=1 ETPCommand0=2 -ETPTopicOrder0=305 +ETPTopicOrder0=392 [External Topic Properties\TJclFilePropertySet.Create@IPropertyStorage] Count=1 @@ -121165,7 +136107,12 @@ ETPTopicOrder0=32 [External Topic Properties\TJclFilePropertySetClass] Count=1 ETPCommand0=2 -ETPTopicOrder0=590 +ETPTopicOrder0=325 + +[External Topic Properties\TJclFileSearchOptions] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=393 [External Topic Properties\TJclFileStream] Count=2 @@ -121187,7 +136134,7 @@ ETPTopicOrder0=1 [External Topic Properties\TJclFileSummary] Count=1 ETPCommand0=2 -ETPTopicOrder0=307 +ETPTopicOrder0=394 [External Topic Properties\TJclFileSummary.AccessMode] Count=1 @@ -121272,7 +136219,7 @@ ETPTopicOrder0=12 [External Topic Properties\TJclFileSummaryAccess] Count=1 ETPCommand0=2 -ETPTopicOrder0=178 +ETPTopicOrder0=130 [External Topic Properties\TJclFileSummaryAccess.fsaRead] Count=1 @@ -121292,7 +136239,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclFileSummaryInformation] Count=1 ETPCommand0=2 -ETPTopicOrder0=308 +ETPTopicOrder0=395 [External Topic Properties\TJclFileSummaryInformation.AppName] Count=1 @@ -121392,17 +136339,17 @@ ETPTopicOrder0=18 [External Topic Properties\TJclFileSummaryPropCallback] Count=1 ETPCommand0=2 -ETPTopicOrder0=591 +ETPTopicOrder0=326 [External Topic Properties\TJclFileSummaryPropSetCallback] Count=1 ETPCommand0=2 -ETPTopicOrder0=592 +ETPTopicOrder0=327 [External Topic Properties\TJclFileSummaryShare] Count=1 ETPCommand0=2 -ETPTopicOrder0=179 +ETPTopicOrder0=131 [External Topic Properties\TJclFileSummaryShare.fssDenyAll] Count=1 @@ -121427,7 +136374,7 @@ ETPTopicOrder0=3 [External Topic Properties\TJclFlatSet] Count=1 ETPCommand0=2 -ETPTopicOrder0=309 +ETPTopicOrder0=396 [External Topic Properties\TJclFlatSet.Clear] Count=1 @@ -121474,6 +136421,198 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=8 +[External Topic Properties\TJclFloatArrayIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=328 + +[External Topic Properties\TJclFloatArrayList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=329 + +[External Topic Properties\TJclFloatArraySet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=330 + +[External Topic Properties\TJclFloatBinaryNode] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=331 + +[External Topic Properties\TJclFloatBinaryTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=332 + +[External Topic Properties\TJclFloatBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=333 + +[External Topic Properties\TJclFloatBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=334 + +[External Topic Properties\TJclFloatFloatBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=335 + +[External Topic Properties\TJclFloatFloatHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=336 + +[External Topic Properties\TJclFloatFloatHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=397 + +[External Topic Properties\TJclFloatFloatSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=337 + +[External Topic Properties\TJclFloatFloatSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=398 + +[External Topic Properties\TJclFloatHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=338 + +[External Topic Properties\TJclFloatHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=399 + +[External Topic Properties\TJclFloatHashSet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=339 + +[External Topic Properties\TJclFloatIntfBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=340 + +[External Topic Properties\TJclFloatIntfHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=341 + +[External Topic Properties\TJclFloatIntfHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=400 + +[External Topic Properties\TJclFloatIntfSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=342 + +[External Topic Properties\TJclFloatIntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=401 + +[External Topic Properties\TJclFloatLinkedList] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=402 + +[External Topic Properties\TJclFloatLinkedListItem] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=403 + +[External Topic Properties\TJclFloatLinkedListIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=404 + +[External Topic Properties\TJclFloatQueue] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=343 + +[External Topic Properties\TJclFloatSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=344 + +[External Topic Properties\TJclFloatSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=405 + +[External Topic Properties\TJclFloatStack] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=345 + +[External Topic Properties\TJclFloatTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=346 + +[External Topic Properties\TJclFloatTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=347 + +[External Topic Properties\TJclFloatTreeNode] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=348 + +[External Topic Properties\TJclFloatTypeInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=406 + +[External Topic Properties\TJclFloatVector] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=407 + +[External Topic Properties\TJclFloatVectorIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=408 + +[External Topic Properties\TJclFlvDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=409 + [External Topic Properties\TJclGDataSymbolInfo] Count=1 ETPCommand0=2 @@ -121484,10 +136623,15 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=311 +[External Topic Properties\TJclGZipCompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=410 + [External Topic Properties\TJclGZIPCompressionStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=312 +ETPTopicOrder0=411 [External Topic Properties\TJclGZIPCompressionStream.AutoSetTime] Count=1 @@ -121649,10 +136793,15 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=31 +[External Topic Properties\TJclGZipDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=412 + [External Topic Properties\TJclGZIPDecompressionStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=313 +ETPTopicOrder0=413 [External Topic Properties\TJclGZIPDecompressionStream.AutoCheckDataCRC32] Count=1 @@ -121867,7 +137016,7 @@ ETPTopicOrder0=41 [External Topic Properties\TJclGZIPFatSystem] Count=1 ETPCommand0=2 -ETPTopicOrder0=180 +ETPTopicOrder0=132 [External Topic Properties\TJclGZIPFatSystem.gfsAcorn] Count=1 @@ -121952,7 +137101,7 @@ ETPTopicOrder0=15 [External Topic Properties\TJclGZIPFlag] Count=1 ETPCommand0=2 -ETPTopicOrder0=181 +ETPTopicOrder0=133 [External Topic Properties\TJclGZIPFlag.gfComment] Count=1 @@ -121982,12 +137131,12 @@ ETPTopicOrder0=4 [External Topic Properties\TJclGZIPFlags] Count=1 ETPCommand0=2 -ETPTopicOrder0=593 +ETPTopicOrder0=349 [External Topic Properties\TJclGZIPFooter] Count=1 ETPCommand0=2 -ETPTopicOrder0=182 +ETPTopicOrder0=134 [External Topic Properties\TJclGZIPFooter.DataCRC32] Count=1 @@ -122002,7 +137151,7 @@ ETPTopicOrder0=1 [External Topic Properties\TJclGZIPHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=183 +ETPTopicOrder0=135 [External Topic Properties\TJclGZIPHeader.CompressionMethod] Count=1 @@ -122042,7 +137191,7 @@ ETPTopicOrder0=6 [External Topic Properties\TJclGZIPSubFieldHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=184 +ETPTopicOrder0=136 [External Topic Properties\TJclGZIPSubFieldHeader.Len] Count=1 @@ -122059,6 +137208,11 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=2 +[External Topic Properties\TJclGZipUpdateArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=414 + [External Topic Properties\TJclHandleStream] Count=2 ETPCommand0=2 @@ -122106,15 +137260,47 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=6 +[External Topic Properties\TJclHashElem] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=137 + +[External Topic Properties\TJclHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=138 + [External Topic Properties\TJclHashFunction] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=350 + +[External Topic Properties\TJclHashKind] Count=1 ETPCommand0=2 -ETPTopicOrder0=594 +ETPTopicOrder0=139 + +[External Topic Properties\TJclHashList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=351 + +[External Topic Properties\TJclHashMap] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\TJclHashRecord] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=140 [External Topic Properties\TJclHelp2Manager] Count=1 ETPCommand0=2 -ETPTopicOrder0=315 +ETPTopicOrder0=415 [External Topic Properties\TJclHelp2Manager.CommitTransaction] Count=1 @@ -122244,7 +137430,7 @@ ETPTopicOrder0=23 [External Topic Properties\TJclHelp2Object] Count=1 ETPCommand0=2 -ETPTopicOrder0=185 +ETPTopicOrder0=141 [External Topic Properties\TJclHelp2Object.hoPlugin] Count=1 @@ -122264,12 +137450,17 @@ ETPTopicOrder0=2 [External Topic Properties\TJclHelp2Objects] Count=1 ETPCommand0=2 -ETPTopicOrder0=595 +ETPTopicOrder0=352 + +[External Topic Properties\TJclHfsDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=416 [External Topic Properties\TJclImageInformation] Count=1 ETPCommand0=2 -ETPTopicOrder0=316 +ETPTopicOrder0=417 [External Topic Properties\TJclImageInformation.GetFMTID] Count=1 @@ -122279,7 +137470,7 @@ ETPTopicOrder0=0 [External Topic Properties\TJclImageSummaryInformation] Count=1 ETPCommand0=2 -ETPTopicOrder0=317 +ETPTopicOrder0=418 [External Topic Properties\TJclImageSummaryInformation.GetFMTID] Count=1 @@ -122289,7 +137480,7 @@ ETPTopicOrder0=0 [External Topic Properties\TJclInfoStringsWriter] Count=1 ETPCommand0=2 -ETPTopicOrder0=318 +ETPTopicOrder0=419 [External Topic Properties\TJclInfoStringsWriter.Create@TStrings@Integer] Count=1 @@ -122314,7 +137505,7 @@ ETPTopicOrder0=3 [External Topic Properties\TJclInfoWriter] Count=1 ETPCommand0=2 -ETPTopicOrder0=319 +ETPTopicOrder0=420 [External Topic Properties\TJclInfoWriter.Create@Integer] Count=1 @@ -122396,15 +137587,90 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=15 -[External Topic Properties\TJclInfoWriter.Writeln@string] +[External Topic Properties\TJclInfoWriter.Writeln@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=16 + +[External Topic Properties\TJclInOrderAnsiStrBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=421 + +[External Topic Properties\TJclInOrderBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=422 + +[External Topic Properties\TJclInOrderCardinalBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=423 + +[External Topic Properties\TJclInOrderDoubleBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=424 + +[External Topic Properties\TJclInOrderExtendedBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=425 + +[External Topic Properties\TJclInOrderFloatBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=353 + +[External Topic Properties\TJclInOrderInt64BinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=426 + +[External Topic Properties\TJclInOrderIntegerBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=427 + +[External Topic Properties\TJclInOrderIntfBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=428 + +[External Topic Properties\TJclInOrderPtrBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=429 + +[External Topic Properties\TJclInOrderSingleBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=430 + +[External Topic Properties\TJclInOrderStrBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=354 + +[External Topic Properties\TJclInOrderUnicodeStrBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=431 + +[External Topic Properties\TJclInOrderWideStrBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=432 + +[External Topic Properties\TJclInPlaceUpdateArchive] Count=1 ETPCommand0=2 -ETPTopicOrder0=16 +ETPTopicOrder0=433 [External Topic Properties\TJclInputBuffer] Count=1 ETPCommand0=2 -ETPTopicOrder0=320 +ETPTopicOrder0=434 [External Topic Properties\TJclInputBuffer.Clear] Count=1 @@ -122519,7 +137785,7 @@ ETPTopicOrder0=19 [External Topic Properties\TJclInputCtrlEvent] Count=1 ETPCommand0=2 -ETPTopicOrder0=186 +ETPTopicOrder0=142 [External Topic Properties\TJclInputCtrlEvent.ceCtrlBreak] Count=1 @@ -122549,12 +137815,12 @@ ETPTopicOrder0=4 [External Topic Properties\TJclInputRecordArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=596 +ETPTopicOrder0=355 [External Topic Properties\TJclInstruction] Count=1 ETPCommand0=2 -ETPTopicOrder0=321 +ETPTopicOrder0=435 [External Topic Properties\TJclInstruction.Create@TJclClrILGenerator@TJclOpCode] Count=1 @@ -122699,7 +137965,7 @@ ETPTopicOrder0=27 [External Topic Properties\TJclInstructionDumpILOption] Count=1 ETPCommand0=2 -ETPTopicOrder0=187 +ETPTopicOrder0=143 [External Topic Properties\TJclInstructionDumpILOption.doComment] Count=1 @@ -122729,12 +137995,12 @@ ETPTopicOrder0=4 [External Topic Properties\TJclInstructionDumpILOptions] Count=1 ETPCommand0=2 -ETPTopicOrder0=597 +ETPTopicOrder0=356 [External Topic Properties\TJclInstructionParamType] Count=1 ETPCommand0=2 -ETPTopicOrder0=188 +ETPTopicOrder0=144 [External Topic Properties\TJclInstructionParamType.ptArray] Count=1 @@ -122811,10 +138077,443 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=14 +[External Topic Properties\TJclInt64AbstractContainer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=436 + +[External Topic Properties\TJclInt64ArrayIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=437 + +[External Topic Properties\TJclInt64ArrayList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=438 + +[External Topic Properties\TJclInt64ArraySet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=439 + +[External Topic Properties\TJclInt64BinaryNode] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=440 + +[External Topic Properties\TJclInt64BinaryTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=441 + +[External Topic Properties\TJclInt64BinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=442 + +[External Topic Properties\TJclInt64Bucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=443 + +[External Topic Properties\TJclInt64HashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=145 + +[External Topic Properties\TJclInt64HashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=444 + +[External Topic Properties\TJclInt64HashSet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=445 + +[External Topic Properties\TJclInt64Int64Bucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=446 + +[External Topic Properties\TJclInt64Int64HashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=146 + +[External Topic Properties\TJclInt64Int64HashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=447 + +[External Topic Properties\TJclInt64Int64SortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=147 + +[External Topic Properties\TJclInt64Int64SortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=448 + +[External Topic Properties\TJclInt64IntfBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=449 + +[External Topic Properties\TJclInt64IntfHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=148 + +[External Topic Properties\TJclInt64IntfHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=450 + +[External Topic Properties\TJclInt64IntfSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=149 + +[External Topic Properties\TJclInt64IntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=451 + +[External Topic Properties\TJclInt64LinkedList] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=452 + +[External Topic Properties\TJclInt64LinkedListItem] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=453 + +[External Topic Properties\TJclInt64LinkedListIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=454 + +[External Topic Properties\TJclInt64Queue] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=455 + +[External Topic Properties\TJclInt64SortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=150 + +[External Topic Properties\TJclInt64SortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=456 + +[External Topic Properties\TJclInt64Stack] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=457 + +[External Topic Properties\TJclInt64Tree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=458 + +[External Topic Properties\TJclInt64TreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=459 + +[External Topic Properties\TJclInt64TreeNode] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=460 + +[External Topic Properties\TJclInt64TypeInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=461 + +[External Topic Properties\TJclInt64Vector] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=462 + +[External Topic Properties\TJclInt64VectorIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=463 + +[External Topic Properties\TJclIntegerAbstractContainer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=464 + +[External Topic Properties\TJclIntegerArrayIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=465 + +[External Topic Properties\TJclIntegerArrayList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=466 + +[External Topic Properties\TJclIntegerArraySet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=467 + +[External Topic Properties\TJclIntegerBinaryNode] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=468 + +[External Topic Properties\TJclIntegerBinaryTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=469 + +[External Topic Properties\TJclIntegerBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=470 + +[External Topic Properties\TJclIntegerBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=471 + +[External Topic Properties\TJclIntegerHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=151 + +[External Topic Properties\TJclIntegerHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=472 + +[External Topic Properties\TJclIntegerHashSet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=473 + +[External Topic Properties\TJclIntegerIntegerBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=474 + +[External Topic Properties\TJclIntegerIntegerHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=152 + +[External Topic Properties\TJclIntegerIntegerHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=475 + +[External Topic Properties\TJclIntegerIntegerSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=153 + +[External Topic Properties\TJclIntegerIntegerSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=476 + +[External Topic Properties\TJclIntegerIntfBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=477 + +[External Topic Properties\TJclIntegerIntfHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=154 + +[External Topic Properties\TJclIntegerIntfHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=478 + +[External Topic Properties\TJclIntegerIntfSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=155 + +[External Topic Properties\TJclIntegerIntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=479 + +[External Topic Properties\TJclIntegerLinkedList] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=480 + +[External Topic Properties\TJclIntegerLinkedListItem] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=481 + +[External Topic Properties\TJclIntegerLinkedListIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=482 + +[External Topic Properties\TJclIntegerQueue] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=483 + +[External Topic Properties\TJclIntegerSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=156 + +[External Topic Properties\TJclIntegerSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=484 + +[External Topic Properties\TJclIntegerStack] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=485 + +[External Topic Properties\TJclIntegerTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=486 + +[External Topic Properties\TJclIntegerTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=487 + +[External Topic Properties\TJclIntegerTreeNode] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=488 + +[External Topic Properties\TJclIntegerVector] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=489 + +[External Topic Properties\TJclIntegerVectorIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=490 + +[External Topic Properties\TJclInterfacedPersistent] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=491 + +[External Topic Properties\TJclInterfaceTypeInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=492 + +[External Topic Properties\TJclIntfAbstractContainer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=493 + +[External Topic Properties\TJclIntfAnsiStrBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=494 + +[External Topic Properties\TJclIntfAnsiStrHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=157 + +[External Topic Properties\TJclIntfAnsiStrHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=495 + +[External Topic Properties\TJclIntfAnsiStrSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=158 + +[External Topic Properties\TJclIntfAnsiStrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=496 + +[External Topic Properties\TJclIntfArrayIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=497 + +[External Topic Properties\TJclIntfArrayList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=498 + [External Topic Properties\TJclIntfArraySet] Count=1 ETPCommand0=2 -ETPTopicOrder0=322 +ETPTopicOrder0=499 [External Topic Properties\TJclIntfArraySet.Add@IInterface] Count=1 @@ -122859,7 +138558,7 @@ ETPTopicOrder0=7 [External Topic Properties\TJclIntfBinaryNode] Count=1 ETPCommand0=2 -ETPTopicOrder0=323 +ETPTopicOrder0=500 [External Topic Properties\TJclIntfBinaryNode.Color] Count=1 @@ -122889,7 +138588,7 @@ ETPTopicOrder0=4 [External Topic Properties\TJclIntfBinaryTree] Count=1 ETPCommand0=2 -ETPTopicOrder0=324 +ETPTopicOrder0=501 [External Topic Properties\TJclIntfBinaryTree.Add@IInterface] Count=1 @@ -123011,10 +138710,49 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=23 +[External Topic Properties\TJclIntfBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=502 + +[External Topic Properties\TJclIntfBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=503 + +[External Topic Properties\TJclIntfCardinalBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=504 + +[External Topic Properties\TJclIntfCardinalHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=159 + +[External Topic Properties\TJclIntfCardinalHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=505 + +[External Topic Properties\TJclIntfCardinalSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=160 + +[External Topic Properties\TJclIntfCardinalSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=506 + [External Topic Properties\TJclIntfCriticalSection] Count=1 ETPCommand0=2 -ETPTopicOrder0=325 +ETPTopicOrder0=507 [External Topic Properties\TJclIntfCriticalSection._AddRef] Count=1 @@ -123046,10 +138784,172 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=5 +[External Topic Properties\TJclIntfDoubleBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=508 + +[External Topic Properties\TJclIntfDoubleHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=161 + +[External Topic Properties\TJclIntfDoubleHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=509 + +[External Topic Properties\TJclIntfDoubleSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=162 + +[External Topic Properties\TJclIntfDoubleSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=510 + +[External Topic Properties\TJclIntfExtendedBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=511 + +[External Topic Properties\TJclIntfExtendedHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=163 + +[External Topic Properties\TJclIntfExtendedHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=512 + +[External Topic Properties\TJclIntfExtendedSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=164 + +[External Topic Properties\TJclIntfExtendedSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=513 + +[External Topic Properties\TJclIntfFloatBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=357 + +[External Topic Properties\TJclIntfFloatHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=358 + +[External Topic Properties\TJclIntfFloatHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=514 + +[External Topic Properties\TJclIntfFloatSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=359 + +[External Topic Properties\TJclIntfFloatSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=515 + +[External Topic Properties\TJclIntfHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=165 + +[External Topic Properties\TJclIntfHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=516 + +[External Topic Properties\TJclIntfHashSet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=517 + +[External Topic Properties\TJclIntfInt64Bucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=518 + +[External Topic Properties\TJclIntfInt64HashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=166 + +[External Topic Properties\TJclIntfInt64HashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=519 + +[External Topic Properties\TJclIntfInt64SortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=167 + +[External Topic Properties\TJclIntfInt64SortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=520 + +[External Topic Properties\TJclIntfIntegerBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=521 + +[External Topic Properties\TJclIntfIntegerHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=168 + +[External Topic Properties\TJclIntfIntegerHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=522 + +[External Topic Properties\TJclIntfIntegerSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=169 + +[External Topic Properties\TJclIntfIntegerSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=523 + [External Topic Properties\TJclIntfIntfBucket] Count=1 ETPCommand0=2 -ETPTopicOrder0=326 +ETPTopicOrder0=524 [External Topic Properties\TJclIntfIntfBucket.Entries] Count=1 @@ -123086,10 +138986,41 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=599 -[External Topic Properties\TJclIntfLinkedListItem] +[External Topic Properties\TJclIntfIntfHashEntry] Count=1 ETPCommand0=2 -ETPTopicOrder0=327 +ETPTopicOrder0=170 + +[External Topic Properties\TJclIntfIntfHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=525 + +[External Topic Properties\TJclIntfIntfSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=171 + +[External Topic Properties\TJclIntfIntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=526 + +[External Topic Properties\TJclIntfLinkedList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=527 + +[External Topic Properties\TJclIntfLinkedListItem] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=528 [External Topic Properties\TJclIntfLinkedListItem.Next] Count=1 @@ -123101,10 +139032,216 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=1 +[External Topic Properties\TJclIntfLinkedListIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=529 + +[External Topic Properties\TJclIntfPtrBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=530 + +[External Topic Properties\TJclIntfPtrHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=172 + +[External Topic Properties\TJclIntfPtrHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=531 + +[External Topic Properties\TJclIntfPtrSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=173 + +[External Topic Properties\TJclIntfPtrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=532 + +[External Topic Properties\TJclIntfQueue] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=533 + +[External Topic Properties\TJclIntfSingleBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=534 + +[External Topic Properties\TJclIntfSingleHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=174 + +[External Topic Properties\TJclIntfSingleHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=535 + +[External Topic Properties\TJclIntfSingleSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=175 + +[External Topic Properties\TJclIntfSingleSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=536 + +[External Topic Properties\TJclIntfSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=176 + +[External Topic Properties\TJclIntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=537 + +[External Topic Properties\TJclIntfStack] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=538 + +[External Topic Properties\TJclIntfStrBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=360 + +[External Topic Properties\TJclIntfStrHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=361 + +[External Topic Properties\TJclIntfStrHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=539 + +[External Topic Properties\TJclIntfStrSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=362 + +[External Topic Properties\TJclIntfStrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=540 + +[External Topic Properties\TJclIntfTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=541 + +[External Topic Properties\TJclIntfTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=542 + +[External Topic Properties\TJclIntfTreeNode] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=543 + +[External Topic Properties\TJclIntfUnicodeStrBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=544 + +[External Topic Properties\TJclIntfUnicodeStrHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=177 + +[External Topic Properties\TJclIntfUnicodeStrHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=545 + +[External Topic Properties\TJclIntfUnicodeStrSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=178 + +[External Topic Properties\TJclIntfUnicodeStrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=546 + +[External Topic Properties\TJclIntfVector] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=547 + +[External Topic Properties\TJclIntfVectorIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=548 + +[External Topic Properties\TJclIntfWideStrBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=549 + +[External Topic Properties\TJclIntfWideStrHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=179 + +[External Topic Properties\TJclIntfWideStrHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=550 + +[External Topic Properties\TJclIntfWideStrSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=180 + +[External Topic Properties\TJclIntfWideStrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=551 + +[External Topic Properties\TJclIsoDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=552 + [External Topic Properties\TJclJpegSummaryInformation] Count=1 ETPCommand0=2 -ETPTopicOrder0=328 +ETPTopicOrder0=553 [External Topic Properties\TJclJpegSummaryInformation.GetFMTID] Count=1 @@ -123114,7 +139251,7 @@ ETPTopicOrder0=0 [External Topic Properties\TJclKillLevel] Count=1 ETPCommand0=2 -ETPTopicOrder0=190 +ETPTopicOrder0=181 [External Topic Properties\TJclKillLevel.klNormal] Count=1 @@ -123196,10 +139333,17 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=4 -[External Topic Properties\TJclLinkedListItem] +[External Topic Properties\TJclLinkedList] Count=1 ETPCommand0=2 -ETPTopicOrder0=332 +ETPTopicOrder0=0 + +[External Topic Properties\TJclLinkedListItem] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.Sequence.LinkedLists +ETPTopicOrder0=10 [External Topic Properties\TJclLinkedListItem.Next] Count=1 @@ -123211,10 +139355,17 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=1 +[External Topic Properties\TJclLinkedListIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Containers.Sequence.LinkedLists +ETPTopicOrder0=24 + [External Topic Properties\TJclLinkSummaryInformation] Count=1 ETPCommand0=2 -ETPTopicOrder0=333 +ETPTopicOrder0=554 [External Topic Properties\TJclLinkSummaryInformation.GetFMTID] Count=1 @@ -123224,7 +139375,7 @@ ETPTopicOrder0=0 [External Topic Properties\TJclLocaleDateFormats] Count=1 ETPCommand0=2 -ETPTopicOrder0=191 +ETPTopicOrder0=182 [External Topic Properties\TJclLocaleDateFormats.ldLong] Count=1 @@ -123244,27 +139395,72 @@ ETPTopicOrder0=2 [External Topic Properties\TJclLocalesDays] Count=1 ETPCommand0=2 -ETPTopicOrder0=600 +ETPTopicOrder0=363 [External Topic Properties\TJclLocalesMonths] Count=1 ETPCommand0=2 -ETPTopicOrder0=601 +ETPTopicOrder0=364 [External Topic Properties\TJclLocalProcSymbolInfo] Count=1 ETPCommand0=2 ETPTopicOrder0=334 +[External Topic Properties\TJclLocationInfoClass] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=365 + +[External Topic Properties\TJclLocationInfoEx] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=555 + +[External Topic Properties\TJclLocationInfoExValues] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=366 + +[External Topic Properties\TJclLocationInfoList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=556 + +[External Topic Properties\TJclLocationInfoListOptions] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=367 + +[External Topic Properties\TJclLzhDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=557 + +[External Topic Properties\TJclLzma86DecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=558 + +[External Topic Properties\TJclLzmaDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=559 + +[External Topic Properties\TJclMachoDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=560 + [External Topic Properties\TJclMapClassTableEvent] Count=1 ETPCommand0=2 -ETPTopicOrder0=602 +ETPTopicOrder0=368 [External Topic Properties\TJclMapLineNumber] Count=1 ETPCommand0=2 -ETPTopicOrder0=192 +ETPTopicOrder0=183 [External Topic Properties\TJclMapLineNumber.LineNumber] Count=1 @@ -123284,12 +139480,12 @@ ETPTopicOrder0=2 [External Topic Properties\TJclMapLineNumbersEvent] Count=1 ETPCommand0=2 -ETPTopicOrder0=603 +ETPTopicOrder0=369 [External Topic Properties\TJclMapLineNumberUnitEvent] Count=1 ETPCommand0=2 -ETPTopicOrder0=604 +ETPTopicOrder0=370 [External Topic Properties\TJclMappedTextReader] Count=1 @@ -123499,7 +139695,7 @@ ETPTopicOrder0=38 [External Topic Properties\TJclMappedTextReaderIndex] Count=1 ETPCommand0=2 -ETPTopicOrder0=193 +ETPTopicOrder0=184 [External Topic Properties\TJclMappedTextReaderIndex.tiFull] Count=1 @@ -123514,7 +139710,7 @@ ETPTopicOrder0=1 [External Topic Properties\TJclMapProcName] Count=1 ETPCommand0=2 -ETPTopicOrder0=194 +ETPTopicOrder0=185 [External Topic Properties\TJclMapProcName.ProcName] Count=1 @@ -123534,12 +139730,12 @@ ETPTopicOrder0=2 [External Topic Properties\TJclMapPublicsEvent] Count=1 ETPCommand0=2 -ETPTopicOrder0=605 +ETPTopicOrder0=371 [External Topic Properties\TJclMapSegment] Count=1 ETPCommand0=2 -ETPTopicOrder0=195 +ETPTopicOrder0=186 [External Topic Properties\TJclMapSegment.EndVA] Count=1 @@ -123564,7 +139760,7 @@ ETPTopicOrder0=3 [External Topic Properties\TJclMapSegmentClass] Count=1 ETPCommand0=2 -ETPTopicOrder0=196 +ETPTopicOrder0=187 [External Topic Properties\TJclMapSegmentClass.Addr] Count=1 @@ -123599,12 +139795,17 @@ ETPTopicOrder0=5 [External Topic Properties\TJclMapSegmentEvent] Count=1 ETPCommand0=2 -ETPTopicOrder0=606 +ETPTopicOrder0=372 + +[External Topic Properties\TJclMbrDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=561 [External Topic Properties\TJclMediaFileSummaryInformation] Count=1 ETPCommand0=2 -ETPTopicOrder0=336 +ETPTopicOrder0=562 [External Topic Properties\TJclMediaFileSummaryInformation.Copyright] Count=1 @@ -123661,10 +139862,20 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=10 +[External Topic Properties\TJclMethodArray] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=373 + +[External Topic Properties\TJclMethodBroadCast] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=563 + [External Topic Properties\TJclMIDIOut] Count=1 ETPCommand0=2 -ETPTopicOrder0=337 +ETPTopicOrder0=564 [External Topic Properties\TJclMIDIOut.ActiveNotes] Count=1 @@ -123984,7 +140195,7 @@ ETPTopicOrder0=61 [External Topic Properties\TJclMiscSummaryInformation] Count=1 ETPCommand0=2 -ETPTopicOrder0=338 +ETPTopicOrder0=565 [External Topic Properties\TJclMiscSummaryInformation.GetFMTID] Count=1 @@ -123994,7 +140205,7 @@ ETPTopicOrder0=0 [External Topic Properties\TJclMixer] Count=1 ETPCommand0=2 -ETPTopicOrder0=339 +ETPTopicOrder0=566 [External Topic Properties\TJclMixer.BuildDevices] Count=1 @@ -124119,7 +140330,7 @@ ETPTopicOrder0=23 [External Topic Properties\TJclMixerDestination] Count=1 ETPCommand0=2 -ETPTopicOrder0=340 +ETPTopicOrder0=567 [External Topic Properties\TJclMixerDestination.BuildSources] Count=1 @@ -124164,7 +140375,7 @@ ETPTopicOrder0=7 [External Topic Properties\TJclMixerDevice] Count=1 ETPCommand0=2 -ETPTopicOrder0=341 +ETPTopicOrder0=568 [External Topic Properties\TJclMixerDevice.BuildDestinations] Count=1 @@ -124339,7 +140550,7 @@ ETPTopicOrder0=33 [External Topic Properties\TJclMixerLine] Count=1 ETPCommand0=2 -ETPTopicOrder0=342 +ETPTopicOrder0=569 [External Topic Properties\TJclMixerLine.BuildLineControls] Count=1 @@ -124459,7 +140670,7 @@ ETPTopicOrder0=22 [External Topic Properties\TJclMixerLineControl] Count=1 ETPCommand0=2 -ETPTopicOrder0=343 +ETPTopicOrder0=570 [External Topic Properties\TJclMixerLineControl.ControlInfo] Count=1 @@ -124619,7 +140830,7 @@ ETPTopicOrder0=30 [External Topic Properties\TJclMixerSource] Count=1 ETPCommand0=2 -ETPTopicOrder0=344 +ETPTopicOrder0=571 [External Topic Properties\TJclMixerSource.Create@TJclMixerDestination@Cardinal] Count=1 @@ -124639,12 +140850,12 @@ ETPTopicOrder0=2 [External Topic Properties\TJclModuleArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=607 +ETPTopicOrder0=374 [External Topic Properties\TJclModuleInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=345 +ETPTopicOrder0=572 [External Topic Properties\TJclModuleInfo.Create@PModuleInfo] Count=1 @@ -124689,7 +140900,7 @@ ETPTopicOrder0=7 [External Topic Properties\TJclModuleInfoList] Count=1 ETPCommand0=2 -ETPTopicOrder0=346 +ETPTopicOrder0=573 [External Topic Properties\TJclModuleInfoList.AddModule@HMODULE@Boolean] Count=1 @@ -124756,10 +140967,15 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=12 +[External Topic Properties\TJclMsdosSys] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=574 + [External Topic Properties\TJclMSISummaryInformation] Count=1 ETPCommand0=2 -ETPTopicOrder0=347 +ETPTopicOrder0=575 [External Topic Properties\TJclMSISummaryInformation.GetFMTID] Count=1 @@ -124781,6 +140997,16 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=3 +[External Topic Properties\TJclMslzDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=576 + +[External Topic Properties\TJclMubDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=577 + [External Topic Properties\TJclMultiplexStream] Count=2 ETPCommand0=2 @@ -124898,16 +141124,36 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=21 +[External Topic Properties\TJclMultiSafeGuard] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=578 + [External Topic Properties\TJclMusicSummaryInformation] Count=1 ETPCommand0=2 -ETPTopicOrder0=349 +ETPTopicOrder0=579 [External Topic Properties\TJclMusicSummaryInformation.GetFMTID] Count=1 ETPCommand0=2 ETPTopicOrder0=0 +[External Topic Properties\TJclNotifyEventBroadcast] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=580 + +[External Topic Properties\TJclNsisDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=581 + +[External Topic Properties\TJclNtfsDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=582 + [External Topic Properties\TJclNullStream] Count=2 ETPCommand0=2 @@ -124945,6 +141191,11 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=5 +[External Topic Properties\TJclObjMultiSafeGuard] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=583 + [External Topic Properties\TJclObjNameSymbolInfo] Count=1 ETPCommand0=2 @@ -124975,10 +141226,30 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=4 +[External Topic Properties\TJclObjSafeGuard] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=584 + +[External Topic Properties\TJclOnSimpleProgress] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=375 + +[External Topic Properties\TJclOnSimpleXMLParsed] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=376 + +[External Topic Properties\TJclOnValueParsed] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=377 + [External Topic Properties\TJclOpCode] Count=1 ETPCommand0=2 -ETPTopicOrder0=197 +ETPTopicOrder0=188 [External Topic Properties\TJclOpCode.opAdd] Count=1 @@ -126435,10 +142706,40 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=290 +[External Topic Properties\TJclOpenDialogFavoritesHook] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=585 + +[External Topic Properties\TJclOpenDialogHook] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=586 + +[External Topic Properties\TJclOpenDialogHookClass] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=378 + +[External Topic Properties\TJclOrdinalRangeTypeInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=587 + +[External Topic Properties\TJclOrdinalTypeInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=588 + +[External Topic Properties\TJclOutOfPlaceUpdateArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=589 + [External Topic Properties\TJclPeBorForm] Count=1 ETPCommand0=2 -ETPTopicOrder0=352 +ETPTopicOrder0=590 [External Topic Properties\TJclPeBorForm.ConvertFormToText@TStream] Count=1 @@ -126518,7 +142819,7 @@ ETPTopicOrder0=13 [External Topic Properties\TJclPeBorImagesCache] Count=1 ETPCommand0=2 -ETPTopicOrder0=353 +ETPTopicOrder0=591 [External Topic Properties\TJclPeBorImagesCache.GetImages@TFileName] Count=1 @@ -126538,7 +142839,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclPeBorTD32Image] Count=1 ETPCommand0=2 -ETPTopicOrder0=354 +ETPTopicOrder0=592 [External Topic Properties\TJclPeBorTD32Image.AfterOpen] Count=1 @@ -126603,7 +142904,7 @@ ETPTopicOrder0=11 [External Topic Properties\TJclPeCertificate] Count=1 ETPCommand0=2 -ETPTopicOrder0=355 +ETPTopicOrder0=593 [External Topic Properties\TJclPeCertificate.Create@TWinCertificate@Pointer] Count=1 @@ -126633,7 +142934,7 @@ ETPTopicOrder0=4 [External Topic Properties\TJclPeCertificateList] Count=1 ETPCommand0=2 -ETPTopicOrder0=356 +ETPTopicOrder0=594 [External Topic Properties\TJclPeCertificateList.Create@TJclPeImage] Count=1 @@ -126658,7 +142959,7 @@ ETPTopicOrder0=3 [External Topic Properties\TJclPeCLRHeader] Count=1 ETPCommand0=2 -ETPTopicOrder0=357 +ETPTopicOrder0=595 [External Topic Properties\TJclPeCLRHeader.Create@TJclPeImage] Count=1 @@ -126710,15 +143011,20 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=9 +[External Topic Properties\TJclPeDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=596 + [External Topic Properties\TJclPeImageClass] Count=1 ETPCommand0=2 -ETPTopicOrder0=608 +ETPTopicOrder0=379 [External Topic Properties\TJclPeMetadata] Count=1 ETPCommand0=2 -ETPTopicOrder0=358 +ETPTopicOrder0=597 [External Topic Properties\TJclPeMetadata.BlobAt@DWORD] Count=1 @@ -126998,7 +143304,7 @@ ETPTopicOrder0=53 [External Topic Properties\TJclPeTarget] Count=1 ETPCommand0=2 -ETPTopicOrder0=198 +ETPTopicOrder0=189 [External Topic Properties\TJclPeTarget.taUnknown] Count=1 @@ -127015,10 +143321,295 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=2 +[External Topic Properties\TJclPostOrderAnsiStrBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=598 + +[External Topic Properties\TJclPostOrderAnsiStrTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=599 + +[External Topic Properties\TJclPostOrderBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=600 + +[External Topic Properties\TJclPostOrderCardinalBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=601 + +[External Topic Properties\TJclPostOrderCardinalTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=602 + +[External Topic Properties\TJclPostOrderDoubleBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=603 + +[External Topic Properties\TJclPostOrderDoubleTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=604 + +[External Topic Properties\TJclPostOrderExtendedBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=605 + +[External Topic Properties\TJclPostOrderExtendedTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=606 + +[External Topic Properties\TJclPostOrderFloatBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=380 + +[External Topic Properties\TJclPostOrderFloatTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=381 + +[External Topic Properties\TJclPostOrderInt64BinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=607 + +[External Topic Properties\TJclPostOrderInt64TreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=608 + +[External Topic Properties\TJclPostOrderIntegerBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=609 + +[External Topic Properties\TJclPostOrderIntegerTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=610 + +[External Topic Properties\TJclPostOrderIntfBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=611 + +[External Topic Properties\TJclPostOrderIntfTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=612 + +[External Topic Properties\TJclPostOrderPtrBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=613 + +[External Topic Properties\TJclPostOrderPtrTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=614 + +[External Topic Properties\TJclPostOrderSingleBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=615 + +[External Topic Properties\TJclPostOrderSingleTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=616 + +[External Topic Properties\TJclPostOrderStrBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=382 + +[External Topic Properties\TJclPostOrderStrTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=383 + +[External Topic Properties\TJclPostOrderTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=617 + +[External Topic Properties\TJclPostOrderUnicodeStrBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=618 + +[External Topic Properties\TJclPostOrderUnicodeStrTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=619 + +[External Topic Properties\TJclPostOrderWideStrBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=620 + +[External Topic Properties\TJclPostOrderWideStrTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=621 + +[External Topic Properties\TJclPpmdDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=622 + +[External Topic Properties\TJclPreOrderAnsiStrBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=623 + +[External Topic Properties\TJclPreOrderAnsiStrTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=624 + +[External Topic Properties\TJclPreOrderBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=625 + +[External Topic Properties\TJclPreOrderCardinalBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=626 + +[External Topic Properties\TJclPreOrderCardinalTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=627 + +[External Topic Properties\TJclPreOrderDoubleBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=628 + +[External Topic Properties\TJclPreOrderDoubleTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=629 + +[External Topic Properties\TJclPreOrderExtendedBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=630 + +[External Topic Properties\TJclPreOrderExtendedTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=631 + +[External Topic Properties\TJclPreOrderFloatBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=384 + +[External Topic Properties\TJclPreOrderFloatTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=385 + +[External Topic Properties\TJclPreOrderInt64BinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=632 + +[External Topic Properties\TJclPreOrderInt64TreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=633 + +[External Topic Properties\TJclPreOrderIntegerBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=634 + +[External Topic Properties\TJclPreOrderIntegerTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=635 + +[External Topic Properties\TJclPreOrderIntfBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=636 + +[External Topic Properties\TJclPreOrderIntfTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=637 + +[External Topic Properties\TJclPreOrderPtrBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=638 + +[External Topic Properties\TJclPreOrderPtrTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=639 + +[External Topic Properties\TJclPreOrderSingleBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=640 + +[External Topic Properties\TJclPreOrderSingleTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=641 + +[External Topic Properties\TJclPreOrderStrBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=386 + +[External Topic Properties\TJclPreOrderStrTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=387 + +[External Topic Properties\TJclPreOrderTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=642 + +[External Topic Properties\TJclPreOrderUnicodeStrBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=643 + +[External Topic Properties\TJclPreOrderUnicodeStrTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=644 + +[External Topic Properties\TJclPreOrderWideStrBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=645 + +[External Topic Properties\TJclPreOrderWideStrTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=646 + [External Topic Properties\TJclPrintSet] Count=1 ETPCommand0=2 -ETPTopicOrder0=359 +ETPTopicOrder0=647 [External Topic Properties\TJclPrintSet.BinIndex] Count=1 @@ -127470,6 +144061,16 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=87 +[External Topic Properties\TJclProcedureEvent] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=388 + +[External Topic Properties\TJclProcedureEventBroadcast] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=648 + [External Topic Properties\TJclProcSymbolInfo] Count=1 ETPCommand0=2 @@ -127510,6 +144111,198 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=6 +[External Topic Properties\TJclPropInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=649 + +[External Topic Properties\TJclPtrAbstractContainer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=650 + +[External Topic Properties\TJclPtrArrayIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=651 + +[External Topic Properties\TJclPtrArrayList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=652 + +[External Topic Properties\TJclPtrArraySet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=653 + +[External Topic Properties\TJclPtrBinaryNode] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=654 + +[External Topic Properties\TJclPtrBinaryTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=655 + +[External Topic Properties\TJclPtrBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=656 + +[External Topic Properties\TJclPtrBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=657 + +[External Topic Properties\TJclPtrHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=190 + +[External Topic Properties\TJclPtrHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=658 + +[External Topic Properties\TJclPtrHashSet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=659 + +[External Topic Properties\TJclPtrIntfBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=660 + +[External Topic Properties\TJclPtrIntfHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=191 + +[External Topic Properties\TJclPtrIntfHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=661 + +[External Topic Properties\TJclPtrIntfSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=192 + +[External Topic Properties\TJclPtrIntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=662 + +[External Topic Properties\TJclPtrLinkedList] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=663 + +[External Topic Properties\TJclPtrLinkedListItem] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=664 + +[External Topic Properties\TJclPtrLinkedListIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=665 + +[External Topic Properties\TJclPtrPtrBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=666 + +[External Topic Properties\TJclPtrPtrHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=193 + +[External Topic Properties\TJclPtrPtrHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=667 + +[External Topic Properties\TJclPtrPtrSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=194 + +[External Topic Properties\TJclPtrPtrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=668 + +[External Topic Properties\TJclPtrQueue] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=669 + +[External Topic Properties\TJclPtrSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=195 + +[External Topic Properties\TJclPtrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=670 + +[External Topic Properties\TJclPtrStack] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=671 + +[External Topic Properties\TJclPtrTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=672 + +[External Topic Properties\TJclPtrTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=673 + +[External Topic Properties\TJclPtrTreeNode] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=674 + +[External Topic Properties\TJclPtrVector] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=675 + +[External Topic Properties\TJclPtrVectorIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=676 + [External Topic Properties\TJclPublicSymbolInfo] Count=1 ETPCommand0=2 @@ -127518,7 +144311,7 @@ ETPTopicOrder0=361 [External Topic Properties\TJclQuerySummaryInformation] Count=1 ETPCommand0=2 -ETPTopicOrder0=362 +ETPTopicOrder0=677 [External Topic Properties\TJclQuerySummaryInformation.GetFMTID] Count=1 @@ -127567,6 +144360,11 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=364 +[External Topic Properties\TJclRarDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=678 + [External Topic Properties\TJclRARDecompressionStream] Count=1 ETPCommand0=2 @@ -127575,7 +144373,7 @@ ETPTopicOrder0=365 [External Topic Properties\TJclRational] Count=1 ETPCommand0=2 -ETPTopicOrder0=366 +ETPTopicOrder0=679 [External Topic Properties\TJclRational.Abs] Count=1 @@ -127810,7 +144608,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclRebaseImageInfo32] Count=1 ETPCommand0=2 -ETPTopicOrder0=199 +ETPTopicOrder0=2 [External Topic Properties\TJclRebaseImageInfo32.NewImageBase] Count=1 @@ -127835,7 +144633,7 @@ ETPTopicOrder0=3 [External Topic Properties\TJclRebaseImageInfo64] Count=1 ETPCommand0=2 -ETPTopicOrder0=200 +ETPTopicOrder0=3 [External Topic Properties\TJclRebaseImageInfo64.NewImageBase] Count=1 @@ -127860,7 +144658,7 @@ ETPTopicOrder0=3 [External Topic Properties\TJclReferenceMemoryStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=367 +ETPTopicOrder0=680 [External Topic Properties\TJclReferenceMemoryStream.Create@Pointer@Longint] Count=1 @@ -127872,10 +144670,30 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=1 +[External Topic Properties\TJclRegEx] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=681 + +[External Topic Properties\TJclRegExCallout] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=389 + +[External Topic Properties\TJclRegExOption] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=196 + +[External Topic Properties\TJclRegExOptions] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=390 + [External Topic Properties\TJclRegionBitmapMode] Count=1 ETPCommand0=2 -ETPTopicOrder0=201 +ETPTopicOrder0=197 [External Topic Properties\TJclRegionBitmapMode.rmExclude] Count=1 @@ -127890,7 +144708,7 @@ ETPTopicOrder0=1 [External Topic Properties\TJclRegionCombineOperator] Count=1 ETPCommand0=2 -ETPTopicOrder0=202 +ETPTopicOrder0=198 [External Topic Properties\TJclRegionCombineOperator.coAnd] Count=1 @@ -127915,7 +144733,7 @@ ETPTopicOrder0=3 [External Topic Properties\TJclRegionKind] Count=1 ETPCommand0=2 -ETPTopicOrder0=203 +ETPTopicOrder0=199 [External Topic Properties\TJclRegionKind.rkComplex] Count=1 @@ -127937,10 +144755,25 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=3 +[External Topic Properties\TJclRegWOW64Access] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=200 + +[External Topic Properties\TJclRpmDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=682 + +[External Topic Properties\TJclSafeGuard] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=683 + [External Topic Properties\TJclScheduledTask] Count=1 ETPCommand0=2 -ETPTopicOrder0=368 +ETPTopicOrder0=684 [External Topic Properties\TJclScheduledTask.ApplicationName] Count=1 @@ -128050,7 +144883,7 @@ ETPTopicOrder0=20 [External Topic Properties\TJclScheduledTaskFlag] Count=1 ETPCommand0=2 -ETPTopicOrder0=204 +ETPTopicOrder0=201 [External Topic Properties\TJclScheduledTaskFlag.tfDeleteWhenDone] Count=1 @@ -128120,12 +144953,12 @@ ETPTopicOrder0=12 [External Topic Properties\TJclScheduledTaskFlags] Count=1 ETPCommand0=2 -ETPTopicOrder0=609 +ETPTopicOrder0=391 [External Topic Properties\TJclScheduledTaskStatus] Count=1 ETPCommand0=2 -ETPTopicOrder0=205 +ETPTopicOrder0=202 [External Topic Properties\TJclScheduledTaskStatus.tsHasNotRun] Count=1 @@ -128155,7 +144988,7 @@ ETPTopicOrder0=4 [External Topic Properties\TJclScheduledWorkItem] Count=1 ETPCommand0=2 -ETPTopicOrder0=369 +ETPTopicOrder0=685 [External Topic Properties\TJclScheduledWorkItem.AccountName] Count=1 @@ -128425,7 +145258,7 @@ ETPTopicOrder0=52 [External Topic Properties\TJclScheduleTaskPropertyPage] Count=1 ETPCommand0=2 -ETPTopicOrder0=206 +ETPTopicOrder0=203 [External Topic Properties\TJclScheduleTaskPropertyPage.ppSchedule] Count=1 @@ -128445,7 +145278,7 @@ ETPTopicOrder0=2 [External Topic Properties\TJclScheduleTaskPropertyPages] Count=1 ETPCommand0=2 -ETPTopicOrder0=610 +ETPTopicOrder0=392 [External Topic Properties\TJclScopedStream] Count=2 @@ -128512,7 +145345,7 @@ ETPTopicOrder0=10 [External Topic Properties\TJclScreenBackColor] Count=1 ETPCommand0=2 -ETPTopicOrder0=207 +ETPTopicOrder0=204 [External Topic Properties\TJclScreenBackColor.bclBlack] Count=1 @@ -128557,7 +145390,7 @@ ETPTopicOrder0=7 [External Topic Properties\TJclScreenBuffer] Count=1 ETPCommand0=2 -ETPTopicOrder0=371 +ETPTopicOrder0=686 [External Topic Properties\TJclScreenBuffer.Clear] Count=1 @@ -128792,17 +145625,17 @@ ETPTopicOrder0=35 [External Topic Properties\TJclScreenBufferAfterResizeEvent] Count=1 ETPCommand0=2 -ETPTopicOrder0=611 +ETPTopicOrder0=393 [External Topic Properties\TJclScreenBufferBeforeResizeEvent] Count=1 ETPCommand0=2 -ETPTopicOrder0=612 +ETPTopicOrder0=394 [External Topic Properties\TJclScreenBufferTextHorizontalAlign] Count=1 ETPCommand0=2 -ETPTopicOrder0=208 +ETPTopicOrder0=205 [External Topic Properties\TJclScreenBufferTextHorizontalAlign.thaCenter] Count=1 @@ -128827,7 +145660,7 @@ ETPTopicOrder0=3 [External Topic Properties\TJclScreenBufferTextVerticalAlign] Count=1 ETPCommand0=2 -ETPTopicOrder0=209 +ETPTopicOrder0=206 [External Topic Properties\TJclScreenBufferTextVerticalAlign.tvaBottom] Count=1 @@ -128852,7 +145685,7 @@ ETPTopicOrder0=3 [External Topic Properties\TJclScreenCharacter] Count=1 ETPCommand0=2 -ETPTopicOrder0=372 +ETPTopicOrder0=687 [External Topic Properties\TJclScreenCharacter.Character] Count=1 @@ -128897,7 +145730,7 @@ ETPTopicOrder0=7 [External Topic Properties\TJclScreenCursor] Count=1 ETPCommand0=2 -ETPTopicOrder0=373 +ETPTopicOrder0=688 [External Topic Properties\TJclScreenCursor.Create@TJclScreenBuffer] Count=1 @@ -128997,12 +145830,12 @@ ETPTopicOrder0=16 [External Topic Properties\TJclScreenCursorSize] Count=1 ETPCommand0=2 -ETPTopicOrder0=613 +ETPTopicOrder0=395 [External Topic Properties\TJclScreenCustomTextAttribute] Count=1 ETPCommand0=2 -ETPTopicOrder0=374 +ETPTopicOrder0=689 [External Topic Properties\TJclScreenCustomTextAttribute.BgColor] Count=1 @@ -129107,7 +145940,7 @@ ETPTopicOrder0=19 [External Topic Properties\TJclScreenFont] Count=1 ETPCommand0=2 -ETPTopicOrder0=375 +ETPTopicOrder0=690 [External Topic Properties\TJclScreenFont.Create@TJclScreenBuffer] Count=1 @@ -129137,7 +145970,7 @@ ETPTopicOrder0=4 [External Topic Properties\TJclScreenFontColor] Count=1 ETPCommand0=2 -ETPTopicOrder0=210 +ETPTopicOrder0=207 [External Topic Properties\TJclScreenFontColor.fclBlack] Count=1 @@ -129182,7 +146015,7 @@ ETPTopicOrder0=7 [External Topic Properties\TJclScreenFontStyle] Count=1 ETPCommand0=2 -ETPTopicOrder0=211 +ETPTopicOrder0=208 [External Topic Properties\TJclScreenFontStyle.fsGridHorizontal] Count=1 @@ -129227,12 +146060,12 @@ ETPTopicOrder0=7 [External Topic Properties\TJclScreenFontStyles] Count=1 ETPCommand0=2 -ETPTopicOrder0=614 +ETPTopicOrder0=396 [External Topic Properties\TJclScreenTextAttribute] Count=1 ETPCommand0=2 -ETPTopicOrder0=376 +ETPTopicOrder0=691 [External Topic Properties\TJclScreenTextAttribute.Create@TJclScreenFontColor@TJclScreenBackColor@Boolean@Boolean@TJclScreenFontStyles] Count=1 @@ -129262,7 +146095,7 @@ ETPTopicOrder0=3 [External Topic Properties\TJclScreenWindow] Count=1 ETPCommand0=2 -ETPTopicOrder0=377 +ETPTopicOrder0=692 [External Topic Properties\TJclScreenWindow.Bottom] Count=1 @@ -129496,20 +146329,105 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=9 +[External Topic Properties\TJclSerializableException] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=693 + +[External Topic Properties\TJclSerializableExceptionInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=694 + +[External Topic Properties\TJclSerializableLocationInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=695 + +[External Topic Properties\TJclSerializableLocationInfoList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=696 + +[External Topic Properties\TJclSerializableModuleInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=697 + +[External Topic Properties\TJclSerializableModuleInfoList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=698 + +[External Topic Properties\TJclSerializableThreadInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=699 + +[External Topic Properties\TJclSerializableThreadInfoList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=700 + [External Topic Properties\TJclServiceStates] Count=1 ETPCommand0=2 -ETPTopicOrder0=615 +ETPTopicOrder0=397 [External Topic Properties\TJclServiceTypes] Count=1 ETPCommand0=2 -ETPTopicOrder0=616 +ETPTopicOrder0=398 + +[External Topic Properties\TJclSetTypeInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=701 + +[External Topic Properties\TJclSevenzipCompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=702 + +[External Topic Properties\TJclSevenzipDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=703 + +[External Topic Properties\TJclSevenzipExtractCallback] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=704 + +[External Topic Properties\TJclSevenzipInStream] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=705 + +[External Topic Properties\TJclSevenzipOpenCallback] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=706 + +[External Topic Properties\TJclSevenzipOutStream] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=707 + +[External Topic Properties\TJclSevenzipUpdateArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=708 + +[External Topic Properties\TJclSevenzipUpdateCallback] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=709 [External Topic Properties\TJclShareSummaryInformation] Count=1 ETPCommand0=2 -ETPTopicOrder0=379 +ETPTopicOrder0=710 [External Topic Properties\TJclShareSummaryInformation.GetFMTID] Count=1 @@ -129519,7 +146437,7 @@ ETPTopicOrder0=0 [External Topic Properties\TJclShellSummaryInformation] Count=1 ETPCommand0=2 -ETPTopicOrder0=380 +ETPTopicOrder0=711 [External Topic Properties\TJclShellSummaryInformation.GetFMTID] Count=1 @@ -129529,7 +146447,7 @@ ETPTopicOrder0=0 [External Topic Properties\TJclSimpleLog] Count=1 ETPCommand0=2 -ETPTopicOrder0=381 +ETPTopicOrder0=712 [External Topic Properties\TJclSimpleLog.ClearLog] Count=1 @@ -129606,10 +146524,314 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=12 +[External Topic Properties\TJclSimpleXML] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=713 + +[External Topic Properties\TJclSimpleXMLElem] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=714 + +[External Topic Properties\TJclSimpleXMLElemCData] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=715 + +[External Topic Properties\TJclSimpleXMLElemClass] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=399 + +[External Topic Properties\TJclSimpleXMLElemClassic] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=716 + +[External Topic Properties\TJclSimpleXMLElemComment] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=717 + +[External Topic Properties\TJclSimpleXMLElemCompare] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=400 + +[External Topic Properties\TJclSimpleXMLElemDocType] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=718 + +[External Topic Properties\TJclSimpleXMLElemHeader] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=719 + +[External Topic Properties\TJclSimpleXMLElemMSOApplication] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=720 + +[External Topic Properties\TJclSimpleXMLElemProcessingInstruction] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=721 + +[External Topic Properties\TJclSimpleXMLElems] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=722 + +[External Topic Properties\TJclSimpleXMLElemSheet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=723 + +[External Topic Properties\TJclSimpleXMLElemsProlog] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=724 + +[External Topic Properties\TJclSimpleXMLElemText] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=725 + +[External Topic Properties\TJclSimpleXMLEncodeEvent] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=401 + +[External Topic Properties\TJclSimpleXMLEncodeStreamEvent] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=402 + +[External Topic Properties\TJclSimpleXMLNamedElems] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=726 + +[External Topic Properties\TJclSimpleXMLOptions] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=403 + +[External Topic Properties\TJclSimpleXMLProp] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=727 + +[External Topic Properties\TJclSimpleXMLProps] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=728 + +[External Topic Properties\TJclSingleAbstractContainer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=729 + +[External Topic Properties\TJclSingleArrayIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=730 + +[External Topic Properties\TJclSingleArrayList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=731 + +[External Topic Properties\TJclSingleArraySet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=732 + +[External Topic Properties\TJclSingleBinaryNode] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=733 + +[External Topic Properties\TJclSingleBinaryTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=734 + +[External Topic Properties\TJclSingleBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=735 + +[External Topic Properties\TJclSingleBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=736 + +[External Topic Properties\TJclSingleHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=209 + +[External Topic Properties\TJclSingleHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=737 + +[External Topic Properties\TJclSingleHashSet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=738 + +[External Topic Properties\TJclSingleIntfBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=739 + +[External Topic Properties\TJclSingleIntfHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=210 + +[External Topic Properties\TJclSingleIntfHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=740 + +[External Topic Properties\TJclSingleIntfSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=211 + +[External Topic Properties\TJclSingleIntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=741 + +[External Topic Properties\TJclSingleLinkedList] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=742 + +[External Topic Properties\TJclSingleLinkedListItem] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=743 + +[External Topic Properties\TJclSingleLinkedListIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=744 + +[External Topic Properties\TJclSingleQueue] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=745 + +[External Topic Properties\TJclSingleSingleBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=746 + +[External Topic Properties\TJclSingleSingleHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=212 + +[External Topic Properties\TJclSingleSingleHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=747 + +[External Topic Properties\TJclSingleSingleSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=213 + +[External Topic Properties\TJclSingleSingleSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=748 + +[External Topic Properties\TJclSingleSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=214 + +[External Topic Properties\TJclSingleSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=749 + +[External Topic Properties\TJclSingleStack] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=750 + +[External Topic Properties\TJclSingleTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=751 + +[External Topic Properties\TJclSingleTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=752 + +[External Topic Properties\TJclSingleTreeNode] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=753 + +[External Topic Properties\TJclSingleVector] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=754 + +[External Topic Properties\TJclSingleVectorIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=755 + [External Topic Properties\TJclSmartCompOptions] Count=1 ETPCommand0=2 -ETPTopicOrder0=617 +ETPTopicOrder0=404 + +[External Topic Properties\TJclSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=215 + +[External Topic Properties\TJclSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=756 [External Topic Properties\TJclSourceModuleInfo] Count=1 @@ -129694,7 +146916,7 @@ ETPTopicOrder0=14 [External Topic Properties\TJclSparseFlatSet] Count=1 ETPCommand0=2 -ETPTopicOrder0=383 +ETPTopicOrder0=757 [External Topic Properties\TJclSparseFlatSet.Clear] Count=1 @@ -129741,10 +146963,25 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=8 +[External Topic Properties\TJclSplitDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=758 + +[External Topic Properties\TJclSplitStream] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=759 + +[External Topic Properties\TJclSplitVolume] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=760 + [External Topic Properties\TJclStackTrackingOption] Count=1 ETPCommand0=2 -ETPTopicOrder0=212 +ETPTopicOrder0=216 [External Topic Properties\TJclStackTrackingOption.stAllModules] Count=1 @@ -129789,22 +147026,42 @@ ETPTopicOrder0=7 [External Topic Properties\TJclStackTrackingOptions] Count=1 ETPCommand0=2 -ETPTopicOrder0=618 +ETPTopicOrder0=405 + +[External Topic Properties\TJclStaticSplitStream] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=761 [External Topic Properties\TJclStorageSummaryInformation] Count=1 ETPCommand0=2 -ETPTopicOrder0=384 +ETPTopicOrder0=762 [External Topic Properties\TJclStorageSummaryInformation.GetFMTID] Count=1 ETPCommand0=2 ETPTopicOrder0=0 +[External Topic Properties\TJclStrAbstractContainer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=763 + +[External Topic Properties\TJclStrArrayIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=406 + +[External Topic Properties\TJclStrArrayList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=407 + [External Topic Properties\TJclStrArraySet] Count=1 ETPCommand0=2 -ETPTopicOrder0=385 +ETPTopicOrder0=408 [External Topic Properties\TJclStrArraySet.Add@string] Count=1 @@ -129849,7 +147106,7 @@ ETPTopicOrder0=7 [External Topic Properties\TJclStrBinaryNode] Count=1 ETPCommand0=2 -ETPTopicOrder0=386 +ETPTopicOrder0=409 [External Topic Properties\TJclStrBinaryNode.Color] Count=1 @@ -129879,7 +147136,7 @@ ETPTopicOrder0=4 [External Topic Properties\TJclStrBinaryTree] Count=1 ETPCommand0=2 -ETPTopicOrder0=387 +ETPTopicOrder0=410 [External Topic Properties\TJclStrBinaryTree.Add@string] Count=1 @@ -130001,10 +147258,15 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=23 +[External Topic Properties\TJclStrBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=411 + [External Topic Properties\TJclStrBucket] Count=1 ETPCommand0=2 -ETPTopicOrder0=388 +ETPTopicOrder0=412 [External Topic Properties\TJclStrBucket.Entries] Count=1 @@ -130158,6 +147420,11 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=1 +[External Topic Properties\TJclStreamAccess] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=217 + [External Topic Properties\TJclStreamDecorator] Count=2 ETPCommand0=2 @@ -130260,25 +147527,40 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=16 +[External Topic Properties\TJclStreamGetNextCharFunc] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=413 + [External Topic Properties\TJclStreamReadEvent] Count=1 ETPCommand0=2 -ETPTopicOrder0=620 +ETPTopicOrder0=414 [External Topic Properties\TJclStreamSeekEvent] Count=1 ETPCommand0=2 -ETPTopicOrder0=621 +ETPTopicOrder0=415 + +[External Topic Properties\TJclStreamSetNextCharFunc] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=416 [External Topic Properties\TJclStreamSizeEvent] Count=1 ETPCommand0=2 -ETPTopicOrder0=622 +ETPTopicOrder0=417 + +[External Topic Properties\TJclStreamSkipCharsFunc] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=418 [External Topic Properties\TJclStreamWriteEvent] Count=1 ETPCommand0=2 -ETPTopicOrder0=623 +ETPTopicOrder0=419 [External Topic Properties\TJclStrEntry] Count=1 @@ -130300,10 +147582,67 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=624 +[External Topic Properties\TJclStrHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=420 + +[External Topic Properties\TJclStrHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=764 + +[External Topic Properties\TJclStrHashSet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=421 + +[External Topic Properties\TJclStringBuilder] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=765 + +[External Topic Properties\TJclStringEncoding] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=218 + +[External Topic Properties\TJclStringList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=766 + +[External Topic Properties\TJclStringListObjectsMode] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=219 + +[External Topic Properties\TJclStringListSortCompare] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=422 + +[External Topic Properties\TJclStringStream] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=767 + +[External Topic Properties\TJclStringStreamClass] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=423 + +[External Topic Properties\TJclStringTypeInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=768 + [External Topic Properties\TJclStrIntfBucket] Count=1 ETPCommand0=2 -ETPTopicOrder0=392 +ETPTopicOrder0=424 [External Topic Properties\TJclStrIntfBucket.Entries] Count=1 @@ -130340,10 +147679,41 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=626 -[External Topic Properties\TJclStrLinkedListItem] +[External Topic Properties\TJclStrIntfHashEntry] Count=1 ETPCommand0=2 -ETPTopicOrder0=393 +ETPTopicOrder0=425 + +[External Topic Properties\TJclStrIntfHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=769 + +[External Topic Properties\TJclStrIntfSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=426 + +[External Topic Properties\TJclStrIntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=770 + +[External Topic Properties\TJclStrLinkedList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=427 + +[External Topic Properties\TJclStrLinkedListItem] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=771 [External Topic Properties\TJclStrLinkedListItem.Next] Count=1 @@ -130355,10 +147725,39 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=1 +[External Topic Properties\TJclStrLinkedListIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=772 + +[External Topic Properties\TJclStrQueue] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=428 + +[External Topic Properties\TJclStrSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=429 + +[External Topic Properties\TJclStrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=773 + +[External Topic Properties\TJclStrStack] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=430 + [External Topic Properties\TJclStrStrBucket] Count=1 ETPCommand0=2 -ETPTopicOrder0=394 +ETPTopicOrder0=431 [External Topic Properties\TJclStrStrBucket.Entries] Count=1 @@ -130395,10 +147794,49 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=628 +[External Topic Properties\TJclStrStrHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=432 + +[External Topic Properties\TJclStrStrHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=774 + +[External Topic Properties\TJclStrStrSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=433 + +[External Topic Properties\TJclStrStrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=775 + +[External Topic Properties\TJclStrTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=434 + +[External Topic Properties\TJclStrTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=435 + +[External Topic Properties\TJclStrTreeNode] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=436 + [External Topic Properties\TJclStructStorageAccessMode] Count=1 ETPCommand0=2 -ETPTopicOrder0=216 +ETPTopicOrder0=220 [External Topic Properties\TJclStructStorageAccessMode.smCreate] Count=1 @@ -130433,12 +147871,12 @@ ETPTopicOrder0=5 [External Topic Properties\TJclStructStorageAccessModes] Count=1 ETPCommand0=2 -ETPTopicOrder0=629 +ETPTopicOrder0=437 [External Topic Properties\TJclStructStorageFolder] Count=1 ETPCommand0=2 -ETPTopicOrder0=395 +ETPTopicOrder0=776 [External Topic Properties\TJclStructStorageFolder.Add@string@Boolean] Count=1 @@ -130588,7 +148026,7 @@ ETPTopicOrder0=28 [External Topic Properties\TJclStructStorageStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=396 +ETPTopicOrder0=777 [External Topic Properties\TJclStructStorageStream.Check] Count=1 @@ -130680,6 +148118,38 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=17 +[External Topic Properties\TJclStrVector] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=438 + +[External Topic Properties\TJclStrVectorIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=778 + +[External Topic Properties\TJclSwfcCompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=779 + +[External Topic Properties\TJclSwfcDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=780 + +[External Topic Properties\TJclSwfcUpdateArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=781 + +[External Topic Properties\TJclSwfDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=782 + [External Topic Properties\TJclSymbolInfo] Count=1 ETPCommand0=2 @@ -130700,20 +148170,35 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=2 +[External Topic Properties\TJclTarCompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=783 + [External Topic Properties\TJclTARCompressionStream] Count=1 ETPCommand0=2 ETPTopicOrder0=398 +[External Topic Properties\TJclTarDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=784 + [External Topic Properties\TJclTARDecompressionStream] Count=1 ETPCommand0=2 ETPTopicOrder0=399 +[External Topic Properties\TJclTarUpdateArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=785 + [External Topic Properties\TJclTaskSchedule] Count=1 ETPCommand0=2 -ETPTopicOrder0=400 +ETPTopicOrder0=786 [External Topic Properties\TJclTaskSchedule.Add@WideString] Count=1 @@ -130823,7 +148308,7 @@ ETPTopicOrder0=18 [External Topic Properties\TJclTaskTrigger] Count=1 ETPCommand0=2 -ETPTopicOrder0=401 +ETPTopicOrder0=787 [External Topic Properties\TJclTaskTrigger.FTaskTrigger] Count=1 @@ -130868,7 +148353,7 @@ ETPTopicOrder0=7 [External Topic Properties\TJclTaskTriggers] Count=1 ETPCommand0=2 -ETPTopicOrder0=402 +ETPTopicOrder0=788 [External Topic Properties\TJclTaskTriggers.Add] Count=1 @@ -130923,12 +148408,22 @@ ETPTopicOrder0=8 [External Topic Properties\TJclTaskWindowsList] Count=1 ETPCommand0=2 -ETPTopicOrder0=630 +ETPTopicOrder0=439 + +[External Topic Properties\TJclTD32ConstantSymbolInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=789 + +[External Topic Properties\TJclTD32DataSymbolInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=790 [External Topic Properties\TJclTD32FileSignature] Count=1 ETPCommand0=2 -ETPTopicOrder0=217 +ETPTopicOrder0=221 [External Topic Properties\TJclTD32FileSignature.Offset] Count=1 @@ -130940,10 +148435,20 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=1 +[External Topic Properties\TJclTD32GDataSymbolInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=791 + +[External Topic Properties\TJclTD32GlobalProcSymbolInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=792 + [External Topic Properties\TJclTD32InfoParser] Count=1 ETPCommand0=2 -ETPTopicOrder0=403 +ETPTopicOrder0=793 [External Topic Properties\TJclTD32InfoParser.Analyse] Count=1 @@ -131173,7 +148678,7 @@ ETPTopicOrder0=44 [External Topic Properties\TJclTD32InfoScanner] Count=1 ETPCommand0=2 -ETPTopicOrder0=404 +ETPTopicOrder0=794 [External Topic Properties\TJclTD32InfoScanner.LineNumberFromAddr@DWORD] Count=1 @@ -131205,10 +148710,75 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=3 +[External Topic Properties\TJclTD32LabelSymbolInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=795 + +[External Topic Properties\TJclTD32LDataSymbolInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=796 + +[External Topic Properties\TJclTD32LineInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=797 + +[External Topic Properties\TJclTD32LocalProcSymbolInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=798 + +[External Topic Properties\TJclTD32ModuleInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=799 + +[External Topic Properties\TJclTD32ObjNameSymbolInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=800 + +[External Topic Properties\TJclTD32ProcSymbolInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=801 + +[External Topic Properties\TJclTD32PublicSymbolInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=802 + +[External Topic Properties\TJclTD32SourceModuleInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=803 + +[External Topic Properties\TJclTD32SymbolInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=804 + +[External Topic Properties\TJclTD32UdtSymbolInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=805 + +[External Topic Properties\TJclTD32VftPathSymbolInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=806 + +[External Topic Properties\TJclTD32WithSymbolInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=807 + [External Topic Properties\TJclTerminateAppResult] Count=1 ETPCommand0=2 -ETPTopicOrder0=218 +ETPTopicOrder0=222 [External Topic Properties\TJclTerminateAppResult.taClean] Count=1 @@ -131228,7 +148798,52 @@ ETPTopicOrder0=2 [External Topic Properties\TJclThreadIDNotifyEvent] Count=1 ETPCommand0=2 -ETPTopicOrder0=631 +ETPTopicOrder0=440 + +[External Topic Properties\TJclThreadInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=808 + +[External Topic Properties\TJclThreadInfoList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=809 + +[External Topic Properties\TJclThreadInfoOptions] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=441 + +[External Topic Properties\TJclTimeZoneCallBackFunc] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=442 + +[External Topic Properties\TJclTimeZoneInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=810 + +[External Topic Properties\TJclTimeZoneRegInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=223 + +[External Topic Properties\TJclTimeZones] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=811 + +[External Topic Properties\TJclTraverseOrder] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=82 + +[External Topic Properties\TJclTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=812 [External Topic Properties\TJclTreeColor] Count=1 @@ -131245,6 +148860,31 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=1 +[External Topic Properties\TJclTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=813 + +[External Topic Properties\TJclTreeNode] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=814 + +[External Topic Properties\TJclTypeInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=815 + +[External Topic Properties\TJclTZIValueInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=224 + +[External Topic Properties\TJclUdfDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=816 + [External Topic Properties\TJclUdtSymbolInfo] Count=1 ETPCommand0=2 @@ -131285,15 +148925,222 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=6 +[External Topic Properties\TJclULargeInteger] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=443 + [External Topic Properties\TJclUnaryInstruction] Count=1 ETPCommand0=2 -ETPTopicOrder0=406 +ETPTopicOrder0=817 + +[External Topic Properties\TJclUnicodeStrAbstractCollection] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=818 + +[External Topic Properties\TJclUnicodeStrAbstractContainer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=819 + +[External Topic Properties\TJclUnicodeStrArrayIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=820 + +[External Topic Properties\TJclUnicodeStrArrayList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=821 + +[External Topic Properties\TJclUnicodeStrArraySet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=822 + +[External Topic Properties\TJclUnicodeStrBinaryNode] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=823 + +[External Topic Properties\TJclUnicodeStrBinaryTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=824 + +[External Topic Properties\TJclUnicodeStrBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=825 + +[External Topic Properties\TJclUnicodeStrBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=826 + +[External Topic Properties\TJclUnicodeStrHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=225 + +[External Topic Properties\TJclUnicodeStrHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=827 + +[External Topic Properties\TJclUnicodeStrHashSet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=828 + +[External Topic Properties\TJclUnicodeStringList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=444 + +[External Topic Properties\TJclUnicodeStrings] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=445 + +[External Topic Properties\TJclUnicodeStrIntfBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=829 + +[External Topic Properties\TJclUnicodeStrIntfHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=226 + +[External Topic Properties\TJclUnicodeStrIntfHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=830 + +[External Topic Properties\TJclUnicodeStrIntfSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=227 + +[External Topic Properties\TJclUnicodeStrIntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=831 + +[External Topic Properties\TJclUnicodeStrLinkedList] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=832 + +[External Topic Properties\TJclUnicodeStrLinkedListItem] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=833 + +[External Topic Properties\TJclUnicodeStrLinkedListIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=834 + +[External Topic Properties\TJclUnicodeStrQueue] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=835 + +[External Topic Properties\TJclUnicodeStrSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=228 + +[External Topic Properties\TJclUnicodeStrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=836 + +[External Topic Properties\TJclUnicodeStrStack] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=837 + +[External Topic Properties\TJclUnicodeStrTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=838 + +[External Topic Properties\TJclUnicodeStrTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=839 + +[External Topic Properties\TJclUnicodeStrTreeNode] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=840 + +[External Topic Properties\TJclUnicodeStrUnicodeStrBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=841 + +[External Topic Properties\TJclUnicodeStrUnicodeStrHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=229 + +[External Topic Properties\TJclUnicodeStrUnicodeStrHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=842 + +[External Topic Properties\TJclUnicodeStrUnicodeStrSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=230 + +[External Topic Properties\TJclUnicodeStrUnicodeStrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=843 + +[External Topic Properties\TJclUnicodeStrVector] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=844 + +[External Topic Properties\TJclUnicodeStrVectorIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=845 [External Topic Properties\TJclUnitVersioningList] Count=1 ETPCommand0=2 -ETPTopicOrder0=407 +ETPTopicOrder0=846 [External Topic Properties\TJclUnitVersioningList.Add@TUnitVersionInfo] Count=1 @@ -131373,7 +149220,7 @@ ETPTopicOrder0=14 [External Topic Properties\TJclUnitVersioningProviderModule] Count=1 ETPCommand0=2 -ETPTopicOrder0=408 +ETPTopicOrder0=847 [External Topic Properties\TJclUnitVersioningProviderModule.Create@THandle] Count=1 @@ -131405,6 +149252,103 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=5 +[External Topic Properties\TJclUpdateArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=848 + +[External Topic Properties\TJclUpdateArchiveClass] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=446 + +[External Topic Properties\TJclUpdateControl] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=849 + +[External Topic Properties\TJclUpdateItem] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=850 + +[External Topic Properties\TJclUTF16Stream] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=851 + +[External Topic Properties\TJclUTF8Stream] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=852 + +[External Topic Properties\TJclVector] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=0 + +[External Topic Properties\TJclVectorIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=853 + +[External Topic Properties\TJclVersionControlActionInfo] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=231 + +[External Topic Properties\TJclVersionControlActionsCache] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=854 + +[External Topic Properties\TJclVersionControlActionType] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=232 + +[External Topic Properties\TJclVersionControlActionTypes] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=447 + +[External Topic Properties\TJclVersionControlCache] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=855 + +[External Topic Properties\TJclVersionControlCVS] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=856 + +[External Topic Properties\TJclVersionControlPlugin] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=857 + +[External Topic Properties\TJclVersionControlPluginClass] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=448 + +[External Topic Properties\TJclVersionControlPluginList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=858 + +[External Topic Properties\TJclVersionControlSVN] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=859 + +[External Topic Properties\TJclVersionControlSystemPlugin] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=860 + [External Topic Properties\TJclVftPathSymbolInfo] Count=1 ETPCommand0=2 @@ -131445,10 +149389,15 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=6 +[External Topic Properties\TJclVhdDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=861 + [External Topic Properties\TJclVideoSummaryInformation] Count=1 ETPCommand0=2 -ETPTopicOrder0=410 +ETPTopicOrder0=862 [External Topic Properties\TJclVideoSummaryInformation.Compression] Count=1 @@ -131505,30 +149454,267 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=10 +[External Topic Properties\TJclVolumeEvent] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=449 + +[External Topic Properties\TJclVolumeMaxSizeEvent] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=450 + [External Topic Properties\TJclVolumeSummaryInformation] Count=1 ETPCommand0=2 -ETPTopicOrder0=411 +ETPTopicOrder0=863 [External Topic Properties\TJclVolumeSummaryInformation.GetFMTID] Count=1 ETPCommand0=2 ETPTopicOrder0=0 +[External Topic Properties\TJclWaitHandle] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=451 + [External Topic Properties\TJclWebViewSummaryInformation] Count=1 ETPCommand0=2 -ETPTopicOrder0=412 +ETPTopicOrder0=864 [External Topic Properties\TJclWebViewSummaryInformation.GetFMTID] Count=1 ETPCommand0=2 ETPTopicOrder0=0 +[External Topic Properties\TJclWideMappedTextReader] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=865 + +[External Topic Properties\TJclWideStrAbstractCollection] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=866 + +[External Topic Properties\TJclWideStrAbstractContainer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=867 + +[External Topic Properties\TJclWideStrArrayIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=868 + +[External Topic Properties\TJclWideStrArrayList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=869 + +[External Topic Properties\TJclWideStrArraySet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=870 + +[External Topic Properties\TJclWideStrBinaryNode] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=871 + +[External Topic Properties\TJclWideStrBinaryTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=872 + +[External Topic Properties\TJclWideStrBinaryTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=873 + +[External Topic Properties\TJclWideStrBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=874 + +[External Topic Properties\TJclWideStrEncoding] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=233 + +[External Topic Properties\TJclWideStrHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=234 + +[External Topic Properties\TJclWideStrHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=875 + +[External Topic Properties\TJclWideStrHashSet] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=876 + +[External Topic Properties\TJclWideStringList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=877 + +[External Topic Properties\TJclWideStringListSortCompare] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=452 + +[External Topic Properties\TJclWideStrings] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=878 + +[External Topic Properties\TJclWideStrIntfBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=879 + +[External Topic Properties\TJclWideStrIntfHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=235 + +[External Topic Properties\TJclWideStrIntfHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=880 + +[External Topic Properties\TJclWideStrIntfSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=236 + +[External Topic Properties\TJclWideStrIntfSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=881 + +[External Topic Properties\TJclWideStrLinkedList] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=882 + +[External Topic Properties\TJclWideStrLinkedListItem] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=883 + +[External Topic Properties\TJclWideStrLinkedListIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=884 + +[External Topic Properties\TJclWideStrQueue] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=885 + +[External Topic Properties\TJclWideStrSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=237 + +[External Topic Properties\TJclWideStrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=886 + +[External Topic Properties\TJclWideStrStack] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=887 + +[External Topic Properties\TJclWideStrTree] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=888 + +[External Topic Properties\TJclWideStrTreeIterator] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=889 + +[External Topic Properties\TJclWideStrTreeNode] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=890 + +[External Topic Properties\TJclWideStrVector] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=891 + +[External Topic Properties\TJclWideStrVectorIterator] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=892 + +[External Topic Properties\TJclWideStrWideStrBucket] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=893 + +[External Topic Properties\TJclWideStrWideStrHashEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=238 + +[External Topic Properties\TJclWideStrWideStrHashMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=894 + +[External Topic Properties\TJclWideStrWideStrSortedEntry] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=239 + +[External Topic Properties\TJclWideStrWideStrSortedMap] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!CLASSES +ETPTopicOrder0=895 + +[External Topic Properties\TJclWimDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=896 + [External Topic Properties\TJclWin32ExFunction] Count=1 ETPCommand0=2 -ETPTopicOrder0=220 +ETPTopicOrder0=240 [External Topic Properties\TJclWin32ExFunction.jwfCancelWaitableTimer] Count=1 @@ -131603,7 +149789,12 @@ ETPTopicOrder0=13 [External Topic Properties\TJclWin32ExFunctions] Count=1 ETPCommand0=2 -ETPTopicOrder0=632 +ETPTopicOrder0=453 + +[External Topic Properties\TJclWinMidiOut] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=897 [External Topic Properties\TJclWithSymbolInfo] Count=1 @@ -131645,10 +149836,60 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=6 +[External Topic Properties\TJclXarDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=898 + +[External Topic Properties\TJclXMLDeserializer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=899 + +[External Topic Properties\TJclXMLSerializer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=900 + +[External Topic Properties\TJclXzCompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=901 + +[External Topic Properties\TJclXzDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=902 + +[External Topic Properties\TJclXzUpdateArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=903 + +[External Topic Properties\TJclZDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=904 + +[External Topic Properties\TJclZipCompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=905 + +[External Topic Properties\TJclZipDecompressArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=906 + +[External Topic Properties\TJclZipUpdateArchive] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=907 + [External Topic Properties\TJclZLibCompressStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=414 +ETPTopicOrder0=908 [External Topic Properties\TJclZLibCompressStream.CompressionLevel] Count=1 @@ -131768,7 +150009,7 @@ ETPTopicOrder0=22 [External Topic Properties\TJclZLibDecompressStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=415 +ETPTopicOrder0=909 [External Topic Properties\TJclZLibDecompressStream.Create@TStream@Integer] Count=1 @@ -131818,7 +150059,7 @@ ETPTopicOrder0=8 [External Topic Properties\TJmpTable] Count=1 ETPCommand0=2 -ETPTopicOrder0=221 +ETPTopicOrder0=241 [External Topic Properties\TJmpTable.OPCode] Count=1 @@ -131838,7 +150079,7 @@ ETPTopicOrder0=633 [External Topic Properties\TLangIdRec] Count=1 ETPCommand0=2 -ETPTopicOrder0=222 +ETPTopicOrder0=242 [External Topic Properties\TLangIdRec.CodePage] Count=1 @@ -131858,12 +150099,17 @@ ETPTopicOrder0=2 [External Topic Properties\TLargeInteger] Count=1 ETPCommand0=2 -ETPTopicOrder0=634 +ETPTopicOrder0=454 + +[External Topic Properties\TLibraryGoal] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=910 [External Topic Properties\TLineMappingEntry] Count=1 ETPCommand0=2 -ETPTopicOrder0=223 +ETPTopicOrder0=243 [External Topic Properties\TLineMappingEntry.Offsets] Count=1 @@ -131938,7 +150184,7 @@ ETPTopicOrder0=645 [External Topic Properties\TM_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=4001 +ETPTopicOrder0=3126 [External Topic Properties\TMCI_Open_Parms] Count=1 @@ -131948,7 +150194,7 @@ ETPTopicOrder0=646 [External Topic Properties\TMeteredSection] Count=1 ETPCommand0=2 -ETPTopicOrder0=224 +ETPTopicOrder0=244 [External Topic Properties\TMeteredSection.Event] Count=1 @@ -131968,7 +150214,7 @@ ETPTopicOrder0=2 [External Topic Properties\TMetSectSharedInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=225 +ETPTopicOrder0=245 [External Topic Properties\TMetSectSharedInfo.AvailableCount] Count=1 @@ -131998,42 +150244,42 @@ ETPTopicOrder0=4 [External Topic Properties\TMIDIChannel] Count=1 ETPCommand0=2 -ETPTopicOrder0=647 +ETPTopicOrder0=455 [External Topic Properties\TMIDIDataByte] Count=1 ETPCommand0=2 -ETPTopicOrder0=648 +ETPTopicOrder0=456 [External Topic Properties\TMIDIDataWord] Count=1 ETPCommand0=2 -ETPTopicOrder0=649 +ETPTopicOrder0=457 [External Topic Properties\TMIDIKey] Count=1 ETPCommand0=2 -ETPTopicOrder0=650 +ETPTopicOrder0=458 [External Topic Properties\TMIDINote] Count=1 ETPCommand0=2 -ETPTopicOrder0=651 +ETPTopicOrder0=459 [External Topic Properties\TMIDINotes] Count=1 ETPCommand0=2 -ETPTopicOrder0=652 +ETPTopicOrder0=460 [External Topic Properties\TMIDIStatusByte] Count=1 ETPCommand0=2 -ETPTopicOrder0=653 +ETPTopicOrder0=461 [External Topic Properties\TMIDIVelocity] Count=1 ETPCommand0=2 -ETPTopicOrder0=654 +ETPTopicOrder0=462 [External Topic Properties\TMixerCaps] Count=1 @@ -132053,7 +150299,7 @@ ETPTopicOrder0=657 [External Topic Properties\TMrewPreferred] Count=1 ETPCommand0=2 -ETPTopicOrder0=226 +ETPTopicOrder0=246 [External Topic Properties\TMrewPreferred.mpEqual] Count=1 @@ -132073,7 +150319,7 @@ ETPTopicOrder0=2 [External Topic Properties\TMrewThreadInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=227 +ETPTopicOrder0=247 [External Topic Properties\TMrewThreadInfo.Reader] Count=1 @@ -132093,12 +150339,12 @@ ETPTopicOrder0=2 [External Topic Properties\TMrewThreadInfoArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=658 +ETPTopicOrder0=463 [External Topic Properties\TMutexInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=228 +ETPTopicOrder0=248 [External Topic Properties\TMutexInfo.Abandoned] Count=1 @@ -132133,7 +150379,7 @@ ETPTopicOrder0=661 [External Topic Properties\TNetUserAuthFlag] Count=1 ETPCommand0=2 -ETPTopicOrder0=229 +ETPTopicOrder0=249 [External Topic Properties\TNetUserAuthFlag.afOpAccounts] Count=1 @@ -132158,12 +150404,12 @@ ETPTopicOrder0=3 [External Topic Properties\TNetUserAuthFlags] Count=1 ETPCommand0=2 -ETPTopicOrder0=662 +ETPTopicOrder0=464 [External Topic Properties\TNetUserFlag] Count=1 ETPCommand0=2 -ETPTopicOrder0=230 +ETPTopicOrder0=250 [External Topic Properties\TNetUserFlag.ufAccountDisable] Count=1 @@ -132203,12 +150449,12 @@ ETPTopicOrder0=6 [External Topic Properties\TNetUserFlags] Count=1 ETPCommand0=2 -ETPTopicOrder0=663 +ETPTopicOrder0=465 [External Topic Properties\TNetUserInfoFlag] Count=1 ETPCommand0=2 -ETPTopicOrder0=231 +ETPTopicOrder0=251 [External Topic Properties\TNetUserInfoFlag.uifInterdomainTrustAccount] Count=1 @@ -132243,12 +150489,12 @@ ETPTopicOrder0=5 [External Topic Properties\TNetUserInfoFlags] Count=1 ETPCommand0=2 -ETPTopicOrder0=664 +ETPTopicOrder0=466 [External Topic Properties\TNetUserPriv] Count=1 ETPCommand0=2 -ETPTopicOrder0=232 +ETPTopicOrder0=252 [External Topic Properties\TNetUserPriv.upAdmin] Count=1 @@ -132273,12 +150519,17 @@ ETPTopicOrder0=3 [External Topic Properties\TNodeIterateFunc] Count=1 ETPCommand0=2 -ETPTopicOrder0=665 +ETPTopicOrder0=467 + +[External Topic Properties\TNormalizationForm] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=28 [External Topic Properties\TNtfsHardLinkInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=233 +ETPTopicOrder0=253 [External Topic Properties\TNtfsHardLinkInfo.FileIndex] Count=1 @@ -132303,7 +150554,7 @@ ETPTopicOrder0=3 [External Topic Properties\TNtProductType] Count=1 ETPCommand0=2 -ETPTopicOrder0=234 +ETPTopicOrder0=254 [External Topic Properties\TNtProductType.ptAdvancedServer] Count=1 @@ -132353,12 +150604,12 @@ ETPTopicOrder0=8 [External Topic Properties\TNumericSystemBase] Count=1 ETPCommand0=2 -ETPTopicOrder0=666 +ETPTopicOrder0=468 [External Topic Properties\TOffsetPair] Count=1 ETPCommand0=2 -ETPTopicOrder0=235 +ETPTopicOrder0=255 [External Topic Properties\TOffsetPair.EndOffset] Count=1 @@ -132373,42 +150624,47 @@ ETPTopicOrder0=1 [External Topic Properties\TOffsetPairArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=667 +ETPTopicOrder0=469 [External Topic Properties\ToggleBit@Cardinal@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=1165 +ETPTopicOrder0=1394 [External Topic Properties\ToggleBit@Int64@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=1162 +ETPTopicOrder0=1397 [External Topic Properties\ToggleBit@Integer@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=1163 +ETPTopicOrder0=1392 [External Topic Properties\ToggleBit@Shortint@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=1161 +ETPTopicOrder0=1396 [External Topic Properties\ToggleBit@Smallint@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=1160 +ETPTopicOrder0=1395 [External Topic Properties\ToggleBit@Word@TBitRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=1164 +ETPTopicOrder0=1393 [External Topic Properties\ToggleBitBuffer@@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=1166 +ETPTopicOrder0=1399 + +[External Topic Properties\ToggleBitBuffer@@Int64] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1398 [External Topic Properties\TOKEN_USER] Count=1 @@ -132418,7 +150674,7 @@ ETPTopicOrder0=668 [External Topic Properties\TOpLock] Count=1 ETPCommand0=2 -ETPTopicOrder0=236 +ETPTopicOrder0=256 [External Topic Properties\TOpLock.olBatch] Count=1 @@ -132443,7 +150699,7 @@ ETPTopicOrder0=3 [External Topic Properties\TOptexSharedInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=237 +ETPTopicOrder0=257 [External Topic Properties\TOptexSharedInfo.LockCount] Count=1 @@ -132465,6 +150721,16 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=3 +[External Topic Properties\TOSEnabledFeature] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=258 + +[External Topic Properties\TOSEnabledFeatures] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=470 + [External Topic Properties\TOSVersionInfoExA] Count=1 ETPCommand0=2 @@ -132480,6 +150746,11 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=1167 +[External Topic Properties\TPAnsiCharArray] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=471 + [External Topic Properties\TPCharArray] Count=1 ETPCommand0=2 @@ -132493,7 +150764,7 @@ ETPTopicOrder0=672 [External Topic Properties\TPCRECalloutIndex] Count=1 ETPCommand0=2 -ETPTopicOrder0=673 +ETPTopicOrder0=472 [External Topic Properties\TPCREExtra] Count=1 @@ -132503,7 +150774,7 @@ ETPTopicOrder0=674 [External Topic Properties\TPCREIntArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=675 +ETPTopicOrder0=473 [External Topic Properties\TPCRELibNotLoadedHandler] Count=1 @@ -132513,17 +150784,17 @@ ETPTopicOrder0=676 [External Topic Properties\TPointArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=677 +ETPTopicOrder0=474 [External Topic Properties\TPointerArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=678 +ETPTopicOrder0=475 [External Topic Properties\TPolarComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=238 +ETPTopicOrder0=911 [External Topic Properties\TPolarComplex.Angle] Count=1 @@ -132548,7 +150819,7 @@ ETPTopicOrder0=680 [External Topic Properties\TPrimalityTestMethod] Count=1 ETPCommand0=2 -ETPTopicOrder0=239 +ETPTopicOrder0=259 [External Topic Properties\TPrimalityTestMethod.ptRabinMiller] Count=1 @@ -132563,7 +150834,7 @@ ETPTopicOrder0=1 [External Topic Properties\TProcessorArchitecture] Count=1 ETPCommand0=2 -ETPTopicOrder0=240 +ETPTopicOrder0=260 [External Topic Properties\TProcessorArchitecture.paIA64] Count=1 @@ -132585,175 +150856,232 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=3 +[External Topic Properties\TProgramGoal] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=912 + +[External Topic Properties\TProjectOptions] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=261 + +[External Topic Properties\TPtrApplyFunction] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=476 + +[External Topic Properties\TPtrCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=477 + +[External Topic Properties\TPtrEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=478 + +[External Topic Properties\TPtrHashConvert] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=479 + +[External Topic Properties\TPtrIterateProcedure] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=480 + +[External Topic Properties\TPtrSortProc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=481 + +[External Topic Properties\TPWideCharArray] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=482 + [External Topic Properties\TQueryServiceConfig2A] Count=1 ETPCommand0=2 -ETPTopicOrder0=681 +ETPTopicOrder0=483 [External Topic Properties\TraceMsg@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1168 +ETPTopicOrder0=1400 [External Topic Properties\TRANSMETA_BIT_10] Count=1 ETPCommand0=2 -ETPTopicOrder0=4002 +ETPTopicOrder0=3127 [External Topic Properties\TRANSMETA_BIT_12] Count=1 ETPCommand0=2 -ETPTopicOrder0=4003 +ETPTopicOrder0=3128 [External Topic Properties\TRANSMETA_BIT_13] Count=1 ETPCommand0=2 -ETPTopicOrder0=4004 +ETPTopicOrder0=3129 [External Topic Properties\TRANSMETA_BIT_14] Count=1 ETPCommand0=2 -ETPTopicOrder0=4005 +ETPTopicOrder0=3130 [External Topic Properties\TRANSMETA_BIT_16] Count=1 ETPCommand0=2 -ETPTopicOrder0=4006 +ETPTopicOrder0=3131 [External Topic Properties\TRANSMETA_BIT_17] Count=1 ETPCommand0=2 -ETPTopicOrder0=4007 +ETPTopicOrder0=3132 [External Topic Properties\TRANSMETA_BIT_19] Count=1 ETPCommand0=2 -ETPTopicOrder0=4008 +ETPTopicOrder0=3133 [External Topic Properties\TRANSMETA_BIT_20] Count=1 ETPCommand0=2 -ETPTopicOrder0=4009 +ETPTopicOrder0=3134 [External Topic Properties\TRANSMETA_BIT_21] Count=1 ETPCommand0=2 -ETPTopicOrder0=4010 +ETPTopicOrder0=3135 [External Topic Properties\TRANSMETA_BIT_22] Count=1 ETPCommand0=2 -ETPTopicOrder0=4011 +ETPTopicOrder0=3136 [External Topic Properties\TRANSMETA_BIT_24] Count=1 ETPCommand0=2 -ETPTopicOrder0=4012 +ETPTopicOrder0=3137 [External Topic Properties\TRANSMETA_BIT_25] Count=1 ETPCommand0=2 -ETPTopicOrder0=4013 +ETPTopicOrder0=3138 [External Topic Properties\TRANSMETA_BIT_26] Count=1 ETPCommand0=2 -ETPTopicOrder0=4014 +ETPTopicOrder0=3139 [External Topic Properties\TRANSMETA_BIT_27] Count=1 ETPCommand0=2 -ETPTopicOrder0=4015 +ETPTopicOrder0=3140 [External Topic Properties\TRANSMETA_BIT_28] Count=1 ETPCommand0=2 -ETPTopicOrder0=4016 +ETPTopicOrder0=3141 [External Topic Properties\TRANSMETA_BIT_29] Count=1 ETPCommand0=2 -ETPTopicOrder0=4017 +ETPTopicOrder0=3142 [External Topic Properties\TRANSMETA_BIT_30] Count=1 ETPCommand0=2 -ETPTopicOrder0=4018 +ETPTopicOrder0=3143 [External Topic Properties\TRANSMETA_BIT_31] Count=1 ETPCommand0=2 -ETPTopicOrder0=4019 +ETPTopicOrder0=3144 [External Topic Properties\TRANSMETA_BIT_6] Count=1 ETPCommand0=2 -ETPTopicOrder0=4020 +ETPTopicOrder0=3145 [External Topic Properties\TRANSMETA_BIT_7] Count=1 ETPCommand0=2 -ETPTopicOrder0=4021 +ETPTopicOrder0=3146 [External Topic Properties\TRANSMETA_BIT_9] Count=1 ETPCommand0=2 -ETPTopicOrder0=4022 +ETPTopicOrder0=3147 [External Topic Properties\TRANSMETA_CMOV] Count=1 ETPCommand0=2 -ETPTopicOrder0=4023 +ETPTopicOrder0=3148 [External Topic Properties\TRANSMETA_CX8] Count=1 ETPCommand0=2 -ETPTopicOrder0=4024 +ETPTopicOrder0=3149 [External Topic Properties\TRANSMETA_DE] Count=1 ETPCommand0=2 -ETPTopicOrder0=4025 +ETPTopicOrder0=3150 [External Topic Properties\TRANSMETA_FPU] Count=1 ETPCommand0=2 -ETPTopicOrder0=4026 +ETPTopicOrder0=3151 [External Topic Properties\TRANSMETA_MMX] Count=1 ETPCommand0=2 -ETPTopicOrder0=4027 +ETPTopicOrder0=3152 [External Topic Properties\TRANSMETA_MSR] Count=1 ETPCommand0=2 -ETPTopicOrder0=4028 +ETPTopicOrder0=3153 [External Topic Properties\TRANSMETA_PSE] Count=1 ETPCommand0=2 -ETPTopicOrder0=4029 +ETPTopicOrder0=3154 [External Topic Properties\TRANSMETA_PSN] Count=1 ETPCommand0=2 -ETPTopicOrder0=4030 +ETPTopicOrder0=3155 [External Topic Properties\TRANSMETA_SEP] Count=1 ETPCommand0=2 -ETPTopicOrder0=4031 +ETPTopicOrder0=3156 [External Topic Properties\TRANSMETA_TSC] Count=1 ETPCommand0=2 -ETPTopicOrder0=4032 +ETPTopicOrder0=3157 [External Topic Properties\TRANSMETA_VME] Count=1 ETPCommand0=2 -ETPTopicOrder0=4033 +ETPTopicOrder0=3158 [External Topic Properties\TRasDialDlg] Count=1 @@ -132763,7 +151091,7 @@ ETPTopicOrder0=682 [External Topic Properties\TRectComplex] Count=1 ETPCommand0=2 -ETPTopicOrder0=416 +ETPTopicOrder0=913 [External Topic Properties\TRectComplex.Add@TRectComplex@TRectComplex] Count=1 @@ -132838,7 +151166,7 @@ ETPTopicOrder0=10 [External Topic Properties\TRectCoord] Count=1 ETPCommand0=2 -ETPTopicOrder0=241 +ETPTopicOrder0=262 [External Topic Properties\TRectCoord.X] Count=1 @@ -132850,35 +151178,75 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=1 +[External Topic Properties\TRefUnique] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=484 + [External Topic Properties\TrimLeftLengthW@WideString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1169 +ETPTopicOrder0=1401 [External Topic Properties\TrimLeftW@WideString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1170 +ETPTopicOrder0=1402 [External Topic Properties\TrimRightLengthW@WideString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1171 +ETPTopicOrder0=1403 [External Topic Properties\TrimRightW@WideString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1172 +ETPTopicOrder0=1404 + +[External Topic Properties\TrimStrings@TStrings@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1405 + +[External Topic Properties\TrimStringsLeft@TStrings@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1406 + +[External Topic Properties\TrimStringsRight@TStrings@Boolean] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1407 [External Topic Properties\TrimW@WideString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1173 +ETPTopicOrder0=1408 + +[External Topic Properties\TRootKey] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=263 [External Topic Properties\TruncPower@Float@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=1174 +ETPTopicOrder0=1409 + +[External Topic Properties\TryStringToUCS4@string@TUCS4Array] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1410 + +[External Topic Properties\TryStringToUTF16@string@TUTF16String] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1411 + +[External Topic Properties\TryStringToUTF8@string@TUTF8String] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1412 [External Topic Properties\TryStrToCurr@string@Currency] Count=1 @@ -132910,10 +151278,55 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=1180 +[External Topic Properties\TryUCS4ToString@TUCS4Array@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1413 + +[External Topic Properties\TryUCS4ToUTF16@TUCS4Array@TUTF16String] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1414 + +[External Topic Properties\TryUCS4ToUTF8@TUCS4Array@TUTF8String] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1415 + +[External Topic Properties\TryUTF16ToString@TUTF16String@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1416 + +[External Topic Properties\TryUTF16ToUCS4@TUTF16String@TUCS4Array] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1417 + +[External Topic Properties\TryUTF16ToUTF8@TUTF16String@TUTF8String] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1418 + +[External Topic Properties\TryUTF8ToString@TUTF8String@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1419 + +[External Topic Properties\TryUTF8ToUCS4@TUTF8String@TUCS4Array] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1420 + +[External Topic Properties\TryUTF8ToUTF16@TUTF8String@TUTF16String] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1421 + [External Topic Properties\TSaveFormat] Count=1 ETPCommand0=2 -ETPTopicOrder0=242 +ETPTopicOrder0=264 [External Topic Properties\TSaveFormat.sfAnsi] Count=1 @@ -132938,12 +151351,12 @@ ETPTopicOrder0=3 [External Topic Properties\TSC_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=4034 +ETPTopicOrder0=3159 [External Topic Properties\TScheduleWeekDays] Count=1 ETPCommand0=2 -ETPTopicOrder0=683 +ETPTopicOrder0=485 [External Topic Properties\TSeekOrigin] Count=1 @@ -132968,7 +151381,7 @@ ETPTopicOrder0=2 [External Topic Properties\TSegmentInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=244 +ETPTopicOrder0=265 [External Topic Properties\TSegmentInfo.Flags] Count=1 @@ -132993,12 +151406,12 @@ ETPTopicOrder0=3 [External Topic Properties\TSegmentInfoArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=684 +ETPTopicOrder0=486 [External Topic Properties\TSemaphoreCounts] Count=1 ETPCommand0=2 -ETPTopicOrder0=245 +ETPTopicOrder0=266 [External Topic Properties\TSemaphoreCounts.CurrentCount] Count=1 @@ -133013,7 +151426,7 @@ ETPTopicOrder0=1 [External Topic Properties\TServiceDescriptionA] Count=1 ETPCommand0=2 -ETPTopicOrder0=685 +ETPTopicOrder0=487 [External Topic Properties\TSessionBuffer] Count=1 @@ -133028,12 +151441,12 @@ ETPTopicOrder0=687 [External Topic Properties\TSetOfAnsiChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=688 +ETPTopicOrder0=488 [External Topic Properties\TSHCopyOption] Count=1 ETPCommand0=2 -ETPTopicOrder0=246 +ETPTopicOrder0=267 [External Topic Properties\TSHCopyOption.coAllowUndo] Count=1 @@ -133058,12 +151471,12 @@ ETPTopicOrder0=3 [External Topic Properties\TSHCopyOptions] Count=1 ETPCommand0=2 -ETPTopicOrder0=689 +ETPTopicOrder0=489 [External Topic Properties\TSHMoveOption] Count=1 ETPCommand0=2 -ETPTopicOrder0=247 +ETPTopicOrder0=268 [External Topic Properties\TSHMoveOption.moAllowUndo] Count=1 @@ -133088,7 +151501,7 @@ ETPTopicOrder0=3 [External Topic Properties\TSHMoveOptions] Count=1 ETPCommand0=2 -ETPTopicOrder0=690 +ETPTopicOrder0=490 [External Topic Properties\TSHSegmentId] Count=1 @@ -133115,10 +151528,45 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=694 +[External Topic Properties\TSingleApplyFunction] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=491 + +[External Topic Properties\TSingleCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=492 + +[External Topic Properties\TSingleEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=493 + +[External Topic Properties\TSingleHashConvert] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=494 + +[External Topic Properties\TSingleIterateProcedure] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=495 + [External Topic Properties\TSingleNoteTuningData] Count=1 ETPCommand0=2 -ETPTopicOrder0=248 +ETPTopicOrder0=269 [External Topic Properties\TSingleNoteTuningData.DWord] Count=1 @@ -133135,15 +151583,24 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=2 +[External Topic Properties\TSingleSortProc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=496 + [External Topic Properties\TSortProc] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=695 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=497 [External Topic Properties\TSourceFileEntry] Count=1 ETPCommand0=2 -ETPTopicOrder0=249 +ETPTopicOrder0=270 [External Topic Properties\TSourceFileEntry.BaseSrcLines] Count=1 @@ -133163,7 +151620,7 @@ ETPTopicOrder0=2 [External Topic Properties\TSourceModuleInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=250 +ETPTopicOrder0=271 [External Topic Properties\TSourceModuleInfo.BaseSrcFiles] Count=1 @@ -133180,10 +151637,20 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=2 +[External Topic Properties\TSSESupport] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=272 + +[External Topic Properties\TSSESupports] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=498 + [External Topic Properties\TStereoChannel] Count=1 ETPCommand0=2 -ETPTopicOrder0=251 +ETPTopicOrder0=273 [External Topic Properties\TStereoChannel.scLeft] Count=1 @@ -133196,24 +151663,42 @@ ETPCommand0=2 ETPTopicOrder0=1 [External Topic Properties\TStrApplyFunction] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=696 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=499 [External Topic Properties\TStrCompare] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=697 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=500 [External Topic Properties\TStreamNotifyEvent] Count=1 ETPCommand0=2 -ETPTopicOrder0=698 +ETPTopicOrder0=501 + +[External Topic Properties\TStrEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=502 + +[External Topic Properties\TStrHashConvert] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=503 [External Topic Properties\TStringBuilder] Count=1 ETPCommand0=2 -ETPTopicOrder0=417 +ETPTopicOrder0=504 [External Topic Properties\TStringBuilder.__Chars__] Count=1 @@ -133460,10 +151945,19 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=24 +[External Topic Properties\TStrIterateProcedure] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=505 + [External Topic Properties\TStrSortProc] -Count=1 +Count=2 ETPCommand0=2 -ETPTopicOrder0=699 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=506 [External Topic Properties\TSTSegmentId] Count=1 @@ -133473,7 +151967,7 @@ ETPTopicOrder0=4036 [External Topic Properties\TSymbolConstantInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=252 +ETPTopicOrder0=274 [External Topic Properties\TSymbolConstantInfo.NameIndex] Count=1 @@ -133498,7 +151992,7 @@ ETPTopicOrder0=3 [External Topic Properties\TSymbolDataInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=253 +ETPTopicOrder0=275 [External Topic Properties\TSymbolDataInfo.NameIndex] Count=1 @@ -133528,7 +152022,7 @@ ETPTopicOrder0=4 [External Topic Properties\TSymbolInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=254 +ETPTopicOrder0=276 [External Topic Properties\TSymbolInfo.Constant] Count=1 @@ -133583,7 +152077,7 @@ ETPTopicOrder0=9 [External Topic Properties\TSymbolInfos] Count=1 ETPCommand0=2 -ETPTopicOrder0=255 +ETPTopicOrder0=277 [External Topic Properties\TSymbolInfos.Signature] Count=1 @@ -133598,7 +152092,7 @@ ETPTopicOrder0=1 [External Topic Properties\TSymbolLabelInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=256 +ETPTopicOrder0=278 [External Topic Properties\TSymbolLabelInfo.NameIndex] Count=1 @@ -133628,7 +152122,7 @@ ETPTopicOrder0=4 [External Topic Properties\TSymbolObjNameInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=257 +ETPTopicOrder0=279 [External Topic Properties\TSymbolObjNameInfo.NameIndex] Count=1 @@ -133643,7 +152137,7 @@ ETPTopicOrder0=1 [External Topic Properties\TSymbolProcInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=258 +ETPTopicOrder0=280 [External Topic Properties\TSymbolProcInfo.DebugEnd] Count=1 @@ -133708,7 +152202,7 @@ ETPTopicOrder0=11 [External Topic Properties\TSymbolUdtInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=259 +ETPTopicOrder0=281 [External Topic Properties\TSymbolUdtInfo.NameIndex] Count=1 @@ -133733,7 +152227,7 @@ ETPTopicOrder0=3 [External Topic Properties\TSymbolVftPathInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=260 +ETPTopicOrder0=282 [External Topic Properties\TSymbolVftPathInfo.Offset] Count=1 @@ -133763,7 +152257,7 @@ ETPTopicOrder0=4 [External Topic Properties\TSymbolWithInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=261 +ETPTopicOrder0=283 [External Topic Properties\TSymbolWithInfo.NameIndex] Count=1 @@ -133803,7 +152297,7 @@ ETPTopicOrder0=6 [External Topic Properties\TTemperatureType] Count=1 ETPCommand0=2 -ETPTopicOrder0=262 +ETPTopicOrder0=284 [External Topic Properties\TTemperatureType.ttCelsius] Count=1 @@ -133833,22 +152327,22 @@ ETPTopicOrder0=4 [External Topic Properties\TTernary32Func] Count=1 ETPCommand0=2 -ETPTopicOrder0=700 +ETPTopicOrder0=507 [External Topic Properties\TTernary64Func] Count=1 ETPCommand0=2 -ETPTopicOrder0=701 +ETPTopicOrder0=508 [External Topic Properties\TTernary80Func] Count=1 ETPCommand0=2 -ETPTopicOrder0=702 +ETPTopicOrder0=509 [External Topic Properties\TTextHandler] Count=1 ETPCommand0=2 -ETPTopicOrder0=703 +ETPTopicOrder0=510 [External Topic Properties\TTimeCaps] Count=1 @@ -133858,7 +152352,7 @@ ETPTopicOrder0=704 [External Topic Properties\TTimerInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=263 +ETPTopicOrder0=285 [External Topic Properties\TTimerInfo.Remaining] Count=1 @@ -133873,7 +152367,7 @@ ETPTopicOrder0=1 [External Topic Properties\TTLBInformation] Count=1 ETPCommand0=2 -ETPTopicOrder0=264 +ETPTopicOrder0=286 [External Topic Properties\TTLBInformation.tiAssociativity] Count=1 @@ -133893,7 +152387,7 @@ ETPTopicOrder0=705 [External Topic Properties\TTransmetaSpecific] Count=1 ETPCommand0=2 -ETPTopicOrder0=265 +ETPTopicOrder0=287 [External Topic Properties\TTransmetaSpecific.CodeMorphingABCD] Count=1 @@ -133978,12 +152472,12 @@ ETPTopicOrder0=15 [External Topic Properties\TTraverseMethod] Count=1 ETPCommand0=2 -ETPTopicOrder0=706 +ETPTopicOrder0=511 [External Topic Properties\TUcCClass] Count=1 ETPCommand0=2 -ETPTopicOrder0=266 +ETPTopicOrder0=288 [External Topic Properties\TUcCClass.Ranges] Count=1 @@ -133998,7 +152492,7 @@ ETPTopicOrder0=1 [External Topic Properties\TUcElement] Count=1 ETPCommand0=2 -ETPTopicOrder0=267 +ETPTopicOrder0=289 [External Topic Properties\TUcElement.AType] Count=1 @@ -134023,7 +152517,7 @@ ETPTopicOrder0=3 [External Topic Properties\TUcEquivalent] Count=1 ETPCommand0=2 -ETPTopicOrder0=268 +ETPTopicOrder0=290 [External Topic Properties\TUcEquivalent.Left] Count=1 @@ -134038,7 +152532,7 @@ ETPTopicOrder0=1 [External Topic Properties\TUcEquivalentList] Count=1 ETPCommand0=2 -ETPTopicOrder0=269 +ETPTopicOrder0=291 [External Topic Properties\TUcEquivalentList.Equivalents] Count=1 @@ -134053,7 +152547,7 @@ ETPTopicOrder0=1 [External Topic Properties\TUcExpressionList] Count=1 ETPCommand0=2 -ETPTopicOrder0=270 +ETPTopicOrder0=292 [External Topic Properties\TUcExpressionList.Expressions] Count=1 @@ -134065,10 +152559,15 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=1 +[External Topic Properties\TUcNumber] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=27 + [External Topic Properties\TUcRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=271 +ETPTopicOrder0=293 [External Topic Properties\TUcRange.MaxCode] Count=1 @@ -134083,17 +152582,22 @@ ETPTopicOrder0=1 [External Topic Properties\TUCS2Array] Count=1 ETPCommand0=2 -ETPTopicOrder0=707 +ETPTopicOrder0=512 + +[External Topic Properties\TUCS2String] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=513 [External Topic Properties\TUCS4Array] Count=1 ETPCommand0=2 -ETPTopicOrder0=708 +ETPTopicOrder0=514 [External Topic Properties\TUcState] Count=1 ETPCommand0=2 -ETPTopicOrder0=272 +ETPTopicOrder0=294 [External Topic Properties\TUcState.Accepting] Count=1 @@ -134123,7 +152627,7 @@ ETPTopicOrder0=4 [External Topic Properties\TUcStateList] Count=1 ETPCommand0=2 -ETPTopicOrder0=273 +ETPTopicOrder0=295 [External Topic Properties\TUcStateList.List] Count=1 @@ -134138,7 +152642,7 @@ ETPTopicOrder0=1 [External Topic Properties\TUcStateTable] Count=1 ETPCommand0=2 -ETPTopicOrder0=274 +ETPTopicOrder0=296 [External Topic Properties\TUcStateTable.States] Count=1 @@ -134153,7 +152657,7 @@ ETPTopicOrder0=1 [External Topic Properties\TUcSymbol] Count=1 ETPCommand0=2 -ETPTopicOrder0=275 +ETPTopicOrder0=297 [External Topic Properties\TUcSymbol.CCL] Count=1 @@ -134168,7 +152672,7 @@ ETPTopicOrder0=1 [External Topic Properties\TUcSymbolTable] Count=1 ETPCommand0=2 -ETPTopicOrder0=276 +ETPTopicOrder0=298 [External Topic Properties\TUcSymbolTable.Symbols] Count=1 @@ -134183,7 +152687,7 @@ ETPTopicOrder0=1 [External Topic Properties\TUcSymbolTableEntry] Count=1 ETPCommand0=2 -ETPTopicOrder0=277 +ETPTopicOrder0=299 [External Topic Properties\TUcSymbolTableEntry.AType] Count=1 @@ -134218,7 +152722,7 @@ ETPTopicOrder0=5 [External Topic Properties\TUcTransition] Count=1 ETPCommand0=2 -ETPTopicOrder0=278 +ETPTopicOrder0=300 [External Topic Properties\TUcTransition.NextState] Count=1 @@ -134233,7 +152737,7 @@ ETPTopicOrder0=1 [External Topic Properties\TUcTransitions] Count=1 ETPCommand0=2 -ETPTopicOrder0=279 +ETPTopicOrder0=301 [External Topic Properties\TUcTransitions.Transitions] Count=1 @@ -134268,22 +152772,32 @@ ETPTopicOrder0=2 [External Topic Properties\TUnary32Func] Count=1 ETPCommand0=2 -ETPTopicOrder0=709 +ETPTopicOrder0=515 [External Topic Properties\TUnary64Func] Count=1 ETPCommand0=2 -ETPTopicOrder0=710 +ETPTopicOrder0=516 [External Topic Properties\TUnary80Func] Count=1 ETPCommand0=2 -ETPTopicOrder0=711 +ETPTopicOrder0=517 + +[External Topic Properties\TUnicodeBlock] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=29 + +[External Topic Properties\TUnicodeBlockData] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=302 [External Topic Properties\TUnicodeBlockRange] Count=1 ETPCommand0=2 -ETPTopicOrder0=281 +ETPTopicOrder0=303 [External Topic Properties\TUnicodeBlockRange.RangeEnd] Count=1 @@ -134300,10 +152814,57 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=712 +[External Topic Properties\TUnicodeStrApplyFunction] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=518 + +[External Topic Properties\TUnicodeStrCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=519 + +[External Topic Properties\TUnicodeStrEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=520 + +[External Topic Properties\TUnicodeStrHashConvert] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=521 + +[External Topic Properties\TUnicodeStrIterateProcedure] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=522 + +[External Topic Properties\TUnicodeStrSortProc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=523 + +[External Topic Properties\TUnitGoal] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=914 + [External Topic Properties\TUnitVersion] Count=1 ETPCommand0=2 -ETPTopicOrder0=418 +ETPTopicOrder0=915 [External Topic Properties\TUnitVersion.Create@PUnitVersionInfo] Count=1 @@ -134353,7 +152914,7 @@ ETPTopicOrder0=8 [External Topic Properties\TUnitVersionInfo] Count=1 ETPCommand0=2 -ETPTopicOrder0=282 +ETPTopicOrder0=304 [External Topic Properties\TUnitVersionInfo.Data] Count=1 @@ -134388,7 +152949,7 @@ ETPTopicOrder0=5 [External Topic Properties\TUnitVersioning] Count=1 ETPCommand0=2 -ETPTopicOrder0=419 +ETPTopicOrder0=916 [External Topic Properties\TUnitVersioning.Add@THandle@PUnitVersionInfo] Count=1 @@ -134493,7 +153054,7 @@ ETPTopicOrder0=17 [External Topic Properties\TUnitVersioningModule] Count=1 ETPCommand0=2 -ETPTopicOrder0=420 +ETPTopicOrder0=917 [External Topic Properties\TUnitVersioningModule.Add@PUnitVersionInfo] Count=1 @@ -134563,17 +153124,17 @@ ETPTopicOrder0=12 [External Topic Properties\TUnitVersioningProviderClass] Count=1 ETPCommand0=2 -ETPTopicOrder0=713 +ETPTopicOrder0=524 [External Topic Properties\TUntypedSearchCompare] Count=1 ETPCommand0=2 -ETPTopicOrder0=714 +ETPTopicOrder0=525 [External Topic Properties\TUREBuffer] Count=1 ETPCommand0=2 -ETPTopicOrder0=283 +ETPTopicOrder0=305 [External Topic Properties\TUREBuffer.EquivalentList] Count=1 @@ -134630,10 +153191,15 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=717 +[External Topic Properties\TUsesList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=918 + [External Topic Properties\TUTBMChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=284 +ETPTopicOrder0=306 [External Topic Properties\TUTBMChar.LoCase] Count=1 @@ -134653,7 +153219,7 @@ ETPTopicOrder0=2 [External Topic Properties\TUTBMSkip] Count=1 ETPCommand0=2 -ETPTopicOrder0=285 +ETPTopicOrder0=307 [External Topic Properties\TUTBMSkip.BMChar] Count=1 @@ -134665,10 +153231,20 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=1 +[External Topic Properties\TUTF16String] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=526 + +[External Topic Properties\TUTF8String] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=527 + [External Topic Properties\TVIASpecific] Count=1 ETPCommand0=2 -ETPTopicOrder0=286 +ETPTopicOrder0=308 [External Topic Properties\TVIASpecific.DataTLB] Count=1 @@ -134703,12 +153279,12 @@ ETPTopicOrder0=5 [External Topic Properties\TWideFileOptions] Count=1 ETPCommand0=2 -ETPTopicOrder0=718 +ETPTopicOrder0=528 [External Topic Properties\TWideFileOptionsType] Count=1 ETPCommand0=2 -ETPTopicOrder0=287 +ETPTopicOrder0=309 [External Topic Properties\TWideFileOptionsType.foAnsiFile] Count=1 @@ -134720,10 +153296,38 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=1 +[External Topic Properties\TWideStrApplyFunction] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=529 + +[External Topic Properties\TWideStrCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=530 + +[External Topic Properties\TWideStrEqualityCompare] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=531 + +[External Topic Properties\TWideStrHashConvert] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=532 + [External Topic Properties\TWideStringItem] Count=1 ETPCommand0=2 -ETPTopicOrder0=288 +ETPTopicOrder0=310 [External Topic Properties\TWideStringItem.FObject] Count=1 @@ -134738,27 +153342,46 @@ ETPTopicOrder0=1 [External Topic Properties\TWideStringItemList] Count=1 ETPCommand0=2 -ETPTopicOrder0=719 +ETPTopicOrder0=533 + +[External Topic Properties\TWideStringSetter] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=534 + +[External Topic Properties\TWideStrIterateProcedure] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=535 + +[External Topic Properties\TWideStrSortProc] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!TYPES +ETPTopicOrder0=536 [External Topic Properties\TwoPi] Count=1 ETPCommand0=2 -ETPTopicOrder0=4037 +ETPTopicOrder0=3160 [External Topic Properties\TWordArray] Count=1 ETPCommand0=2 -ETPTopicOrder0=720 +ETPTopicOrder0=537 [External Topic Properties\TwoToPower63] Count=1 ETPCommand0=2 -ETPTopicOrder0=4038 +ETPTopicOrder0=3161 [External Topic Properties\TWStringItem] Count=1 ETPCommand0=2 -ETPTopicOrder0=289 +ETPTopicOrder0=311 [External Topic Properties\TWStringItem.FObject] Count=1 @@ -134773,7 +153396,7 @@ ETPTopicOrder0=1 [External Topic Properties\TWStringList] Count=1 ETPCommand0=2 -ETPTopicOrder0=421 +ETPTopicOrder0=538 [External Topic Properties\TWStringList.AddObject@WideString@TObject] Count=1 @@ -134963,7 +153586,7 @@ ETPTopicOrder0=721 [External Topic Properties\TWStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=422 +ETPTopicOrder0=539 [External Topic Properties\TWStrings.Add@WideString] Count=1 @@ -135350,6 +153973,11 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=74 +[External Topic Properties\TXMLVariant] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=919 + [External Topic Properties\UCLEANUI] Count=1 ETPCommand0=2 @@ -135358,7 +153986,69 @@ ETPTopicOrder0=4039 [External Topic Properties\UCS2] Count=1 ETPCommand0=2 -ETPTopicOrder0=722 +ETPTopicOrder0=540 + +[External Topic Properties\UCS2CharCount@TUCS2String] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1422 + +[External Topic Properties\UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=10 + +[External Topic Properties\UCS4CharCount@TUCS4Array] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1423 + +[External Topic Properties\UCS4ReplacementCharacter] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=Unicode +ETPTopicOrder0=16 + +[External Topic Properties\UCS4ToAnsiChar@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1424 + +[External Topic Properties\UCS4ToAnsiString@TUCS4Array] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1425 + +[External Topic Properties\UCS4ToChar@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1426 + +[External Topic Properties\UCS4ToString@TUCS4Array] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1427 + +[External Topic Properties\UCS4ToUTF16@TUCS4Array] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1428 + +[External Topic Properties\UCS4ToUTF8@TUCS4Array] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1429 + +[External Topic Properties\UCS4ToWideChar@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1430 + +[External Topic Properties\UCS4ToWideString@TUCS4Array] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1431 [External Topic Properties\UDIRTYUI] Count=1 @@ -135485,30 +154175,40 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=4064 +[External Topic Properties\UINT_PTR] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=541 + [External Topic Properties\UInt16] Count=1 ETPCommand0=2 -ETPTopicOrder0=723 +ETPTopicOrder0=542 [External Topic Properties\UInt32] Count=1 ETPCommand0=2 -ETPTopicOrder0=724 +ETPTopicOrder0=543 [External Topic Properties\UInt64] Count=1 ETPCommand0=2 -ETPTopicOrder0=725 +ETPTopicOrder0=544 [External Topic Properties\UInt8] Count=1 ETPCommand0=2 -ETPTopicOrder0=726 +ETPTopicOrder0=545 + +[External Topic Properties\ULARGE_INTEGER] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=312 [External Topic Properties\ULONG_PTR] Count=1 ETPCommand0=2 -ETPTopicOrder0=727 +ETPTopicOrder0=546 [External Topic Properties\ULONGLONG] Count=1 @@ -135530,6 +154230,16 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=1181 +[External Topic Properties\UnBZip2File@TFileName@TFileName@TJclCompressStreamProgressCallback@Pointer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1432 + +[External Topic Properties\UnBZip2Stream@TStream@TStream@TJclCompressStreamProgressCallback@Pointer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1433 + [External Topic Properties\UNCLEN] Count=1 ETPCommand0=2 @@ -135540,6 +154250,11 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=1182 +[External Topic Properties\UndecorateSymbolName@string@string@DWORD] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1434 + [External Topic Properties\UNDNAME_32_BIT_DECODE] Count=1 ETPCommand0=2 @@ -135640,6 +154355,16 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=1183 +[External Topic Properties\UnGZipFile@TFileName@TFileName@TJclCompressStreamProgressCallback@Pointer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1435 + +[External Topic Properties\UnGZipStream@TStream@TStream@TJclCompressStreamProgressCallback@Pointer] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1436 + [External Topic Properties\UNHSegmentId] Count=1 ETPCommand0=2 @@ -135648,12 +154373,397 @@ ETPTopicOrder0=4087 [External Topic Properties\Unicode] Count=1 ETPCommand0=2 -ETPTopicOrder0=22 +ETPTopicOrder0=21 + +[External Topic Properties\Unicode.Charactertestroutines] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=30 + +[External Topic Properties\Unicode.Directionality] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=31 + +[External Topic Properties\Unicode.Lowlevelcharacterroutines] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=32 + +[External Topic Properties\Unicode.Nullterminatedstrings] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=33 + +[External Topic Properties\Unicode.TSearchEngine] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=34 + +[External Topic Properties\Unicode.TURESearch] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=35 + +[External Topic Properties\Unicode.TUTBMSearch] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=36 + +[External Topic Properties\Unicode.TWideStringList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=37 + +[External Topic Properties\Unicode.TWideStrings] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=38 + +[External Topic Properties\Unicode.Utilityfunctions] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=39 + +[External Topic Properties\Unicode.WideStringconversionroutines] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=40 + +[External Topic Properties\Unicode.WideStringroutines] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=41 + +[External Topic Properties\UNICODE_BZIP2_DATA] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=26 + +[External Topic Properties\UNICODE_RAW_DATA] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=24 + +[External Topic Properties\UNICODE_SILENT_FAILURE] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=23 + +[External Topic Properties\UNICODE_ZLIB_DATA] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=25 + +[External Topic Properties\UnicodeBlockData] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3162 [External Topic Properties\UnicodeCaseFold@UCS4] Count=1 ETPCommand0=2 -ETPTopicOrder0=1184 +ETPTopicOrder0=1437 + +[External Topic Properties\UnicodeCompose@array of UCS4@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1438 + +[External Topic Properties\UnicodeIsArabicNumber@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1439 + +[External Topic Properties\UnicodeIsASCIIHexDigit@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1440 + +[External Topic Properties\UnicodeIsBidiControl@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1441 + +[External Topic Properties\UnicodeIsBoundaryNeutral@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1442 + +[External Topic Properties\UnicodeIsCommonNumberSeparator@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1443 + +[External Topic Properties\UnicodeIsConnector@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1444 + +[External Topic Properties\UnicodeIsDeprecated@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1445 + +[External Topic Properties\UnicodeIsDiacritic@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1446 + +[External Topic Properties\UnicodeIsEuropeanNumber@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1447 + +[External Topic Properties\UnicodeIsEuropeanNumberSeparator@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1448 + +[External Topic Properties\UnicodeIsEuropeanNumberTerminator@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1449 + +[External Topic Properties\UnicodeIsExtender@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1450 + +[External Topic Properties\UnicodeIsHyphen@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1451 + +[External Topic Properties\UnicodeIsIdeographic@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1452 + +[External Topic Properties\UnicodeIsIDSBinaryOperator@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1453 + +[External Topic Properties\UnicodeIsIDSTrinaryOperator@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1454 + +[External Topic Properties\UnicodeIsJoinControl@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1455 + +[External Topic Properties\UnicodeIsLeftToRightEmbedding@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1456 + +[External Topic Properties\UnicodeIsLeftToRightOverride@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1457 + +[External Topic Properties\UnicodeIsLetterOther@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1458 + +[External Topic Properties\UnicodeIsLogicalOrderException@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1459 + +[External Topic Properties\UnicodeIsNonCharacterCodePoint@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1460 + +[External Topic Properties\UnicodeIsNumberOther@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1461 + +[External Topic Properties\UnicodeIsOtherAlphabetic@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1462 + +[External Topic Properties\UnicodeIsOtherDefaultIgnorableCodePoint@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1463 + +[External Topic Properties\UnicodeIsOtherGraphemeExtend@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1464 + +[External Topic Properties\UnicodeIsOtherIDContinue@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1465 + +[External Topic Properties\UnicodeIsOtherIDStart@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1466 + +[External Topic Properties\UnicodeIsOtherLowercase@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1467 + +[External Topic Properties\UnicodeIsOtherMath@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1468 + +[External Topic Properties\UnicodeIsOtherNeutrals@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1469 + +[External Topic Properties\UnicodeIsOtherUppercase@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1470 + +[External Topic Properties\UnicodeIsPatternSyntax@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1471 + +[External Topic Properties\UnicodeIsPatternWhiteSpace@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1472 + +[External Topic Properties\UnicodeIsPopDirectionalFormat@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1473 + +[External Topic Properties\UnicodeIsPunctuationOther@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1474 + +[External Topic Properties\UnicodeIsRadical@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1475 + +[External Topic Properties\UnicodeIsRightToLeftArabic@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1476 + +[External Topic Properties\UnicodeIsRightToLeftEmbedding@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1477 + +[External Topic Properties\UnicodeIsRightToLeftOverride@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1478 + +[External Topic Properties\UnicodeIsSegmentSeparator@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1479 + +[External Topic Properties\UnicodeIsSoftDotted@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1480 + +[External Topic Properties\UnicodeIsSTerm@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1481 + +[External Topic Properties\UnicodeIsSymbolOther@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1482 + +[External Topic Properties\UnicodeIsTerminalPunctuation@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1483 + +[External Topic Properties\UnicodeIsUnassigned@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1484 + +[External Topic Properties\UnicodeIsUnifiedIdeograph@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1485 + +[External Topic Properties\UnicodeIsVariationSelector@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1486 + +[External Topic Properties\UnicodeStrSimpleCompare@UnicodeString@UnicodeString] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1487 + +[External Topic Properties\UnicodeStrSimpleCompareI@UnicodeString@UnicodeString] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1488 + +[External Topic Properties\UnicodeStrSimpleEqualityCompare@UnicodeString@UnicodeString] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1489 + +[External Topic Properties\UnicodeStrSimpleEqualityCompareI@UnicodeString@UnicodeString] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1490 + +[External Topic Properties\UnicodeStrSimpleHashConvert@UnicodeString] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1491 + +[External Topic Properties\UnicodeStrSimpleHashConvertI@UnicodeString] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1492 + +[External Topic Properties\UnicodeStrSortProc] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=45 [External Topic Properties\UNIQUE_NAME] Count=1 @@ -135663,7 +154773,7 @@ ETPTopicOrder0=4088 [External Topic Properties\UnitConversions] Count=1 ETPCommand0=2 -ETPTopicOrder0=23 +ETPTopicOrder0=22 [External Topic Properties\UNITS_PER_DAY] Count=1 @@ -135678,22 +154788,54 @@ ETPTopicOrder0=4090 [External Topic Properties\UnitVersioning] Count=1 ETPCommand0=2 -ETPTopicOrder0=4091 +ETPTopicOrder0=3163 + +[External Topic Properties\UNITVERSIONING] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=8 [External Topic Properties\UnixTimeStart] Count=1 ETPCommand0=2 -ETPTopicOrder0=4092 +ETPTopicOrder0=3164 [External Topic Properties\UNLEN] Count=1 ETPCommand0=2 ETPTopicOrder0=4093 +[External Topic Properties\Unload7Zip] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1493 + +[External Topic Properties\UnloadBZip2] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1494 + [External Topic Properties\UnloadPCRE] Count=1 ETPCommand0=2 -ETPTopicOrder0=1185 +ETPTopicOrder0=1495 + +[External Topic Properties\UnloadSnmp] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1496 + +[External Topic Properties\UnloadSnmpExtension] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1497 + +[External Topic Properties\UnloadZLib] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1498 [External Topic Properties\UnMapAndLoad@LOADED_IMAGE] Count=1 @@ -135703,17 +154845,22 @@ ETPTopicOrder0=1186 [External Topic Properties\Unmask8087Exceptions] Count=1 ETPCommand0=2 -ETPTopicOrder0=1187 +ETPTopicOrder0=1499 [External Topic Properties\UnRegisterCLSIDInCategory@TGUID@TGUID] Count=1 ETPCommand0=2 -ETPTopicOrder0=1188 +ETPTopicOrder0=1500 [External Topic Properties\UnregisterUnitVersion@THandle] Count=1 ETPCommand0=2 -ETPTopicOrder0=1189 +ETPTopicOrder0=1501 + +[External Topic Properties\UnRegisterVersionControlPluginClass@TJclVersionControlPluginClass] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1502 [External Topic Properties\UNTSegmentId] Count=1 @@ -135775,6 +154922,171 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=732 +[External Topic Properties\UTCNow] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1503 + +[External Topic Properties\UTF16] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=6 + +[External Topic Properties\UTF16CharCount@TUTF16String] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1504 + +[External Topic Properties\UTF16GetNextChar@TUTF16String@SizeInt] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1506 + +[External Topic Properties\UTF16GetNextChar@UnicodeString@SizeInt] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1505 + +[External Topic Properties\UTF16GetNextCharFromStream@TStream@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1507 + +[External Topic Properties\UTF16GetPreviousChar@TUTF16String@SizeInt] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1508 + +[External Topic Properties\UTF16GetPreviousChar@UnicodeString@SizeInt] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1509 + +[External Topic Properties\UTF16SetNextChar@TUTF16String@SizeInt@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1511 + +[External Topic Properties\UTF16SetNextChar@UnicodeString@SizeInt@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1510 + +[External Topic Properties\UTF16SetNextCharToStream@TStream@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1512 + +[External Topic Properties\UTF16SkipChars@TUTF16String@SizeInt@SizeInt] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1514 + +[External Topic Properties\UTF16SkipChars@UnicodeString@SizeInt@SizeInt] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1513 + +[External Topic Properties\UTF16SkipCharsFromStream@TStream@SizeInt] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1515 + +[External Topic Properties\UTF16ToAnsiString@TUTF16String] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1516 + +[External Topic Properties\UTF16ToString@TUTF16String] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1517 + +[External Topic Properties\UTF16ToUCS4@TUTF16String] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1518 + +[External Topic Properties\UTF16ToUTF8@TUTF16String] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1519 + +[External Topic Properties\UTF32] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=8 + +[External Topic Properties\UTF7] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=2 + +[External Topic Properties\UTF8] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=4 + +[External Topic Properties\UTF8CharCount@TUTF8String] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1520 + +[External Topic Properties\UTF8GetNextChar@TUTF8String@SizeInt] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1521 + +[External Topic Properties\UTF8GetNextCharFromStream@TStream@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1522 + +[External Topic Properties\UTF8SetNextChar@TUTF8String@SizeInt@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1523 + +[External Topic Properties\UTF8SetNextCharToStream@TStream@UCS4] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1524 + +[External Topic Properties\UTF8SkipChars@TUTF8String@SizeInt@SizeInt] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1525 + +[External Topic Properties\UTF8SkipCharsFromStream@TStream@SizeInt] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1526 + +[External Topic Properties\UTF8ToAnsiString@TUTF8String] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1527 + +[External Topic Properties\UTF8ToString@TUTF8String] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1528 + +[External Topic Properties\UTF8ToUCS4@TUTF8String] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1529 + +[External Topic Properties\UTF8ToUTF16@TUTF8String] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1530 + +[External Topic Properties\ValidateMutexName@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1531 + [External Topic Properties\Value_UndefinedMaximum] Count=1 ETPCommand0=2 @@ -135783,37 +155095,42 @@ ETPTopicOrder0=4102 [External Topic Properties\VariantArrayToStream@OleVariant@IStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=1190 +ETPTopicOrder0=1533 [External Topic Properties\VariantArrayToStream@OleVariant@TStream] Count=1 ETPCommand0=2 -ETPTopicOrder0=1191 +ETPTopicOrder0=1532 + +[External Topic Properties\VarXML] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1534 [External Topic Properties\VendorIDAMD] Count=1 ETPCommand0=2 -ETPTopicOrder0=4103 +ETPTopicOrder0=3165 [External Topic Properties\VendorIDCyrix] Count=1 ETPCommand0=2 -ETPTopicOrder0=4104 +ETPTopicOrder0=3166 [External Topic Properties\VendorIDIntel] Count=1 ETPCommand0=2 -ETPTopicOrder0=4105 +ETPTopicOrder0=3167 [External Topic Properties\VendorIDTransmeta] Count=1 ETPCommand0=2 -ETPTopicOrder0=4106 +ETPTopicOrder0=3168 [External Topic Properties\VendorIDVIA] Count=1 ETPCommand0=2 -ETPTopicOrder0=4107 +ETPTopicOrder0=3169 [External Topic Properties\VER_AND] Count=1 @@ -135950,20 +155267,47 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=4134 +[External Topic Properties\Version numbers] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=BaseServices +ETPTopicOrder0=14 + +[External Topic Properties\VersionControlActionInfo@TJclVersionControlActionType] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1535 + +[External Topic Properties\VersionControlPluginList] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1536 + [External Topic Properties\VersionExtractFileInfo@TVSFixedFileInfo@Word@Word@Word@Word] Count=1 ETPCommand0=2 -ETPTopicOrder0=1192 +ETPTopicOrder0=1537 [External Topic Properties\VersionExtractProductInfo@TVSFixedFileInfo@Word@Word@Word@Word] Count=1 ETPCommand0=2 -ETPTopicOrder0=1193 +ETPTopicOrder0=1538 [External Topic Properties\VersionFixedFileInfoString@string@TFileVersionFormat@string] Count=1 ETPCommand0=2 -ETPTopicOrder0=1194 +ETPTopicOrder0=1539 + +[External Topic Properties\VersionResourceAvailable@HWND] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1541 + +[External Topic Properties\VersionResourceAvailable@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1540 [External Topic Properties\VFT2_DRV_COMM] Count=1 @@ -136023,167 +155367,167 @@ ETPTopicOrder0=4145 [External Topic Properties\VIA_3DNOW] Count=1 ETPCommand0=2 -ETPTopicOrder0=4146 +ETPTopicOrder0=3170 [External Topic Properties\VIA_APIC] Count=1 ETPCommand0=2 -ETPTopicOrder0=4147 +ETPTopicOrder0=3171 [External Topic Properties\VIA_BIT_10] Count=1 ETPCommand0=2 -ETPTopicOrder0=4148 +ETPTopicOrder0=3172 [External Topic Properties\VIA_BIT_19] Count=1 ETPCommand0=2 -ETPTopicOrder0=4149 +ETPTopicOrder0=3173 [External Topic Properties\VIA_BIT_20] Count=1 ETPCommand0=2 -ETPTopicOrder0=4150 +ETPTopicOrder0=3174 [External Topic Properties\VIA_BIT_21] Count=1 ETPCommand0=2 -ETPTopicOrder0=4151 +ETPTopicOrder0=3175 [External Topic Properties\VIA_BIT_22] Count=1 ETPCommand0=2 -ETPTopicOrder0=4152 +ETPTopicOrder0=3176 [External Topic Properties\VIA_BIT_26] Count=1 ETPCommand0=2 -ETPTopicOrder0=4153 +ETPTopicOrder0=3177 [External Topic Properties\VIA_BIT_27] Count=1 ETPCommand0=2 -ETPTopicOrder0=4154 +ETPTopicOrder0=3178 [External Topic Properties\VIA_BIT_28] Count=1 ETPCommand0=2 -ETPTopicOrder0=4155 +ETPTopicOrder0=3179 [External Topic Properties\VIA_BIT_29] Count=1 ETPCommand0=2 -ETPTopicOrder0=4156 +ETPTopicOrder0=3180 [External Topic Properties\VIA_BIT_30] Count=1 ETPCommand0=2 -ETPTopicOrder0=4157 +ETPTopicOrder0=3181 [External Topic Properties\VIA_CMOVE] Count=1 ETPCommand0=2 -ETPTopicOrder0=4158 +ETPTopicOrder0=3182 [External Topic Properties\VIA_CX8] Count=1 ETPCommand0=2 -ETPTopicOrder0=4159 +ETPTopicOrder0=3183 [External Topic Properties\VIA_DE] Count=1 ETPCommand0=2 -ETPTopicOrder0=4160 +ETPTopicOrder0=3184 [External Topic Properties\VIA_FPU] Count=1 ETPCommand0=2 -ETPTopicOrder0=4161 +ETPTopicOrder0=3185 [External Topic Properties\VIA_FX] Count=1 ETPCommand0=2 -ETPTopicOrder0=4162 +ETPTopicOrder0=3186 [External Topic Properties\VIA_MCA] Count=1 ETPCommand0=2 -ETPTopicOrder0=4163 +ETPTopicOrder0=3187 [External Topic Properties\VIA_MCE] Count=1 ETPCommand0=2 -ETPTopicOrder0=4164 +ETPTopicOrder0=3188 [External Topic Properties\VIA_MMX] Count=1 ETPCommand0=2 -ETPTopicOrder0=4165 +ETPTopicOrder0=3189 [External Topic Properties\VIA_MSR] Count=1 ETPCommand0=2 -ETPTopicOrder0=4166 +ETPTopicOrder0=3190 [External Topic Properties\VIA_MTRR] Count=1 ETPCommand0=2 -ETPTopicOrder0=4167 +ETPTopicOrder0=3191 [External Topic Properties\VIA_PAE] Count=1 ETPCommand0=2 -ETPTopicOrder0=4168 +ETPTopicOrder0=3192 [External Topic Properties\VIA_PAT] Count=1 ETPCommand0=2 -ETPTopicOrder0=4169 +ETPTopicOrder0=3193 [External Topic Properties\VIA_PSE] Count=1 ETPCommand0=2 -ETPTopicOrder0=4170 +ETPTopicOrder0=3194 [External Topic Properties\VIA_PSE2] Count=1 ETPCommand0=2 -ETPTopicOrder0=4171 +ETPTopicOrder0=3195 [External Topic Properties\VIA_PTE] Count=1 ETPCommand0=2 -ETPTopicOrder0=4172 +ETPTopicOrder0=3196 [External Topic Properties\VIA_SEP] Count=1 ETPCommand0=2 -ETPTopicOrder0=4173 +ETPTopicOrder0=3197 [External Topic Properties\VIA_SNUM] Count=1 ETPCommand0=2 -ETPTopicOrder0=4174 +ETPTopicOrder0=3198 [External Topic Properties\VIA_SSE] Count=1 ETPCommand0=2 -ETPTopicOrder0=4175 +ETPTopicOrder0=3199 [External Topic Properties\VIA_TSC] Count=1 ETPCommand0=2 -ETPTopicOrder0=4176 +ETPTopicOrder0=3200 [External Topic Properties\VIA_VME] Count=1 ETPCommand0=2 -ETPTopicOrder0=4177 +ETPTopicOrder0=3201 [External Topic Properties\VME_FLAG] Count=1 ETPCommand0=2 -ETPTopicOrder0=4178 +ETPTopicOrder0=3202 [External Topic Properties\VOS__BASE] Count=1 @@ -136213,57 +155557,72 @@ ETPTopicOrder0=4183 [External Topic Properties\WaitAlertableForMultipleObjects@array of TJclDispatcherObject@Boolean@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=1195 +ETPTopicOrder0=1542 [External Topic Properties\WaitForMultipleObjects@array of TJclDispatcherObject@Boolean@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=1196 +ETPTopicOrder0=1543 [External Topic Properties\WideCarriageReturn] Count=1 ETPCommand0=2 -ETPTopicOrder0=4184 +ETPTopicOrder0=3203 + +[External Topic Properties\WideCaseConvert@WideChar@TCaseType] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1545 + +[External Topic Properties\WideCaseConvert@WideString@TCaseType] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1544 [External Topic Properties\WideCaseFolding@WideChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=1197 +ETPTopicOrder0=1547 [External Topic Properties\WideCaseFolding@WideString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1198 +ETPTopicOrder0=1546 [External Topic Properties\WideCharToChar@WideChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=1199 +ETPTopicOrder0=1548 + +[External Topic Properties\WideCharToUCS4@WideChar] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1549 [External Topic Properties\WideCompareStr@WideString@WideString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1200 +ETPTopicOrder0=1550 [External Topic Properties\WideCompareText] Count=1 ETPCommand0=2 -ETPTopicOrder0=60 +ETPTopicOrder0=46 [External Topic Properties\WideCompareText@WideString@WideString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1201 +ETPTopicOrder0=1551 [External Topic Properties\WideCR] Count=1 ETPCommand0=2 -ETPTopicOrder0=4185 +ETPTopicOrder0=3204 [External Topic Properties\WideCRLF] Count=1 ETPCommand0=2 -ETPTopicOrder0=4186 +ETPTopicOrder0=3205 [External Topic Properties\WideFormat@WideString@array of const] Count=1 @@ -136273,199 +155632,271 @@ ETPTopicOrder0=1202 [External Topic Properties\WideFormFeed] Count=1 ETPCommand0=2 -ETPTopicOrder0=4187 +ETPTopicOrder0=3206 [External Topic Properties\WideLF] Count=1 ETPCommand0=2 -ETPTopicOrder0=4188 +ETPTopicOrder0=3207 + +[External Topic Properties\WideLineBreak] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=3208 [External Topic Properties\WideLineFeed] Count=1 ETPCommand0=2 -ETPTopicOrder0=4189 +ETPTopicOrder0=3209 [External Topic Properties\WideLineSeparator] Count=1 ETPCommand0=2 -ETPTopicOrder0=4190 +ETPTopicOrder0=3210 [External Topic Properties\WideLowerCase@WideString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1203 +ETPTopicOrder0=1552 [External Topic Properties\WideMultiSzDup@PWideMultiSz] Count=1 ETPCommand0=2 -ETPTopicOrder0=1204 +ETPTopicOrder0=1553 [External Topic Properties\WideMultiSzLength@PWideMultiSz] Count=1 ETPCommand0=2 -ETPTopicOrder0=1205 +ETPTopicOrder0=1554 [External Topic Properties\WideMultiSzToWideStrings@TWideStrings@PWideMultiSz] Count=1 ETPCommand0=2 -ETPTopicOrder0=1206 +ETPTopicOrder0=1555 [External Topic Properties\WideNull] Count=1 ETPCommand0=2 -ETPTopicOrder0=4191 +ETPTopicOrder0=3211 [External Topic Properties\WideParagraphSeparator] Count=1 ETPCommand0=2 -ETPTopicOrder0=4192 +ETPTopicOrder0=3212 [External Topic Properties\WidePos@WideString@WideString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1207 +ETPTopicOrder0=1556 [External Topic Properties\WideReverse@Widestring] Count=1 ETPCommand0=2 -ETPTopicOrder0=1208 +ETPTopicOrder0=1557 [External Topic Properties\WideReverseInPlace@WideString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1209 +ETPTopicOrder0=1558 [External Topic Properties\WideSpace] Count=1 ETPCommand0=2 -ETPTopicOrder0=4193 +ETPTopicOrder0=3213 [External Topic Properties\WideStartsStr@WideString@WideString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1210 +ETPTopicOrder0=1559 [External Topic Properties\WideStartsText@WideString@WideString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1211 +ETPTopicOrder0=1560 [External Topic Properties\WideStringsToWideMultiSz@PWideMultiSz@TWideStrings] Count=1 ETPCommand0=2 -ETPTopicOrder0=1212 +ETPTopicOrder0=1561 + +[External Topic Properties\WideStringStreamCopy@TJclStringStream@TJclStringStream@Longint] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1562 + +[External Topic Properties\WideStringToUCS4@WideString] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1563 + +[External Topic Properties\WideStrSimpleCompare@WideString@WideString] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1564 + +[External Topic Properties\WideStrSimpleCompareI@WideString@WideString] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1565 + +[External Topic Properties\WideStrSimpleEqualityCompare@WideString@WideString] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1566 + +[External Topic Properties\WideStrSimpleEqualityCompareI@WideString@WideString] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1567 + +[External Topic Properties\WideStrSimpleHashConvert@WideString] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1568 + +[External Topic Properties\WideStrSimpleHashConvertI@WideString] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=!!FUNCTIONS +ETPTopicOrder0=1569 + +[External Topic Properties\WideStrSortProc] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=47 [External Topic Properties\WideTabulator] Count=1 ETPCommand0=2 -ETPTopicOrder0=4194 +ETPTopicOrder0=3214 [External Topic Properties\WideTitleCase@WideChar] Count=1 ETPCommand0=2 -ETPTopicOrder0=1214 +ETPTopicOrder0=1570 [External Topic Properties\WideTitleCase@WideString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1213 +ETPTopicOrder0=1571 [External Topic Properties\WideUpperCase@WideString] Count=1 ETPCommand0=2 -ETPTopicOrder0=1215 +ETPTopicOrder0=1572 [External Topic Properties\WideVerticalTab] Count=1 ETPCommand0=2 -ETPTopicOrder0=4195 +ETPTopicOrder0=3215 [External Topic Properties\WinColor@TColor32] Count=1 ETPCommand0=2 -ETPTopicOrder0=1216 +ETPTopicOrder0=1573 [External Topic Properties\WinColorToOpenGLColor@TColor@Float@Float@Float] Count=1 ETPCommand0=2 -ETPTopicOrder0=1217 +ETPTopicOrder0=1574 [External Topic Properties\Windows.ComponentObjectModel] Count=2 ETPCommand0=2 ETPCommand1=3 ETPGroup1=JCL -ETPTopicOrder0=26 +ETPTopicOrder0=25 [External Topic Properties\Windows.LANManager] Count=2 ETPCommand0=2 ETPCommand1=3 ETPGroup1=JCL -ETPTopicOrder0=27 +ETPTopicOrder0=26 [External Topic Properties\Windows.Security] Count=2 ETPCommand0=2 ETPCommand1=3 ETPGroup1=JCL -ETPTopicOrder0=29 +ETPTopicOrder0=28 [External Topic Properties\Windows.ServiceControl] Count=2 ETPCommand0=2 ETPCommand1=3 ETPGroup1=JCL -ETPTopicOrder0=33 +ETPTopicOrder0=31 [External Topic Properties\Windows.Shell] Count=2 ETPCommand0=2 ETPCommand1=3 ETPGroup1=JCL -ETPTopicOrder0=30 +ETPTopicOrder0=29 [External Topic Properties\Windows.Win32API] Count=2 ETPCommand0=2 ETPCommand1=3 ETPGroup1=JCL -ETPTopicOrder0=25 +ETPTopicOrder0=24 [External Topic Properties\Windows_Specific] Count=1 ETPCommand0=2 -ETPTopicOrder0=24 +ETPTopicOrder0=23 + +[External Topic Properties\windowsonly.inc] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=90 + +[External Topic Properties\WindowToModuleFileName@HWND] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1575 [External Topic Properties\WinExec32@string@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1218 +ETPTopicOrder0=1576 [External Topic Properties\WinExec32AndRedirectOutput@string@string@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=1219 +ETPTopicOrder0=1577 [External Topic Properties\WinExec32AndWait@string@Integer] Count=1 ETPCommand0=2 -ETPTopicOrder0=1220 +ETPTopicOrder0=1578 [External Topic Properties\WordMask] Count=1 ETPCommand0=2 -ETPTopicOrder0=4196 +ETPTopicOrder0=3216 [External Topic Properties\WriteIcon@TStream@HBITMAP@HBITMAP@Boolean] Count=1 ETPCommand0=2 -ETPTopicOrder0=1221 +ETPTopicOrder0=1579 [External Topic Properties\WriteProtectedMemory@Pointer@Pointer@Cardinal@Cardinal] Count=1 ETPCommand0=2 -ETPTopicOrder0=1222 +ETPTopicOrder0=1580 [External Topic Properties\XMLAttribute_Description] Count=1 @@ -136522,6 +155953,31 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=4207 +[External Topic Properties\XMLCreate] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1581 + +[External Topic Properties\XMLCreate@TJclSimpleXMLElem] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1582 + +[External Topic Properties\XMLCreateInto@Variant@TJclSimpleXMLElem] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1583 + +[External Topic Properties\XMLDecode@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1584 + +[External Topic Properties\XMLEncode@string] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=1585 + [External Topic Properties\XMLTag_EDIFile] Count=1 ETPCommand0=2 @@ -136587,6 +156043,32 @@ Count=1 ETPCommand0=2 ETPTopicOrder0=4220 +[External Topic Properties\ZLIB_LINKDLL] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=21 + +[External Topic Properties\ZLIB_LINKONREQUEST] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=22 + +[External Topic Properties\ZLIB_STATICLINK] +Count=2 +ETPCommand0=2 +ETPCommand1=3 +ETPGroup1=IncludedFiles +ETPTopicOrder0=20 + +[External Topic Properties\zlibh.pas] +Count=1 +ETPCommand0=2 +ETPTopicOrder0=91 + [File Extensions] ID1=.cs ID10=.mak;makefile @@ -136627,7 +156109,7 @@ Copyright=Project JEDI FoldersThreshold=0 Keywords= Summary=Documentation of the JEDI Code Library -Symbol Hierarchy Folders=131 +Symbol Hierarchy Folders=387 Title=JEDI Code Library TypeDefStructsAsStructs=1 VersionBuild=0 @@ -137312,162 +156794,167 @@ ID9=9 SavedValues=1 [Source Files] -Count=155 +Count=160 File0=8087.dtx File1=AppInst.dtx -File10=ExprEval.dtx -File100=..\jcl\source\common\JclUsesUtils.pas -File101=..\jcl\source\common\JclValidation.pas -File102=..\jcl\source\common\JclVectors.pas -File103=..\jcl\source\common\JclWideStrings.pas -File104=..\jcl\source\common\pcre.pas -File105=..\jcl\source\common\zlibh.pas -File106=..\jcl\source\vcl\JclFont.pas -File107=..\jcl\source\vcl\JclGraphics.pas -File108=..\jcl\source\vcl\JclGraphUtils.pas -File109=..\jcl\source\vcl\JclOpenDialogFavorites.pas -File11=FileUtils.dtx -File110=..\jcl\source\vcl\JclOpenDialogHooks.pas -File111=..\jcl\source\vcl\JclPrint.pas -File112=..\jcl\source\vcl\JclVclResources.pas -File113=..\jcl\source\vcl\JclVersionControl.pas -File114=..\jcl\source\vcl\JclVersionCtrlCVSImpl.pas -File115=..\jcl\source\vcl\JclVersionCtrlSVNImpl.pas -File116=..\jcl\source\windows\Hardlinks.pas -File117=..\jcl\source\windows\JclAppInst.pas -File118=..\jcl\source\windows\JclCIL.pas -File119=..\jcl\source\windows\JclCLR.pas -File12=Font.dtx -File120=..\jcl\source\windows\JclCOM.pas -File121=..\jcl\source\windows\JclConsole.pas -File122=..\jcl\source\windows\JclDebug.pas -File123=..\jcl\source\windows\JclDebugSerialization.pas -File124=..\jcl\source\windows\JclDebugXMLDeserializer.pas -File125=..\jcl\source\windows\JclDebugXMLSerializer.pas -File126=..\jcl\source\windows\JclDotNet.pas -File127=..\jcl\source\windows\JclHelpUtils.pas -File128=..\jcl\source\windows\JclHookExcept.pas -File129=..\jcl\source\windows\JclLANMan.pas -File13=Graphics.dtx -File130=..\jcl\source\windows\JclLocales.pas -File131=..\jcl\source\windows\JclMapi.pas -File132=..\jcl\source\windows\JclMetadata.pas -File133=..\jcl\source\windows\JclMiscel.pas -File134=..\jcl\source\windows\JclMsdosSys.pas -File135=..\jcl\source\windows\JclMultimedia.pas -File136=..\jcl\source\windows\JclNTFS.pas -File137=..\jcl\source\windows\JclPeImage.pas -File138=..\jcl\source\windows\JclRegistry.pas -File139=..\jcl\source\windows\JclSecurity.pas -File14=Hardlinks.dtx -File140=..\jcl\source\windows\JclShell.pas -File141=..\jcl\source\windows\JclStructStorage.pas -File142=..\jcl\source\windows\JclSvcCtrl.pas -File143=..\jcl\source\windows\JclTask.pas -File144=..\jcl\source\windows\JclTD32.pas -File145=..\jcl\source\windows\JclTimeZones.pas -File146=..\jcl\source\windows\JclWin32.pas -File147=..\jcl\source\windows\JclWin32Ex.pas -File148=..\jcl\source\windows\JclWinMIDI.pas -File149=..\jcl\source\windows\mscoree_TLB.pas -File15=hlpgrps.dtx -File150=..\jcl\source\windows\mscorlib_TLB.pas -File151=..\jcl\source\windows\MSHelpServices_TLB.pas -File152=..\jcl\source\windows\MSTask.pas -File153=..\jcl\source\windows\sevenzip.pas -File154=..\jcl\source\windows\Snmp.pas -File16=IncludedFiles.dtx -File17=IniFiles.dtx -File18=LANMan.dtx -File19=Locales.dtx +File10=Debug.dtx +File100=..\jcl\source\common\JclUnitConv.pas +File101=..\jcl\source\common\JclUnitVersioning.pas +File102=..\jcl\source\common\JclUnitVersioningProviders.pas +File103=..\jcl\source\common\JclUsesUtils.pas +File104=..\jcl\source\common\JclValidation.pas +File105=..\jcl\source\common\JclVectors.pas +File106=..\jcl\source\common\JclWideStrings.pas +File107=..\jcl\source\common\pcre.pas +File108=..\jcl\source\common\zlibh.pas +File109=..\jcl\source\include\jclcs1.inc +File11=ExprEval.dtx +File110=..\jcl\source\include\jcld8.inc +File111=..\jcl\source\vcl\JclFont.pas +File112=..\jcl\source\vcl\JclGraphics.pas +File113=..\jcl\source\vcl\JclGraphUtils.pas +File114=..\jcl\source\vcl\JclOpenDialogFavorites.pas +File115=..\jcl\source\vcl\JclOpenDialogHooks.pas +File116=..\jcl\source\vcl\JclPrint.pas +File117=..\jcl\source\vcl\JclVclResources.pas +File118=..\jcl\source\vcl\JclVersionControl.pas +File119=..\jcl\source\vcl\JclVersionCtrlCVSImpl.pas +File12=FileUtils.dtx +File120=..\jcl\source\vcl\JclVersionCtrlSVNImpl.pas +File121=..\jcl\source\windows\Hardlinks.pas +File122=..\jcl\source\windows\JclAppInst.pas +File123=..\jcl\source\windows\JclCIL.pas +File124=..\jcl\source\windows\JclCLR.pas +File125=..\jcl\source\windows\JclCOM.pas +File126=..\jcl\source\windows\JclConsole.pas +File127=..\jcl\source\windows\JclDebug.pas +File128=..\jcl\source\windows\JclDebugSerialization.pas +File129=..\jcl\source\windows\JclDebugXMLDeserializer.pas +File13=Font.dtx +File130=..\jcl\source\windows\JclDebugXMLSerializer.pas +File131=..\jcl\source\windows\JclDotNet.pas +File132=..\jcl\source\windows\JclHelpUtils.pas +File133=..\jcl\source\windows\JclHookExcept.pas +File134=..\jcl\source\windows\JclLANMan.pas +File135=..\jcl\source\windows\JclLocales.pas +File136=..\jcl\source\windows\JclMapi.pas +File137=..\jcl\source\windows\JclMetadata.pas +File138=..\jcl\source\windows\JclMiscel.pas +File139=..\jcl\source\windows\JclMsdosSys.pas +File14=Graphics.dtx +File140=..\jcl\source\windows\JclMultimedia.pas +File141=..\jcl\source\windows\JclNTFS.pas +File142=..\jcl\source\windows\JclPeImage.pas +File143=..\jcl\source\windows\JclRegistry.pas +File144=..\jcl\source\windows\JclSecurity.pas +File145=..\jcl\source\windows\JclShell.pas +File146=..\jcl\source\windows\JclStructStorage.pas +File147=..\jcl\source\windows\JclSvcCtrl.pas +File148=..\jcl\source\windows\JclTask.pas +File149=..\jcl\source\windows\JclTD32.pas +File15=Hardlinks.dtx +File150=..\jcl\source\windows\JclTimeZones.pas +File151=..\jcl\source\windows\JclWin32.pas +File152=..\jcl\source\windows\JclWin32Ex.pas +File153=..\jcl\source\windows\JclWinMIDI.pas +File154=..\jcl\source\windows\mscoree_TLB.pas +File155=..\jcl\source\windows\mscorlib_TLB.pas +File156=..\jcl\source\windows\MSHelpServices_TLB.pas +File157=..\jcl\source\windows\MSTask.pas +File158=..\jcl\source\windows\sevenzip.pas +File159=..\jcl\source\windows\Snmp.pas +File16=hlpgrps.dtx +File17=IncludedFiles.dtx +File18=IniFiles.dtx +File19=jedi\jedi.dtx File2=Base.dtx -File20=Logic.dtx -File21=Mapi.dtx -File22=Math.dtx -File23=Midi.dtx -File24=Mime.dtx -File25=Miscel.dtx -File26=Multimedia.dtx -File27=Notify.dtx -File28=NTFS.dtx -File29=pcre.dtx +File20=jedi\kylix.dtx +File21=LANMan.dtx +File22=Locales.dtx +File23=Logic.dtx +File24=Mapi.dtx +File25=Math.dtx +File26=Midi.dtx +File27=Mime.dtx +File28=Miscel.dtx +File29=Multimedia.dtx File3=Bitmap32.dtx -File30=PE.dtx -File31=Regions.dtx -File32=Registry.dtx -File33=RTTI.dtx -File34=Schedule.dtx -File35=Security.dtx -File36=Shell.dtx -File37=Statistics.dtx -File38=Streams.dtx -File39=StrHashMap.dtx +File30=Notify.dtx +File31=NTFS.dtx +File32=pcre.dtx +File33=PE.dtx +File34=Regions.dtx +File35=Registry.dtx +File36=RTTI.dtx +File37=Schedule.dtx +File38=Security.dtx +File39=Shell.dtx File4=Com.dtx -File40=Strings.dtx -File41=SvcCtrl.dtx -File42=Synch.dtx -File43=SysInfo.dtx -File44=SysUtils.dtx -File45=Unicode.dtx -File46=UnitConv.dtx -File47=WideStrings.dtx -File48=Win32.dtx -File49=..\jcl\source\common\bzip2.pas +File40=Statistics.dtx +File41=Streams.dtx +File42=StrHashMap.dtx +File43=Strings.dtx +File44=SvcCtrl.dtx +File45=Synch.dtx +File46=SysInfo.dtx +File47=SysUtils.dtx +File48=Unicode.dtx +File49=UnitConv.dtx File5=Complex.dtx -File50=..\jcl\source\common\Jcl8087.pas -File51=..\jcl\source\common\JclAbstractContainers.pas -File52=..\jcl\source\common\JclAlgorithms.pas -File53=..\jcl\source\common\JclAnsiStrings.pas -File54=..\jcl\source\common\JclArrayLists.pas -File55=..\jcl\source\common\JclArraySets.pas -File56=..\jcl\source\common\JclBase.pas -File57=..\jcl\source\common\JclBinaryTrees.pas -File58=..\jcl\source\common\JclCharsets.pas -File59=..\jcl\source\common\JclCompilerUtils.pas -File6=Containers.dtx -File60=..\jcl\source\common\JclComplex.pas -File61=..\jcl\source\common\JclCompression.pas -File62=..\jcl\source\common\JclContainerIntf.pas -File63=..\jcl\source\common\JclCounter.pas -File64=..\jcl\source\common\JclDateTime.pas -File65=..\jcl\source\common\JclDevToolsResources.pas -File66=..\jcl\source\common\JclExprEval.pas -File67=..\jcl\source\common\JclFileUtils.pas -File68=..\jcl\source\common\JclHashMaps.pas -File69=..\jcl\source\common\JclHashSets.pas -File7=Counter.dtx -File70=..\jcl\source\common\JclIDEUtils.pas -File71=..\jcl\source\common\JclIniFiles.pas -File72=..\jcl\source\common\JclLinkedLists.pas -File73=..\jcl\source\common\JclLogic.pas -File74=..\jcl\source\common\JclMath.pas -File75=..\jcl\source\common\JclMIDI.pas -File76=..\jcl\source\common\JclMime.pas -File77=..\jcl\source\common\JclNotify.pas -File78=..\jcl\source\common\JclPCRE.pas -File79=..\jcl\source\common\JclQueues.pas -File8=DateTime.dtx -File80=..\jcl\source\common\JclResources.pas -File81=..\jcl\source\common\JclRTTI.pas -File82=..\jcl\source\common\JclSchedule.pas -File83=..\jcl\source\common\JclSimpleXml.pas -File84=..\jcl\source\common\JclSortedMaps.pas -File85=..\jcl\source\common\JclStacks.pas -File86=..\jcl\source\common\JclStatistics.pas -File87=..\jcl\source\common\JclStreams.pas -File88=..\jcl\source\common\JclStrHashMap.pas -File89=..\jcl\source\common\JclStringConversions.pas -File9=Debug.dtx -File90=..\jcl\source\common\JclStringLists.pas -File91=..\jcl\source\common\JclStrings.pas -File92=..\jcl\source\common\JclSynch.pas -File93=..\jcl\source\common\JclSysInfo.pas -File94=..\jcl\source\common\JclSysUtils.pas -File95=..\jcl\source\common\JclTrees.pas -File96=..\jcl\source\common\JclUnicode.pas -File97=..\jcl\source\common\JclUnitConv.pas -File98=..\jcl\source\common\JclUnitVersioning.pas -File99=..\jcl\source\common\JclUnitVersioningProviders.pas +File50=WideStrings.dtx +File51=Win32.dtx +File52=..\jcl\source\common\bzip2.pas +File53=..\jcl\source\common\Jcl8087.pas +File54=..\jcl\source\common\JclAbstractContainers.pas +File55=..\jcl\source\common\JclAlgorithms.pas +File56=..\jcl\source\common\JclAnsiStrings.pas +File57=..\jcl\source\common\JclArrayLists.pas +File58=..\jcl\source\common\JclArraySets.pas +File59=..\jcl\source\common\JclBase.pas +File6=ContainerCopies.dtx +File60=..\jcl\source\common\JclBinaryTrees.pas +File61=..\jcl\source\common\JclCharsets.pas +File62=..\jcl\source\common\JclCompilerUtils.pas +File63=..\jcl\source\common\JclComplex.pas +File64=..\jcl\source\common\JclCompression.pas +File65=..\jcl\source\common\JclContainerIntf.pas +File66=..\jcl\source\common\JclCounter.pas +File67=..\jcl\source\common\JclDateTime.pas +File68=..\jcl\source\common\JclDevToolsResources.pas +File69=..\jcl\source\common\JclExprEval.pas +File7=Containers.dtx +File70=..\jcl\source\common\JclFileUtils.pas +File71=..\jcl\source\common\JclHashMaps.pas +File72=..\jcl\source\common\JclHashSets.pas +File73=..\jcl\source\common\JclIDEUtils.pas +File74=..\jcl\source\common\JclIniFiles.pas +File75=..\jcl\source\common\JclLinkedLists.pas +File76=..\jcl\source\common\JclLogic.pas +File77=..\jcl\source\common\JclMath.pas +File78=..\jcl\source\common\JclMIDI.pas +File79=..\jcl\source\common\JclMime.pas +File8=Counter.dtx +File80=..\jcl\source\common\JclNotify.pas +File81=..\jcl\source\common\JclPCRE.pas +File82=..\jcl\source\common\JclQueues.pas +File83=..\jcl\source\common\JclResources.pas +File84=..\jcl\source\common\JclRTTI.pas +File85=..\jcl\source\common\JclSchedule.pas +File86=..\jcl\source\common\JclSimpleXml.pas +File87=..\jcl\source\common\JclSortedMaps.pas +File88=..\jcl\source\common\JclStacks.pas +File89=..\jcl\source\common\JclStatistics.pas +File9=DateTime.dtx +File90=..\jcl\source\common\JclStreams.pas +File91=..\jcl\source\common\JclStrHashMap.pas +File92=..\jcl\source\common\JclStringConversions.pas +File93=..\jcl\source\common\JclStringLists.pas +File94=..\jcl\source\common\JclStrings.pas +File95=..\jcl\source\common\JclSynch.pas +File96=..\jcl\source\common\JclSysInfo.pas +File97=..\jcl\source\common\JclSysUtils.pas +File98=..\jcl\source\common\JclTrees.pas +File99=..\jcl\source\common\JclUnicode.pas [Source Include Directories] Count=1 diff --git a/help/PE.dtx b/help/PE.dtx index e5e9727915..d8bd680782 100644 --- a/help/PE.dtx +++ b/help/PE.dtx @@ -18,18 +18,18 @@ <TITLE TJclPeMapImgHooks> <TOPICORDER 200> -------------------------------------------------------------------------------- -@@LibrariesProcessesandThreads.PortableExecutableFileFormat.BorlandDelphiSpecific -<GROUP LibrariesProcessesandThreads.PortableExecutableFileFormat> -<TITLE Borland Delphi Specific> -<TOPICORDER 200> --------------------------------------------------------------------------------- -@@LibrariesProcessesandThreads.PortableExecutableFileFormat.BorlandDelphiSpecific.TJclPeBorImage -<GROUP LibrariesProcessesandThreads.PortableExecutableFileFormat.BorlandDelphiSpecific> +@@LibrariesProcessesandThreads.PortableExecutableFileFormat.DelphiCBuilderSpecific +<title Delphi/C++Builder Specific> + +\ \ + +@@LibrariesProcessesandThreads.PortableExecutableFileFormat.DelphiCBuilderSpecific.TJclPeBorImage +<GROUP LibrariesProcessesandThreads.PortableExecutableFileFormat.DelphiCBuilderSpecific> <TITLE TJclPeBorImage> <TOPICORDER 100> -------------------------------------------------------------------------------- -@@LibrariesProcessesandThreads.PortableExecutableFileFormat.BorlandDelphiSpecific.TJclPePackageInfo -<GROUP LibrariesProcessesandThreads.PortableExecutableFileFormat.BorlandDelphiSpecific> +@@LibrariesProcessesandThreads.PortableExecutableFileFormat.DelphiCBuilderSpecific.TJclPePackageInfo +<GROUP LibrariesProcessesandThreads.PortableExecutableFileFormat.DelphiCBuilderSpecific> <TITLE TJclPePackageInfo> <TOPICORDER 200> -------------------------------------------------------------------------------- @@ -416,13 +416,13 @@ Summary: Description: Specifies the manufacturer of the linker that produced an image file. The function uses a heuristic which is not perfect and is only capable of - recognizing Borland Delphi, C++ Builder and Microsoft Visual Studio linkers. + recognizing Delphi, C++ Builder and Microsoft Visual Studio linkers. Donator: Petr Vones @@TJclPeLinkerProducer.lrBorland - The image was produced by the Borland Delphi linker. + The image was produced by the Delphi linker. @@TJclPeLinkerProducer.lrMicrosoft - The image was produced by the Borland C++ Builder or Microsoft Visual C++ linker. + The image was produced by the C++ Builder or Microsoft Visual C++ linker. -------------------------------------------------------------------------------- @@TJclPeImportFuncItem <GROUP LibrariesProcessesandThreads.PortableExecutableFileFormat.ImportSection.TJclPeImportFuncItem> @@ -2260,7 +2260,7 @@ Donator: Petr Vones -------------------------------------------------------------------------------- @@TJclPePackageInfo -<GROUP LibrariesProcessesandThreads.PortableExecutableFileFormat.BorlandDelphiSpecific.TJclPePackageInfo> +<GROUP LibrariesProcessesandThreads.PortableExecutableFileFormat.DelphiCBuilderSpecific.TJclPePackageInfo> Summary: Allows you to obtain information about Delphi packages. Description: @@ -2432,13 +2432,13 @@ Donator: Jean-Fabien Connault -------------------------------------------------------------------------------- @@TJclPeBorImage -<GROUP LibrariesProcessesandThreads.PortableExecutableFileFormat.BorlandDelphiSpecific.TJclPeBorImage> +<GROUP LibrariesProcessesandThreads.PortableExecutableFileFormat.DelphiCBuilderSpecific.TJclPeBorImage> Summary: - Specialisation of TJclPeImage for Borland produced images. + Specialisation of TJclPeImage for Delphi/C++Builder produced images. Description: The TJclPeBorImage class is a specialisation of TJclPeImage which allows access to information contained in the image file which is specific, and therefore unique, - to images produced by a Borland linker. + to images produced by a Delphi or C++Builder linker. Donator: Petr Vones -------------------------------------------------------------------------------- @@ -2452,17 +2452,17 @@ Donator: -------------------------------------------------------------------------------- @@TJclPeBorImage.IsBorlandImage Summary: - Returns whether or not the image is an image produced by a Borland linker. + Returns whether or not the image is an image produced by a Delphi or C++Builder linker. Description: - Returns whether or not the image is an image produced by a Borland linker. + Returns whether or not the image is an image produced by a Delphi or C++Builder linker. Donator: Petr Vones -------------------------------------------------------------------------------- @@TJclPeBorImage.IsPackage Summary: - Returns whether the image is Borland package file. + Returns whether the image is Delphi or C++Builder package file. Description: - Returns whether the image is Borland package file. + Returns whether the image is Delphi or C++Builder package file. Donator: Petr Vones -------------------------------------------------------------------------------- @@ -3364,4 +3364,4 @@ Parameters: Result: TODO Donator: - Petr Vones \ No newline at end of file + Petr Vones diff --git a/help/RTTI.dtx b/help/RTTI.dtx index 25fb092f22..07b04a1082 100644 --- a/help/RTTI.dtx +++ b/help/RTTI.dtx @@ -407,7 +407,7 @@ Result: If AnObj's class is AClass or inherits from AClass the function returns True, otherwise it returns False. Donator: - Borland + Borland/Codegear/Embarcadero -------------------------------------------------------------------------------- @@JclIsClassByName <GROUP RuntimeTypeInformation.Classoperatorhooking> @@ -2155,4 +2155,4 @@ Parameters: AStrings - TStrings descendant that is to receive the output. AWrap - Initial value for the Wrap property. Donator: - Marcel Bestebroer \ No newline at end of file + Marcel Bestebroer diff --git a/help/containers/ContainerCopies.dtx b/help/containers/ContainerCopies.dtx new file mode 100644 index 0000000000..9bae87d6ed --- /dev/null +++ b/help/containers/ContainerCopies.dtx @@ -0,0 +1,13 @@ +{$I JclAlgorithms.inc} +{$I JclArrayLists.inc} +{$I JclArraySets.inc} +{$I JclBinaryTrees.inc} +{$I JclContainerIntf.inc} +{$I JclHashMaps.inc} +{$I JclHashSets.inc} +{$I JclLinkedLists.inc} +{$I JclQueues.inc} +{$I JclSortedMaps.inc} +{$I JclStacks.inc} +{$I JclTrees.inc} +{$I JclVectors.inc} \ No newline at end of file diff --git a/help/containers/JclAlgorithms.inc b/help/containers/JclAlgorithms.inc new file mode 100644 index 0000000000..d4027638b3 --- /dev/null +++ b/help/containers/JclAlgorithms.inc @@ -0,0 +1,119 @@ +(*$JPPDEFINEMACRO MOVEARRAYINT(PROCNAME, DYNARRAYTYPENAME) +@@PROCNAME@DYNARRAYTYPENAME@SizeInt@SizeInt@SizeInt +<copy MoveArray@TDynObjectArray@SizeInt@SizeInt@SizeInt> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO MOVEARRAYINT(MoveArray,)}*) + +(*$JPPDEFINEMACRO ITERATEINT(PROCNAME, ITRINTERFACENAME, CALLBACKTYPE) +@@PROCNAME@ITRINTERFACENAME@Integer@CALLBACKTYPE +<copy Iterate@IJclIterator@Integer@TIterateProcedure> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO ITERATEINT(Iterate,,)}*) + +(*$JPPDEFINEMACRO APPLYINT(PROCNAME, ITRINTERFACENAME, CALLBACKTYPE) +@@PROCNAME@ITRINTERFACENAME@Integer@CALLBACKTYPE +<copy Apply@IJclIterator@Integer@TApplyFunction> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO APPLYINT(Apply,,)}*) + +(*$JPPDEFINEMACRO SIMPLECOMPAREINT(PROCNAME, TYPENAME) +@@PROCNAME@TYPENAME@TYPENAME +<copy SimpleCompare@TObject@TObject> +\ \ +*) +(*$JPPLOOP ALLTYPEINDEX HELPALLTYPECOUNT +{$JPPEXPANDMACRO SIMPLECOMPAREINT(,)}*) + +(*$JPPDEFINEMACRO SIMPLEEQUALITYCOMPAREINT(PROCNAME, TYPENAME) +@@PROCNAME@TYPENAME@TYPENAME +<copy SimpleEqualityCompare@TObject@TObject> +\ \ +*) +(*$JPPLOOP ALLTYPEINDEX HELPALLTYPECOUNT +{$JPPEXPANDMACRO SIMPLEEQUALITYCOMPAREINT(,)}*) + +(*$JPPDEFINEMACRO SIMPLEHASHCONVERTINT(PROCNAME, TYPENAME) +@@PROCNAME@TYPENAME +<copy SimpleHashConvert@TObject> +\ \ +*) +(*$JPPLOOP ALLTYPEINDEX HELPALLTYPECOUNT +{$JPPEXPANDMACRO SIMPLEHASHCONVERTINT(,)}*) + +(*$JPPDEFINEMACRO FINDINT(PROCNAME, ITRINTERFACENAME, TYPENAME, CALLBACKTYPE) +@@PROCNAME@ITRINTERFACENAME@Integer@TYPENAME@CALLBACKTYPE +<copy Find@IJclIterator@Integer@TObject@TCompare> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO FINDINT(Find,,,)}*) + +(*$JPPDEFINEMACRO FINDEQINT(PROCNAME,ITRINTERFACENAME, TYPENAME, CALLBACKTYPE) +@@PROCNAME@ITRINTERFACENAME@Integer@TYPENAME@CALLBACKTYPE +<copy Find@IJclIterator@Integer@TObject@TEqualityCompare> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO FINDEQINT(Find,,,)}*) + +(*$JPPDEFINEMACRO COUNTOBJECTINT(PROCNAME, ITRINTERFACENAME, TYPENAME, CALLBACKTYPE) +@@PROCNAME@ITRINTERFACENAME@Integer@TYPENAME@CALLBACKTYPE +<copy CountObject@IJclIterator@Integer@TObject@TCompare> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO COUNTOBJECTINT(CountObject,,,)}*) + +(*$JPPDEFINEMACRO COUNTOBJECTEQINT(PROCNAME, ITRINTERFACENAME, TYPENAME, CALLBACKTYPE) +@@PROCNAME@ITRINTERFACENAME@Integer@TYPENAME@CALLBACKTYPE +<copy CountObject@IJclIterator@Integer@TObject@TEqualityCompare> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO COUNTOBJECTEQINT(CountObject,,,)}*) + +(*$JPPDEFINEMACRO COPYINT(PROCNAME, ITRINTERFACENAME) +@@PROCNAME@ITRINTERFACENAME@Integer@ITRINTERFACENAME +<copy Copy@IJclIterator@Integer@IJclIterator> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO COPYINT(Copy,)}*) + +(*$JPPDEFINEMACRO GENERATEINT(PROCNAME, LISTINTERFACENAME, TYPENAME) +@@PROCNAME@LISTINTERFACENAME@Integer@TYPENAME +<copy Generate@IJclList@Integer@TObject> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO GENERATEINT(Generate,,)}*) + +(*$JPPDEFINEMACRO FILLINT(PROCNAME, ITRINTERFACENAME, TYPENAME) +@@PROCNAME@ITRINTERFACENAME@Integer@TYPENAME +<copy Fill@IJclIterator@Integer@TObject> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO FILLINT(Fill,,)}*) + +(*$JPPDEFINEMACRO REVERSEINT(PROCNAME, ITRINTERFACENAME) +@@PROCNAME@ITRINTERFACENAME@ITRINTERFACENAME +<copy Reverse@IJclIterator@IJclIterator> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO REVERSEINT(Reverse,)}*) + +(*$JPPDEFINEMACRO SORTINT(PROCNAME, LISTINTERFACENAME, CALLBACKTYPE) +@@PROCNAME@LISTINTERFACENAME@Integer@Integer@CALLBACKTYPE +<copy Sort@IJclList@Integer@Integer@TCompare> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO SORTINT(Sort,,)}*) diff --git a/help/containers/JclArrayLists.inc b/help/containers/JclArrayLists.inc new file mode 100644 index 0000000000..241776e2c2 --- /dev/null +++ b/help/containers/JclArrayLists.inc @@ -0,0 +1,227 @@ +(*$JPPDEFINEMACRO JCLARRAYLISTINT(SELFCLASSNAME, COLLECTIONINTERFACENAME, TYPENAME, GETTERNAME, SETTERNAME) +@@SELFCLASSNAME +<copy TJclArrayList> +\ \ + +@@!!MEMBEROVERVIEW_SELFCLASSNAME +<copy !!MEMBEROVERVIEW_TJclArrayList> +\ \ + +@@SELFCLASSNAME.Add@TYPENAME +<copy TJclArrayList.Add@TObject> +\ \ + +@@SELFCLASSNAME.AddAll@COLLECTIONINTERFACENAME +<copy TJclArrayList.AddAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.AssignDataTo@TJclAbstractContainerBase +<copy TJclArrayList.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@SELFCLASSNAME.Clear +<copy TJclArrayList.Clear> +\ \ + +@@SELFCLASSNAME.CollectionEquals@COLLECTIONINTERFACENAME +<copy TJclArrayList.CollectionEquals@IJclCollection> +\ \ + +@@SELFCLASSNAME.Contains@TYPENAME +<copy TJclArrayList.Contains@TObject> +\ \ + +@@SELFCLASSNAME.ContainsAll@COLLECTIONINTERFACENAME +<copy TJclArrayList.ContainsAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.Create@COLLECTIONINTERFACENAME +<copy TJclArrayList.Create@IJclCollection@Boolean> +\ \ + +@@SELFCLASSNAME.Create@Integer +<copy TJclArrayList.Create@Integer@Boolean> +\ \ + +@@SELFCLASSNAME.CreateEmptyContainer +<copy TJclArrayList.CreateEmptyContainer> +\ \ + +@@SELFCLASSNAME.Delete@Integer +<copy TJclArrayList.Delete@Integer> +\ \ + +@@SELFCLASSNAME.Destroy +<copy TJclArrayList.Destroy> +\ \ + +@@SELFCLASSNAME.Extract@TYPENAME +<copy TJclArrayList.Extract@TObject> +\ \ + +@@SELFCLASSNAME.ExtractAll@COLLECTIONINTERFACENAME +<copy TJclArrayList.ExtractAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.ExtractIndex@Integer +<copy TJclArrayList.ExtractIndex@Integer> +\ \ + +@@SELFCLASSNAME.First +<copy TJclArrayList.First> +\ \ + +@@SELFCLASSNAME.GetEnumerator +<copy TJclArrayList.GetEnumerator> +\ \ + +@@SELFCLASSNAME.GETTERNAME@Integer +<copy TJclArrayList.GetObject@Integer> +\ \ + +@@SELFCLASSNAME.IndexOf@TYPENAME +<copy TJclArrayList.IndexOf@TObject> +\ \ + +@@SELFCLASSNAME.Insert@Integer@TYPENAME +<copy TJclArrayList.Insert@Integer@TObject> +\ \ + +@@SELFCLASSNAME.InsertAll@Integer@COLLECTIONINTERFACENAME +<copy TJclArrayList.InsertAll@Integer@IJclCollection> +\ \ + +@@SELFCLASSNAME.IsEmpty +<copy TJclArrayList.IsEmpty> +\ \ + +@@SELFCLASSNAME.Last +<copy TJclArrayList.Last> +\ \ + +@@SELFCLASSNAME.LastIndexOf@TYPENAME +<copy TJclArrayList.LastIndexOf@TObject> +\ \ + +@@SELFCLASSNAME.Remove@TYPENAME +<copy TJclArrayList.Remove@TObject> +\ \ + +@@SELFCLASSNAME.RemoveAll@COLLECTIONINTERFACENAME +<copy TJclArrayList.RemoveAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.RetainAll@COLLECTIONINTERFACENAME +<copy TJclArrayList.RetainAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.SetCapacity@Integer +<copy TJclArrayList.SetCapacity@Integer> +\ \ + +@@SELFCLASSNAME.SETTERNAME@Integer@TYPENAME +<copy TJclArrayList.SetObject@Integer@TObject> +\ \ + +@@SELFCLASSNAME.Size +<copy TJclArrayList.Size> +\ \ + +@@SELFCLASSNAME.SubList@Integer@Integer +<copy TJclArrayList.SubList@Integer@Integer> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO JCLARRAYLISTINT(,,,,)}*) +(*$JPPDEFINEMACRO JCLARRAYLISTITRINT(SELFCLASSNAME, ITRINTERFACENAME, LISTINTERFACENAME, + TYPENAME, GETTERNAME, SETTERNAME) +@@SELFCLASSNAME +<copy TJclArrayIterator> +\ \ + +@@!!MEMBEROVERVIEW_SELFCLASSNAME +<copy !!MEMBEROVERVIEW_TJclArrayIterator> +\ \ + +@@SELFCLASSNAME.Current +<copy TJclArrayIterator.Current> +\ \ + +@@SELFCLASSNAME.Current +<copy TJclArrayIterator.Current> +\ \ + +@@SELFCLASSNAME.Add@TYPENAME +<copy TJclArrayIterator.Add@TObject> +\ \ + +@@SELFCLASSNAME.AssignPropertiesTo@TJclAbstractIterator +<copy TJclArrayIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@SELFCLASSNAME.Create@LISTINTERFACENAME@Integer@Boolean@TItrStart +<copy TJclArrayIterator.Create@IJclList@Integer@Boolean@TItrStart> +\ \ + +@@SELFCLASSNAME.CreateEmptyIterator +<copy TJclArrayIterator.CreateEmptyIterator> +\ \ + +@@SELFCLASSNAME.Extract +<copy TJclArrayIterator.Extract> +\ \ + +@@SELFCLASSNAME.GETTERNAME +<copy TJclArrayIterator.GetObject> +\ \ + +@@SELFCLASSNAME.HasNext +<copy TJclArrayIterator.HasNext> +\ \ + +@@SELFCLASSNAME.HasPrevious +<copy TJclArrayIterator.HasPrevious> +\ \ + +@@SELFCLASSNAME.Insert@TYPENAME +<copy TJclArrayIterator.Insert@TObject> +\ \ + +@@SELFCLASSNAME.IteratorEquals@ITRINTERFACENAME +<copy TJclArrayIterator.IteratorEquals@IJclIterator> +\ \ + +@@SELFCLASSNAME.MoveNext +<copy TJclArrayIterator.MoveNext> +\ \ + +@@SELFCLASSNAME.Next +<copy TJclArrayIterator.Next> +\ \ + +@@SELFCLASSNAME.NextIndex +<copy TJclArrayIterator.NextIndex> +\ \ + +@@SELFCLASSNAME.Previous +<copy TJclArrayIterator.Previous> +\ \ + +@@SELFCLASSNAME.PreviousIndex +<copy TJclArrayIterator.PreviousIndex> +\ \ + +@@SELFCLASSNAME.Remove +<copy TJclArrayIterator.Remove> +\ \ + +@@SELFCLASSNAME.Reset +<copy TJclArrayIterator.Reset> +\ \ + +@@SELFCLASSNAME.SETTERNAME@TYPENAME +<copy TJclArrayIterator.SetObject@TObject> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO JCLARRAYLISTITRINT(,,,,,)}*) diff --git a/help/containers/JclArraySets.inc b/help/containers/JclArraySets.inc new file mode 100644 index 0000000000..7890ffe013 --- /dev/null +++ b/help/containers/JclArraySets.inc @@ -0,0 +1,44 @@ +(*$JPPDEFINEMACRO JCLARRAYSETINT(SELFCLASSNAME, COLLECTIONINTERFACENAME, TYPENAME) +@@SELFCLASSNAME +<copy TJclArraySet> +\ \ + +@@!!MEMBEROVERVIEW_SELFCLASSNAME +<copy !!MEMBEROVERVIEW_TJclArraySet> +\ \ + +@@SELFCLASSNAME.Add@TYPENAME +<copy TJclArraySet.Add@TObject> +\ \ + +@@SELFCLASSNAME.AddAll@COLLECTIONINTERFACENAME +<copy TJclArraySet.AddAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.Contains@TYPENAME +<copy TJclArraySet.Contains@TObject> +\ \ + +@@SELFCLASSNAME.Insert@Integer@TYPENAME +<copy TJclArraySet.Insert@Integer@TObject> +\ \ + +@@SELFCLASSNAME.CreateEmptyContainer +<copy TJclArraySet.CreateEmptyContainer> +\ \ + +@@SELFCLASSNAME.Intersect@COLLECTIONINTERFACENAME +<copy TJclArraySet.Intersect@IJclCollection> +\ \ + +@@SELFCLASSNAME.Subtract@COLLECTIONINTERFACENAME +<copy TJclArraySet.Subtract@IJclCollection> +\ \ + +@@SELFCLASSNAME.Union@COLLECTIONINTERFACENAME +<copy TJclArraySet.Union@IJclCollection> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO JCLARRAYSETINT(,,)}*) + diff --git a/help/containers/JclBinaryTrees.inc b/help/containers/JclBinaryTrees.inc new file mode 100644 index 0000000000..c7ac7e9443 --- /dev/null +++ b/help/containers/JclBinaryTrees.inc @@ -0,0 +1,376 @@ +(*$JPPDEFINEMACRO JCLBINARYTREETYPESINT(NODETYPENAME) +@@NODETYPENAME +<copy TJclBinaryNode> +\ \ + +@@!!MEMBEROVERVIEW_NODETYPENAME +<copy !!MEMBEROVERVIEW_TJclBinaryNode> +\ \ + +@@NODETYPENAME.Left +<copy TJclBinaryNode.Left> +\ \ + +@@NODETYPENAME.Parent +<copy TJclBinaryNode.Parent> +\ \ + +@@NODETYPENAME.Right +<copy TJclBinaryNode.Right> +\ \ + +@@NODETYPENAME.Value +<copy TJclBinaryNode.Value> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO JCLBINARYTREETYPESINT()}*) + +(*$JPPDEFINEMACRO JCLBINARYTREEINT(SELFCLASSNAME, COLLECTIONINTERFACENAME, COMPAREFUNCTIONNAME, TYPENAME) +@@SELFCLASSNAME +<copy TJclBinaryTree> +\ \ + +@@!!MEMBEROVERVIEW_SELFCLASSNAME +<copy !!MEMBEROVERVIEW_TJclBinaryTree> +\ \ + +@@SELFCLASSNAME.Add@TYPENAME +<copy TJclBinaryTree.Add@TObject> +\ \ + +@@SELFCLASSNAME.AddAll@COLLECTIONINTERFACENAME +<copy TJclBinaryTree.AddAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.Clear +<copy TJclBinaryTree.Clear> +\ \ + +@@SELFCLASSNAME.Contains@TYPENAME +<copy TJclBinaryTree.Contains@TObject> +\ \ + +@@SELFCLASSNAME.ContainsAll@COLLECTIONINTERFACENAME +<copy TJclBinaryTree.ContainsAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.Root +<copy TJclBinaryTree.Root> +\ \ + +@@SELFCLASSNAME.TraverseOrder +<copy TJclBinaryTree.TraverseOrder> +\ \ + +@@SELFCLASSNAME.Destroy +<copy TJclBinaryTree.Destroy> +\ \ + +@@SELFCLASSNAME.AssignDataTo@TJclAbstractContainerBase +<copy TJclBinaryTree.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@SELFCLASSNAME.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclBinaryTree.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@SELFCLASSNAME.AutoPack +<copy TJclBinaryTree.AutoPack> +\ \ + +@@SELFCLASSNAME.First +<copy TJclBinaryTree.First> +\ \ + +@@SELFCLASSNAME.CollectionEquals@COLLECTIONINTERFACENAME +<copy TJclBinaryTree.CollectionEquals@IJclCollection> +\ \ + +@@SELFCLASSNAME.GetTraverseOrder +<copy TJclBinaryTree.GetTraverseOrder> +\ \ + +@@SELFCLASSNAME.IsEmpty +<copy TJclBinaryTree.IsEmpty> +\ \ + +@@SELFCLASSNAME.Last +<copy TJclBinaryTree.Last> +\ \ + +@@SELFCLASSNAME.Create@COMPAREFUNCTIONNAME +<copy TJclBinaryTree.Create@TCompare@Boolean> +\ \ + +@@SELFCLASSNAME.Remove@TYPENAME +<copy TJclBinaryTree.Remove@TObject> +\ \ + +@@SELFCLASSNAME.CreateEmptyContainer +<copy TJclBinaryTree.CreateEmptyContainer> +\ \ + +@@SELFCLASSNAME.RemoveAll@COLLECTIONINTERFACENAME +<copy TJclBinaryTree.RemoveAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.RetainAll@COLLECTIONINTERFACENAME +<copy TJclBinaryTree.RetainAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.Extract@TYPENAME +<copy TJclBinaryTree.Extract@TObject> +\ \ + +@@SELFCLASSNAME.ExtractAll@COLLECTIONINTERFACENAME +<copy TJclBinaryTree.ExtractAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.SetTraverseOrder@TJclTraverseOrder +<copy TJclBinaryTree.SetTraverseOrder@TJclTraverseOrder> +\ \ + +@@SELFCLASSNAME.GetEnumerator +<copy TJclBinaryTree.GetEnumerator> +\ \ + +@@SELFCLASSNAME.Size +<copy TJclBinaryTree.Size> +\ \ + +@@SELFCLASSNAME.GetRoot +<copy TJclBinaryTree.GetRoot> +\ \ + +@@SELFCLASSNAME.Pack +<copy TJclBinaryTree.Pack> +\ \ + +@@SELFCLASSNAME.SetCapacity@Integer +<copy TJclBinaryTree.SetCapacity@Integer> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO JCLBINARYTREEINT(,,,)}*) + +(*$JPPDEFINEMACRO JCLBINARYTREEITRINT(BASEITRCLASSNAME, PREORDERITRCLASSNAME, INORDERITRCLASSNAME, POSTORDERITRCLASSNAME, + STDITRINTERFACENAME, COLLECTIONINTERFACENAME, NODETYPENAME, TYPENAME, GETTERNAME, SETTERNAME) +@@BASEITRCLASSNAME +<copy TJclBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_BASEITRCLASSNAME +<copy !!MEMBEROVERVIEW_TJclBinaryTreeIterator> +\ \ + +@@BASEITRCLASSNAME.Current +<copy TJclBinaryTreeIterator.Current> +\ \ + +@@BASEITRCLASSNAME.Add@TYPENAME +<copy TJclBinaryTreeIterator.Add@TObject> +\ \ + +@@BASEITRCLASSNAME.AddChild@TYPENAME +<copy TJclBinaryTreeIterator.AddChild@TObject> +\ \ + +@@BASEITRCLASSNAME.AssignPropertiesTo@TJclAbstractIterator +<copy TJclBinaryTreeIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@BASEITRCLASSNAME.ChildrenCount +<copy TJclBinaryTreeIterator.ChildrenCount> +\ \ + +@@BASEITRCLASSNAME.Create@COLLECTIONINTERFACENAME@NODETYPENAME@Boolean@TItrStart +<copy TJclBinaryTreeIterator.Create@IJclCollection@TJclBinaryNode@Boolean@TItrStart> +\ \ + +@@BASEITRCLASSNAME.DeleteChild@Integer +<copy TJclBinaryTreeIterator.DeleteChild@Integer> +\ \ + +@@BASEITRCLASSNAME.DeleteChildren +<copy TJclBinaryTreeIterator.DeleteChildren> +\ \ + +@@BASEITRCLASSNAME.Extract +<copy TJclBinaryTreeIterator.Extract> +\ \ + +@@BASEITRCLASSNAME.ExtractChild@Integer +<copy TJclBinaryTreeIterator.ExtractChild@Integer> +\ \ + +@@BASEITRCLASSNAME.ExtractChildren +<copy TJclBinaryTreeIterator.ExtractChildren> +\ \ + +@@BASEITRCLASSNAME.GetChild@Integer +<copy TJclBinaryTreeIterator.GetChild@Integer> +\ \ + +@@BASEITRCLASSNAME.GetNextCursor +<copy TJclBinaryTreeIterator.GetNextCursor> +\ \ + +@@BASEITRCLASSNAME.GETTERNAME +<copy TJclBinaryTreeIterator.GetObject> +\ \ + +@@BASEITRCLASSNAME.GetPreviousCursor +<copy TJclBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@BASEITRCLASSNAME.HasChild@Integer +<copy TJclBinaryTreeIterator.HasChild@Integer> +\ \ + +@@BASEITRCLASSNAME.HasLeft +<copy TJclBinaryTreeIterator.HasLeft> +\ \ + +@@BASEITRCLASSNAME.HasNext +<copy TJclBinaryTreeIterator.HasNext> +\ \ + +@@BASEITRCLASSNAME.HasParent +<copy TJclBinaryTreeIterator.HasParent> +\ \ + +@@BASEITRCLASSNAME.HasPrevious +<copy TJclBinaryTreeIterator.HasPrevious> +\ \ + +@@BASEITRCLASSNAME.HasRight +<copy TJclBinaryTreeIterator.HasRight> +\ \ + +@@BASEITRCLASSNAME.IndexOfChild@TYPENAME +<copy TJclBinaryTreeIterator.IndexOfChild@TObject> +\ \ + +@@BASEITRCLASSNAME.Insert@TYPENAME +<copy TJclBinaryTreeIterator.Insert@TObject> +\ \ + +@@BASEITRCLASSNAME.InsertChild@Integer@TYPENAME +<copy TJclBinaryTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@BASEITRCLASSNAME.IteratorEquals@STDITRINTERFACENAME +<copy TJclBinaryTreeIterator.IteratorEquals@IJclIterator> +\ \ + +@@BASEITRCLASSNAME.Left +<copy TJclBinaryTreeIterator.Left> +\ \ + +@@BASEITRCLASSNAME.MoveNext +<copy TJclBinaryTreeIterator.MoveNext> +\ \ + +@@BASEITRCLASSNAME.Next +<copy TJclBinaryTreeIterator.Next> +\ \ + +@@BASEITRCLASSNAME.NextIndex +<copy TJclBinaryTreeIterator.NextIndex> +\ \ + +@@BASEITRCLASSNAME.Parent +<copy TJclBinaryTreeIterator.Parent> +\ \ + +@@BASEITRCLASSNAME.Previous +<copy TJclBinaryTreeIterator.Previous> +\ \ + +@@BASEITRCLASSNAME.PreviousIndex +<copy TJclBinaryTreeIterator.PreviousIndex> +\ \ + +@@BASEITRCLASSNAME.Remove +<copy TJclBinaryTreeIterator.Remove> +\ \ + +@@BASEITRCLASSNAME.Reset +<copy TJclBinaryTreeIterator.Reset> +\ \ + +@@BASEITRCLASSNAME.Right +<copy TJclBinaryTreeIterator.Right> +\ \ + +@@BASEITRCLASSNAME.SetChild@Integer@TYPENAME +<copy TJclBinaryTreeIterator.SetChild@Integer@TObject> +\ \ + +@@BASEITRCLASSNAME.SETTERNAME@TYPENAME +<copy TJclBinaryTreeIterator.SetObject@TObject> +\ \ + +@@PREORDERITRCLASSNAME +<copy TJclPreOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_PREORDERITRCLASSNAME +<copy !!MEMBEROVERVIEW_TJclPreOrderBinaryTreeIterator> +\ \ + +@@PREORDERITRCLASSNAME.CreateEmptyIterator +<copy TJclPreOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@PREORDERITRCLASSNAME.GetNextCursor +<copy TJclPreOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@PREORDERITRCLASSNAME.GetPreviousCursor +<copy TJclPreOrderBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@INORDERITRCLASSNAME +<copy TJclInOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_INORDERITRCLASSNAME +<copy !!MEMBEROVERVIEW_TJclInOrderBinaryTreeIterator> +\ \ + +@@INORDERITRCLASSNAME.CreateEmptyIterator +<copy TJclInOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@INORDERITRCLASSNAME.GetNextCursor +<copy TJclInOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@INORDERITRCLASSNAME.GetPreviousCursor +<copy TJclInOrderBinaryTreeIterator.GetPreviousCursor> +\ \ + +@@POSTORDERITRCLASSNAME +<copy TJclPostOrderBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_POSTORDERITRCLASSNAME +<copy !!MEMBEROVERVIEW_TJclPostOrderBinaryTreeIterator> +\ \ + +@@POSTORDERITRCLASSNAME.CreateEmptyIterator +<copy TJclPostOrderBinaryTreeIterator.CreateEmptyIterator> +\ \ + +@@POSTORDERITRCLASSNAME.GetNextCursor +<copy TJclPostOrderBinaryTreeIterator.GetNextCursor> +\ \ + +@@POSTORDERITRCLASSNAME.GetPreviousCursor +<copy TJclPostOrderBinaryTreeIterator.GetPreviousCursor> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO JCLBINARYTREEITRINT(,,,,,,,,,)}*) diff --git a/help/containers/JclContainerIntf.inc b/help/containers/JclContainerIntf.inc new file mode 100644 index 0000000000..4de6afdd71 --- /dev/null +++ b/help/containers/JclContainerIntf.inc @@ -0,0 +1,714 @@ +(*$JPPDEFINEMACRO ITERPROCEDURE(PROCNAME) +@@PROCNAME +<copy TIterateProcedure> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO ITERPROCEDURE()}*) + +(*$JPPDEFINEMACRO APPLYFUNCTION(FUNCNAME) +@@FUNCNAME +<copy TApplyFunction> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO APPLYFUNCTION()}*) + +(*$JPPDEFINEMACRO COMPAREFUNCTION(FUNCNAME) +@@FUNCNAME +<copy TCompare> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO COMPAREFUNCTION()}*) + +(*$JPPDEFINEMACRO EQUALITYCOMPAREFUNCTION(FUNCNAME) +@@FUNCNAME +<copy TEqualityCompare> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO EQUALITYCOMPAREFUNCTION()}*) + +(*$JPPDEFINEMACRO HASHFUNCTION(FUNCNAME) +@@FUNCNAME +<copy THashConvert> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO HASHFUNCTION()}*) + +(*$JPPDEFINEMACRO SORTPROC(PROCNAME) +@@PROCNAME +<copy TSortProc> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO SORTPROC()}*) + +(*$JPPDEFINEMACRO EQUALITYCOMPARER(INTERFACENAME, EQUALITYCOMPARETYPENAME, TYPENAME) +@@INTERFACENAME +<copy IJclEqualityComparer> +\ \ + +@@!!MEMBEROVERVIEW_INTERFACENAME +<copy !!MEMBEROVERVIEW_IJclEqualityComparer> +\ \ + +@@INTERFACENAME.EqualityCompare +<copy IJclEqualityComparer.EqualityCompare> +\ \ + +@@INTERFACENAME.GetEqualityCompare +<copy IJclEqualityComparer.GetEqualityCompare> +\ \ + +@@INTERFACENAME.ItemsEqual@TYPENAME@TYPENAME +<copy IJclEqualityComparer.ItemsEqual@TObject@TObject> +\ \ + +@@INTERFACENAME.SetEqualityCompare@EQUALITYCOMPARETYPENAME +<copy IJclEqualityComparer.SetEqualityCompare@TEqualityCompare> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO EQUALITYCOMPARER(,,)}*) + +(*$JPPDEFINEMACRO COMPARER(INTERFACENAME, COMPARETYPENAME, TYPENAME) +@@INTERFACENAME +<copy IJclComparer> +\ \ + +@@!!MEMBEROVERVIEW_INTERFACENAME +<copy !!MEMBEROVERVIEW_IJclComparer> +\ \ + +@@INTERFACENAME.Compare +<copy IJclComparer.Compare> +\ \ + +@@INTERFACENAME.GetCompare +<copy IJclComparer.GetCompare> +\ \ + +@@INTERFACENAME.ItemsCompare@TYPENAME@TYPENAME +<copy IJclComparer.ItemsCompare@TObject@TObject> +\ \ + +@@INTERFACENAME.SetCompare@COMPARETYPENAME +<copy IJclComparer.SetCompare@TCompare> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO COMPARER(,,)}*) + +(*$JPPDEFINEMACRO HASHCONVERTER(INTERFACENAME, HASHCONVERTTYPENAME, TYPENAME) +@@INTERFACENAME +<copy IJclHashConverter> +\ \ + +@@!!MEMBEROVERVIEW_INTERFACENAME +<copy !!MEMBEROVERVIEW_IJclHashConverter> +\ \ + +@@INTERFACENAME.HashConvert +<copy IJclHashConverter.HashConvert> +\ \ + +@@INTERFACENAME.GetHashConvert +<copy IJclHashConverter.GetHashConvert> +\ \ + +@@INTERFACENAME.Hash@TYPENAME +<copy IJclHashConverter.Hash@TObject> +\ \ + +@@INTERFACENAME.SetHashConvert@HASHCONVERTTYPENAME +<copy IJclHashConverter.SetHashConvert@THashConvert> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO HASHCONVERTER(,,)}*) + +(*$JPPDEFINEMACRO ITERATOR(INTERFACENAME, TYPENAME, GETTERNAME, SETTERNAME) +@@INTERFACENAME +<copy IJclIterator> +\ \ + +@@!!MEMBEROVERVIEW_INTERFACENAME +<copy !!MEMBEROVERVIEW_IJclIterator> +\ \ + +@@INTERFACENAME.Current +<copy IJclIterator.Current> +\ \ + +@@INTERFACENAME.Add@TYPENAME +<copy IJclIterator.Add@TObject> +\ \ + +@@INTERFACENAME.Extract +<copy IJclIterator.Extract> +\ \ + +@@INTERFACENAME.GETTERNAME +<copy IJclIterator.GetObject> +\ \ + +@@INTERFACENAME.HasNext +<copy IJclIterator.HasNext> +\ \ + +@@INTERFACENAME.HasPrevious +<copy IJclIterator.HasPrevious> +\ \ + +@@INTERFACENAME.Insert@TYPENAME +<copy IJclIterator.Insert@TObject> +\ \ + +@@INTERFACENAME.IteratorEquals@INTERFACENAME +<copy IJclIterator.IteratorEquals@IJclIterator> +\ \ + +@@INTERFACENAME.MoveNext +<copy IJclIterator.MoveNext> +\ \ + +@@INTERFACENAME.Next +<copy IJclIterator.Next> +\ \ + +@@INTERFACENAME.NextIndex +<copy IJclIterator.NextIndex> +\ \ + +@@INTERFACENAME.Previous +<copy IJclIterator.Previous> +\ \ + +@@INTERFACENAME.PreviousIndex +<copy IJclIterator.PreviousIndex> +\ \ + +@@INTERFACENAME.Remove +<copy IJclIterator.Remove> +\ \ + +@@INTERFACENAME.Reset +<copy IJclIterator.Reset> +\ \ + +@@INTERFACENAME.SETTERNAME@TYPENAME +<copy IJclIterator.SetObject@TObject> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO ITERATOR(,,,)}*) + +(*$JPPDEFINEMACRO TREEITERATOR(INTERFACENAME, TYPENAME) +@@INTERFACENAME +<copy IJclTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_INTERFACENAME +<copy !!MEMBEROVERVIEW_IJclTreeIterator> +\ \ + +@@INTERFACENAME.Children +<copy IJclTreeIterator.Children> +\ \ + +@@INTERFACENAME.AddChild@TYPENAME +<copy IJclTreeIterator.AddChild@TObject> +\ \ + +@@INTERFACENAME.ChildrenCount +<copy IJclTreeIterator.ChildrenCount> +\ \ + +@@INTERFACENAME.DeleteChild@Integer +<copy IJclTreeIterator.DeleteChild@Integer> +\ \ + +@@INTERFACENAME.DeleteChildren +<copy IJclTreeIterator.DeleteChildren> +\ \ + +@@INTERFACENAME.ExtractChild@Integer +<copy IJclTreeIterator.ExtractChild@Integer> +\ \ + +@@INTERFACENAME.ExtractChildren +<copy IJclTreeIterator.ExtractChildren> +\ \ + +@@INTERFACENAME.GetChild@Integer +<copy IJclTreeIterator.GetChild@Integer> +\ \ + +@@INTERFACENAME.HasChild@Integer +<copy IJclTreeIterator.HasChild@Integer> +\ \ + +@@INTERFACENAME.HasParent +<copy IJclTreeIterator.HasParent> +\ \ + +@@INTERFACENAME.IndexOfChild@TYPENAME +<copy IJclTreeIterator.IndexOfChild@TObject> +\ \ + +@@INTERFACENAME.InsertChild@Integer@TYPENAME +<copy IJclTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@INTERFACENAME.Parent +<copy IJclTreeIterator.Parent> +\ \ + +@@INTERFACENAME.SetChild@Integer@TYPENAME +<copy IJclTreeIterator.SetChild@Integer@TObject> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO TREEITERATOR(,)}*) + +(*$JPPDEFINEMACRO BINTREEITERATOR(INTERFACENAME) +@@INTERFACENAME +<copy IJclBinaryTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_INTERFACENAME +<copy !!MEMBEROVERVIEW_IJclBinaryTreeIterator> +\ \ + +@@INTERFACENAME.HasLeft +<copy IJclBinaryTreeIterator.HasLeft> +\ \ + +@@INTERFACENAME.HasRight +<copy IJclBinaryTreeIterator.HasRight> +\ \ + +@@INTERFACENAME.Left +<copy IJclBinaryTreeIterator.Left> +\ \ + +@@INTERFACENAME.Right +<copy IJclBinaryTreeIterator.Right> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO BINTREEITERATOR()}*) + +(*$JPPDEFINEMACRO COLLECTION(INTERFACENAME, TYPENAME) +@@INTERFACENAME +<copy IJclCollection> +\ \ + +@@!!MEMBEROVERVIEW_INTERFACENAME +<copy !!MEMBEROVERVIEW_IJclCollection> +\ \ + +@@INTERFACENAME.Add@TYPENAME +<copy IJclCollection.Add@TObject> +\ \ + +@@INTERFACENAME.AddAll@INTERFACENAME +<copy IJclCollection.AddAll@IJclCollection> +\ \ + +@@INTERFACENAME.Clear +<copy IJclCollection.Clear> +\ \ + +@@INTERFACENAME.CollectionEquals@INTERFACENAME +<copy IJclCollection.CollectionEquals@IJclCollection> +\ \ + +@@INTERFACENAME.Contains@TYPENAME +<copy IJclCollection.Contains@TObject> +\ \ + +@@INTERFACENAME.ContainsAll@INTERFACENAME +<copy IJclCollection.ContainsAll@IJclCollection> +\ \ + +@@INTERFACENAME.Extract@TYPENAME +<copy IJclCollection.Extract@TObject> +\ \ + +@@INTERFACENAME.ExtractAll@INTERFACENAME +<copy IJclCollection.ExtractAll@IJclCollection> +\ \ + +@@INTERFACENAME.First +<copy IJclCollection.First> +\ \ + +@@INTERFACENAME.GetEnumerator +<copy IJclCollection.GetEnumerator> +\ \ + +@@INTERFACENAME.IsEmpty +<copy IJclCollection.IsEmpty> +\ \ + +@@INTERFACENAME.Last +<copy IJclCollection.Last> +\ \ + +@@INTERFACENAME.Remove@TYPENAME +<copy IJclCollection.Remove@TObject> +\ \ + +@@INTERFACENAME.RemoveAll@INTERFACENAME +<copy IJclCollection.RemoveAll@IJclCollection> +\ \ + +@@INTERFACENAME.RetainAll@INTERFACENAME +<copy IJclCollection.RetainAll@IJclCollection> +\ \ + +@@INTERFACENAME.Size +<copy IJclCollection.Size> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO COLLECTION(,)}*) + +(*$JPPDEFINEMACRO LIST(LISTINTERFACENAME, COLLECTIONINTERFACENAME, TYPENAME, GETTERNAME, SETTERNAME, PROPNAME) +@@LISTINTERFACENAME +<copy IJclList> +\ \ + +@@!!MEMBEROVERVIEW_LISTINTERFACENAME +<copy !!MEMBEROVERVIEW_IJclList> +\ \ + +@@LISTINTERFACENAME.PROPNAME +<copy IJclList.Objects> +\ \ + +@@LISTINTERFACENAME.Delete@Integer +<copy IJclList.Delete@Integer> +\ \ + +@@LISTINTERFACENAME.ExtractIndex@Integer +<copy IJclList.ExtractIndex@Integer> +\ \ + +@@LISTINTERFACENAME.GETTERNAME@Integer +<copy IJclList.GetObject@Integer> +\ \ + +@@LISTINTERFACENAME.IndexOf@TYPENAME +<copy IJclList.IndexOf@TObject> +\ \ + +@@LISTINTERFACENAME.Insert@Integer@TYPENAME +<copy IJclList.Insert@Integer@TObject> +\ \ + +@@LISTINTERFACENAME.InsertAll@Integer@COLLECTIONINTERFACENAME +<copy IJclList.InsertAll@Integer@IJclCollection> +\ \ + +@@LISTINTERFACENAME.LastIndexOf@TYPENAME +<copy IJclList.LastIndexOf@TObject> +\ \ + +@@LISTINTERFACENAME.SETTERNAME@Integer@TYPENAME +<copy IJclList.SetObject@Integer@TObject> +\ \ + +@@LISTINTERFACENAME.SubList@Integer@Integer +<copy IJclList.SubList@Integer@Integer> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO LIST(,,,,,)}*) + +(*$JPPDEFINEMACRO ARRAY(INTERFACENAME, TYPENAME, GETTERNAME, SETTERNAME, PROPNAME) +@@INTERFACENAME +<copy IJclArray> +\ \ + +@@!!MEMBEROVERVIEW_INTERFACENAME +<copy !!MEMBEROVERVIEW_IJclArray> +\ \ + +@@INTERFACENAME.PROPNAME +<copy IJclArray.Objects> +\ \ + +@@INTERFACENAME.GETTERNAME@Integer +<copy IJclArray.GetObject@Integer> +\ \ + +@@INTERFACENAME.SETTERNAME@Integer@TYPENAME +<copy IJclArray.SetObject@Integer@TObject> +\ \ +*) +(*$JPPDEFINEMACRO SET(SETINTERFACENAME, COLLECTIONINTERFACENAME) +@@SETINTERFACENAME +<copy IJclSet> +\ \ + +@@!!MEMBEROVERVIEW_SETINTERFACENAME +<copy !!MEMBEROVERVIEW_IJclSet> +\ \ + +@@SETINTERFACENAME.Intersect@COLLECTIONINTERFACENAME +<copy IJclSet.Intersect@IJclCollection> +\ \ + +@@SETINTERFACENAME.Subtract@COLLECTIONINTERFACENAME +<copy IJclSet.Subtract@IJclCollection> +\ \ + +@@SETINTERFACENAME.Union@COLLECTIONINTERFACENAME +<copy IJclSet.Union@IJclCollection> +\ \ +*) +(*$JPPDEFINEMACRO TREE(INTERFACENAME) +@@INTERFACENAME +<copy IJclTree> +\ \ + +@@!!MEMBEROVERVIEW_INTERFACENAME +<copy !!MEMBEROVERVIEW_IJclTree> +\ \ + +@@INTERFACENAME.Root +<copy IJclTree.Root> +\ \ + +@@INTERFACENAME.TraverseOrder +<copy IJclTree.TraverseOrder> +\ \ + +@@INTERFACENAME.GetRoot +<copy IJclTree.GetRoot> +\ \ + +@@INTERFACENAME.GetTraverseOrder +<copy IJclTree.GetTraverseOrder> +\ \ + +@@IJclTree.SetTraverseOrder@TJclTraverseOrder +<copy IJclTree.SetTraverseOrder@TJclTraverseOrder> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO ARRAY(,,,,)}*) + +(*$JPPDEFINEMACRO MAP(INTERFACENAME, KEYTYPENAME, VALUETYPENAME) +@@INTERFACENAME +<copy IJclMap> +\ \ + +@@!!MEMBEROVERVIEW_INTERFACENAME +<copy !!MEMBEROVERVIEW_IJclMap> +\ \ + +@@INTERFACENAME.Items +<copy IJclMap.Items> +\ \ + +@@INTERFACENAME.Clear +<copy IJclMap.Clear> +\ \ + +@@INTERFACENAME.ContainsKey@KEYTYPENAME +<copy IJclMap.ContainsKey@TObject> +\ \ + +@@INTERFACENAME.ContainsValue@VALUETYPENAME +<copy IJclMap.ContainsValue@TObject> +\ \ + +@@INTERFACENAME.Extract@KEYTYPENAME +<copy IJclMap.Extract@TObject> +\ \ + +@@INTERFACENAME.GetValue@KEYTYPENAME +<copy IJclMap.GetValue@TObject> +\ \ + +@@INTERFACENAME.IsEmpty +<copy IJclMap.IsEmpty> +\ \ + +@@INTERFACENAME.KeyOfValue@VALUETYPENAME +<copy IJclMap.KeyOfValue@TObject> +\ \ + +@@INTERFACENAME.KeySet +<copy IJclMap.KeySet> +\ \ + +@@INTERFACENAME.MapEquals@INTERFACENAME +<copy IJclMap.MapEquals@IJclMap> +\ \ + +@@INTERFACENAME.PutAll@INTERFACENAME +<copy IJclMap.PutAll@IJclMap> +\ \ + +@@INTERFACENAME.PutValue@KEYTYPENAME@VALUETYPENAME +<copy IJclMap.PutValue@TObject@TObject> +\ \ + +@@INTERFACENAME.Remove@KEYTYPENAME +<copy IJclMap.Remove@TObject> +\ \ + +@@INTERFACENAME.Size +<copy IJclMap.Size> +\ \ + +@@INTERFACENAME.Values +<copy IJclMap.Values> +\ \ +*) +(*$JPPLOOP TRUEMAPINDEX HELPTRUEMAPCOUNT +{$JPPEXPANDMACRO MAP(,,)}*) + +(*$JPPDEFINEMACRO QUEUE(INTERFACENAME, TYPENAME) +@@INTERFACENAME +<copy IJclQueue> +\ \ + +@@!!MEMBEROVERVIEW_INTERFACENAME +<copy !!MEMBEROVERVIEW_IJclQueue> +\ \ + +@@INTERFACENAME.Clear +<copy IJclQueue.Clear> +\ \ + +@@INTERFACENAME.Contains@TYPENAME +<copy IJclQueue.Contains@TObject> +\ \ + +@@INTERFACENAME.Dequeue +<copy IJclQueue.Dequeue> +\ \ + +@@INTERFACENAME.Empty +<copy IJclQueue.Empty> +\ \ + +@@INTERFACENAME.Enqueue@TYPENAME +<copy IJclQueue.Enqueue@TObject> +\ \ + +@@INTERFACENAME.Peek +<copy IJclQueue.Peek> +\ \ + +@@INTERFACENAME.Size +<copy IJclQueue.Size> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO QUEUE(,)}*) + +(*$JPPDEFINEMACRO SORTEDMAP(INTERFACENAME, KEYTYPENAME) +@@INTERFACENAME +<copy IJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_INTERFACENAME +<copy !!MEMBEROVERVIEW_IJclSortedMap> +\ \ + +@@INTERFACENAME.FirstKey +<copy IJclSortedMap.FirstKey> +\ \ + +@@INTERFACENAME.HeadMap@KEYTYPENAME +<copy IJclSortedMap.HeadMap@TObject> +\ \ + +@@INTERFACENAME.LastKey +<copy IJclSortedMap.LastKey> +\ \ + +@@INTERFACENAME.SubMap@KEYTYPENAME@KEYTYPENAME +<copy IJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@INTERFACENAME.TailMap@KEYTYPENAME +<copy IJclSortedMap.TailMap@TObject> +\ \ +*) +(*$JPPLOOP TRUEMAPINDEX HELPTRUEMAPCOUNT +{$JPPEXPANDMACRO SORTEDMAP(,)}*) + +(*$JPPDEFINEMACRO SORTEDSET(INTERFACENAME, TYPENAME) +@@INTERFACENAME +<copy IJclSortedSet> +\ \ + +@@!!MEMBEROVERVIEW_INTERFACENAME +<copy !!MEMBEROVERVIEW_IJclSortedSet> +\ \ + +@@INTERFACENAME.HeadSet@TYPENAME +<copy IJclSortedSet.HeadSet@TObject> +\ \ + +@@INTERFACENAME.SubSet@TYPENAME@TYPENAME +<copy IJclSortedSet.SubSet@TObject@TObject> +\ \ + +@@INTERFACENAME.TailSet@TYPENAME +<copy IJclSortedSet.TailSet@TObject> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO SORTEDSET(,)}*) + +(*$JPPDEFINEMACRO STACK(INTERFACENAME, TYPENAME) +@@INTERFACENAME +<copy IJclStack> +\ \ + +@@!!MEMBEROVERVIEW_INTERFACENAME +<copy !!MEMBEROVERVIEW_IJclStack> +\ \ + +@@INTERFACENAME.Clear +<copy IJclStack.Clear> +\ \ + +@@INTERFACENAME.Contains@TYPENAME +<copy IJclStack.Contains@TObject> +\ \ + +@@INTERFACENAME.Empty +<copy IJclStack.Empty> +\ \ + +@@INTERFACENAME.Peek +<copy IJclStack.Peek> +\ \ + +@@INTERFACENAME.Pop +<copy IJclStack.Pop> +\ \ + +@@INTERFACENAME.Push@TYPENAME +<copy IJclStack.Push@TObject> +\ \ + +@@INTERFACENAME.Size +<copy IJclStack.Size> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO STACK(,)}*) + diff --git a/help/containers/JclHashMaps.inc b/help/containers/JclHashMaps.inc new file mode 100644 index 0000000000..7a2a0ad4d7 --- /dev/null +++ b/help/containers/JclHashMaps.inc @@ -0,0 +1,177 @@ +{$JPPUNDEF KEYOWNABLE} +{$JPPUNDEF VALUEOWNABLE} +(*$JPPDEFINEMACRO JCLHASHMAPTYPESINT(ENTRYTYPENAME, BUCKETTYPENAME) +@@ENTRYTYPENAME +<copy TJclHashEntry> +\ \ + +@@ENTRYTYPENAME.Key +<copy TJclHashEntry.Key> +\ \ + +@@ENTRYTYPENAME.Value +<copy TJclHashEntry.Value> +\ \ + +@@BUCKETTYPENAME +<copy TJclBucket> +\ \ + +@@!!MEMBEROVERVIEW_BUCKETTYPENAME +<copy !!MEMBEROVERVIEW_TJclBucket> +\ \ + +@@BUCKETTYPENAME.Entries +<copy TJclBucket.Entries> +\ \ + +@@BUCKETTYPENAME.Size +<copy TJclBucket.Size> +\ \ + +@@BUCKETTYPENAME.MoveArray@Integer@Integer@Integer +<copy TJclBucket.MoveArray@Integer@Integer@Integer> +\ \ +*) +(*$JPPLOOP TRUEMAPINDEX HELPTRUEMAPCOUNT +{$JPPEXPANDMACRO JCLHASHMAPTYPESINT(,)}*) + +(*$JPPDEFINEMACRO JCLHASHMAPINT(SELFCLASSNAME, MAPINTERFACENAME, KEYTYPENAME, VALUETYPENAME) +@@SELFCLASSNAME +<copy TJclHashMap> +\ \ + +@@!!MEMBEROVERVIEW_SELFCLASSNAME +<copy !!MEMBEROVERVIEW_TJclHashMap> +\ \ + +@@SELFCLASSNAME.HashFunction +<copy TJclHashMap.HashFunction> +\ \ + +{$IFDEF KEYOWNABLE} +@@SELFCLASSNAME.OwnsKeys +<copy TJclHashMap.OwnsKeys> +\ \ + +{$ENDIF KEYOWNABLE} +{$IFDEF VALUEOWNABLE} +@@SELFCLASSNAME.OwnsValues +<copy TJclHashMap.OwnsValues> +\ \ + +{$ENDIF VALUEOWNABLE} +@@SELFCLASSNAME.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@SELFCLASSNAME.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclHashMap.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@SELFCLASSNAME.Clear +<copy TJclHashMap.Clear> +\ \ + +@@SELFCLASSNAME.ContainsKey@KEYTYPENAME +<copy TJclHashMap.ContainsKey@TObject> +\ \ + +@@SELFCLASSNAME.ContainsValue@VALUETYPENAME +<copy TJclHashMap.ContainsValue@TObject> +\ \ + +@@SELFCLASSNAME.Create@Integer{$IFDEF KEYOWNABLE}@Boolean{$ENDIF}{$IFDEF VALUEOWNABLE}@Boolean{$ENDIF} +<copy TJclHashMap.Create@Integer@Boolean> +\ \ + +@@SELFCLASSNAME.CreateEmptyContainer +<copy TJclHashMap.CreateEmptyContainer> +\ \ + +@@SELFCLASSNAME.Destroy +<copy TJclHashMap.Destroy> +\ \ + +@@SELFCLASSNAME.Extract@KEYTYPENAME +<copy TJclHashMap.Extract@TObject> +\ \ + +@@SELFCLASSNAME.FreeKey@KEYTYPENAME +<copy TJclHashMap.FreeKey@TObject> +\ \ + +@@SELFCLASSNAME.FreeValue@VALUETYPENAME +<copy TJclHashMap.FreeValue@TObject> +\ \ + +{$IFDEF KEYOWNABLE} +@@SELFCLASSNAME.GetOwnsKeys +<copy TJclHashMap.GetOwnsKeys> +\ \ + +{$ENDIF KEYOWNABLE} +{$IFDEF VALUEOWNABLE} +@@SELFCLASSNAME.OwnsValues +<copy TJclHashMap.OwnsValues> +\ \ + +{$ENDIF VALUEOWNABLE} +@@SELFCLASSNAME.GetValue@KEYTYPENAME +<copy TJclHashMap.GetValue@TObject> +\ \ + +@@SELFCLASSNAME.IsEmpty +<copy TJclHashMap.IsEmpty> +\ \ + +@@SELFCLASSNAME.KeyOfValue@VALUETYPENAME +<copy TJclHashMap.KeyOfValue@TObject> +\ \ + +@@SELFCLASSNAME.KeysEqual@KEYTYPENAME@KEYTYPENAME +<copy TJclHashMap.KeysEqual@TObject@TObject> +\ \ + +@@SELFCLASSNAME.KeySet +<copy TJclHashMap.KeySet> +\ \ + +@@SELFCLASSNAME.MapEquals@MAPINTERFACENAME +<copy TJclHashMap.MapEquals@IJclMap> +\ \ + +@@SELFCLASSNAME.Pack +<copy TJclHashMap.Pack> +\ \ + +@@SELFCLASSNAME.PutAll@MAPINTERFACENAME +<copy TJclHashMap.PutAll@IJclMap> +\ \ + +@@SELFCLASSNAME.PutValue@KEYTYPENAME@VALUETYPENAME +<copy TJclHashMap.PutValue@TObject@TObject> +\ \ + +@@SELFCLASSNAME.Remove@KEYTYPENAME +<copy TJclHashMap.Remove@TObject> +\ \ + +@@SELFCLASSNAME.SetCapacity@Integer +<copy TJclHashMap.SetCapacity@Integer> +\ \ + +@@SELFCLASSNAME.Size +<copy TJclHashMap.Size> +\ \ + +@@SELFCLASSNAME.Values +<copy TJclHashMap.Values> +\ \ + +@@SELFCLASSNAME.ValuesEqual@VALUETYPENAME@VALUETYPENAME +<copy TJclHashMap.ValuesEqual@TObject@TObject> +\ \ +*) +(*$JPPLOOP TRUEMAPINDEX HELPTRUEMAPCOUNT +{$JPPEXPANDMACRO JCLHASHMAPINT(,,,)}*) diff --git a/help/containers/JclHashSets.inc b/help/containers/JclHashSets.inc new file mode 100644 index 0000000000..27608d71e7 --- /dev/null +++ b/help/containers/JclHashSets.inc @@ -0,0 +1,192 @@ +(*$JPPDEFINEMACRO JCLHASHSETINT(SELFCLASSNAME, COLLECTIONINTERFACENAME, MAPINTERFACENAME, TYPENAME) +@@SELFCLASSNAME +<copy TJclHashSet> +\ \ + +@@!!MEMBEROVERVIEW_SELFCLASSNAME +<copy !!MEMBEROVERVIEW_TJclHashSet> +\ \ + +@@SELFCLASSNAME.Add@TYPENAME +<copy TJclHashSet.Add@TObject> +\ \ + +@@SELFCLASSNAME.AddAll@COLLECTIONINTERFACENAME +<copy TJclHashSet.AddAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.AssignDataTo@TJclAbstractContainerBase +<copy TJclHashSet.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@SELFCLASSNAME.Clear +<copy TJclHashSet.Clear> +\ \ + +@@SELFCLASSNAME.CollectionEquals@COLLECTIONINTERFACENAME +<copy TJclHashSet.CollectionEquals@IJclCollection> +\ \ + +@@SELFCLASSNAME.Contains@TYPENAME +<copy TJclHashSet.Contains@TObject> +\ \ + +@@SELFCLASSNAME.ContainsAll@COLLECTIONINTERFACENAME +<copy TJclHashSet.ContainsAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.Create@MAPINTERFACENAME +<copy TJclHashSet.Create@IJclMap> +\ \ + +@@SELFCLASSNAME.Create@Integer +<copy TJclHashSet.Create@Integer@Boolean> +\ \ + +@@SELFCLASSNAME.CreateEmptyContainer +<copy TJclHashSet.CreateEmptyContainer> +\ \ + +@@SELFCLASSNAME.Destroy +<copy TJclHashSet.Destroy> +\ \ + +@@SELFCLASSNAME.Extract@TYPENAME +<copy TJclHashSet.Extract@TObject> +\ \ + +@@SELFCLASSNAME.ExtractAll@COLLECTIONINTERFACENAME +<copy TJclHashSet.ExtractAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.First +<copy TJclHashSet.First> +\ \ + +@@SELFCLASSNAME.GetAllowDefaultElements +<copy TJclHashSet.GetAllowDefaultElements> +\ \ + +@@SELFCLASSNAME.GetAutoPackParameter +<copy TJclHashSet.GetAutoPackParameter> +\ \ + +@@SELFCLASSNAME.GetAutoPackStrategy +<copy TJclHashSet.GetAutoPackStrategy> +\ \ + +@@SELFCLASSNAME.GetCapacity +<copy TJclHashSet.GetCapacity> +\ \ + +@@SELFCLASSNAME.GetDuplicates +<copy TJclHashSet.GetDuplicates> +\ \ + +@@SELFCLASSNAME.GetEnumerator +<copy TJclHashSet.GetEnumerator> +\ \ + +@@SELFCLASSNAME.GetReadOnly +<copy TJclHashSet.GetReadOnly> +\ \ + +@@SELFCLASSNAME.GetRemoveSingleElement +<copy TJclHashSet.GetRemoveSingleElement> +\ \ + +@@SELFCLASSNAME.GetReturnDefaultElements +<copy TJclHashSet.GetReturnDefaultElements> +\ \ + +@@SELFCLASSNAME.GetThreadSafe +<copy TJclHashSet.GetThreadSafe> +\ \ + +@@SELFCLASSNAME.Intersect@COLLECTIONINTERFACENAME +<copy TJclHashSet.Intersect@IJclCollection> +\ \ + +@@SELFCLASSNAME.IsEmpty +<copy TJclHashSet.IsEmpty> +\ \ + +@@SELFCLASSNAME.Last +<copy TJclHashSet.Last> +\ \ + +@@SELFCLASSNAME.Pack +<copy TJclHashSet.Pack> +\ \ + +@@SELFCLASSNAME.Remove@TYPENAME +<copy TJclHashSet.Remove@TObject> +\ \ + +@@SELFCLASSNAME.RemoveAll@COLLECTIONINTERFACENAME +<copy TJclHashSet.RemoveAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.RetainAll@COLLECTIONINTERFACENAME +<copy TJclHashSet.RetainAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.SetAllowDefaultElements@Boolean +<copy TJclHashSet.SetAllowDefaultElements@Boolean> +\ \ + +@@SELFCLASSNAME.SetAutoPackParameter@Integer +<copy TJclHashSet.SetAutoPackParameter@Integer> +\ \ + +@@SELFCLASSNAME.SetAutoPackStrategy@TJclAutoPackStrategy +<copy TJclHashSet.SetAutoPackStrategy@TJclAutoPackStrategy> +\ \ + +@@SELFCLASSNAME.SetCapacity@Integer +<copy TJclHashSet.SetCapacity@Integer> +\ \ + +@@SELFCLASSNAME.SetDuplicates@TDuplicates +<copy TJclHashSet.SetDuplicates@TDuplicates> +\ \ + +@@SELFCLASSNAME.SetReadOnly@Boolean +<copy TJclHashSet.SetReadOnly@Boolean> +\ \ + +@@SELFCLASSNAME.SetRemoveSingleElement@Boolean +<copy TJclHashSet.SetRemoveSingleElement@Boolean> +\ \ + +@@SELFCLASSNAME.SetReturnDefaultElements@Boolean +<copy TJclHashSet.SetReturnDefaultElements@Boolean> +\ \ + +@@SELFCLASSNAME.SetThreadSafe@Boolean +<copy TJclHashSet.SetThreadSafe@Boolean> +\ \ + +@@SELFCLASSNAME.Size +<copy TJclHashSet.Size> +\ \ + +@@SELFCLASSNAME.Subtract@COLLECTIONINTERFACENAME +<copy TJclHashSet.Subtract@IJclCollection> +\ \ + +@@SELFCLASSNAME.Union@COLLECTIONINTERFACENAME +<copy TJclHashSet.Union@IJclCollection> +\ \ +*) +{$JPPEXPANDMACRO JCLHASHSETINT(TJclIntfHashSet,IJclIntfCollection,IJclIntfMap,IInterface)} +{$JPPEXPANDMACRO JCLHASHSETINT(TJclAnsiStrHashSet,IJclAnsiStrCollection,IJclAnsiStrMap,AnsiString)} +{$JPPEXPANDMACRO JCLHASHSETINT(TJclWideStrHashSet,IJclWideStrCollection,IJclWideStrMap,WideString)} +{$JPPEXPANDMACRO JCLHASHSETINT(TJclUnicodeStrHashSet,IJclUnicodeStrCollection,IJclUnicodeStrMap,UnicodeString)} +{$JPPEXPANDMACRO JCLHASHSETINT(TJclSingleHashSet,IJclSingleCollection,IJclSingleMap,Single)} +{$JPPEXPANDMACRO JCLHASHSETINT(TJclDoubleHashSet,IJclDoubleCollection,IJclDoubleMap,Double)} +{$JPPEXPANDMACRO JCLHASHSETINT(TJclExtendedHashSet,IJclExtendedCollection,IJclExtendedMap,Extended)} +{$JPPEXPANDMACRO JCLHASHSETINT(TJclIntegerHashSet,IJclIntegerCollection,IJclIntegerMap,Integer)} +{$JPPEXPANDMACRO JCLHASHSETINT(TJclCardinalHashSet,IJclCardinalCollection,IJclCardinalMap,Cardinal)} +{$JPPEXPANDMACRO JCLHASHSETINT(TJclInt64HashSet,IJclInt64Collection,IJclInt64Map,Int64)} +{$JPPEXPANDMACRO JCLHASHSETINT(TJclPtrHashSet,IJclPtrCollection,IJclPtrMap,Pointer)} diff --git a/help/containers/JclLinkedLists.inc b/help/containers/JclLinkedLists.inc new file mode 100644 index 0000000000..96467e32c9 --- /dev/null +++ b/help/containers/JclLinkedLists.inc @@ -0,0 +1,239 @@ +(*$JPPDEFINEMACRO JCLLINKEDLISTTYPESINT(ITEMCLASSNAME) +@@ITEMCLASSNAME +<copy TJclLinkedListItem> +\ \ + +@@!!MEMBEROVERVIEW_ITEMCLASSNAME +<copy !!MEMBEROVERVIEW_TJclLinkedListItem> +\ \ + +@@ITEMCLASSNAME.Next +<copy TJclLinkedListItem.Next> +\ \ + +@@ITEMCLASSNAME.Previous +<copy TJclLinkedListItem.Previous> +\ \ + +@@ITEMCLASSNAME.Value +<copy TJclLinkedListItem.Value> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO JCLLINKEDLISTTYPESINT()}*) + +(*$JPPDEFINEMACRO JCLLINKEDLISTINT(SELFCLASSNAME, COLLECTIONINTERFACENAME, TYPENAME, GETTERNAME, SETTERNAME) +@@SELFCLASSNAME +<copy TJclLinkedList> +\ \ + +@@!!MEMBEROVERVIEW_SELFCLASSNAME +<copy !!MEMBEROVERVIEW_TJclLinkedList> +\ \ + +@@SELFCLASSNAME.Add@TYPENAME +<copy TJclLinkedList.Add@TObject> +\ \ + +@@SELFCLASSNAME.AddAll@COLLECTIONINTERFACENAME +<copy TJclLinkedList.AddAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.AssignDataTo@TJclAbstractContainerBase +<copy TJclLinkedList.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@SELFCLASSNAME.Clear +<copy TJclLinkedList.Clear> +\ \ + +@@SELFCLASSNAME.CollectionEquals@COLLECTIONINTERFACENAME +<copy TJclLinkedList.CollectionEquals@IJclCollection> +\ \ + +@@SELFCLASSNAME.Contains@TYPENAME +<copy TJclLinkedList.Contains@TObject> +\ \ + +@@SELFCLASSNAME.ContainsAll@COLLECTIONINTERFACENAME +<copy TJclLinkedList.ContainsAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.Create@COLLECTIONINTERFACENAME +<copy TJclLinkedList.Create@IJclCollection@Boolean> +\ \ + +@@SELFCLASSNAME.CreateEmptyContainer +<copy TJclLinkedList.CreateEmptyContainer> +\ \ + +@@SELFCLASSNAME.Delete@Integer +<copy TJclLinkedList.Delete@Integer> +\ \ + +@@SELFCLASSNAME.Destroy +<copy TJclLinkedList.Destroy> +\ \ + +@@SELFCLASSNAME.Extract@TYPENAME +<copy TJclLinkedList.Extract@TObject> +\ \ + +@@SELFCLASSNAME.ExtractAll@COLLECTIONINTERFACENAME +<copy TJclLinkedList.ExtractAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.ExtractIndex@Integer +<copy TJclLinkedList.ExtractIndex@Integer> +\ \ + +@@SELFCLASSNAME.First +<copy TJclLinkedList.First> +\ \ + +@@SELFCLASSNAME.GetEnumerator +<copy TJclLinkedList.GetEnumerator> +\ \ + +@@SELFCLASSNAME.GETTERNAME@Integer +<copy TJclLinkedList.GetObject@Integer> +\ \ + +@@SELFCLASSNAME.IndexOf@TYPENAME +<copy TJclLinkedList.IndexOf@TObject> +\ \ + +@@SELFCLASSNAME.Insert@Integer@TYPENAME +<copy TJclLinkedList.Insert@Integer@TObject> +\ \ + +@@SELFCLASSNAME.InsertAll@Integer@COLLECTIONINTERFACENAME +<copy TJclLinkedList.InsertAll@Integer@IJclCollection> +\ \ + +@@SELFCLASSNAME.IsEmpty +<copy TJclLinkedList.IsEmpty> +\ \ + +@@SELFCLASSNAME.Last +<copy TJclLinkedList.Last> +\ \ + +@@SELFCLASSNAME.LastIndexOf@TYPENAME +<copy TJclLinkedList.LastIndexOf@TObject> +\ \ + +@@SELFCLASSNAME.Remove@TYPENAME +<copy TJclLinkedList.Remove@TObject> +\ \ + +@@SELFCLASSNAME.RemoveAll@COLLECTIONINTERFACENAME +<copy TJclLinkedList.RemoveAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.RetainAll@COLLECTIONINTERFACENAME +<copy TJclLinkedList.RetainAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.SETTERNAME@Integer@TYPENAME +<copy TJclLinkedList.SetObject@Integer@TObject> +\ \ + +@@SELFCLASSNAME.Size +<copy TJclLinkedList.Size> +\ \ + +@@SELFCLASSNAME.SubList@Integer@Integer +<copy TJclLinkedList.SubList@Integer@Integer> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO JCLLINKEDLISTINT(,,,,)}*) + +(*$JPPDEFINEMACRO JCLLINKEDLISTITRINT(SELFCLASSNAME, ITRINTERFACENAME, LISTINTERFACENAME, ITEMCLASSNAME, TYPENAME, GETTERNAME, SETTERNAME) +@@SELFCLASSNAME +<copy TJclLinkedListIterator> +\ \ + +@@!!MEMBEROVERVIEW_SELFCLASSNAME +<copy !!MEMBEROVERVIEW_TJclLinkedListIterator> +\ \ + +@@SELFCLASSNAME.Current +<copy TJclLinkedListIterator.Current> +\ \ + +@@SELFCLASSNAME.Add@TYPENAME +<copy TJclLinkedListIterator.Add@TObject> +\ \ + +@@SELFCLASSNAME.AssignPropertiesTo@TJclAbstractIterator +<copy TJclLinkedListIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@SELFCLASSNAME.Create@LISTINTERFACENAME@ITEMCLASSNAME@Boolean@TItrStart +<copy TJclLinkedListIterator.Create@IJclList@TJclLinkedListItem@Boolean@TItrStart> +\ \ + +@@SELFCLASSNAME.CreateEmptyIterator +<copy TJclLinkedListIterator.CreateEmptyIterator> +\ \ + +@@SELFCLASSNAME.Extract +<copy TJclLinkedListIterator.Extract> +\ \ + +@@SELFCLASSNAME.GETTERNAME +<copy TJclLinkedListIterator.GetObject> +\ \ + +@@SELFCLASSNAME.HasNext +<copy TJclLinkedListIterator.HasNext> +\ \ + +@@SELFCLASSNAME.HasPrevious +<copy TJclLinkedListIterator.HasPrevious> +\ \ + +@@SELFCLASSNAME.Insert@TYPENAME +<copy TJclLinkedListIterator.Insert@TObject> +\ \ + +@@SELFCLASSNAME.IteratorEquals@ITRINTERFACENAME +<copy TJclLinkedListIterator.IteratorEquals@IJclIterator> +\ \ + +@@SELFCLASSNAME.MoveNext +<copy TJclLinkedListIterator.MoveNext> +\ \ + +@@SELFCLASSNAME.Next +<copy TJclLinkedListIterator.Next> +\ \ + +@@SELFCLASSNAME.NextIndex +<copy TJclLinkedListIterator.NextIndex> +\ \ + +@@SELFCLASSNAME.Previous +<copy TJclLinkedListIterator.Previous> +\ \ + +@@SELFCLASSNAME.PreviousIndex +<copy TJclLinkedListIterator.PreviousIndex> +\ \ + +@@SELFCLASSNAME.Remove +<copy TJclLinkedListIterator.Remove> +\ \ + +@@SELFCLASSNAME.Reset +<copy TJclLinkedListIterator.Reset> +\ \ + +@@SELFCLASSNAME.SETTERNAME@TYPENAME +<copy TJclLinkedListIterator.SetObject@TObject> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO JCLLINKEDLISTITRINT(,,,,,,)}*) diff --git a/help/containers/JclQueues.inc b/help/containers/JclQueues.inc new file mode 100644 index 0000000000..b3f3c792fb --- /dev/null +++ b/help/containers/JclQueues.inc @@ -0,0 +1,63 @@ +(*$JPPDEFINEMACRO JCLQUEUEINT(SELFCLASSNAME, TYPENAME) +@@SELFCLASSNAME +<copy TJclQueue> +\ \ + +@@!!MEMBEROVERVIEW_SELFCLASSNAME +<copy !!MEMBEROVERVIEW_TJclQueue> +\ \ + +@@SELFCLASSNAME.AssignDataTo@TJclAbstractContainerBase +<copy TJclQueue.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@SELFCLASSNAME.Clear +<copy TJclQueue.Clear> +\ \ + +@@SELFCLASSNAME.Contains@TYPENAME +<copy TJclQueue.Contains@TObject> +\ \ + +@@SELFCLASSNAME.Create@Integer +<copy TJclQueue.Create@Integer@Boolean> +\ \ + +@@SELFCLASSNAME.CreateEmptyContainer +<copy TJclQueue.CreateEmptyContainer> +\ \ + +@@SELFCLASSNAME.Dequeue +<copy TJclQueue.Dequeue> +\ \ + +@@SELFCLASSNAME.Destroy +<copy TJclQueue.Destroy> +\ \ + +@@SELFCLASSNAME.Empty +<copy TJclQueue.Empty> +\ \ + +@@SELFCLASSNAME.Enqueue@TYPENAME +<copy TJclQueue.Enqueue@TObject> +\ \ + +@@SELFCLASSNAME.Pack +<copy TJclQueue.Pack> +\ \ + +@@SELFCLASSNAME.Peek +<copy TJclQueue.Peek> +\ \ + +@@SELFCLASSNAME.SetCapacity@Integer +<copy TJclQueue.SetCapacity@Integer> +\ \ + +@@SELFCLASSNAME.Size +<copy TJclQueue.Size> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO JCLQUEUEINT(,)}*) diff --git a/help/containers/JclSortedMaps.inc b/help/containers/JclSortedMaps.inc new file mode 100644 index 0000000000..bbad354095 --- /dev/null +++ b/help/containers/JclSortedMaps.inc @@ -0,0 +1,173 @@ +{$JPPUNDEF KEYOWNABLE} +{$JPPUNDEF VALUEOWNABLE} +(*$JPPDEFINEMACRO JCLSORTEDMAPTYPESINT(ENTRYTYPENAME) +@@ENTRYTYPENAME +<copy TJclSortedEntry> +\ \ + +@@ENTRYTYPENAME.Key +<copy TJclSortedEntry.Key> +\ \ + +@@ENTRYTYPENAME.Value +<copy TJclSortedEntry.Value> +\ \ +*) +(*$JPPLOOP TRUEMAPINDEX HELPTRUEMAPCOUNT +{$JPPEXPANDMACRO JCLSORTEDMAPTYPESINT()}*) + +(*$JPPDEFINEMACRO JCLSORTEDMAPINT(SELFCLASSNAME, STDMAPINTERFACENAME, KEYTYPENAME, VALUETYPENAME) +@@SELFCLASSNAME +<copy TJclSortedMap> +\ \ + +@@!!MEMBEROVERVIEW_SELFCLASSNAME +<copy !!MEMBEROVERVIEW_TJclSortedMap> +\ \ + +{$IFDEF KEYOWNABLE} +@@SELFCLASSNAME.OwnsKeys +<copy TJclSortedMap.OwnsKeys> +\ \ + +{$ENDIF KEYOWNABLE} +{$IFDEF VALUEOWNABLE} +@@SELFCLASSNAME.OwnsValues +<copy TJclSortedMap.OwnsValues> +\ \ + +{$ENDIF VALUEOWNABLE} +@@SELFCLASSNAME.AssignDataTo@TJclAbstractContainerBase +<copy TJclSortedMap.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@SELFCLASSNAME.BinarySearch@KEYTYPENAME +<copy TJclSortedMap.BinarySearch@TObject> +\ \ + +@@SELFCLASSNAME.Clear +<copy TJclSortedMap.Clear> +\ \ + +@@SELFCLASSNAME.ContainsKey@KEYTYPENAME +<copy TJclSortedMap.ContainsKey@TObject> +\ \ + +@@SELFCLASSNAME.ContainsValue@VALUETYPENAME +<copy TJclSortedMap.ContainsValue@TObject> +\ \ + +@@SELFCLASSNAME.Create@Integer{$IFDEF KEYOWNABLE}@Boolean{$ENDIF}{$IFDEF VALUEOWNABLE}@Boolean{$ENDIF} +<copy TJclSortedMap.Create@Integer@Boolean@Boolean> +\ \ + +@@SELFCLASSNAME.CreateEmptyContainer +<copy TJclSortedMap.CreateEmptyContainer> +\ \ + +@@SELFCLASSNAME.Destroy +<copy TJclSortedMap.Destroy> +\ \ + +@@SELFCLASSNAME.Extract@KEYTYPENAME +<copy TJclSortedMap.Extract@TObject> +\ \ + +@@SELFCLASSNAME.FirstKey +<copy TJclSortedMap.FirstKey> +\ \ + +@@SELFCLASSNAME.FreeKey@KEYTYPENAME +<copy TJclSortedMap.FreeKey@TObject> +\ \ + +@@SELFCLASSNAME.FreeValue@VALUETYPENAME +<copy TJclSortedMap.FreeValue@TObject> +\ \ + +{$IFDEF KEYOWNABLE} +@@SELFCLASSNAME.GetOwnsKeys +<copy TJclSortedMap.GetOwnsKeys> +\ \ + +{$ENDIF KEYOWNABLE} +{$IFDEF VALUEOWNABLE} +@@SELFCLASSNAME.GetOwnsValues +<copy TJclSortedMap.GetOwnsValues> +\ \ + +{$ENDIF VALUEOWNABLE} +@@SELFCLASSNAME.GetValue@KEYTYPENAME +<copy TJclSortedMap.GetValue@TObject> +\ \ + +@@SELFCLASSNAME.HeadMap@KEYTYPENAME +<copy TJclSortedMap.HeadMap@TObject> +\ \ + +@@SELFCLASSNAME.IsEmpty +<copy TJclSortedMap.IsEmpty> +\ \ + +@@SELFCLASSNAME.KeyOfValue@VALUETYPENAME +<copy TJclSortedMap.KeyOfValue@TObject> +\ \ + +@@SELFCLASSNAME.KeysCompare@KEYTYPENAME@KEYTYPENAME +<copy TJclSortedMap.KeysCompare@TObject@TObject> +\ \ + +@@SELFCLASSNAME.KeySet +<copy TJclSortedMap.KeySet> +\ \ + +@@SELFCLASSNAME.LastKey +<copy TJclSortedMap.LastKey> +\ \ + +@@SELFCLASSNAME.MapEquals@STDMAPINTERFACENAME +<copy TJclSortedMap.MapEquals@IJclMap> +\ \ + +@@SELFCLASSNAME.MoveArray@Integer@Integer@Integer +<copy TJclSortedMap.MoveArray@Integer@Integer@Integer> +\ \ + +@@SELFCLASSNAME.PutAll@STDMAPINTERFACENAME +<copy TJclSortedMap.PutAll@IJclMap> +\ \ + +@@SELFCLASSNAME.PutValue@KEYTYPENAME@VALUETYPENAME +<copy TJclSortedMap.PutValue@TObject@TObject> +\ \ + +@@SELFCLASSNAME.Remove@KEYTYPENAME +<copy TJclSortedMap.Remove@TObject> +\ \ + +@@SELFCLASSNAME.SetCapacity@Integer +<copy TJclSortedMap.SetCapacity@Integer> +\ \ + +@@SELFCLASSNAME.Size +<copy TJclSortedMap.Size> +\ \ + +@@SELFCLASSNAME.SubMap@KEYTYPENAME@KEYTYPENAME +<copy TJclSortedMap.SubMap@TObject@TObject> +\ \ + +@@SELFCLASSNAME.TailMap@KEYTYPENAME +<copy TJclSortedMap.TailMap@TObject> +\ \ + +@@SELFCLASSNAME.Values +<copy TJclSortedMap.Values> +\ \ + +@@SELFCLASSNAME.ValuesCompare@VALUETYPENAME@VALUETYPENAME +<copy TJclSortedMap.ValuesCompare@TObject@TObject> +\ \ +*) +(*$JPPLOOP TRUEMAPINDEX HELPTRUEMAPCOUNT +{$JPPEXPANDMACRO JCLSORTEDMAPINT(,,,)}*) diff --git a/help/containers/JclStacks.inc b/help/containers/JclStacks.inc new file mode 100644 index 0000000000..c187d7fdc2 --- /dev/null +++ b/help/containers/JclStacks.inc @@ -0,0 +1,59 @@ +(*$JPPDEFINEMACRO JCLSTACKINT(SELFCLASSNAME, TYPENAME) +@@SELFCLASSNAME +<copy TJclStack> +\ \ + +@@!!MEMBEROVERVIEW_SELFCLASSNAME +<copy !!MEMBEROVERVIEW_TJclStack> +\ \ + +@@SELFCLASSNAME.AssignDataTo@TJclAbstractContainerBase +<copy TJclStack.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@SELFCLASSNAME.Clear +<copy TJclStack.Clear> +\ \ + +@@SELFCLASSNAME.Contains@TYPENAME +<copy TJclStack.Contains@TObject> +\ \ + +@@SELFCLASSNAME.Create@Integer +<copy TJclStack.Create@Integer@Boolean> +\ \ + +@@SELFCLASSNAME.CreateEmptyContainer +<copy TJclStack.CreateEmptyContainer> +\ \ + +@@SELFCLASSNAME.Destroy +<copy TJclStack.Destroy> +\ \ + +@@SELFCLASSNAME.Empty +<copy TJclStack.Empty> +\ \ + +@@SELFCLASSNAME.Peek +<copy TJclStack.Peek> +\ \ + +@@SELFCLASSNAME.Pop +<copy TJclStack.Pop> +\ \ + +@@SELFCLASSNAME.Push@TYPENAME +<copy TJclStack.Push@TObject> +\ \ + +@@SELFCLASSNAME.SetCapacity@Integer +<copy TJclStack.SetCapacity@Integer> +\ \ + +@@SELFCLASSNAME.Size +<copy TJclStack.Size> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO JCLSTACKINT(,)}*) diff --git a/help/containers/JclTrees.inc b/help/containers/JclTrees.inc new file mode 100644 index 0000000000..ba72a596b9 --- /dev/null +++ b/help/containers/JclTrees.inc @@ -0,0 +1,376 @@ +(*$JPPDEFINEMACRO JCLTREETYPESINT(NODETYPENAME, EQUALITYCOMPARERINTERFACENAME, TYPENAME) +@@NODETYPENAME +<copy TJclTreeNode> +\ \ + +@@!!MEMBEROVERVIEW_NODETYPENAME +<copy !!MEMBEROVERVIEW_TJclTreeNode> +\ \ + +@@NODETYPENAME.Children +<copy TJclTreeNode.Children> +\ \ + +@@NODETYPENAME.ChildrenCount +<copy TJclTreeNode.ChildrenCount> +\ \ + +@@NODETYPENAME.Parent +<copy TJclTreeNode.Parent> +\ \ + +@@NODETYPENAME.Value +<copy TJclTreeNode.Value> +\ \ + +@@NODETYPENAME.IndexOfChild@NODETYPENAME +<copy TJclTreeNode.IndexOfChild@TJclTreeNode> +\ \ + +@@NODETYPENAME.IndexOfValue@TYPENAME@EQUALITYCOMPARERINTERFACENAME +<copy TJclTreeNode.IndexOfValue@TObject@IJclEqualityComparer> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO JCLTREETYPESINT(,,)}*) + +(*$JPPDEFINEMACRO JCLTREEINT(NODETYPENAME, SELFCLASSNAME, COLLECTIONINTERFACENAME, TYPENAME) +@@SELFCLASSNAME +<copy TJclTree> +\ \ + +@@!!MEMBEROVERVIEW_SELFCLASSNAME +<copy !!MEMBEROVERVIEW_TJclTree> +\ \ + +@@SELFCLASSNAME.Root +<copy TJclTree.Root> +\ \ + +@@SELFCLASSNAME.TraverseOrder +<copy TJclTree.TraverseOrder> +\ \ + +@@SELFCLASSNAME.Add@TYPENAME +<copy TJclTree.Add@TObject> +\ \ + +@@SELFCLASSNAME.AddAll@COLLECTIONINTERFACENAME +<copy TJclTree.AddAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.AssignDataTo@TJclAbstractContainerBase +<copy TJclTree.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@SELFCLASSNAME.AssignPropertiesTo@TJclAbstractContainerBase +<copy TJclTree.AssignPropertiesTo@TJclAbstractContainerBase> +\ \ + +@@SELFCLASSNAME.Clear +<copy TJclTree.Clear> +\ \ + +@@SELFCLASSNAME.CloneNode@NODETYPENAME@NODETYPENAME +<copy TJclTree.CloneNode@TJclTreeNode@TJclTreeNode> +\ \ + +@@SELFCLASSNAME.CollectionEquals@COLLECTIONINTERFACENAME +<copy TJclTree.CollectionEquals@IJclCollection> +\ \ + +@@SELFCLASSNAME.Contains@TYPENAME +<copy TJclTree.Contains@TObject> +\ \ + +@@SELFCLASSNAME.ContainsAll@COLLECTIONINTERFACENAME +<copy TJclTree.ContainsAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.Create +<copy TJclTree.Create@Boolean> +\ \ + +@@SELFCLASSNAME.CreateEmptyContainer +<copy TJclTree.CreateEmptyContainer> +\ \ + +@@SELFCLASSNAME.Destroy +<copy TJclTree.Destroy> +\ \ + +@@SELFCLASSNAME.Extract@TYPENAME +<copy TJclTree.Extract@TObject> +\ \ + +@@SELFCLASSNAME.ExtractAll@COLLECTIONINTERFACENAME +<copy TJclTree.ExtractAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.ExtractNode@NODETYPENAME +<copy TJclTree.ExtractNode@TJclTreeNode> +\ \ + +@@SELFCLASSNAME.First +<copy TJclTree.First> +\ \ + +@@SELFCLASSNAME.GetEnumerator +<copy TJclTree.GetEnumerator> +\ \ + +@@SELFCLASSNAME.GetRoot +<copy TJclTree.GetRoot> +\ \ + +@@SELFCLASSNAME.GetTraverseOrder +<copy TJclTree.GetTraverseOrder> +\ \ + +@@SELFCLASSNAME.IsEmpty +<copy TJclTree.IsEmpty> +\ \ + +@@SELFCLASSNAME.Last +<copy TJclTree.Last> +\ \ + +@@SELFCLASSNAME.NodeContains@NODETYPENAME@TYPENAME +<copy TJclTree.NodeContains@TJclTreeNode@TObject> +\ \ + +@@SELFCLASSNAME.Pack +<copy TJclTree.Pack> +\ \ + +@@SELFCLASSNAME.PackNode@NODETYPENAME +<copy TJclTree.PackNode@TJclTreeNode> +\ \ + +@@SELFCLASSNAME.Remove@TYPENAME +<copy TJclTree.Remove@TObject> +\ \ + +@@SELFCLASSNAME.RemoveAll@COLLECTIONINTERFACENAME +<copy TJclTree.RemoveAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.RemoveNode@NODETYPENAME +<copy TJclTree.RemoveNode@TJclTreeNode> +\ \ + +@@SELFCLASSNAME.RetainAll@COLLECTIONINTERFACENAME +<copy TJclTree.RetainAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.SetCapacity@Integer +<copy TJclTree.SetCapacity@Integer> +\ \ + +@@SELFCLASSNAME.SetTraverseOrder@TJclTraverseOrder +<copy TJclTree.SetTraverseOrder@TJclTraverseOrder> +\ \ + +@@SELFCLASSNAME.Size +<copy TJclTree.Size> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO JCLTREEINT(,,,)}*) + +(*$JPPDEFINEMACRO JCLTREEITRINT(BASEITRCLASSNAME, PREORDERITRCLASSNAME, POSTORDERITRCLASSNAME, + NODETYPENAME, TREECLASSNAME, STDITRINTERFACENAME, TYPENAME, GETTERNAME, SETTERNAME) +@@BASEITRCLASSNAME +<copy TJclTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_BASEITRCLASSNAME +<copy !!MEMBEROVERVIEW_TJclTreeIterator> +\ \ + +@@BASEITRCLASSNAME.Current +<copy TJclTreeIterator.Current> +\ \ + +@@BASEITRCLASSNAME.Add@TYPENAME +<copy TJclTreeIterator.Add@TObject> +\ \ + +@@BASEITRCLASSNAME.AddChild@TYPENAME +<copy TJclTreeIterator.AddChild@TObject> +\ \ + +@@BASEITRCLASSNAME.AssignPropertiesTo@TJclAbstractIterator +<copy TJclTreeIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@BASEITRCLASSNAME.ChildrenCount +<copy TJclTreeIterator.ChildrenCount> +\ \ + +@@BASEITRCLASSNAME.Create@TREECLASSNAME@NODETYPENAME@Boolean@TItrStart +<copy TJclTreeIterator.Create@TJclTree@TJclTreeNode@Boolean@TItrStart> +\ \ + +@@BASEITRCLASSNAME.DeleteChild@Integer +<copy TJclTreeIterator.DeleteChild@Integer> +\ \ + +@@BASEITRCLASSNAME.DeleteChildren +<copy TJclTreeIterator.DeleteChildren> +\ \ + +@@BASEITRCLASSNAME.Extract +<copy TJclTreeIterator.Extract> +\ \ + +@@BASEITRCLASSNAME.ExtractChild@Integer +<copy TJclTreeIterator.ExtractChild@Integer> +\ \ + +@@BASEITRCLASSNAME.ExtractChildren +<copy TJclTreeIterator.ExtractChildren> +\ \ + +@@BASEITRCLASSNAME.GetChild@Integer +<copy TJclTreeIterator.GetChild@Integer> +\ \ + +@@BASEITRCLASSNAME.GetNextCursor +<copy TJclTreeIterator.GetNextCursor> +\ \ + +@@BASEITRCLASSNAME.GetNextSibling +<copy TJclTreeIterator.GetNextSibling> +\ \ + +@@BASEITRCLASSNAME.GETTERNAME +<copy TJclTreeIterator.GetObject> +\ \ + +@@BASEITRCLASSNAME.GetPreviousCursor +<copy TJclTreeIterator.GetPreviousCursor> +\ \ + +@@BASEITRCLASSNAME.HasChild@Integer +<copy TJclTreeIterator.HasChild@Integer> +\ \ + +@@BASEITRCLASSNAME.HasNext +<copy TJclTreeIterator.HasNext> +\ \ + +@@BASEITRCLASSNAME.HasParent +<copy TJclTreeIterator.HasParent> +\ \ + +@@BASEITRCLASSNAME.HasPrevious +<copy TJclTreeIterator.HasPrevious> +\ \ + +@@BASEITRCLASSNAME.IndexOfChild@TYPENAME +<copy TJclTreeIterator.IndexOfChild@TObject> +\ \ + +@@BASEITRCLASSNAME.Insert@TYPENAME +<copy TJclTreeIterator.Insert@TObject> +\ \ + +@@BASEITRCLASSNAME.InsertChild@Integer@TYPENAME +<copy TJclTreeIterator.InsertChild@Integer@TObject> +\ \ + +@@BASEITRCLASSNAME.IteratorEquals@STDITRINTERFACENAME +<copy TJclTreeIterator.IteratorEquals@IJclIterator> +\ \ + +@@BASEITRCLASSNAME.MoveNext +<copy TJclTreeIterator.MoveNext> +\ \ + +@@BASEITRCLASSNAME.Next +<copy TJclTreeIterator.Next> +\ \ + +@@BASEITRCLASSNAME.NextIndex +<copy TJclTreeIterator.NextIndex> +\ \ + +@@BASEITRCLASSNAME.Parent +<copy TJclTreeIterator.Parent> +\ \ + +@@BASEITRCLASSNAME.Previous +<copy TJclTreeIterator.Previous> +\ \ + +@@BASEITRCLASSNAME.PreviousIndex +<copy TJclTreeIterator.PreviousIndex> +\ \ + +@@BASEITRCLASSNAME.Remove +<copy TJclTreeIterator.Remove> +\ \ + +@@BASEITRCLASSNAME.Reset +<copy TJclTreeIterator.Reset> +\ \ + +@@BASEITRCLASSNAME.SetChild@Integer@TYPENAME +<copy TJclTreeIterator.SetChild@Integer@TObject> +\ \ + +@@BASEITRCLASSNAME.SETTERNAME@TYPENAME +<copy TJclTreeIterator.SetObject@TObject> +\ \ + +@@PREORDERITRCLASSNAME +<copy TJclPreOrderTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_PREORDERITRCLASSNAME +<copy !!MEMBEROVERVIEW_TJclPreOrderTreeIterator> +\ \ + +@@PREORDERITRCLASSNAME.CreateEmptyIterator +<copy TJclPreOrderTreeIterator.CreateEmptyIterator> +\ \ + +@@PREORDERITRCLASSNAME.GetNextCursor +<copy TJclPreOrderTreeIterator.GetNextCursor> +\ \ + +@@PREORDERITRCLASSNAME.GetNextSibling +<copy TJclPreOrderTreeIterator.GetNextSibling> +\ \ + +@@PREORDERITRCLASSNAME.GetPreviousCursor +<copy TJclPreOrderTreeIterator.GetPreviousCursor> +\ \ + +@@POSTORDERITRCLASSNAME +<copy TJclPostOrderTreeIterator> +\ \ + +@@!!MEMBEROVERVIEW_POSTORDERITRCLASSNAME +<copy !!MEMBEROVERVIEW_TJclPostOrderTreeIterator> +\ \ + +@@POSTORDERITRCLASSNAME.CreateEmptyIterator +<copy TJclPostOrderTreeIterator.CreateEmptyIterator> +\ \ + +@@POSTORDERITRCLASSNAME.GetNextCursor +<copy TJclPostOrderTreeIterator.GetNextCursor> +\ \ + +@@POSTORDERITRCLASSNAME.GetNextSibling +<copy TJclPostOrderTreeIterator.GetNextSibling> +\ \ + +@@POSTORDERITRCLASSNAME.GetPreviousCursor +<copy TJclPostOrderTreeIterator.GetPreviousCursor> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO JCLTREEITRINT(,,,,,,,,)}*) diff --git a/help/containers/JclVectors.inc b/help/containers/JclVectors.inc new file mode 100644 index 0000000000..770fa9e9f9 --- /dev/null +++ b/help/containers/JclVectors.inc @@ -0,0 +1,231 @@ +(*$JPPDEFINEMACRO JCLVECTORINT(SELFCLASSNAME, COLLECTIONINTERFACENAME, TYPENAME, GETTERNAME, SETTERNAME) +@@SELFCLASSNAME +<copy TJclVector> +\ \ + +@@!!MEMBEROVERVIEW_SELFCLASSNAME +<copy !!MEMBEROVERVIEW_TJclVector> +\ \ + +@@SELFCLASSNAME.Items +<copy TJclVector.Items> +\ \ + +@@SELFCLASSNAME.Add@TYPENAME +<copy TJclVector.Add@TObject> +\ \ + +@@SELFCLASSNAME.AddAll@COLLECTIONINTERFACENAME +<copy TJclVector.AddAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.AssignDataTo@TJclAbstractContainerBase +<copy TJclVector.AssignDataTo@TJclAbstractContainerBase> +\ \ + +@@SELFCLASSNAME.Clear +<copy TJclVector.Clear> +\ \ + +@@SELFCLASSNAME.CollectionEquals@COLLECTIONINTERFACENAME +<copy TJclVector.CollectionEquals@IJclCollection> +\ \ + +@@SELFCLASSNAME.Contains@TYPENAME +<copy TJclVector.Contains@TObject> +\ \ + +@@SELFCLASSNAME.ContainsAll@COLLECTIONINTERFACENAME +<copy TJclVector.ContainsAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.Create@COLLECTIONINTERFACENAME +<copy TJclVector.Create@IJclCollection@Boolean> +\ \ + +@@SELFCLASSNAME.Create@Integer +<copy TJclVector.Create@Integer@Boolean> +\ \ + +@@SELFCLASSNAME.CreateEmptyContainer +<copy TJclVector.CreateEmptyContainer> +\ \ + +@@SELFCLASSNAME.Delete@Integer +<copy TJclVector.Delete@Integer> +\ \ + +@@SELFCLASSNAME.Destroy +<copy TJclVector.Destroy> +\ \ + +@@SELFCLASSNAME.Extract@TYPENAME +<copy TJclVector.Extract@TObject> +\ \ + +@@SELFCLASSNAME.ExtractAll@COLLECTIONINTERFACENAME +<copy TJclVector.ExtractAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.ExtractIndex@Integer +<copy TJclVector.ExtractIndex@Integer> +\ \ + +@@SELFCLASSNAME.First +<copy TJclVector.First> +\ \ + +@@SELFCLASSNAME.GetEnumerator +<copy TJclVector.GetEnumerator> +\ \ + +@@SELFCLASSNAME.GETTERNAME@Integer +<copy TJclVector.GetObject@Integer> +\ \ + +@@SELFCLASSNAME.IndexOf@TYPENAME +<copy TJclVector.IndexOf@TObject> +\ \ + +@@SELFCLASSNAME.Insert@Integer@TYPENAME +<copy TJclVector.Insert@Integer@TObject> +\ \ + +@@SELFCLASSNAME.InsertAll@Integer@COLLECTIONINTERFACENAME +<copy TJclVector.InsertAll@Integer@IJclCollection> +\ \ + +@@SELFCLASSNAME.IsEmpty +<copy TJclVector.IsEmpty> +\ \ + +@@SELFCLASSNAME.Last +<copy TJclVector.Last> +\ \ + +@@SELFCLASSNAME.LastIndexOf@TYPENAME +<copy TJclVector.LastIndexOf@TObject> +\ \ + +@@SELFCLASSNAME.RaiseOutOfBoundsError +<copy TJclVector.RaiseOutOfBoundsError> +\ \ + +@@SELFCLASSNAME.Remove@TYPENAME +<copy TJclVector.Remove@TObject> +\ \ + +@@SELFCLASSNAME.RemoveAll@COLLECTIONINTERFACENAME +<copy TJclVector.RemoveAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.RetainAll@COLLECTIONINTERFACENAME +<copy TJclVector.RetainAll@IJclCollection> +\ \ + +@@SELFCLASSNAME.SetCapacity@Integer +<copy TJclVector.SetCapacity@Integer> +\ \ + +@@SELFCLASSNAME.SETTERNAME@Integer@TYPENAME +<copy TJclVector.SetObject@Integer@TObject> +\ \ + +@@SELFCLASSNAME.Size +<copy TJclVector.Size> +\ \ + +@@SELFCLASSNAME.SubList@Integer@Integer +<copy TJclVector.SubList@Integer@Integer> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO JCLVECTORINT(,,,,)}*) + +(*$JPPDEFINEMACRO JCLVECTORITRINT(SELFCLASSNAME, ITRINTERFACENAME, LISTINTERFACENAME, TYPENAME, GETTERNAME, SETTERNAME) +@@SELFCLASSNAME +<copy TJclVectorIterator> +\ \ + +@@!!MEMBEROVERVIEW_SELFCLASSNAME +<copy !!MEMBEROVERVIEW_TJclVectorIterator> +\ \ + +@@SELFCLASSNAME.Current +<copy TJclVectorIterator.Current> +\ \ + +@@SELFCLASSNAME.Add@TYPENAME +<copy TJclVectorIterator.Add@TObject> +\ \ + +@@SELFCLASSNAME.AssignPropertiesTo@TJclAbstractIterator +<copy TJclVectorIterator.AssignPropertiesTo@TJclAbstractIterator> +\ \ + +@@SELFCLASSNAME.Create@LISTINTERFACENAME@Integer@Boolean@TItrStart +<copy TJclVectorIterator.Create@IJclList@Integer@Boolean@TItrStart> +\ \ + +@@SELFCLASSNAME.CreateEmptyIterator +<copy TJclVectorIterator.CreateEmptyIterator> +\ \ + +@@SELFCLASSNAME.Extract +<copy TJclVectorIterator.Extract> +\ \ + +@@SELFCLASSNAME.GETTERNAME +<copy TJclVectorIterator.GetObject> +\ \ + +@@SELFCLASSNAME.HasNext +<copy TJclVectorIterator.HasNext> +\ \ + +@@SELFCLASSNAME.HasPrevious +<copy TJclVectorIterator.HasPrevious> +\ \ + +@@SELFCLASSNAME.Insert@TYPENAME +<copy TJclVectorIterator.Insert@TObject> +\ \ + +@@SELFCLASSNAME.IteratorEquals@ITRINTERFACENAME +<copy TJclVectorIterator.IteratorEquals@IJclIterator> +\ \ + +@@SELFCLASSNAME.MoveNext +<copy TJclVectorIterator.MoveNext> +\ \ + +@@SELFCLASSNAME.Next +<copy TJclVectorIterator.Next> +\ \ + +@@SELFCLASSNAME.NextIndex +<copy TJclVectorIterator.NextIndex> +\ \ + +@@SELFCLASSNAME.Previous +<copy TJclVectorIterator.Previous> +\ \ + +@@SELFCLASSNAME.PreviousIndex +<copy TJclVectorIterator.PreviousIndex> +\ \ + +@@SELFCLASSNAME.Remove +<copy TJclVectorIterator.Remove> +\ \ + +@@SELFCLASSNAME.Reset +<copy TJclVectorIterator.Reset> +\ \ + +@@SELFCLASSNAME.SETTERNAME@TYPENAME +<copy TJclVectorIterator.SetObject@TObject> +\ \ +*) +(*$JPPLOOP TRUETYPEINDEX HELPTRUETYPECOUNT +{$JPPEXPANDMACRO JCLVECTORITRINT(,,,,,)}*) diff --git a/help/containers/Makefile.mak b/help/containers/Makefile.mak new file mode 100644 index 0000000000..8153bc95dd --- /dev/null +++ b/help/containers/Makefile.mak @@ -0,0 +1,22 @@ +# +# Generates container topics +# +# $Id$ +# + +jppContainers = ..\..\jcl\devtools\jppContainers.exe +touch = $(MAKEDIR)\touch.exe + +ContainerOptions = -c -m -i -w -dSUPPORTS_UNICODE_STRING -f..\\ + +Containers: ..\ContainerCopies.dtx + +ContainersProt: ContainerCopies.dtx + +ContainerCopies.dtx: \ + JclAlgorithms.inc JclArrayLists.inc JclArraySets.inc JclBinaryTrees.inc JclContainerIntf.inc JclHashMaps.inc JclHashSets.inc JclLinkedLists.inc JclQueues.inc JclSortedMaps.inc JclStacks.inc JclTrees.inc JclVectors.inc + $(touch) $@ + +..\ContainerCopies.dtx: ContainerCopies.dtx + $(jppContainers) $(ContainerOptions) $< + diff --git a/help/hlpgrps.dtx b/help/hlpgrps.dtx index 5701f08602..897ee9cad5 100644 --- a/help/hlpgrps.dtx +++ b/help/hlpgrps.dtx @@ -1,33 +1,39 @@ ## Help groups that do not belong to a specific documentation file. -------------------------------------------------------------------------------- @@JCL -<TITLE JEDI Code Library> -<TOPICORDER 1> -The JEDI Code Library (JCL) consists of a set of utility functions and -non-visual classes which can be instantly reused in your Delphi and C++ Builder -projects. - -The library is built upon code donated from the JEDI community. It is -reformatted to achieve a common look-and-feel, tested, documented and merged -into the library. The library is grouped into several categories (see below). -The library is released to the public under the terms of the Mozilla Public -License (MPL) and as such can be freely used in both freeware/shareware, -opensource and commercial projects. - -The entire JEDI Code Library is distributed under the terms of the Mozilla -Public License (MPL). This includes, but is not limited to, this document and -all source code and ancillary files. Source code files included in the JCL have -a header which explicitly states this (as is required) however, unless noted -otherwise, all files including those without an MPL header, are subject to the -MPL license. - -For more information visit our http://homepages.borland.com/jedi/jcl/ +<title JEDI Code Library> + +The JEDI Code Library (JCL) consists of a set of utility +functions and non-visual classes which can be instantly +reused in your Delphi and C++ Builder projects. + +The library is built upon code donated from the JEDI +community. It is reformatted to achieve a common +look-and-feel, tested, documented and merged into the +library. The library is grouped into several categories (see +below). The library is released to the public under the terms +\of the Mozilla Public License (MPL) and as such can be +freely used in both freeware/shareware, opensource and +commercial projects. + +The entire JEDI Code Library is distributed under the terms +\of the Mozilla Public License (MPL). This includes, but is +not limited to, this document and all source code and +ancillary files. Source code files included in the JCL have a +header which explicitly states this (as is required) however, +unless noted otherwise, all files including those without an +MPL header, are subject to the MPL license. + +For more information visit our http://jcl.delphi-jedi.org/ homepage. -Note: This documentation has been created using Doc-O-Matic Professional 5.0.2. -Many thanks to http://www.toolsfactory.com/ toolsfactory for -generously granting free licenses to the JEDI team! --------------------------------------------------------------------------------- + +Note +This documentation has been created using Doc-O-Matic +Professional 5.0.2. Many thanks to +http://www.toolsfactory.com/ toolsfactory for generously +granting free licenses to the JEDI team! + @@Algorithms <GROUP JCL> <TITLE Algorithms> @@ -150,11 +156,7 @@ have all the standard container behavior. <TITLE Debugging> <TOPICORDER 500> -------------------------------------------------------------------------------- -@@EDI -<GROUP JCL> -<TITLE Electronic Data Interchange (EDI)> -<TOPICORDER 600> --------------------------------------------------------------------------------- + @@ExprEval <GROUP JCL> <TITLE Expression Evaluation> @@ -433,11 +435,49 @@ Summary: @@RegularExpressions TODO -------------------------------------------------------------------------------- -@@SourceFiles - TODO --------------------------------------------------------------------------------- +@@IncludedFiles +<title Included files and configuration> + +\TODO + @@UnitVersioning TODO -------------------------------------------------------------------------------- @@Streams TODO + + +@@String bases +\ \ + +@@64-bit support +\ \ + +@@Generics +\ \ + +@@Version numbers +\ \ + +@@Dynamic arrays +\ \ + +@@Containers.files +<title Container files> + +\ \ + +@@Containers.functions +<title Container functions> + +\ \ + +@@Containers.exceptions +<title Container exceptions> + +\ \ + +@@Containres.Interfaces.Maps +<title Maps> + +\ \ diff --git a/jcl/devtools/jpp/Templates/JclContainerIntfTemplates.pas b/jcl/devtools/jpp/Templates/JclContainerIntfTemplates.pas index d8d56f6778..9721673124 100644 --- a/jcl/devtools/jpp/Templates/JclContainerIntfTemplates.pas +++ b/jcl/devtools/jpp/Templates/JclContainerIntfTemplates.pas @@ -227,7 +227,9 @@ TJclListParams = class(TJclContainerIntf1DParams) function AliasAttributeIDs: TAllTypeAttributeIDs; override; published property InterfaceName: string index taListInterfaceName read GetTypeAttribute write SetTypeAttribute stored IsTypeAttributeStored; + property ListInterfaceName: string index taListInterfaceName read GetTypeAttribute write SetTypeAttribute stored False; property AncestorName: string index taCollectionInterfaceName read GetTypeAttribute write SetTypeAttribute stored False; + property CollectionInterfaceName: string index taCollectionInterfaceName read GetTypeAttribute write SetTypeAttribute stored False; property GUID: string index taListInterfaceGUID read GetTypeAttribute write SetTypeAttribute stored IsTypeAttributeStored; property ConstKeyword: string index taConstKeyword read GetTypeAttribute write SetTypeAttribute stored False; property ParameterName: string index taParameterName read GetTypeAttribute write SetTypeAttribute stored False; @@ -259,7 +261,9 @@ TJclSetParams = class(TJclContainerIntf1DParams) function AliasAttributeIDs: TAllTypeAttributeIDs; override; published property InterfaceName: string index taSetInterfaceName read GetTypeAttribute write SetTypeAttribute stored IsTypeAttributeStored; + property SetInterfaceName: string index taSetInterfaceName read GetTypeAttribute write SetTypeAttribute stored False; property AncestorName: string index taCollectionInterfaceName read GetTypeAttribute write SetTypeAttribute stored False; + property CollectionInterfaceName: string index taCollectionInterfaceName read GetTypeAttribute write SetTypeAttribute stored False; property GUID: string index taSetInterfaceGUID read GetTypeAttribute write SetTypeAttribute stored IsTypeAttributeStored; end; diff --git a/jcl/devtools/jpp/Templates/JclContainerKnownTypes.pas b/jcl/devtools/jpp/Templates/JclContainerKnownTypes.pas index e4c8d0bf10..f35b226f5e 100644 --- a/jcl/devtools/jpp/Templates/JclContainerKnownTypes.pas +++ b/jcl/devtools/jpp/Templates/JclContainerKnownTypes.pas @@ -1108,7 +1108,7 @@ interface TObjectKnownType: TKnownTypeAttributes = ({taTypeName} 'TObject', {taCondition} '', - {taDefines} 'ZEROINIT', + {taDefines} 'OWNABLE;ZEROINIT', {taUndefs} 'REFCOUNTED', {taAlias} '', {taAliasCondition} '', diff --git a/jcl/devtools/jpp/Templates/JclContainerTemplates.pas b/jcl/devtools/jpp/Templates/JclContainerTemplates.pas index 18048e0a34..f56ca517ee 100644 --- a/jcl/devtools/jpp/Templates/JclContainerTemplates.pas +++ b/jcl/devtools/jpp/Templates/JclContainerTemplates.pas @@ -57,11 +57,15 @@ TJclContainerParams = class(TJclTemplateParams) FAllMapIndex: Integer; FTrueMapIndex: Integer; function GetAllTypeCount: Integer; + function GetHelpAllTypeCount: Integer; function GetTrueTypeCount: Integer; + function GetHelpTrueTypeCount: Integer; procedure SetAllTypeIndex(const Value: Integer); procedure SetTrueTypeIndex(const Value: Integer); function GetAllMapCount: Integer; + function GetHelpAllMapCount: Integer; function GetTrueMapCount: Integer; + function GetHelpTrueMapCount: Integer; procedure SetAllMapIndex(const Value: Integer); procedure SetMapTypeIndex(const Value: Integer); protected @@ -74,12 +78,16 @@ TJclContainerParams = class(TJclTemplateParams) published property AllTypeIndex: Integer read FAllTypeIndex write SetAllTypeIndex; property AllTypeCount: Integer read GetAllTypeCount; + property HelpAllTypeCount: Integer read GetHelpAllTypeCount; property TrueTypeIndex: Integer read FTrueTypeIndex write SetTrueTypeIndex; property TrueTypeCount: Integer read GetTrueTypeCount; + property HelpTrueTypeCount: Integer read GetHelpTrueTypeCount; property AllMapIndex: Integer read FAllMapIndex write SetAllMapIndex; property AllMapCount: Integer read GetAllMapCount; + property HelpAllMapCount: Integer read GetHelpAllMapCount; property TrueMapIndex: Integer read FTrueMapIndex write SetMapTypeIndex; property TrueMapCount: Integer read GetTrueMapCount; + property HelpTrueMapCount: Integer read GetHelpTrueMapCount; end; {$IFNDEF TYPEINFO_ON} @@ -540,21 +548,41 @@ function TJclContainerParams.GetAllMapCount: Integer; Result := Length(KnownAllMaps); end; +function TJclContainerParams.GetHelpAllMapCount: Integer; +begin + Result := Length(KnownAllMaps) - 1; +end; + function TJclContainerParams.GetAllTypeCount: Integer; begin Result := Length(KnownAllTypes); end; +function TJclContainerParams.GetHelpAllTypeCount: Integer; +begin + Result := Length(KnownAllTypes) - 1; +end; + function TJclContainerParams.GetTrueMapCount: Integer; begin Result := Length(KnownTrueMaps); end; +function TJclContainerParams.GetHelpTrueMapCount: Integer; +begin + Result := Length(KnownTrueMaps) - 1; +end; + function TJclContainerParams.GetTrueTypeCount: Integer; begin Result := Length(KnownTrueTypes); end; +function TJclContainerParams.GetHelpTrueTypeCount: Integer; +begin + Result := Length(KnownTrueTypes) - 1; +end; + function TJclContainerParams.ProcessConditional(const MacroText: string; ContainerTypeInfo: TJclContainerTypeInfo): string; var Condition: string;