IPXC_Inst::RegisterFileSpecHandler 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 RegisterFileSpecHandler([in]  ULONG                  nTypeName,
+
<pre class="brush:cpp;gutter:false">HRESULT RegisterFileSpecHandler([in]  ULONG                  TypeName,
                                 [in]  IAFS_FileSys*          pBaseFS,
+
                                 [in]  IAFS_FileSys*          BaseFS,
                                 [in]  IPXC_FileSpecHandler*  pHandler);</pre>
+
                                 [in]  IPXC_FileSpecHandler*  Handler);</pre>
  
 
== Parameters ==
 
== Parameters ==
;nTypeName
+
;TypeName
 
:[in]  Value of ULONG.
 
:[in]  Value of ULONG.
;pBaseFS
+
;BaseFS
 
:[in]  Pointer to [[PXV:IAFS_FileSys|IAFS_FileSys]].
 
:[in]  Pointer to [[PXV:IAFS_FileSys|IAFS_FileSys]].
;pHandler
+
;Handler
 
:[in]  Pointer to [[PXV:IPXC_FileSpecHandler|IPXC_FileSpecHandler]].
 
:[in]  Pointer to [[PXV:IPXC_FileSpecHandler|IPXC_FileSpecHandler]].
  

Revision as of 07:06, 12 June 2015


The method of interface of PDF-XChange Editor SDK.

Syntax

HRESULT RegisterFileSpecHandler([in]  ULONG                  TypeName,
                                [in]  IAFS_FileSys*          BaseFS,
                                [in]  IPXC_FileSpecHandler*  Handler);

Parameters

TypeName
[in] Value of ULONG.
BaseFS
[in] Pointer to IAFS_FileSys.
Handler
[in] Pointer to IPXC_FileSpecHandler.

Return Value

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

See Also

IPXC_Inst