I\'ve defined a struct item in a .h file. Now I\'m defining another struct tPCB in another .h which is part of the same project, and I need the
struct item
struct tPCB
In your "another .h", #include .
#include
Elaboration:
In the file that defines struct tPCB, you need to #include the file that defines struct item.