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.
45 lines
997 B
45 lines
997 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1995 - 1995.
|
|
//
|
|
// File: rcomp.hxx
|
|
//
|
|
// Contents: Declaration of CSharesRC, an implementation of IRemoteComputer
|
|
//
|
|
// History: 7-Jan-96 BruceFo Created
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef __RCOMP_HXX__
|
|
#define __RCOMP_HXX__
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
class CSharesRC : public IRemoteComputer
|
|
{
|
|
public:
|
|
|
|
CSharesRC() {}
|
|
~CSharesRC() {}
|
|
|
|
//
|
|
// IUnknown methods
|
|
//
|
|
|
|
STDMETHOD(QueryInterface)(REFIID riid, LPVOID* ppvObj);
|
|
STDMETHOD_(ULONG,AddRef)();
|
|
STDMETHOD_(ULONG,Release)();
|
|
|
|
//
|
|
// IRemoteComputer methods
|
|
//
|
|
|
|
STDMETHOD(Initialize)(
|
|
LPCWSTR pszMachine,
|
|
BOOL bEnumerating
|
|
);
|
|
|
|
};
|
|
|
|
#endif // __RCOMP_HXX__
|