COMClassInfo Constructor (Guid, Guid, Int32) |
Creates a new COMClassInfo instance using the COM class and interface Guids. The function indexes to retrieve the addresses for as defined by the order of the methods in the COM interface.
Namespace:
EasyHook
Assembly:
EasyHook (in EasyHook.dll) Version: 2.7.6684.0 (2.7.6684.0)
Syntax public COMClassInfo(
Guid clsid,
Guid iid,
params int[] vTableIndexes
)
Public Sub New (
clsid As Guid,
iid As Guid,
ParamArray vTableIndexes As Integer()
)
public:
COMClassInfo(
Guid clsid,
Guid iid,
... array<int>^ vTableIndexes
)
new :
clsid : Guid *
iid : Guid *
vTableIndexes : int[] -> COMClassInfo
Parameters
- clsid
- Type: SystemGuid
The class id (CLSID) of the COM object - iid
- Type: SystemGuid
The interface id (IID) of the COM interface. This interface MUST inherit from IUnknown. - vTableIndexes
- Type: SystemInt32
One or more method indexes to retrieve the address for. Index 0 == QueryInterface, 1 == AddRef, 2 == Release, 3 == first method and so on, i.e. the order that the methods appear in the interface's C++ header file.
See Also