EvoCorp Home    IridiumX Assist Home   

 
LibraryBrokerRegisterProxy

LibraryBrokerRegisterProxy is used to register method lpProxyMethod as the proxy handler for method szMethodName in library szLibraryName.

Parameters

szLibraryName

String value identifying the name of the library to which method szMethodName belongs.

szMethodName

String value identifying the name of the method in library szLibraryName that is to be redirected to the proxy handler lpProxyMethod.

lpProxyMethod

Pointer to the method that will be used as the proxy method handler for method szMethodName in library szLibraryName.

Return Values

E_INVALIDARG Either szMethodName or szLibraryName are blank or lpProxyMethod is nil.
S_OK lpProxyMethod was successully registered as the proxy method handler for method szMethodName in library szLibraryName.

 
Export Definition
Delphi function LibraryBrokerRegisterProxy(
  szLibraryName, szMethodName: string;
  lpProxyMethod: pointer): HRESULT;