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.
|
|
//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 2001.
//
// File: N M P O L I C Y . H
//
// Contents: Interface for verifying NLA policy settings.
//
// Notes:
//
// Author: ckotze 12 Dec 2000
//
//----------------------------------------------------------------------------
#pragma once
#include "nmbase.h"
#include "nmres.h"
#include "gpnla.h"
class ATL_NO_VTABLE CNetMachinePolicies : public CComObjectRootEx <CComMultiThreadModel>, public CComCoClass <CNetMachinePolicies, &CLSID_NetGroupPolicies>, public INetMachinePolicies
{ public: CNetMachinePolicies() throw(); ~CNetMachinePolicies() throw(); DECLARE_REGISTRY_RESOURCEID(IDR_NET_GROUP_POLICIES)
BEGIN_COM_MAP(CNetMachinePolicies) COM_INTERFACE_ENTRY(INetMachinePolicies) END_COM_MAP()
HRESULT STDMETHODCALLTYPE VerifyPermission(IN const DWORD ulPerm, OUT BOOL* pfPermission);
protected: CGroupPolicyNetworkLocationAwareness* m_pGroupPolicyNLA; private: };
|