///////////////////////////////////////////////////////////////////////////// // idata.h : interface of the CMyStruct class // #if !defined(__IDATA_H__) #define __IDATA_H__ #include typedef struct tagIMyStruct { int m_int; float m_float; BSTR m_str; } IMyStruct; #endif // __IDATA_H__ /////////////////////////////////////////////////////////////////////////////