Innerfuse Script

PTypeRec

Unit: ifs_var.pas
PTypeRec is used to store type definitions in the script engine. The ATypeId should be one of the variant type constants.

Declaration:
type
   PTypeRec = ^TTypeRec;
   TTypeRec = record
     Ident: string[20];
     atypeid: Word;
     ext: Pointer;
     {When using records, this will be an PVariableManager type, using arrays it will be a Pointer(TypeNo)}
   end;