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.
 
 
 
 
 
 

112 lines
2.5 KiB

typedef struct _comp_info_4
{
WCHAR szOwner[COMPUTER_INFO_PATH];
WCHAR szOS[COMPUTER_INFO_PATH];
WCHAR szOSVersion[COMPUTER_INFO_PATH];
WCHAR szDivision[COMPUTER_INFO_PATH];
WCHAR szProcessor[COMPUTER_INFO_PATH];
WCHAR szProcessorCount[COMPUTER_INFO_PATH];
}COMP_INFO_4, *PCOMP_INFO_4, *LPCOMP_INFO_4;
class CWinNTComputer;
class CWinNTComputer : INHERIT_TRACKING,
public CCoreADsObject,
public ISupportErrorInfo,
public IADsComputer,
public IADsComputerOperations,
public IADsContainer,
public IADsPropertyList,
public INonDelegatingUnknown,
public IADsExtension
{
public:
/* IUnknown methods */
STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID FAR* ppvObj) ;
STDMETHODIMP_(ULONG) AddRef(void);
STDMETHODIMP_(ULONG) Release(void);
// INonDelegatingUnknown methods
STDMETHOD(NonDelegatingQueryInterface)(THIS_
const IID&,
void **
);
DECLARE_NON_DELEGATING_REFCOUNTING
DECLARE_IDispatch_METHODS
DECLARE_ISupportErrorInfo_METHODS
DECLARE_IADs_METHODS
DECLARE_IADsComputer_METHODS
DECLARE_IADsComputerOperations_METHODS
DECLARE_IADsContainer_METHODS
DECLARE_IADsPropertyList_METHODS
DECLARE_IADsExtension_METHODS
CWinNTComputer::CWinNTComputer();
CWinNTComputer::~CWinNTComputer();
static
HRESULT
CWinNTComputer::CreateComputer(
BSTR Parent,
BSTR DomainName,
BSTR ComputerName,
DWORD dwObjectState,
REFIID riid,
CWinNTCredentials& Credentials,
void **ppvObj
);
static
HRESULT
CWinNTComputer::AllocateComputerObject(
CWinNTComputer ** ppComputer
);
STDMETHOD(GetInfo)(THIS_ DWORD dwApiLevel, BOOL fExplicit) ;
STDMETHOD(ImplicitGetInfo)(void);
HRESULT
CWinNTComputer::UnMarshall_Level4(
BOOL fExplicit,
LPCOMP_INFO_4 pCompInfo4
);
protected:
VARIANT _vFilter;
BSTR _DomainName;
CAggregatorDispMgr FAR * _pDispMgr;
CADsExtMgr FAR * _pExtMgr;
CPropertyCache FAR * _pPropertyCache;
CWinNTCredentials _Credentials;
BOOL _fCredentialsBound;
HRESULT _hrBindingResult;
BOOL _fNoWKSTA;
private:
HRESULT
RefCredentials();
};