IPXS_pdfStringCoder::Proceed 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 Proceed([in]      UCHAR*  Src,
+
<pre class="brush:cpp;gutter:false">HRESULT Proceed([in]      UCHAR*  nSrc,
                 [in]      ULONG  SrcLen,
+
                 [in]      ULONG  nSrcLen,
                 [in, out]  UCHAR*  Dest,
+
                 [in, out]  UCHAR*  nDest,
                 [in, out]  ULONG*  DestLen);</pre>
+
                 [in, out]  ULONG*  nDestLen);</pre>
  
 
== Parameters ==
 
== Parameters ==
;Src
+
;nSrc
 
:[in]  Pointer to UCHAR.
 
:[in]  Pointer to UCHAR.
;SrcLen
+
;nSrcLen
 
:[in]  Value of ULONG.
 
:[in]  Value of ULONG.
;Dest
+
;nDest
 
:[in, out]  Pointer to UCHAR.
 
:[in, out]  Pointer to UCHAR.
;DestLen
+
;nDestLen
 
:[in, out]  Pointer to ULONG.
 
:[in, out]  Pointer to ULONG.
  

Latest revision as of 03:41, 15 June 2015


The method of interface of PDF-XChange Editor SDK.

Syntax

HRESULT Proceed([in]       UCHAR*  nSrc,
                [in]       ULONG   nSrcLen,
                [in, out]  UCHAR*  nDest,
                [in, out]  ULONG*  nDestLen);

Parameters

nSrc
[in] Pointer to UCHAR.
nSrcLen
[in] Value of ULONG.
nDest
[in, out] Pointer to UCHAR.
nDestLen
[in, out] Pointer to ULONG.

Return Value

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

See Also

IPXS_pdfStringCoder