IPXV_Plugin::Setup Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
Line 9: Line 9:
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT Setup(  IPXV_Inst*  Instance);</pre>
+
<pre class="brush:cpp;gutter:false">HRESULT Setup(  IPXV_Inst*  pInstance);</pre>
  
 
== Parameters ==
 
== Parameters ==
;Instance
+
;pInstance
 
: Pointer to instance [[PXV:IPXV_Inst|IPXV_Inst]].
 
: Pointer to instance [[PXV:IPXV_Inst|IPXV_Inst]].
  

Revision as of 04:06, 15 June 2015


It is first method of the plugin which is called by the viewer. It intended for testing application's version, features level (free, standard), etc.

Syntax

HRESULT Setup(  IPXV_Inst*  pInstance);

Parameters

pInstance
Pointer to instance IPXV_Inst.

Return Value

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

See Also

IPXV_Plugin