IPXV_Inst::AddPlugin Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
Line 1: Line 1:
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:IPXV_Inst::AddPlugin Method}}
 
{{#customTitle:IPXV_Inst::AddPlugin Method}}
{{#parentPage:PXV:IPXV_Inst|method}}
+
{{#parentPage:PXV:IPXV_Inst|AddPlugin Method|method}}
 
{{ToWrite}}
 
{{ToWrite}}
 
{{ToReview}}
 
{{ToReview}}
Line 8: Line 8:
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT AddPlugin([in] IPXV_Plugin* pPlugin);</pre>
+
<pre class="brush:cpp;gutter:false">HRESULT AddPlugin([in] IPXV_Plugin* pPlugin);</pre>
  
 
== Parameters ==
 
== Parameters ==
;''pPlugin''
+
;pPlugin
 
:[in]  Pointer to [[PXV:IPXV_Plugin|IPXV_Plugin]] object which should be added to the instance. Here only its '''Setup''' function is called. The function returns the value returned from plugin's '''Setup''' function.
 
:[in]  Pointer to [[PXV:IPXV_Plugin|IPXV_Plugin]] object which should be added to the instance. Here only its '''Setup''' function is called. The function returns the value returned from plugin's '''Setup''' function.
  

Revision as of 06:24, 23 April 2015


Adds a plugin object to the instance.

Syntax

HRESULT AddPlugin([in]  IPXV_Plugin*  pPlugin);

Parameters

pPlugin
[in] Pointer to IPXV_Plugin object which should be added to the instance. Here only its Setup function is called. The function returns the value returned from plugin's Setup function.

Return Value

Returns S_OK if operation was successful or error code in other cases.

See Also

See also IPXV_Inst, IPXV_Plugin.