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
1.3 KiB

  1. /******************************************************************************
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. Config.h
  5. Abstract:
  6. This file contains the declaration of the MPCConfig class,
  7. that extends the CISAPIconfig class.
  8. Revision History:
  9. Davide Massarenti (Dmassare) 05/02/99
  10. created
  11. ******************************************************************************/
  12. #if !defined(__INCLUDED___ULSERVER___CONFIG_H___)
  13. #define __INCLUDED___ULSERVER___CONFIG_H___
  14. #if _MSC_VER > 1000
  15. #pragma once
  16. #endif // _MSC_VER > 1000
  17. HRESULT Config_GetInstance ( /*[in]*/ const MPC::wstring& szURL, /*[out]*/ CISAPIinstance*& isapiInstance , /*[out]*/ bool& fFound );
  18. HRESULT Config_GetProvider ( /*[in]*/ const MPC::wstring& szURL, /*[in]*/ const MPC::wstring& szName, /*[out]*/ CISAPIprovider*& isapiProvider , /*[out]*/ bool& fFound );
  19. HRESULT Config_GetMaximumPacketSize( /*[in]*/ const MPC::wstring& szURL, /*[out]*/ DWORD& dwMaximumPacketSize );
  20. HRESULT Util_CheckDiskSpace( /*[in]*/ const MPC::wstring& szFile, /*[in]*/ DWORD dwLowLevel, /*[out]*/ bool& fEnough );
  21. #endif // !defined(__INCLUDED___ULSERVER___CONFIG_H___)