pcomobj.dll
Classes:
#module root.mscom.base
This class is designed for COM objects hooking.
When creating the put/get methods for COM object properties, the p
prefix is added to the put method names provided by the object
interface and the g prefix is added the get method names provided by
the object interface.
Methods:
- ComObj(copy)
- ComObj(void)
- CreateComControl(object String, object String, int, refer object RECT, refer object GWnd)
- CreateComDocument(object String, object String, int, refer object RECT, refer object GWnd)
- CreateComDocument(object String, object String, object String, int, refer object RECT, refer object GWnd)
- CreateComObject(object String)
- CreateComObject(object String, object String)
- CreateComObject(object String, object String, object String)
- CreateControlList(void)
- DeclareOtherObjects(void)
- GetID(void)
- GetParentWnd(void)
- GetPropertyList(void)
- Invoke(int, refer ...)
- IsControl(void)
- IsValid(void)
- QueryInterface(object String)
- ~ComObj(void)
param ObjectName;
Creates the COM object with the name specified via the ObjectName
parameter, for instance, "Word.Application" or "MSComDlg.CommonDialog".
Registers the appropriate class in Pluk.
param ObjectName, Prefix;
Creates the COM object with the name specified via the ObjectName
parameter, for instance, "Word.Application" or "MSComDlg.CommonDialog".
Registers the appropriate class in Pluk. The prefix specified via the
Prefix parameter is added to the registered class name.
param ObjectName, Prefix, InterfaceName;
Creates the COM object with the name specified via the ObjectName
parameter which implements interface specified via the InterfaceName
parameter, for instance, "Word.Application" or MSComDlg.CommonDialog".
Registers the appropriate class in Pluk. The prefix specified via the
Prefix parameter is added to the registered class name.
Returns TRUE if the appropriate object is valid; otherwise - FALSE.
param InterfaceName;
Returns object of the class which is on the same level as the object
for which the method that implements interface specified via the
InterfaceName parameter is called.