RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
System.TInterfaceTable Record

TInterfaceTable lists the interfaces that a class supports, and PInterfaceTable points to this list.

Pascal
TInterfaceTable = packed record
  EntryCount: Integer;
  Entries: array[0..9999] of TInterfaceEntry;
end;
C++
struct TInterfaceTable {
  int EntryCount;
  array[0..9999] of TInterfaceEntry Entries;
};

PInterfaceTable is a pointer to a TInterfaceTable value. TInterfaceTable contains the following fields:

Field 
Meaning 
EntryCount  
The number of interface descriptors in the table.  
Entries  
An array of interface descriptors.  

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!