home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / include / fserv.odl < prev    next >
Text File  |  1998-04-25  |  971b  |  37 lines

  1. //+-------------------------------------------------------------------------
  2. //
  3. //  Microsoft Windows
  4. //  Copyright (C) Microsoft Corporation, 1996
  5. //
  6. //  File:      fserv.odl
  7. //
  8. //  Contents:  File Service Interfaces
  9. //
  10. //------------------------------------------------------------------------
  11.  
  12.  
  13. [uuid(OLEDS_IID_IADsFileService),oleautomation, dual]
  14. interface IADsFileService: IADsService
  15. {
  16.     PROPERTY_BSTR_RW(Description, DISPID_IADsService_UPPER_BOUND + 1)
  17.     PROPERTY_LONG_RW(MaxUserCount, DISPID_IADsService_UPPER_BOUND + 2)
  18. };
  19.  
  20.  
  21. [uuid(OLEDS_IID_IADsFileServiceOperations), oleautomation, dual]
  22. interface IADsFileServiceOperations: IADsServiceOperations
  23. {
  24.     [id(DISPID_IADsService_UPPER_BOUND + 3)]
  25.     HRESULT
  26.     Sessions (
  27.         [out, retval]IADsCollection **ppSessions
  28.         );
  29.  
  30.     [id(DISPID_IADsService_UPPER_BOUND + 4)]
  31.     HRESULT
  32.     Resources(
  33.         [out, retval]IADsCollection **ppResources
  34.         );
  35.  
  36. };
  37.