home *** CD-ROM | disk | FTP | other *** search
/ ...taking it to the Macs! / ...taking it to the Macs!.iso / Extras / ActiveX Mac SDK / ActiveX SDK / Headers / ISLInterfaces.h < prev    next >
Encoding:
Text File  |  1996-12-10  |  1.4 KB  |  39 lines  |  [TEXT/CWIE]

  1. // =================================================================================
  2. //
  3. //    ISLInterfaces.h                ©1996 Microsoft Corporation All rights reserved.
  4. //
  5. //    ISL COM interface definitions
  6. //
  7. // =================================================================================
  8.  
  9. #ifndef _H_ISLInterfaces
  10. #define _H_ISLInterfaces
  11. #pragma once
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // IISLClient interface
  15. // Client callbacks from ISL
  16.  
  17. DECLARE_INTERFACE_(IISLClient, IUnknown)
  18. {
  19.     BEGIN_INTERFACE
  20.  
  21.     // *** IUnknown methods ***
  22.     STDMETHOD (QueryInterface)(THIS_ REFIID inRefID, void** outObj) PURE;
  23.     STDMETHOD_(ULONG,AddRef)(THIS)  PURE;
  24.     STDMETHOD_(ULONG,Release)(THIS) PURE;
  25.  
  26.     // *** IISLClient methods ***
  27.     STDMETHOD (PushStatusMessage) (THIS_ void *pStatusClient, char* pMessage) PURE;
  28.     STDMETHOD (PopStatusMessage) (THIS_ void *pStatusClient, char* pMessage) PURE;
  29.     STDMETHOD (ShowReadProgress) (THIS_ void *pStatusClient, int32 pTotalBytes, int32 pToDateBytes, char* pError) PURE;
  30.     STDMETHOD (ShowWriteProgress) (THIS_ void *pStatusClient, int32 pTotalBytes, int32 pToDateBytes, char* pError) PURE;
  31.     STDMETHOD (ShowSecureServerInfo) (THIS_ void *pStatusClient, tSecureServerInfo *pSecureServerInfo) PURE;
  32.     STDMETHOD (Yield) (THIS) PURE;
  33.     STDMETHOD (BeginModalDialog) (THIS) PURE;
  34.     STDMETHOD (EndModalDialog) (THIS) PURE;
  35.     STDMETHOD (DisposeClientData) (THIS_ void *pStatusClient, tStream *pStream) PURE;
  36. };
  37.  
  38. #endif
  39.