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.
 
 
 
 
 
 

60 lines
1.7 KiB

//////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 1999-2001 Microsoft Corporation
//
// Module Name:
// TaskGetDomains.h
//
// Description:
// CTaskGetDomains implementation.
//
// Maintained By:
// Galen Barbee (GalenB) 22-NOV-1999
//
//////////////////////////////////////////////////////////////////////////////
#pragma once
//////////////////////////////////////////////////////////////////////////////
// Class Declarations
//////////////////////////////////////////////////////////////////////////////
// CTaskGetDomains
class CTaskGetDomains
: public ITaskGetDomains
{
private:
// IUnknown
LONG m_cRef;
// ITaskGetDomains
IStream * m_pStream; // Interface marshalling stream
ITaskGetDomainsCallback * m_ptgdcb; // Marshalled interface
CRITICAL_SECTION m_csCallback; // Protects access to m_ptgdcb
CTaskGetDomains( void );
~CTaskGetDomains( void );
STDMETHOD( HrInit )( void );
HRESULT HrReleaseCurrentCallback( void );
HRESULT HrUnMarshallCallback( void );
STDMETHOD( ReceiveDomainResult )( HRESULT hrIn );
STDMETHOD( ReceiveDomainName )( BSTR bstrDomainNameIn );
public: // Methods
static HRESULT S_HrCreateInstance( IUnknown ** ppunkOut );
// IUnknown
STDMETHOD( QueryInterface )( REFIID riidIn, LPVOID * ppvOut );
STDMETHOD_( ULONG, AddRef )( void );
STDMETHOD_( ULONG, Release )( void );
// IDoTask / ITaskGetDomains
STDMETHOD( BeginTask )( void );
STDMETHOD( StopTask )( void );
STDMETHOD( SetCallback )( ITaskGetDomainsCallback * punkIn );
}; //*** class CTaskGetDomains