home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / AutoPC / apcsdk10.exe / data1.cab / Emulation_Include_Files / irsquirt.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-05-13  |  1.2 KB  |  42 lines

  1. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2.  
  3. Copyright (c) 1997 - 1998 Microsoft Corporation
  4.  
  5. Module Name:
  6.  
  7.     IRSquirt.h
  8.  
  9. Abstract:
  10.  
  11.     Class ID and Interface IDs for using the IRSquirt COM object
  12.  
  13. -------------------------------------------------------------------*/
  14.  
  15. #ifndef _IRSQUIRT_H
  16. #define _IRSQUIRT_H
  17.  
  18. // {DED1E976-DF14-11d1-BA0E-0000F8050ED3}
  19. DEFINE_GUID(CLSID_IRSQUIRT,
  20.     0xded1e976, 0xdf14, 0x11d1, 0xba, 0xe, 0x0, 0x0, 0xf8, 0x5, 0xe, 0xd3);
  21.  
  22. // {DED1E977-DF14-11d1-BA0E-0000F8050ED3}
  23. DEFINE_GUID(IID_IRSQUIRT,
  24.     0xded1e977, 0xdf14, 0x11d1, 0xba, 0xe, 0x0, 0x0, 0xf8, 0x5, 0xe, 0xd3);
  25.  
  26.  
  27. #undef  INTERFACE
  28. #define INTERFACE
  29.  
  30. DECLARE_INTERFACE_(IIRSquirt, IUnknown)
  31. {
  32.     STDMETHOD(Transfer)             (THIS_ IfmManage *pFrmMgr,  // caller's forms manager interface
  33.                                         WORD wNum,              // number of OIDs to send, zero to receive
  34.                                         CEOID *rgOID,           // array of OIDs to send
  35.                                         BSTR bstrCaption) PURE; // NULL to use calling app caption, valid BSTR otherwise
  36.  
  37.     STDMETHOD(IRAvailable)          (THIS) PURE;
  38. };
  39.  
  40.  
  41. #endif //_IRSQUIRT_H
  42.