mirror of https://github.com/tongzx/nt5src
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
773 B
34 lines
773 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1997.
|
|
//
|
|
// File: C O N P R O P S . H
|
|
//
|
|
// Contents: Connection Properties code
|
|
//
|
|
// Notes:
|
|
//
|
|
// Author: scottbri 4 Nov 1997
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#ifndef _CONPROPS_H_
|
|
#define _CONPROPS_H_
|
|
|
|
VOID ActivatePropertyDialog(INetConnection * pconn);
|
|
HRESULT HrRaiseConnectionProperties(HWND hwnd, INetConnection * pconn);
|
|
|
|
enum CDFLAG
|
|
{
|
|
CD_CONNECT,
|
|
CD_DISCONNECT,
|
|
};
|
|
|
|
HRESULT HrConnectOrDisconnectNetConObject(HWND hwnd, INetConnection * pconn,
|
|
CDFLAG Flag);
|
|
|
|
#endif // _CONPROPS_H_
|
|
|