home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / com / allinone / server / idata.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-04-03  |  401 b   |  20 lines

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