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.

34 lines
807 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1997.
  5. //
  6. // File: C O N P R O P S . H
  7. //
  8. // Contents: Connection Properties code
  9. //
  10. // Notes:
  11. //
  12. // Author: scottbri 4 Nov 1997
  13. //
  14. //----------------------------------------------------------------------------
  15. #pragma once
  16. #ifndef _CONPROPS_H_
  17. #define _CONPROPS_H_
  18. VOID ActivatePropertyDialog(INetConnection * pconn);
  19. HRESULT HrRaiseConnectionProperties(HWND hwnd, INetConnection * pconn);
  20. enum CDFLAG
  21. {
  22. CD_CONNECT,
  23. CD_DISCONNECT,
  24. };
  25. HRESULT HrConnectOrDisconnectNetConObject(HWND hwnd, INetConnection * pconn,
  26. CDFLAG Flag);
  27. #endif // _CONPROPS_H_