用include包含进来呀。
/* TestStruct.h */typedef struct _tagTestStruct { ...} TestStruct;...
在另一个文件中使用举例:
#include "TestStruct.h".../* 函数中 */TestStruct * ts = (TestStruct *) malloc (sizeof(TestStruct));