IDATA.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:0k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /////////////////////////////////////////////////////////////////////////////
  2. // idata.h : interface of the CMyStruct class
  3. //
  4. #if !defined(__IDATA_H__)
  5. #define __IDATA_H__
  6. #include <wtypes.h>
  7. typedef struct tagIMyStruct
  8. {
  9. int m_int;
  10. float m_float;
  11. BSTR m_str;
  12. } IMyStruct;
  13. #endif // __IDATA_H__
  14. /////////////////////////////////////////////////////////////////////////////