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.idl < prev    next >
Encoding:
Text File  |  1998-04-03  |  142 b   |  12 lines

  1. // mydata.idl
  2.  
  3. import "wtypes.idl";
  4.  
  5. typedef struct tagIMyStruct
  6. {
  7.     int m_int;
  8.     float m_float;
  9.     BSTR m_str;
  10. } IMyStruct;
  11.  
  12.