Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
717 B

  1. class CNWCOMPATFSFileServiceConfig : INHERIT_TRACKING,
  2. public IADsFSServiceConfiguration
  3. {
  4. friend class CNWCOMPATFileService;
  5. public:
  6. STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID FAR* ppvObj);
  7. DECLARE_STD_REFCOUNTING;
  8. DECLARE_IDispatch_METHODS;
  9. DECLARE_IADsFSServiceConfiguration_METHODS;
  10. CNWCOMPATFSFileServiceConfig();
  11. ~CNWCOMPATFSFileServiceConfig();
  12. static
  13. HRESULT
  14. CNWCOMPATFSFileServiceConfig::Create(
  15. CNWCOMPATFileService FAR * pCoreADsObject,
  16. CNWCOMPATFSFileServiceConfig FAR * FAR * ppServiceConfig
  17. );
  18. protected:
  19. CAggregatorDispMgr * _pDispMgr;
  20. CNWCOMPATFileService *_pCoreADsObject;
  21. };