结构的定义和使用

typedef struct linkinfo
{
 TCHAR strName[MAX_PATH];
 TCHAR strValue[MAX_PATH];
 SSN_OBJECT_HANDLE SaveHandle;
}LinkInfo,*PLinkInfo;

使用时:

LinkInfo SaveLinkInfo;

SaveLinkInfo.SaveHandle;

 

没有加红那一句会报

1>e:\gc\src\coreui\listlink.cpp(30): error C2275: 'PLinkInfo' : illegal use of this type as an expression
1>          e:\gc\src\coreui\listlink.h(13) : see declaration of 'PLinkInfo'
1>e:\gc\src\coreui\listlink.cpp(30): error C2227: left of '->SaveHandle' must point to class/struct/union/generic type   的错误;

你可能感兴趣的:(结构的定义和使用)