Leaked source code of windows server 2003
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.

33 lines
986 B

  1. /********************************************************************
  2. Copyright (c) 1999 Microsoft Corporation
  3. Module Name:
  4. RemoteConfig.h
  5. Abstract:
  6. Implements the class CRemoteConfig that contains methods for retrieving the updated
  7. config file (parameter list file).
  8. Revision History:
  9. a-prakac created 10/24/2000
  10. ********************************************************************/
  11. #if !defined(__INCLUDED___PCH___SELIB_REMOTECONFIG_H___)
  12. #define __INCLUDED___PCH___SELIB_REMOTECONFIG_H___
  13. class CRemoteConfig
  14. {
  15. MPC::XmlUtil m_xmlUpdatedList;
  16. HRESULT CheckIfUpdateReqd( /*[in]*/ const MPC::wstring& strFilePath, /*[in]*/ long lUpdateFrequency, /*[out]*/ bool& fUpdateRequired );
  17. public:
  18. HRESULT RetrieveList( /*[in]*/ BSTR bstrQuery, /*[in]*/ BSTR bstrLCID, /*[in]*/ BSTR bstrSKU, /*[in]*/ BSTR bstrFilePath, /*[in]*/ long lFrequency );
  19. HRESULT Abort();
  20. };
  21. #endif // !defined(__INCLUDED___PCH___SELIB_REMOTECONFIG_H___)