| Unit: | SDL_cstruct | | Class: | none | | Declaration: | RingListType =
record NrOfRings: integer; RList: array [1..MaxRings] of RingType; end;
|
Several calculations result in a list of ring systems. In order to handle these ring collections in a convenient way the type RingListType is defined. The parameter NrOfRings holds the number of valid rings and the parameter RList holds the rings.
| Hint: |
The maximum number of rings in a single ring list is restricted to MaxRings . This global constant should be adjusted carefully, since some routines of the unit CSTRUCT use ring lists as local variables. This may overload the stack segment if MaxRings is too
big. |
|