constructor Create(Image: ^ImageInfo); // здесь 

What am I doing wrong?

    1 answer 1

    try to declare a type:

     type PImageInfo = ^ImageInfo; 

    and use it instead of ^ ImageInfo:

     constructor Create(Image: PImageInfo); 
    • There is no trying, but doing it. Pointer types cannot be declared in the parameter list, so this is the only solution. - karmadro4