IDATA.H
Upload User: bangxh
Upload Date: 2007-01-31
Package Size: 42235k
Code Size: 0k
Category:

Windows Develop

Development Platform:

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. /////////////////////////////////////////////////////////////////////////////