134 lines
2.6 KiB
C++
134 lines
2.6 KiB
C++
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1997.
|
|
//
|
|
// act.hxx
|
|
//
|
|
// Precompiled header for dcom activation service.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef __ACT_HXX__
|
|
#define __ACT_HXX__
|
|
|
|
#include "dcomss.h"
|
|
#include "or.hxx"
|
|
|
|
// This is only here so the SCM can build.
|
|
class CObjectContext
|
|
{
|
|
public:
|
|
HRESULT QueryInterface(REFIID riid, void **ppv);
|
|
ULONG AddRef();
|
|
ULONG Release();
|
|
HRESULT InternalQueryInterface(REFIID riid, void **ppv);
|
|
ULONG InternalAddRef();
|
|
ULONG InternalRelease();
|
|
};
|
|
|
|
#include <netevent.h>
|
|
#include <ntlsa.h>
|
|
|
|
#ifdef DFSACTIVATION
|
|
#include <dfsfsctl.h>
|
|
#endif
|
|
|
|
#ifdef DIRECTORY_SERVICE
|
|
#include <userenv.h>
|
|
#include <msi.h>
|
|
#include <appmgmt.h>
|
|
#endif
|
|
|
|
#include <lm.h>
|
|
#include <limits.h>
|
|
#include <privguid.h>
|
|
#include <ole2.h>
|
|
|
|
#include "iface.h"
|
|
#include "obase.h"
|
|
#include "remact.h"
|
|
|
|
#include "irot.h"
|
|
#include "multqi.h"
|
|
#include "scm.h"
|
|
#include "srgtprot.h"
|
|
|
|
#include "rawprivact.h"
|
|
#include "privact.h"
|
|
#include "rwobjsrv.h"
|
|
|
|
// sdk\inc
|
|
#include <sem32.hxx>
|
|
|
|
// ole32\common
|
|
#ifdef _CHICAGO_
|
|
#include <outfuncs.h>
|
|
#endif
|
|
|
|
// ole32\ih
|
|
#include <olesem.hxx>
|
|
#include <memapi.hxx>
|
|
#include <valid.h>
|
|
#include <rothint.hxx>
|
|
|
|
// ole32\com\inc
|
|
#include <ole2int.h>
|
|
#include <olecom.h>
|
|
#include <ole2com.h>
|
|
#include <smmutex.hxx>
|
|
#include <skiplist.hxx>
|
|
#include <clskey.hxx>
|
|
#include <cevent.hxx>
|
|
#include <wip.hxx>
|
|
#include <rothelp.hxx>
|
|
#include <smcreate.hxx>
|
|
#include <secdes.hxx>
|
|
|
|
// ole32\com\rot
|
|
#include <access.hxx>
|
|
#include <caller.hxx>
|
|
|
|
// ole32\actprops
|
|
#include "actstrm.hxx"
|
|
#include "actprops.hxx"
|
|
|
|
class CClsidData;
|
|
|
|
#include "activate.hxx"
|
|
#include "guidtbl.hxx"
|
|
#include "servers.hxx"
|
|
#include "clsid.hxx"
|
|
#include "class.hxx"
|
|
#include "surrogat.hxx"
|
|
#include "secdesc.hxx"
|
|
#include "security.hxx"
|
|
#include "registry.hxx"
|
|
#include "events.hxx"
|
|
#include "net.hxx"
|
|
#include "actmisc.hxx"
|
|
#include "srothint.hxx"
|
|
#include "scmhash.hxx"
|
|
#include "scmrot.hxx"
|
|
#include "rotif.hxx"
|
|
#include "remact.hxx"
|
|
#include "dbgprt.hxx"
|
|
#include "winsta.hxx"
|
|
#include "dscmif.hxx"
|
|
#include "remactif.hxx"
|
|
#include "scmstage.hxx"
|
|
#include "excladdr.hxx"
|
|
#include "addrrefresh.hxx"
|
|
|
|
extern HRESULT GetClassInfoFromClsid(REFCLSID rclsid, IComClassInfo **ppClassInfo);
|
|
extern void GetSessionIDFromActParams(IActivationPropertiesIn* pActIn, LONG* plSessionID);
|
|
|
|
#define CHECKHR(HR) if (FAILED(HR)) \
|
|
{ \
|
|
return HR; \
|
|
}
|
|
|
|
#pragma hdrstop
|
|
|
|
#endif // __ACT_HXX__
|