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.
 
 
 
 
 
 

32 lines
800 B

#if !defined(_FUSION_COMCLSIDMAP_H_INCLUDED_)
#define _FUSION_COMCLSIDMAP_H_INCLUDED_
#pragma once
typedef const struct _ACTCTXCTB_ASSEMBLY_CONTEXT *PCACTCTXCTB_ASSEMBLY_CONTEXT;
class CClsidMap
{
public:
CClsidMap();
~CClsidMap();
BOOL Initialize();
BOOL Uninitialize();
BOOL MapReferenceClsidToConfiguredClsid(const GUID *ReferenceClsid, PCACTCTXCTB_ASSEMBLY_CONTEXT AssemblyContext, GUID *ConfiguredClsid, GUID *ImplementedClsid);
private:
struct LocalMapping
{
struct LocalMapping *m_pNext;
GUID m_ReferenceClsid;
GUID m_ConfiguredClsid;
GUID m_ImplementedClsid;
};
ULONG m_cLocalMappings;
LocalMapping *m_pLocalMappingListHead;
};
#endif // !defined(_FUSION_COMCLSIDMAP_H_INCLUDED_)