home *** CD-ROM | disk | FTP | other *** search
/ Troubleshooting Netware Systems / CSTRIAL0196.BIN / attach / msj / v10n12 / oleq1295.exe / IFOO.H < prev    next >
C/C++ Source or Header  |  1995-12-01  |  457b  |  19 lines

  1. /////////////////////////////////////////////////////////
  2. //
  3. // IFoo.h - interface definition
  4. //
  5. #ifndef _IFOO_H
  6. #ifndef _IFOO_H
  7.  
  8. class IFoo : public IUnknown {
  9. public:
  10.   STDMETHOD(Argument)(short arg1) PURE;
  11.   STDMETHOD(Agreement)(short *parg1) PURE;
  12.   STDMETHOD(Articulate)(short arg1) PURE;
  13.   STDMETHOD(Announcement)(short arg1) PURE;
  14. };
  15.  
  16. DEFINE_GUID(IID_IFoo,0xBABACACAL,0xDADA,0xEAEA,0xFA,0xFA,0x00,0x00,0x00,0x00,0x00,0x0B);
  17.  
  18. #endif
  19.