C1421: Undefined class/struct/union

[ERROR]

Description

An undefined class, structure or union was used.

Example
  void f(void) {

  
    struct S *p, *p1;

  
    *p=*p1;

  
  }

  
Tips

Define the class/struct/union.